@charset "UTF-8";

/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
  overflow-x: hidden;
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
  overflow-x: hidden;
}

/*---------- GSAP Initial State ----------*/
.js-fade,
.top-concept__img-left,
.top-concept__img-right-top,
.top-concept__img-right-bottom,
.top-service__img-left-top,
.top-service__img-left-bottom,
.top-service__img-right {
  opacity: 0;
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {

  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {

  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Noto Serif JP", sans-serif;
  color: #696969;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: "EB Garamond", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
}

.m-font-smoothing {
  -webkit-font-smoothing: antialiased;
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}

@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1400px + 32px);
}

/* ========================================
    共通
    ======================================== */
.m-grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .m-grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-3-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .m-grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  text-decoration: none;
  width: fit-content;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.m-link-arrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/common/next-btn.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.m-link-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #9F9F9F;
}

.m-link-arrow:hover::after {
  animation: borderFlow 0.6s ease-in-out forwards;
}

.m-link-arrow:hover::before {
  transform: translateX(5px);
}

@keyframes borderFlow {
  0% {
    transform: translateX(0);
  }

  49% {
    transform: translateX(101%);
  }

  50% {
    transform: translateX(-101%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .m-link-arrow {
    font-size: 14px;
    gap: 10px;
    padding-bottom: 10px;
  }

  .m-link-arrow::before {
    width: 24px;
    height: 24px;
  }
}

/* ボタンラッパー（共通クラス） */
.m-btn-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .m-btn-wrapper {
    justify-content: flex-end;
  }
}

/* top-concept 用の調整 */
.top-concept__links .m-btn-wrapper {
  min-width: 200px;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .top-concept__links .m-btn-wrapper {
    min-width: auto;
    width: 100%;
  }
}

/* top-works, top-news 用の調整 */
.top-works__more.m-btn-wrapper,
.top-news__more.m-btn-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 1080px) {

  .top-works__more.m-btn-wrapper,
  .top-news__more.m-btn-wrapper {
    margin-right: 50px;
  }
}

@media (max-width: 768px) {

  .top-works__more.m-btn-wrapper,
  .top-news__more.m-btn-wrapper {
    margin-top: 40px;
    margin-right: 0;
  }
}

/* top-event 用の調整 */
.top-event__more.m-btn-wrapper {
  margin-top: 30px;
  position: relative;
}

@media (max-width: 768px) {
  .top-event__more.m-btn-wrapper {
    justify-content: center;
    margin-top: 20px;
  }
}

/* m-numbered-section 用の調整 */
.m-numbered-section__link.m-btn-wrapper {
  padding-left: 95px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .m-numbered-section__link.m-btn-wrapper {
    padding-left: 0;
  }
}

.c-bg-text {
  font-family: "EB Garamond", sans-serif;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  font-weight: 400;
  color: #ECECEC;
  line-height: 1;
  z-index: -1;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .c-bg-text {
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
    font-size: 40px;
  }
}


.c-bg-text--vertical {
  top: 0;
  left: 0px;
  transform: none;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .c-bg-text--vertical {
    left: 0;
    top: 0px;
    transform: none;
    writing-mode: horizontal-tb;
  }
}


.top-concept__bg-text {
  left: 30%;
}

@media (max-width: 768px) {
  .top-concept__bg-text {
    left: 10%;
  }
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .home .header {
    background: transparent;
  }

  .header.is-scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header.is-open {
    background: transparent;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px 26px;
}

@media (max-width: 768px) {
  .header__inner {
    padding: 15px 15px 15px 20px;
  }
}

.header__logo {
  width: 170px;
  position: relative;
  z-index: 110;
}

.header__logo img {
  transition: filter 0.3s;
}

@media (max-width: 768px) {
  .home .header .header__logo img {
    filter: brightness(0) invert(1);
  }

  .header.is-scrolled .header__logo img {
    filter: none;
  }

  .header.is-open .header__logo img {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 768px) {
  .header__logo {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  gap: 34px;
}

.header__nav-item {
  font-family: "EB Garamond", sans-serif;
  padding: 10px 0;
  -webkit-font-smoothing: antialiased;
}

.header__nav-item a {
  color: #696969;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s;
}

.header__nav-item a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .home .header .header__nav-item a {
    color: #fff;
  }

  .header.is-scrolled .header__nav-item a {
    color: #696969;
  }

  .header.is-open .header__nav-item a {
    color: #fff;
  }
}

.header__nav-item--contact {
  padding: 0;
}

.header__nav-item--contact a {
  display: block;
  background: #9D9087;
  color: #fff;
  padding: 10px 40px 10px 20px;
  transition: opacity 0.3s;
}

.header__nav-item--contact a:hover {
  opacity: 0.8;
}

.header__nav-item--contact a::after {
  display: none;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}

@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .home .header .header__hamburger span {
    background-color: #fff;
  }

  .header.is-scrolled .header__hamburger span {
    background-color: #333;
  }

  .header.is-open .header__hamburger span {
    background-color: #fff;
  }
}

.header__hamburger span:nth-child(2) {
  width: 80%;
  align-self: flex-end;
}

.header__hamburger span:nth-child(3) {
  width: 60%;
  align-self: flex-end;
}

.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.header__hamburger.is-open span:nth-child(3) {
  width: 100%;
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
    フッター
    ======================================== */
.cta {
  position: relative;
  padding: 100px 0;
  padding-top: 0;
  background-color: #4a5444;
  background-image: url("../img/common/footer-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 41, 41, 0.8);
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
}

.cta__inner {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
  position: relative;
  z-index: 1;
}

.cta__bg-text {
  position: relative;
  z-index: 10;
  font-size: clamp(64px, 15vw, 128px);
  font-weight: 200;
  line-height: 0.68;
  color: #fff;
  font-family: "EB Garamond", sans-serif;
  pointer-events: none;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .cta__bg-text {
    margin-bottom: 40px;
  }
}

.cta__content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  margin-top: 32px;
}

.cta__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 13px;
}

@media (max-width: 768px) {
  .cta__title {
    font-size: 20px;
  }
}

.cta__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .cta__text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.cta__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 600px) {
  .cta__info {
    flex-direction: column;
    gap: 30px;
  }
}

.cta__tel-box {
  flex: 1;
}

.cta__tel-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}

.cta__tel-label {
  font-size: 18px;
  font-weight: 500;
}

.cta__tel-number {
  font-size: 38px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  font-family: "EB Garamond", sans-serif;
}

@media (max-width: 768px) {
  .cta__tel-number {
    font-size: 32px;
    font-weight: 500;
  }
}

.cta__tel-time {
  font-size: 14px;
}

.cta__buttons {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }
}

.cta__btn-wrapper {
  text-align: center;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  color: #696969;
  background-color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px 0 30px 0;
  margin-bottom: 10px;
  transition: color 0.3s, background-color 0.3s;
  font-size: 15px;
}

.cta__btn:hover {
  color: #fff;
  background-color: #9D9087;
}

@media (max-width: 600px) {
  .cta__btn {
    width: 100%;
  }
}

.cta__btn-subtext {
  font-size: 12px;
}

.footer {
  background-color: #fff;
  padding: 80px 0 40px;
  color: #696969;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
}

.footer__inner {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.footer__content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .footer__content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer__left {
  max-width: 400px;
}

.footer__logo {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .footer__logo {
    margin-bottom: 20px;
    text-align: center;
  }
}

.footer__logo img {
  width: 130px;
  height: auto;
}

.footer__info {
  font-size: 15px;
  line-height: 1.8;
  color: #696969;
}

@media (max-width: 600px) {
  .footer__info {
    text-align: center;
  }
}

.footer__info p {
  margin-bottom: 5px;
}

.footer__open {
  margin-top: 15px;
}

.footer__nav {
  display: flex;
  gap: 80px;
}

@media (max-width: 1080px) {
  .footer__nav {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer__nav {
    margin: 0 auto;
  }
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-list>li {
  margin-bottom: 25px;
}

.footer__nav-list>li>a {
  transition: color 0.3s;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.05em;
}

.footer__nav-list>li:hover>a {
  color: #9D9087;
}

.footer__nav-sublist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.footer__nav-sublist li {
  margin-bottom: 8px;
}

.footer__nav-sublist li a {
  color: #9F9F9F;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
}

.footer__nav-sublist li a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
}

@media (max-width: 600px) {
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}

.footer__copyright {
  font-size: 12px;
  color: #696969;
  opacity: 0.7;
}

.footer__sns {
  display: flex;
  gap: 15px;
}

.footer__sns a {
  transition: opacity 0.3s;
}

.footer__sns a:hover {
  opacity: 0.7;
}

.footer__sns img {
  width: 28px;
  height: auto;
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

@media (max-width: 768px) {
  .mainV {
    height: auto;
    overflow: visible;
  }
}

.mainV__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.slideshow {
  width: 82%;
  height: 100%;
  /* 100vhに合わせる */
  margin-left: 0;
  position: absolute;
  top: 0;
  /* 中央寄せからトップ固定へ */
  left: 0;
  transform: none;
  /* translateYを解除 */
  overflow: hidden;
}

@media (max-width: 768px) {
  .slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    /* スマホでも100vh */
  }
}

.slideshow__slide {
  overflow: hidden;
}

.slideshow__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.swiper-slide-active .slideshow__slide-img {
  transform: scale(1.15);
}

.mainV .swiper-pagination {
  bottom: 20px;
  left: auto;
  right: 2.5%;
  width: auto;
  display: flex;
  gap: 15px;
  z-index: 25;
}

@media (max-width: 768px) {
  .mainV .swiper-pagination {
    right: 20px;
    bottom: 20px;
  }
}

.mainV .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.5;
  margin: 0 !important;
  transition: all 0.4s ease;
  border-radius: 50%;
}

.mainV .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.5);
}

.mainV__content {
  position: absolute;
  top: 55%;
  right: 0%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}



@media (max-width: 768px) {
  .mainV__content {
    top: 0;
    left: 0;
    right: auto;
    transform: none;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    box-sizing: border-box;
  }
}

.mainV__lead {
  position: relative;
  width: 100%;
}

.mainV__lead picture {
  display: block;
  width: 100%;
}

.mainV__lead img {
  width: clamp(300px, 40vw, 600px);
  height: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
}

@media (max-width: 768px) {
  .mainV__lead img {
    width: clamp(300px, 40vw, 500px);
    max-width: none;
    margin: 0 auto;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.mainV__info {
  position: absolute;
  bottom: 60px;
  left: 40px;
  z-index: 30;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

@media (max-width: 768px) {
  .mainV__info {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 50px;
    padding: 0 20px 40px;
  }
}

.mainV__info-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 20px 40px 20px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mainV__info-link:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mainV__info-tag {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
}

@media (max-width: 768px) {
  .mainV__info-tag {
    left: 10px;
  }
}

.mainV__info-tag img {
  width: 100%;
  height: auto;
}

.mainV__info-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mainV__info-img {
  width: 80px;
  height: 60px;
  overflow: hidden;
}

.mainV__info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainV__info-text .mainV__info-date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  font-family: "EB Garamond", sans-serif;
}

.mainV__info-text .mainV__info-title {
  font-size: 14px;
  font-weight: 500;
  color: #696969;
  line-height: 1.5;
}

.mainV__info-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  opacity: 0.5;
}

.mainV__scroll {
  position: absolute;
  bottom: 100px;
  right: 7.5%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mainV__scroll-circle {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  border-radius: 50%;
  position: relative;
}

.mainV__scroll-line {
  width: 1px;
  height: 200px;
  background: #333;
  position: absolute;
  top: 12px;
  /* 円の中心から開始 */
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    height: 0;
    opacity: 0;
  }

  20% {
    height: 0;
    opacity: 1;
  }

  70% {
    height: 200px;
    opacity: 1;
  }

  90% {
    height: 200px;
    opacity: 0;
  }

  100% {
    height: 200px;
    opacity: 0;
  }
}

.mainV__scroll-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .mainV__scroll {
    right: auto;
    left: 20px;
    bottom: auto;
    top: calc(100vh - 150px);
  }

  .mainV__scroll-circle {
    border-color: #fff;
  }

  .mainV__scroll-line {
    background: #fff;
    height: 80px;
  }

  .mainV__scroll-line::after {
    border-color: #fff;
  }

  @keyframes scrollDownMobile {
    0% {
      height: 0;
      opacity: 0;
    }

    20% {
      height: 0;
      opacity: 1;
    }

    70% {
      height: 80px;
      opacity: 1;
    }

    90% {
      height: 80px;
      opacity: 0;
    }

    100% {
      height: 80px;
      opacity: 0;
    }
  }

  .mainV__scroll-line {
    animation: scrollDownMobile 2.5s ease-in-out infinite;
  }
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__inner {
  width: 100%;
  max-width: 500px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.nav-drawer__nav {
  width: 100%;
}

.nav-drawer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  text-align: center;
}

.nav-drawer__item {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.nav-drawer__item a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.nav-drawer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-drawer__sns a {
  display: block;
  width: 32px;
  transition: opacity 0.3s;
}



.nav-drawer__sns a:hover {
  opacity: 0.7;
}

.nav-drawer__sns img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ========================================
    投稿一覧ページ
    ======================================== */
/* カテゴリ一覧 */
.m-cat__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .m-cat__list {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .m-cat__list {
    margin: 0;
  }
}

.m-cat__item {
  margin: 0;
}

.m-cat__item a,
.m-cat__item .m-cat__link {
  font-size: 16px;
  color: #696969;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {

  .m-cat__item a,
  .m-cat__item .m-cat__link {
    font-size: 14px;
  }
}

.m-cat__item a:hover,
.m-cat__item .m-cat__link:hover {
  opacity: 0.7;
}

.m-cat__item.active a,
.m-cat__item.active .m-cat__link {
  color: #DCD5CA;
  font-weight: 500;
}

.m-post-list {
  padding: 60px 0 80px;
  padding-bottom: 180px;
}

@media (max-width: 768px) {
  .m-post-list {
    padding: 40px 0 60px;
    padding-bottom: 120px;
  }
}

.m-post-list__nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .m-post-list__nav-list {
    gap: 16px;
  }
}

.m-post-list__nav-item {
  margin: 0;
}

.m-post-list__nav-link {
  font-size: 16px;
  color: #696969;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .m-post-list__nav-link {
    font-size: 14px;
  }
}

.m-post-list__nav-link:hover {
  opacity: 0.7;
}

.m-post-list__nav-link.is-active {
  font-weight: 700;
}

.m-post-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

@media (max-width: 768px) {
  .m-post-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 600px) {
  .m-post-list__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.m-post-list__item {
  margin: 0;
}

.m-post-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.m-post-list__link:hover {
  opacity: 0.8;
}

.m-post-list__image {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #9F9F9F;
}

.m-post-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/0.6;
  display: block;
}

.m-post-list__content {
  display: flex;
  flex-direction: column;
}

.m-post-list__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.m-post-list__date {
  font-size: 14px;
  color: #9F9F9F;
  font-family: "EB Garamond", sans-serif;
}

@media (max-width: 768px) {
  .m-post-list__date {
    font-size: 12px;
  }
}

.m-post-list__separator {
  width: 1px;
  height: 14px;
  background-color: #9F9F9F;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .m-post-list__separator {
    height: 12px;
  }
}

.m-post-list__category {
  font-size: 14px;
  color: #9F9F9F;
  padding: 0;
  background-color: transparent;
}

@media (max-width: 768px) {
  .m-post-list__category {
    font-size: 12px;
  }
}

.m-post-list__divider {
  width: 100%;
  height: 1px;
  background-color: #9F9F9F;
  margin-bottom: 12px;
}

.m-post-list__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #696969;
  margin: 0;
}

@media (max-width: 768px) {
  .m-post-list__title {
    font-size: 14px;
  }
}

.m-post-list__empty {
  text-align: center;
  padding: 60px 0;
  color: #9F9F9F;
  font-size: 16px;
}

/*---------- 無限スクロールローダー ----------*/
.m-post-list__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.3s ease;
}

.m-post-list__loader.is-loading {
  opacity: 1;
}

.m-post-list__loader.is-complete {
  padding: 0;
}

.m-loader-dots {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.m-loader-dots span {
  width: 10px;
  height: 10px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: block;
  animation: loader-dots-jump 1.4s infinite ease-in-out both;
}

.m-loader-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.m-loader-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loader-dots-jump {

  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.3;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ページネーション */
.m-post-list+.pagination,
.m-post-list .pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {

  .m-post-list+.pagination,
  .m-post-list .pagination {
    margin-top: 40px;
  }
}

.m-post-list+.pagination .page-numbers,
.m-post-list .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 16px;
  color: #696969;
  text-decoration: none;
  border: 1px solid #9F9F9F;
  transition: all 0.3s;
}

@media (max-width: 768px) {

  .m-post-list+.pagination .page-numbers,
  .m-post-list .pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }
}

.m-post-list+.pagination .page-numbers:hover,
.m-post-list .pagination .page-numbers:hover {
  background-color: #9F9F9F;
}

.m-post-list+.pagination .page-numbers.current,
.m-post-list .pagination .page-numbers.current {
  background-color: #696969;
  color: #fff;
  border-color: #696969;
}

.m-post-list+.pagination .page-numbers.prev,
.m-post-list+.pagination .page-numbers.next,
.m-post-list .pagination .page-numbers.prev,
.m-post-list .pagination .page-numbers.next {
  font-weight: 500;
}

/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-single {
  padding: 0 0 120px;
}

@media (max-width: 768px) {
  .m-post-single {
    padding: 0 0 80px;
  }
}

.m-post-single__article {
  max-width: 900px;
  margin: 0 auto;
}

.m-post-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.m-post-single__date {
  font-size: 14px;
  color: #9F9F9F;
  font-family: "EB Garamond", sans-serif;
}

.m-post-single__separator {
  font-size: 14px;
  color: #ECECEC;
}

.m-post-single__category {
  font-size: 14px;
  color: #9F9F9F;
}

.m-post-single__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #696969;
  margin-bottom: 40px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-post-single__title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.m-post-single__image {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .m-post-single__image {
    margin-bottom: 40px;
  }
}

.m-post-single__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.m-post-single__nav {
  max-width: 900px;
  margin: 100px auto 0;
  padding-top: 60px;
}

@media (max-width: 768px) {
  .m-post-single__nav {
    margin-top: 60px;
    padding-top: 40px;
  }
}

.m-post-single__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.m-post-single__nav-item {
  width: fit-content;
  transition: opacity 0.3s;
}

.m-post-single__nav-item--center {
  flex: 0 0 auto;
}

.m-post-single__nav-item--next {
  text-align: right;
}

.m-post-single__nav-item:hover {
  opacity: 0.7;
}

.m-post-single__nav-text {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9F9F9F;
}

.m-post-single__nav-item--prev .m-post-single__nav-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/common/prev-btn.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.m-post-single__nav-item--next .m-post-single__nav-text::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/common/next-btn.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .m-post-single__nav-text {
    font-size: 0;
    gap: 8px;
  }

  .m-post-single__nav-item--prev .m-post-single__nav-text::after {
    content: "前へ";
    font-size: 12px;
    font-weight: 500;
  }

  .m-post-single__nav-item--next .m-post-single__nav-text::before {
    content: "次へ";
    font-size: 12px;
    font-weight: 500;
  }
}

.m-post-single__nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 24px;
  font-size: 14px;
  color: #696969;
  border: 1px solid #9F9F9F;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #fff;
}

.m-post-single__nav-back:hover {
  background-color: #9D9087;
  border-color: #9D9087;
  color: #fff;
}

@media (max-width: 768px) {
  .m-post-single__nav-back {
    min-width: 120px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

.m-post-main {
  font-size: 15px;
  line-height: 2;
  color: #696969;
}

@media (max-width: 768px) {
  .m-post-main {
    font-size: 14px;
  }
}

.m-post-main img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.m-post-main p {
  margin-bottom: 1.5em;
  line-height: 2;
}

.m-post-main a {
  display: inline-block;
  color: #00AFED;
  text-decoration: underline;
}

.m-post-main h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #696969;
}

@media (max-width: 768px) {
  .m-post-main h1 {
    font-size: 20px;
  }
}

.m-post-main h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #696969;
}

@media (max-width: 768px) {
  .m-post-main h2 {
    font-size: 18px;
  }
}

.m-post-main h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1.5em 0 1em;
  color: #696969;
}

@media (max-width: 768px) {
  .m-post-main h3 {
    font-size: 16px;
  }
}

/* ========================================
    共通導入セクション (はじめての方へ)
    ======================================== */
.m-intro {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.m-intro__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
}

.m-intro__title {
  font-size: 30px;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #333;
}

.m-intro__desc {
  max-width: 630px;
  line-height: 2.2;
  color: #666;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .m-intro__header {
    margin-bottom: 60px;
  }

  .m-intro__title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .m-intro {
    padding: 60px 0;
  }

  .m-intro__header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .m-intro__title {
    font-size: 24px;
    white-space: normal;
  }

  .m-intro__desc {
    font-size: 14px;
    line-height: 1.8;
  }
}

.m-intro__cards {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .m-intro__cards {
    flex-direction: column;
    gap: 20px;
  }
}

.m-intro__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 300px;
  padding: 20px 20px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s;
}

/* 背景画像用の疑似要素 */
.m-intro__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.m-intro__card--faq::after {
  background-image: url("../img/common/faq-bg.webp");
}

.m-intro__card--flow::after {
  background-image: url("../img/common/flow-bg.webp");
}

.m-intro__card:hover::after {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .m-intro__card {
    padding: 20px 20px;
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .m-intro__card {
    min-height: 300px;
    padding: 20px 20px;
  }
}

@media (max-width: 430px) {
  .m-intro__card {
    min-height: 240px;
    padding: 20px 20px;
  }
}


.m-intro__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 71, 71, 0.65);
  z-index: 1;
  transition: background 0.3s;
}

.m-intro__card:hover::before {
  background: rgba(71, 71, 71, 0.45);
}

.m-intro__card>* {
  position: relative;
  z-index: 2;
}

.m-intro__card-large-text {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-intro__card-large-text {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .m-intro__card-large-text {
    font-size: 28px;
  }
}

.m-intro__card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}

@media (max-width: 768px) {
  .m-intro__card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.m-intro__card-text {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .m-intro__card-text {
    font-size: 14px;
  }
}

.m-intro__card-link {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.m-intro__card .m-link-arrow {
  color: #fff;
  padding-bottom: 8px;
}

.m-intro__card .m-link-arrow::after {
  background-color: #fff;
  animation: none !important;
  left: 0;
  width: 100%;
  transform: none;
  opacity: 1;
}

.m-intro__card:hover .m-link-arrow::after {
  animation: none !important;
}

.m-intro__card:hover .m-link-arrow::before {
  transform: translateX(5px);
}

.m-intro__card .m-link-arrow::before {
  background-image: url("../img/icon/more-btn-2.webp");
  filter: none;
}

@media (max-width: 768px) {
  .m-intro__card-link {
    margin-top: 30px;
  }
}

/* ========================================
    下層ページ共通モジュール
    ======================================== */
/* 下層ページヘッダー（見出しタイトル） pageV-sub */
.pageV-sub {
  padding: 140px 0 60px;
  background-color: #fff;
}

.pageV-sub__head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 60px;
}

@media (max-width: 1024px) {
  .pageV-sub__head-wrap {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pageV-sub__head-wrap {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pageV-sub {
    padding: 60px 0 40px;
    padding-top: 140px;
  }
}

.pageV-sub__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

@media (max-width: 768px) {
  .pageV-sub__head {
    flex-direction: column;
    gap: 5px;
  }
}

.pageV-sub__text {
  font-family: "EB Garamond", sans-serif;
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  color: #ECECEC;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .pageV-sub__text {
    font-size: 50px;
  }
}

.pageV-sub__title {
  font-size: 16px;
  color: #696969;
  font-weight: 500;
}

/* 下層ページヘッダー（セクション内見出し） */
.m-sub-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.pageV-sub .m-sub-header {
  margin-bottom: 0;
}

.m-sub-header:not(.pageV-sub .m-sub-header) {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .m-sub-header {
    flex-direction: column;
    gap: 5px;
  }

  .m-sub-header:not(.pageV-sub .m-sub-header) {
    margin-bottom: 40px;
  }
}

.m-sub-header__en {
  font-family: "EB Garamond", sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  color: #9F9F9F;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-sub-header__en {
    font-size: 28px;
  }
}

.m-sub-header__ja {
  font-size: 16px;
  color: #9F9F9F;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-sub-header__ja {
    font-size: 14px;
  }
}

/* 目次・ナビゲーション */
.m-toc {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  list-style: none;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .m-toc {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

.m-toc__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 20px;
  font-size: 12px;
  color: #696969;
  border: 1px solid #9F9F9F;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #fff;
}

@media (max-width: 768px) {
  .m-toc__item a {
    min-width: 100px;
    padding: 6px 12px;
    font-size: 10px;
  }
}

.m-toc__item a:hover {
  background-color: #9D9087;
  border-color: #9D9087;
  color: #fff;
}

/* セクションタイトル */
.m-section-title {
  margin-bottom: 60px;
}

.m-section-title--left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-section-title--left::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #696969;
}

.m-section-title--center {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.m-section-title--center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #696969;
}

.m-section-title__text {
  font-family: "EB Garamond", sans-serif;
  font-size: 18px;
  color: #9D9087;
  font-weight: 400;
}

/* 番号付きリストアイテム (Serviceページなどで使用) */
.m-numbered-section {
  display: flex;
  gap: 40px;
  margin-bottom: 120px;
  align-items: center;
  scroll-margin-top: 100px;
}

@media (max-width: 600px) {
  .m-numbered-section {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 80px;
    scroll-margin-top: 80px;
  }
}

.service-content {
  margin-top: 130px;
}

@media screen and (max-width: 1080px) {
  .service-content {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .service-content {
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .service-content {
    margin-top: 0px;
  }
}

.service-faq,
#faq {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {

  .service-faq,
  #faq {
    scroll-margin-top: 80px;
  }
}

.m-numbered-section__content {
  flex: 1;
}

.m-numbered-section__header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
  -webkit-font-smoothing: antialiased;
}

.m-numbered-section__num {
  flex: 0 0 70px;
  height: 70px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #696969;
  font-family: "EB Garamond", sans-serif;
}

@media (max-width: 768px) {
  .m-numbered-section__num {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}

.m-numbered-section__num img {
  width: 32px;
  height: auto;
}

@media (max-width: 768px) {
  .m-numbered-section__num img {
    width: 24px;
  }
}

.m-numbered-section__title {
  font-size: 24px;
  color: #696969;
  font-weight: 500;
}

@media (max-width: 768px) {
  .m-numbered-section__title {
    font-size: 20px;
  }
}

.m-numbered-section__text {
  font-size: 14px;
  line-height: 2.2;
  color: #696969;
  margin-bottom: 40px;
  padding-left: 95px;
}

@media (max-width: 768px) {
  .m-numbered-section__text {
    padding-left: 0;
    line-height: 2;
  }
}

/* .m-numbered-section__link は m-btn-wrapper に統合済み */

.m-numbered-section__btn-wrapper {
  padding-left: 95px;
}

@media (max-width: 768px) {
  .m-numbered-section__btn-wrapper {
    padding-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .m-numbered-section__btn-wrapper {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }

  .m-numbered-section__btn-wrapper a {
    min-width: 200px;
  }
}

.m-numbered-section__img {
  flex: 0 0 45%;
  position: relative;
}

@media (min-width: 769px) {
  .m-numbered-section:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.m-numbered-section__img img {
  aspect-ratio: 1/0.7;
}

@media (max-width: 768px) {
  .m-numbered-section__img {
    flex: 1;
    width: 100%;
  }
}

.m-numbered-section__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ボタン (角丸カット) */
.m-btn-cut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 24px;
  font-size: 13px;
  color: #696969;
  border: 1px solid #9F9F9F;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #fff;
}

@media (max-width: 768px) {
  .m-btn-cut {
    min-width: 140px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

.m-btn-cut:hover {
  background-color: #9D9087;
  border-color: #9D9087;
  color: #fff;
}

/* 垂直方向のフローリスト (Flowページ用) */
.m-vertical-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 800px;
  margin: 100px auto 0;
}

@media (max-width: 768px) {
  .m-vertical-flow {
    margin-top: 60px;
  }
}

.m-vertical-flow__item {
  position: relative;
  padding-bottom: 80px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .m-vertical-flow__item {
    padding-bottom: 60px;
    gap: 20px;
  }
}

.m-vertical-flow__item:last-child {
  padding-bottom: 0;
}

.m-vertical-flow__item:last-child::after {
  display: none;
}

.m-vertical-flow__item::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 35px;
  width: 1px;
  height: calc(100% - 60px);
  border-left: 1px dotted #9F9F9F;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .m-vertical-flow__item::after {
    top: 50px;
    left: 25px;
    height: calc(100% - 50px);
  }
}

.m-vertical-flow__num {
  flex: 0 0 70px;
  height: 70px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #696969;
  font-family: "EB Garamond", sans-serif;
  background-color: #fff;
  z-index: 1;
}

@media (max-width: 768px) {
  .m-vertical-flow__num {
    flex: 0 0 50px;
    height: 50px;
    font-size: 18px;
  }
}

.m-vertical-flow__body {
  flex: 1;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .m-vertical-flow__body {
    padding-top: 12px;
  }
}

.m-vertical-flow__title {
  font-size: 22px;
  font-weight: 700;
  color: #696969;
  margin-bottom: 25px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-vertical-flow__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.m-vertical-flow__text {
  font-size: 14px;
  line-height: 2;
  color: #696969;
}

@media (max-width: 768px) {
  .m-vertical-flow__text {
    font-size: 13px;
  }
}

/* 会社概要等のリスト */
.m-info-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.m-info-list__item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #D4D4D4;
}

/* .m-info-list__item:first-child {
  border-top: 1px solid #ECECEC;
} */

.m-info-list__item dt {
  flex: 0 0 160px;
  padding: 24px 20px;
  font-weight: 500;
  color: #696969;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-info-list__item dt::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #696969;
}

@media (max-width: 768px) {
  .m-info-list__item dt {
    flex: 0 0 100px;
    padding: 15px 10px;
    font-size: 13px;
  }
}

.m-info-list__item dd {
  flex: 1;
  padding: 24px 0 24px 40px;
  margin: 0;
  color: #696969;
}

@media (max-width: 768px) {
  .m-info-list__item dd {
    padding: 15px 0 15px 20px;
    font-size: 14px;
  }
}

/* FAQ */
.m-faq {
  max-width: 1100px;
  margin: 0 auto;
}

.m-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-faq__item {
  padding: 40px 0;
  border-bottom: 1px solid #ECECEC;
}

@media (max-width: 768px) {
  .m-faq__item {
    padding: 30px 0;
  }
}

.m-faq__item:first-child {
  border-top: 1px solid #ECECEC;
}

.m-faq__q,
.m-faq__a {
  display: flex;
  gap: 20px;
}

.m-faq__q {
  font-weight: 700;
  color: #696969;
  margin-bottom: 25px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .m-faq__q {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.m-faq__q span {
  font-family: "EB Garamond", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #696969;
}

@media (max-width: 768px) {
  .m-faq__q span {
    font-size: 20px;
  }
}

.m-faq__a {
  color: #696969;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .m-faq__a {
    font-size: 13px;
  }
}

.m-faq__a span {
  font-family: "EB Garamond", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #9F9F9F;
}

@media (max-width: 768px) {
  .m-faq__a span {
    font-size: 18px;
  }
}

.m-faq__a p {
  flex: 1;
}

/* 交互に配置されるセクション (Featureページ用) */
.feature-intro {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .feature-intro {
    margin-bottom: 80px;
  }
}

.feature-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1080px) {
  .feature-intro__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.feature-intro__content {
  flex: 1;
  padding-left: calc((100vw - 1200px) / 2 + 25px);
  padding-right: 80px;
}

@media (max-width: 1250px) {
  .feature-intro__content {
    padding-left: 25px;
  }
}

@media (max-width: 768px) {
  .feature-intro__content {
    padding: 0 20px;
    width: 100%;
  }
}

.feature-intro__text {
  margin-top: 0;
}

.feature-intro__text p {
  font-size: 16px;
  line-height: 2;
  color: #696969;
  margin-bottom: 2em;
}

.feature-intro__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-intro__text {
    margin-top: 0;
  }

  .feature-intro__text p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2em;
  }
}

.feature-intro__img {
  width: 45vw;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .feature-intro__img {
    width: 100%;
    margin-bottom: 40px;
  }
}

.feature-intro__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1080px) {
  .feature-intro__img img {
    aspect-ratio: 1/.4;
  }
}


.m-alternating-section {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 150px;

}

@media screen and (max-width: 1080px) {
  .m-alternating-section {
    gap: 30px;
    margin-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .m-alternating-section {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 80px;
  }
}

.m-alternating-section:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  .m-alternating-section:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.m-alternating-section__content {
  flex: 1;
}

.m-alternating-section__header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #9F9F9F;
  padding-bottom: 15px;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 480px) {
  .m-alternating-section__header {
    gap: 10px;
  }
}

.m-alternating-section__label {
  font-family: "EB Garamond", sans-serif;
  font-size: 14px;
  color: #9F9F9F;
  text-transform: uppercase;
}

.m-alternating-section__num {
  font-family: "EB Garamond", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #696969;
}

@media screen and (max-width: 480px) {
  .m-alternating-section__num {
    font-size: 28px;
  }
}

.m-alternating-section__title {
  font-size: 24px;
  font-weight: 500;
  color: #696969;
}

@media screen and (max-width: 480px) {
  .m-alternating-section__title {
    font-size: 18px;
  }
}

.m-alternating-section__text {
  font-size: 14px;
  line-height: 2;
  color: #696969;
}

.m-alternating-section__text p+p {
  margin-top: 1em;
}

.m-alternating-section__img {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .m-alternating-section__img {
    flex: 1;
    width: 100%;
  }
}

.m-alternating-section__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ページ下部リンクカード (FAQ / FLOW) */
.m-bottom-nav {
  display: flex;
  gap: 40px;
  margin-top: 120px;
}

@media (max-width: 768px) {
  .m-bottom-nav {
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
  }
}

.m-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.m-bottom-nav__bg-text {
  font-family: "EB Garamond", sans-serif;
  font-size: 100px;
  color: #ECECEC;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: -40px;
  position: relative;
  z-index: -1;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .m-bottom-nav__bg-text {
    font-size: 60px;
    margin-bottom: -30px;
  }
}

.m-bottom-nav__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
  border: 1px solid #9F9F9F;
  border-radius: 60px 0 60px 0;
  padding: 35px 40px 25px;
  text-decoration: none;
  color: #696969;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .m-bottom-nav__card {
    padding: 30px 30px 20px;
    border-radius: 40px 0 40px 0;
  }
}

.m-bottom-nav__card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.m-bottom-nav__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #696969;
}

.m-bottom-nav__text {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #696969;
}

.m-bottom-nav__link {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-bottom: 15px;
}

.m-bottom-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 1px;
  background-color: #9F9F9F;
}

/* ========================================
    トップページ
    ======================================== 
*/
.top-concept {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .top-concept {
    padding: 120px 0 60px;
    padding: 50px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .top-concept {
    padding: 40px 0;
    margin-top: 20px;
  }
}

.top-concept__inner {
  position: relative;
  max-width: 100%;
}

.top-concept__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .top-concept__content {
    flex-direction: column;
    gap: 30px;
  }
}

.top-concept__img-left {
  width: clamp(100px, 30vw, 700px);
  flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .top-concept__img-left {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .top-concept__img-left {
    width: 100%;
    max-width: 400px;
    margin: 0;
  }
}

.top-concept__img-left img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .top-concept__img-left img {
    width: 80%;
    aspect-ratio: 400/280;
    margin: 0 0 0 auto;
    object-fit: cover;
  }
}

.top-concept__text-box {
  flex: 1;
  padding-top: 40px;
  max-width: 600px;
  margin: 0 40px;
}

@media (max-width: 768px) {
  .top-concept__text-box {
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }
}

.top-concept__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #696969;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .top-concept__title {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 500;
  }
}

.top-concept__text {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .top-concept__text {
    margin-bottom: 30px;
    text-align: left;
  }
}

.top-concept__text p {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .top-concept__text p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 15px;
  }
}

.top-concept__text p:last-child {
  margin-bottom: 0;
}

.top-concept__links {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .top-concept__links {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .top-concept__links {
    flex-direction: column;
  }
}

.top-concept__link a {
  min-width: 180px;
}

/* .top-concept__link は m-btn-wrapper に統合済み */

.top-concept__img-right {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: -40px;
}

@media (max-width: 768px) {
  .top-concept__img-right {
    width: 100%;
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
    justify-content: flex-end;
  }
}

.top-concept__img-right img {
  width: 100%;
  height: auto;
  display: block;
}

.top-concept__img-right-top {
  width: 100%;
}

@media (max-width: 768px) {
  .top-concept__img-right-top {
    width: calc(50% - 10px);
    max-width: 200px;
  }
}

.top-concept__img-right-bottom {
  width: clamp(100px, 25vw, 600px);
  margin-left: -20%;
}

@media screen and (max-width: 1080px) {
  .top-concept__img-right-bottom {
    width: 80%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .top-concept__img-right-bottom {
    width: calc(50% - 10px);
    max-width: 220px;
    margin-left: 0;
  }
}

/* top-service */
.top-service {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-service {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .top-service {
    padding: 40px 0;
  }
}

.top-service__bg-text {
  position: relative;
  top: inherit;
  left: inherit;
  transform: none;
}

.top-service__inner {
  max-width: 100%;
}

.top-service__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .top-service__content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .top-service__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.top-service__img-left {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

@media (max-width: 768px) {
  .top-service__img-left {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }
}

.top-service__img-left img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .top-service__img-left img {
    width: 100%;
    aspect-ratio: auto;
    margin: 0;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .top-service__img-left img {
    display: none;
  }
}

.top-service__img-left-top {
  width: 100%;
}

@media (max-width: 768px) {
  .top-service__img-left-top {
    width: 100%;
    max-width: none;
  }
}

.top-service__img-left-bottom {
  width: 80%;
  margin-left: 20%;
}

@media (max-width: 768px) {
  .top-service__img-left-bottom {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

.top-service__text-box {
  flex: 1;
  padding-top: 100px;
  max-width: 450px;
  margin: 0 40px;
}

@media (max-width: 768px) {
  .top-service__text-box {
    padding-top: 0;
    margin: 0;
    width: 100%;
    grid-column: 2;
  }
}

.top-service__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #696969;
}

@media (max-width: 768px) {
  .top-service__title {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .top-service__title {
    text-align: left;
  }
}

.top-service__list {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .top-service__list {
    margin-bottom: 30px;
  }
}

.top-service__item {
  border-bottom: 1px solid #9F9F9F;
  -webkit-font-smoothing: antialiased;
}

.top-service__item a {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  transition: opacity 0.3s;
  text-decoration: none;
  color: inherit;
}

.top-service__item a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .top-service__item a {
    gap: 20px;
    padding: 15px 0;
  }
}

.top-service__item:first-child {
  border-top: 1px solid #9F9F9F;
}

.top-service__item-num {
  font-size: 24px;
  font-weight: 500;
  color: #696969;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .top-service__item-num {
    font-size: 20px;
  }
}

.top-service__item-text {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}

@media (max-width: 768px) {
  .top-service__item-text {
    font-size: 16px;
  }
}

.top-service__link-wrapper {
  display: flex;
  justify-content: flex-end;

}

.top-service__img-right {
  width: clamp(100px, 30vw, 700px);
  flex-shrink: 0;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .top-service__img-right {
    width: 40vw;
    max-width: none;
    margin: 0px 0 0 auto;
    grid-column: 2;
  }
}

.top-service__img-right img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .top-service__img-right img {
    margin-top: 30px;
    aspect-ratio: 350/230;
    object-fit: cover;
    width: 80%;
  }
}

/* top-works */
.top-works {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-works {
    padding: 60px 0;
  }
}

.top-works__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

@media (max-width: 768px) {
  .top-works__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.top-works__side {
  width: fit-content;
  flex-shrink: 0;
  position: relative;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .top-works__side {
    width: 100%;
    padding-top: 20px;
    text-align: left;
  }
}

.top-works__title-box {
  margin-bottom: 60px;
  padding-left: 80px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .top-works__title-box {
    margin-bottom: 30px;
    padding-left: 0;
    text-align: left;
  }
}

.top-works__title {
  font-size: 20px;
  font-weight: 500;
  color: #696969;
  display: inline-block;
  vertical-align: middle;
}

.top-works__title-en {
  font-family: "EB Garamond", sans-serif;
  font-size: 14px;
  color: #BDBDBD;
  margin-left: 15px;
  vertical-align: middle;
}

.top-works__nav {
  list-style: none;
  padding-left: 80px;
}

@media (max-width: 768px) {
  .top-works__nav {
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
}

.top-works__nav-item {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .top-works__nav-item {
    margin-bottom: 0;
  }
}

.top-works__nav-item a {
  text-decoration: none;
  font-size: 15px;
  color: #696969;
  transition: opacity 0.3s, border-bottom-color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.top-works__nav-item a:hover {
  opacity: 0.6;
  border-bottom-color: #696969;
}

.top-works__nav-item.is-active a {
  color: #BDBDBD;
  font-family: "EB Garamond", sans-serif;
}

.top-works__main {
  flex: 1;
}

.top-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  transition: opacity 0.3s;
}

.top-works__list.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .top-works__list {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .top-works__list {
    grid-template-columns: 1fr;
  }
}

.top-works__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.top-works__item-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;

}

@media screen and (max-width: 480px) {
  .top-works__item-img {
    margin-bottom: 0;
  }
}

.top-works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.top-works__item-link:hover .top-works__item-img img {
  transform: scale(1.05);
}

.top-works__item-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: #696969;
  padding: 10px 25px 10px 20px;
  font-size: 14px;
  z-index: 1;
  border-radius: 0 0 25px 0;
}

.top-works__item-meta {
  padding: 20px 0 15px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
  font-size: 16px;
  color: #696969;
  opacity: 0.7;
  border-bottom: 1px solid #696969;
}

.top-works__item-cat {}

.top-works__item-sep {
  color: #696969;
  font-weight: 300;
}

.top-works__item-body {
  margin-bottom: 15px;
}

.top-works__item-title {
  padding: 15px 0 10px;
  font-size: 18px;
  line-height: 1.6;
  color: #696969;
  text-align: left;
}

/* .top-works__more は m-btn-wrapper に統合済み */

/* top-infinite-slider */
.top-infinite-slider {
  margin: 80px 0;
}

.top-infinite-slider .splide__slide img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .top-infinite-slider {
    margin: 40px 0;
  }
}

/* top-event */
.top-event {
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-event {
    padding: 60px 0 100px;
  }
}

@media screen and (max-width: 480px) {
  .top-event {
    padding: 40px 0 60px;
  }
}

.top-event__header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 480px) {
  .top-event__header {
    margin-bottom: 30px;
  }
}

.top-event__bg-text {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.top-event__title-ja {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  position: relative;
  z-index: 2;
  /* c-bg-textの下に配置 */
}

.top-event__banner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 100px;
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-event__banner:hover {
  opacity: 0.95;
}

.top-event__img {
  border-radius: 60px;
  /* デザイン通りの大きな角丸 */
  overflow: hidden;
  aspect-ratio: 1000/440;
}

@media (max-width: 768px) {
  .top-event__img {
    aspect-ratio: 16/9;
    border-radius: 30px;
  }
}

.top-event__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.top-event__banner:hover .top-event__img img {
  transform: scale(1.02);
}

.top-event__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  background: #fff;
  padding: 60px 80px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

@media (max-width: 768px) {
  .top-event__info {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: -60px;
    margin-bottom: 40px;
    padding: 40px 20px;
    border-radius: 30px;
  }
}

.top-event__info-title {
  font-size: 22px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 35px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .top-event__info-title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.top-event__info-list {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  color: #696969;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .top-event__info-list {
    font-size: 14px;
  }
}

.top-event__info-item {
  display: flex;
  margin-bottom: 10px;
}

.top-event__info-item dt {
  width: 5em;
  flex-shrink: 0;
  font-weight: 400;
}

.top-event__info-item dd {
  margin: 0;
}

/* .top-event__more は m-btn-wrapper に統合済み */

/* top-news */
.top-news {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .top-news {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .top-news {
    padding: 40px 0;
  }
}

.top-news__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

@media (max-width: 768px) {
  .top-news__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.top-news__side {
  width: fit-content;
  flex-shrink: 0;
  position: relative;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .top-news__side {
    width: 100%;
    padding-top: 20px;
  }
}

.top-news__title-box {
  margin-bottom: 40px;
  padding-left: 80px;
}

@media (max-width: 768px) {
  .top-news__title-box {
    margin-bottom: 25px;
    padding-left: 0;
  }
}

.top-news__title {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}

.top-news__nav {
  list-style: none;
  padding-left: 80px;
}

@media (max-width: 768px) {
  .top-news__nav {
    padding-left: 0;
    display: flex;
    gap: 20px;
  }
}

.top-news__nav-item {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .top-news__nav-item {
    margin-bottom: 0;
  }
}

.top-news__nav-item a {
  text-decoration: none;
  font-size: 14px;
  color: #696969;
  transition: opacity 0.3s, border-bottom-color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.top-news__nav-item a:hover {
  opacity: 0.6;
  border-bottom-color: #696969;
}

.top-news__nav-item.is-active a {
  color: #BDBDBD;
  font-family: "EB Garamond", sans-serif;
}

.top-news__main {
  flex: 1;
}

.top-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .top-news__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 480px) {
  .top-news__list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.top-news__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.top-news__item-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}

.top-news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.top-news__item-link:hover .top-news__item-img img {
  transform: scale(1.05);
}

.top-news__item-body {
  display: flex;
  flex-direction: column;
}

.top-news__item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.top-news__item-date {
  font-size: 14px;
  color: #9F9F9F;
  font-family: "EB Garamond", sans-serif;
}

@media (max-width: 768px) {
  .top-news__item-date {
    font-size: 12px;
  }
}

.top-news__item-separator {
  width: 1px;
  height: 14px;
  background-color: #9F9F9F;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .top-news__item-separator {
    height: 12px;
  }
}

.top-news__item-category {
  font-size: 14px;
  color: #9F9F9F;
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s;
}

.top-news__item-link:hover .top-news__item-category {
  border-bottom-color: #9F9F9F;
}

@media (max-width: 768px) {
  .top-news__item-category {
    font-size: 12px;
  }
}

.top-news__item-divider {
  width: 100%;
  height: 1px;
  background-color: #9F9F9F;
  margin-bottom: 12px;
}

.top-news__item-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
}



/* .top-news__more は m-btn-wrapper に統合済み */

.top-instagram {
  padding: 100px 0;
}

.top-instagram__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.top-instagram__title {
  font-family: "EB Garamond", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #EEEEEE;
}

.top-instagram__button {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .top-instagram {
    padding: 60px 0;
  }

  .top-instagram__header {
    margin-bottom: 30px;
  }

  .top-instagram__title {
    font-size: 40px;
  }

  .top-instagram__button.u-sp-only {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
}


/* ========================================
    下層ページ共通レイアウト
    ======================================== */
.l-sub-page {
  padding: 140px 0;
}



.service-page {
  padding-top: 180px;
}

@media (max-width: 768px) {
  .service-page {
    padding-top: 140px;
  }
}


@media (max-width: 768px) {
  .l-sub-page--70 {
    padding: 70px 0;
  }
}

/* ========================================
    ABOUTページ
    ======================================== */
.about-intro__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about-intro__inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.about-intro__content {
  flex: 1;
}

.about-intro__subheading {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 60px;
  margin-top: 120px;
  color: #474747;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1000px) {
  .about-intro__subheading {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .about-intro__subheading {
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 0px;
  }
}

.about-intro__subheading br {
  display: none;
}

@media screen and (max-width: 1080px) {
  .about-intro__subheading br {
    display: block;
  }
}

.about-intro__lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #696969;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .about-intro__lead {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.about-intro__text {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

@media (max-width: 768px) {
  .about-intro__text {
    font-size: 14px;
    line-height: 2;
  }
}

.about-intro__text p {
  margin-bottom: 2em;
}

.about-intro__text p:last-child {
  margin-bottom: 0;
}

.about-intro__images {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro__image {
  aspect-ratio: 16/9;
}

.about-intro__image--01 {
  width: 80%;
}

.about-intro__image--02 {
  transform: translateX(15%);
}

@media screen and (max-width: 768px) {
  .about-intro__image--02 {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .about-intro__images {
    flex-direction: row;
    gap: 12px;
  }

  .about-intro__image {
    flex: 1;
  }

  .about-intro__image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}

.about-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 代表メッセージ */
.about-message {
  padding-top: 100px;
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .about-message {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}

.about-message__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1024px) {
  .about-message__inner {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-message__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}

.about-message__img {
  flex: 0 0 45%;
}

@media (max-width: 768px) {
  .about-message__img {
    flex: none;
    width: 100%;
  }
}

.about-message__img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-message__content {
  flex: 1;
}

.about-message__content .m-section-title {
  margin-bottom: 40px;
}

.about-message__content .m-section-title::after {
  display: none;
}

.about-message__content .m-section-title__text {
  font-size: 20px;
  color: #9D9087;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

.about-message__text {
  font-size: 15px;
  line-height: 2.4;
  color: #707070;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .about-message__text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
  }
}

.about-message__text p {
  margin-bottom: 2em;
}

.about-message__text p:last-child {
  margin-bottom: 0;
}

.about-message__signature {
  text-align: right;
  font-size: 16px;
  color: #696969;
}

/* 会社概要 */
.about-company {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .about-company {
    margin-bottom: 80px;
  }
}

/* アクセス */
.about-access__map {
  width: 100%;
  height: 400px;
}

.about-access__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .about-access__map {
    height: 300px;
  }
}

/* FLOWページ */
.flow-intro {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .flow-intro {
    margin-bottom: 80px;
  }
}

.flow-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1080px) {
  .flow-intro__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.flow-intro__content {
  flex: 1;
  padding-left: calc((100vw - 1200px) / 2 + 25px);
  padding-right: 80px;
}

@media (max-width: 1250px) {
  .flow-intro__content {
    padding-left: 25px;
  }
}

@media (max-width: 768px) {
  .flow-intro__content {
    padding: 0 20px;
    width: 100%;
  }
}

.flow-intro__text {
  margin-top: 40px;
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

@media (max-width: 768px) {
  .flow-intro__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
  }
}

.flow-intro__text p {
  margin-bottom: 1.5em;
}

.flow-intro__text p:last-child {
  margin-bottom: 0;
}

.flow-intro__img {
  width: 45vw;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .flow-intro__img {
    width: 100%;
    margin-bottom: 40px;
  }
}

.flow-intro__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1080px) {
  .flow-intro__img img {
    aspect-ratio: 1/.4;
  }
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 600px) {
  .policy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.policy__content {
  line-height: 1.75;
}

.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .policy__content .wp-block-heading {
    font-size: 18px;
    margin-top: 0px;
  }
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
  font-size: 15px;
  margin-bottom: 54px;
}

@media (max-width: 600px) {

  .policy__content p,
  .policy__content a,
  .policy__content li {
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact-page {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .contact-page {
    padding-bottom: 80px;
  }
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.contact-intro p {
  font-size: 14px;
  line-height: 2;
  color: #696969;
  margin-bottom: 1em;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-intro {
    margin-bottom: 60px;
  }

  .contact-intro p {
    font-size: 13px;
  }
}

.contact-section-title {
  border-bottom: 1px solid #696969;
  padding-bottom: 15px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.contact-section-title__text {
  font-size: 22px;
  font-weight: 500;
  color: #696969;
}

@media (max-width: 768px) {
  .contact-section-title {
    margin-bottom: 30px;
  }

  .contact-section-title__text {
    font-size: 18px;
  }
}

/* 電話・LINEセクション */
.contact-sns {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .contact-sns {
    margin-bottom: 80px;
  }
}

.contact-sns__items {
  display: flex;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 600px) {
  .contact-sns__items {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}

.contact-sns__item {
  text-align: center;
  flex: 0 0 450px;
  max-width: 100%;
}

@media screen and (max-width: 1080px) {
  .contact-sns__item {
    flex: 0 0 360px;
  }
}

@media (max-width: 768px) {
  .contact-sns__item {
    flex: 1;
    width: 100%;
  }
}

.contact-sns__title {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .contact-sns__title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.contact-sns__box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  border-radius: 40px 0 40px 0;
  text-decoration: none;
  transition: opacity 0.3s;
  color: #fff;
  margin-bottom: 15px;
}

.contact-sns__box:hover {
  opacity: 0.8;
}

.contact-sns__box--tel {
  background-color: #9D9087;
  gap: 15px;
}

.contact-sns__box--line {
  background-color: #00C14D;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-sns__box {
    height: 80px;
    border-radius: 30px 0 30px 0;
  }
}

.contact-sns__label {
  font-size: 16px;
  font-weight: 700;
}

.contact-sns__number {
  font-size: 36px;
  font-weight: 500;
  font-family: "EB Garamond", sans-serif;
}

@media (max-width: 768px) {
  .contact-sns__number {
    font-size: 28px;
  }
}

.contact-sns__line-text {
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-sns__line-text {
    font-size: 24px;
  }
}

.contact-sns__line-btn {
  background-color: #fff;
  color: #00C14D;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .contact-sns__line-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.contact-sns__time {
  font-size: 13px;
  color: #696969;
}

/* メールフォームセクション */
.contact-form-intro {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.contact-form-intro p {
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
  margin-bottom: 0.5em;
}

.contact-form-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-form-intro {
    margin-bottom: 40px;
  }

  .contact-form-intro p {
    font-size: 13px;
  }
}

.contact__form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.form-unit {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .form-unit {
    margin-bottom: 30px;
  }
}

.form-unit__head {
  -webkit-font-smoothing: antialiased;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .form-unit__head {
    font-size: 15px;
  }
}

.m-required::after {
  content: "必須";
  display: inline-block;
  background-color: #E50012;
  color: #fff;
  font-size: 10px;
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: middle;
  font-weight: 700;
}

.form-unit__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-unit__radio .wpcf7-list-item {
  margin: 0 !important;
  flex: 0 0 calc((100% - 24px) / 3);
}

@media (max-width: 768px) {
  .form-unit__radio .wpcf7-list-item {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

.form-unit__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
}

.form-unit__radio .wpcf7-list-item label input {
  display: none;
}

.form-unit__radio .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 14px;
  color: #333;
}

.form-unit__radio .wpcf7-list-item label:hover {
  border-color: #9D9087;
}

.form-unit__radio .wpcf7-list-item label input:checked+.wpcf7-list-item-label,
.form-unit__radio .wpcf7-list-item label:has(input:checked) {
  background-color: #9D9087;
  border-color: #9D9087;
}

.form-unit__radio .wpcf7-list-item label input:checked+.wpcf7-list-item-label .wpcf7-list-item-label,
.form-unit__radio .wpcf7-list-item label:has(input:checked) .wpcf7-list-item-label {
  color: #fff;
}

.form-unit__input,
.form-unit__textarea {
  width: 100%;
  background-color: #F8F7F5;
  border: 1px solid #DEDEDE;
  padding: 15px 20px;
  font-size: 14px;
  color: #333;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-unit__input::placeholder,
.form-unit__textarea::placeholder {
  color: #BDBDBD;
}

.form-unit__input:focus,
.form-unit__textarea:focus {
  outline: none;
  border-color: #9D9087;
}

@media (max-width: 768px) {

  .form-unit__input,
  .form-unit__textarea {
    padding: 12px 15px;
  }
}

.form-unit__textarea {
  height: 260px;
}

.form-unit__file .wpcf7-file {
  display: none;
}

.form-unit__file-label {
  display: inline-block;
  background-color: #666;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 15px;
  cursor: pointer;
  margin-left: 10px;
}

.form-consent {
  margin: 60px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .form-consent {
    margin: 40px 0;
  }
}

.form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.form-consent .form-checkbox {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-consent .form-unit__policy-link {
  color: #333;
  text-decoration: underline;
}

.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: 100%;
  height: 54px;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #DEDEDE;
  border-radius: 30px 0 30px 0;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  text-align: center;
}

.wpcf7-submit:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

@media (max-width: 768px) {
  .wpcf7-submit {
    width: 100%;
    height: 50px;
  }
}

.wpcf7-response-output {
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
  text-align: center;
  font-size: 14px;
  color: #E50012;
}

.contact-confirm .m-required::after {
  display: none;
}

.contact-confirm .form-unit__input-wrap,
.contact-confirm .form-unit__textarea-wrap {
  background-color: #F8F7F5;
  border: 1px solid #DEDEDE;
  padding: 15px 20px;
  font-size: 15px;
  color: #333;
  border-radius: 8px;
  min-height: 54px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .contact-confirm .form-unit__input-wrap,
  .contact-confirm .form-unit__textarea-wrap {
    padding: 12px 15px;
    font-size: 14px;
    min-height: 50px;
  }
}

.contact-confirm .form-unit__textarea-wrap {
  align-items: flex-start;
  min-height: 150px;
  white-space: pre-wrap;
}

.contact-confirm__info {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #696969;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .contact-confirm__info {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .form-submit-wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}

.form-submit-wrap .wpcf7-submit {
  margin: 0;
  background-color: #9D9087;
  color: #fff;
  border-color: #9D9087;
  width: 300px;
}

.form-submit-wrap .wpcf7-submit:hover {
  background-color: #fff;
  color: #9D9087;
}

@media (max-width: 768px) {
  .form-submit-wrap .wpcf7-submit {
    width: 100%;
    order: 1;
  }
}

.form-submit-wrap .wpcf7-previous {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 100%;
  height: 54px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #DEDEDE;
  border-radius: 30px 0 30px 0;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  text-align: center;
}

.form-submit-wrap .wpcf7-previous:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

@media (max-width: 768px) {
  .form-submit-wrap .wpcf7-previous {
    width: 100%;
    height: 50px;
    order: 2;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
   ▼ お問い合わせ完了（サンクスページ）
   ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.contact-thanks {
  text-align: center;
  padding: 60px 0 120px;
}

@media (max-width: 768px) {
  .contact-thanks {
    padding: 40px 0 80px;
  }
}

.contact-thanks__content {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .contact-thanks__content {
    margin-bottom: 40px;
  }
}

.contact-thanks__message {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #696969;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact-thanks__message {
    font-size: 16px;
  }
}

.contact-thanks__note {
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
}

@media (max-width: 768px) {
  .contact-thanks__note {
    font-size: 13px;
    text-align: left;
  }
}

.contact-thanks__btn-wrap {
  display: flex;
  justify-content: center;
}

.pest-guard-page {
  padding-top: 180px;
}

@media (max-width: 768px) {
  .pest-guard-page {
    padding-top: 120px;
  }
}



.pest-guard-page .container {
  max-width: 1200px;
}

.pest-guard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}



@media (max-width: 768px) {
  .pest-guard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
  }
}

.pest-guard-header__title {
  font-size: 64px;
  color: #696969;
  opacity: 0.3;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .pest-guard-header__title {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .pest-guard-header__title {
    font-size: 28px;
  }
}

.pest-guard-header .m-toc {
  margin-bottom: 0;
  gap: 10px;
}

@media screen and (max-width: 1300px) {
  .m-toc {
    display: none;
  }
}

.pest-guard-intro {
  padding-top: 20px;
}

.pest-guard-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1200px) {
  .pest-guard-intro__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pest-guard-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pest-guard-intro__heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 60px;
  color: #696969;
}

@media (max-width: 1200px) {
  .pest-guard-intro__heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pest-guard-intro__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.pest-guard-intro__subheading {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #696969;
}

@media (max-width: 768px) {
  .pest-guard-intro__subheading {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.pest-guard-intro__text {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

.pest-guard-intro__text p {
  margin-bottom: 1.5em;
}

.pest-guard-intro__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pest-guard-intro__text {
    font-size: 14px;
    line-height: 2;
  }
}

.pest-guard-intro__visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pest-guard-flow,
.pest-guard-timing,
.pest-guard-faq {
  margin-top: 120px;
}

@media (max-width: 768px) {

  .pest-guard-flow,
  .pest-guard-timing,
  .pest-guard-faq {
    margin-top: 80px;
  }
}

.pest-guard-timing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .pest-guard-timing__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pest-guard-timing__title {
  font-size: 32px;
  color: #696969;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .pest-guard-timing__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.pest-guard-timing__text {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

.pest-guard-timing__text p {
  margin-bottom: 1.5em;
}

.pest-guard-timing__text p:last-child {
  margin-bottom: 0;
}

.pest-guard-timing__note,
.pest-guard-flow__note {
  font-size: 12px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .pest-guard-timing__text {
    font-size: 14px;
    line-height: 2;
  }
}

.pest-guard-timing__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.pest-guard-flow__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .pest-guard-flow__list {
    gap: 60px;
    margin-top: 40px;
  }
}

.pest-guard-flow__item {
  display: flex;
  align-items: center;
  gap: 80px;
}

@media (max-width: 768px) {
  .pest-guard-flow__item {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

.pest-guard-flow__content {
  flex: 1;
}

.pest-guard-flow__header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .pest-guard-flow__header {
    gap: 20px;
    margin-bottom: 25px;
  }
}

.pest-guard-flow__num {
  flex: 0 0 80px;
  height: 80px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "EB Garamond", sans-serif;
  font-size: 32px;
  color: #696969;
  font-weight: 400;
}

@media (max-width: 768px) {
  .pest-guard-flow__num {
    flex: 0 0 60px;
    height: 60px;
    font-size: 24px;
  }
}

.pest-guard-flow__item-title {
  font-size: 32px;
  color: #696969;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .pest-guard-flow__item-title {
    font-size: 24px;
  }
}

.pest-guard-flow__text {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

@media (max-width: 768px) {
  .pest-guard-flow__text {
    font-size: 14px;
    line-height: 2;
  }
}

.pest-guard-flow__img {
  flex: 0 0 45%;
}

@media (max-width: 768px) {
  .pest-guard-flow__img {
    flex: 1;
    width: 100%;
  }
}

.pest-guard-flow__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/0.7;
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.8;
  overflow: hidden;
  user-select: none;
}

.comparison-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.comparison-slider__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.comparison-slider__range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
  margin: 0;
}

.comparison-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-slider__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: #7BB36E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-slider__arrows::before,
.comparison-slider__arrows::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.comparison-slider__arrows::before {
  border-right: 6px solid #fff;
  margin-right: 2px;
}

.comparison-slider__arrows::after {
  border-left: 6px solid #fff;
  margin-left: 2px;
}

.event-page {
  padding-bottom: 280px;
  /* フィルターナビゲーション */
  /* イベントリスト */
  /* イベント詳細ページ用スタイル */
  /* -----------------------------------------
     イベント予約フォームのデザイン再現
  ----------------------------------------- */
}

@media (max-width: 768px) {
  .event-page {
    padding-bottom: 80px;
  }
}

.event-page .event-filter {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  list-style: none;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .event-page .event-filter {
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.event-page .event-filter__item {
  font-size: 16px;
  color: #9F9F9F;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}

.event-page .event-filter__item:hover {
  color: #696969;
}

.event-page .event-filter__item.is-active {
  color: #696969;
  font-weight: 500;
}

@media (max-width: 768px) {
  .event-page .event-filter__item {
    font-size: 14px;
  }
}

.event-page .event-list {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

@media (max-width: 768px) {
  .event-page .event-list {
    gap: 60px;
  }
}

.event-page .event-item {
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.event-page .event-item:hover {
  opacity: 0.95;
}

.event-page .event-item__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/600;
  border-radius: 80px 0 80px 0;
  overflow: hidden;
}

.event-page .event-item__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-page .event-item:hover .event-item__visual img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .event-page .event-item__visual {
    aspect-ratio: 3/2;
    border-radius: 40px 0 40px 0;
  }
}

.event-page .event-item__content {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 640px;
  background-color: #fff;
  padding: 50px 60px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

@media (max-width: 768px) {
  .event-page .event-item__content {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: calc(100% - 40px);
    margin: -60px auto 0;
    padding: 40px 20px;
    z-index: 2;
  }
}

.event-page .event-item__title {
  font-size: 24px;
  font-weight: 500;
  color: #696969;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .event-page .event-item__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.event-page .event-item__info {
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
}

@media (max-width: 768px) {
  .event-page .event-item__info {
    margin-bottom: 25px;
  }
}

.event-page .event-item__info-row {
  display: flex;
  font-size: 15px;
  color: #696969;
  line-height: 2.2;
  gap: 0.5em;
}

.event-page .event-item__info-row dt {
  flex-shrink: 0;
  width: 7em;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .event-page .event-item__info-row {
    font-size: 13px;
  }
}

.event-page .event-item__btn {
  margin-top: 20px;
}

.event-page .event-item:hover .m-btn-cut {
  background-color: #9D9087;
  border-color: #9D9087;
  color: #fff;
}

.event-page .event-detail-section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .event-page .event-detail-section {
    margin-bottom: 40px;
  }
}

.event-page .event-detail-section__title {
  font-size: 20px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .event-page .event-detail-section__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.event-page .event-detail-section__content {
  font-size: 16px;
  line-height: 1.8;
  color: #696969;
}

@media (max-width: 768px) {
  .event-page .event-detail-section__content {
    font-size: 14px;
  }
}

.event-page .event-detail-free-text {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .event-page .event-detail-free-text {
    margin-top: 60px;
  }
}

.event-page .event-form-section {
  padding: 100px 0;
  margin: 80px 0px;
  width: 100%;
}

@media (max-width: 768px) {
  .event-page .event-form-section {
    padding: 60px 0px;
    margin: 60px 0px;
  }
}

.event-page .event-form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #DCD5CA;
}

@media (max-width: 768px) {
  .event-page .event-form-container {
    border-radius: 20px;

  }
}

.event-page .event-form-header {
  background-color: #9D9087;
  padding: 35px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .event-page .event-form-header {
    padding: 25px 20px;
  }
}

.event-page .event-form-header__title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .event-page .event-form-header__title {
    font-size: 18px;
  }
}

.event-page .event-form-body {
  padding: 80px 100px;
  background: #FAFAFA;
}

@media (max-width: 768px) {
  .event-page .event-form-body {
    padding: 40px 20px;

  }
}

.event-page .event-form-intro {
  margin-bottom: 60px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 15px;
}

.event-page .event-form-intro__title {
  font-size: 20px;
  color: #999;
  font-weight: 500;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .event-page .event-form-intro__title {
    font-size: 16px;
  }
}

.event-page .form-unit {
  margin-bottom: 40px;
}

.event-page .form-unit__head {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .event-page .form-unit__head {
    font-size: 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.event-page .m-required::after {
  content: "必須";
  background-color: #E50012;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 0;
}

.event-page .event-display {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  background-color: #fff;
  border: 1px solid #BDBDBD;
  border-radius: 10px;
  padding: 18px 25px !important;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
  margin: 0;
}

@media (max-width: 768px) {
  .event-page .event-display {
    padding: 15px;
    font-size: 14px;
    min-height: 50px;
  }
}

.event-page .form-unit__input,
.event-page .form-unit__textarea {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #BDBDBD;
  border-radius: 10px;
  padding: 18px 25px;
  margin: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .event-page .form-unit__input,
  .event-page .form-unit__textarea {
    padding: 15px;
  }
}

.event-page .form-unit__input::placeholder,
.event-page .form-unit__textarea::placeholder {
  color: #BDBDBD;
}

.event-page hr {
  border: none;
  border-top: 1px solid #DEDEDE;
  margin: 60px 0;
}

/* パンくずリスト */
.m-breadcrumb {
  margin-bottom: 30px;
  font-size: 11px;
  color: #9F9F9F;
  letter-spacing: 0.05em;

}

.single-event-posts .m-breadcrumb {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.m-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.m-breadcrumb a:hover {
  text-decoration: underline;
}

.m-breadcrumb span {
  margin: 0 12px;
  font-size: 10px;
  opacity: 0.7;
}

/* ========================================
    WORKS詳細ページ
    ======================================== */
.p-works-detail {
  padding: 120px 0 120px;
  /* Decorative element */
}

@media (max-width: 768px) {
  .p-works-detail {
    padding: 60px 0 80px;
    padding-top: 90px;
  }
}

.p-works-detail__inner {
  position: relative;
}

.p-works-detail__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .p-works-detail__header {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.p-works-detail__header-text {
  flex: 1;
  max-width: 400px;
}

@media (max-width: 768px) {
  .p-works-detail__header-text {
    max-width: 100%;
  }
}

.p-works-detail__title-en {
  font-family: "EB Garamond", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: #ECECEC;
  text-transform: uppercase;
  margin-bottom: 80px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .p-works-detail__title-en {
    font-size: 50px;
    margin-bottom: 40px;
  }
}

.p-works-detail__intro {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .p-works-detail__intro {
    padding-left: 0;
  }
}

.p-works-detail__title-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .p-works-detail__title-ja {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.p-works-detail__title-ja span {
  flex-shrink: 0;
}

.p-works-detail__meta {
  font-size: 14px;
  color: #9F9F9F;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .p-works-detail__meta {
    font-size: 13px;
  }
}

.p-works-detail__date {
  font-family: "EB Garamond", sans-serif;
  letter-spacing: 0.05em;
}

.p-works-detail__tag-wrapper {
  margin-top: 10px;
}

.p-works-detail__tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: #696969;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.p-works-detail__header-img {
  flex: 1;
  margin-right: calc((100% - 100vw) / 2) !important;
  width: calc(100% + (100vw - 100%) / 2) !important;
  max-width: none !important;
}

@media (max-width: 768px) {
  .p-works-detail__header-img {
    width: 100vw !important;
    margin-right: calc((100% - 100vw) / 2) !important;
    margin-left: calc((100% - 100vw) / 2) !important;
  }
}

.p-works-detail__header-img img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.p-works-detail__body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .p-works-detail__body {
    padding: 0;
  }
}

.p-works-detail__sub-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
  margin-bottom: 60px;
  text-align: left;
}

@media (max-width: 768px) {
  .p-works-detail__sub-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.p-works-detail__text {
  font-size: 15px;
  line-height: 2.2;
  color: #696969;
}

@media (max-width: 768px) {
  .p-works-detail__text {
    font-size: 14px;
    line-height: 2;
  }
}

.p-works-detail__text p {
  margin-bottom: 2em;
}

.p-works-detail__text h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
  margin: 2.5rem 0 1.5rem;
}

.p-works-detail__text h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
  margin: 2rem 0 1rem;
}

.p-works-detail__text h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #696969;
  margin: 1.5rem 0 1rem;
}

@media (max-width: 768px) {
  .p-works-detail__text h2 {
    font-size: 20px;
    margin: 2rem 0 1rem;
  }

  .p-works-detail__text h3 {
    font-size: 18px;
    margin: 1.5rem 0 1rem;
  }

  .p-works-detail__text h4 {
    font-size: 16px;
    margin: 1.2rem 0 1rem;
  }
}

@media (max-width: 600px) {
  .p-works-detail__text h2 {
    font-size: 18px;
  }

  .p-works-detail__text h3 {
    font-size: 16px;
  }

  .p-works-detail__text h4 {
    font-size: 14px;
  }
}

.p-works-detail__text p:last-child {
  margin-bottom: 0;
}

.p-works-detail__scroll {
  position: absolute;
  bottom: 25%;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1300px) {
  .p-works-detail__scroll {
    display: none;
  }
}

.p-works-detail__scroll-circle {
  width: 12px;
  height: 12px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  position: relative;
}

.p-works-detail__scroll-line {
  width: 1px;
  height: 200px;
  background-color: #9F9F9F;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2.5s ease-in-out infinite;
}

.p-works-detail__scroll-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #9F9F9F;
  border-bottom: 1px solid #9F9F9F;
  transform: translateX(-50%) rotate(45deg);
}

.wp-block-image img {
  margin-top: 1.5em;
}

@media (max-width: 600px) {
  .wp-block-image img {
    margin-top: 1em;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-pc-only--lg {
  display: block;
}

@media (max-width: 1380px) {
  .u-pc-only--lg {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

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

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}
.codedropz-upload-inner h3{
	font-size:15px;
}
/*# sourceMappingURL=main.css.map */
/*# sourceMappingURL=main.css.map */