/* ----------------------------grobal-------------------------------- */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  line-height: 1.9;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h2 {
  margin: 100px auto;
  margin-bottom: 40px;
  color: #565b5c;
  font-weight: 900;
  font-size: 80px;
  letter-spacing: 5px;
}

h3 {
  margin: 60px auto;
  color: #333;
  font-weight: bold;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.linear {
  background: linear-gradient(transparent 70%, #00a3af 70%);
}

.blue {
  color: #00a3af;
  font-size: 32px;
  font-weight: bold;
}

.blue24 {
  color: #00a3af;
  font-size: 24px;
  font-weight: bold;
}

@font-face {
  font-family: "花鳥風月PB";
  src: url("https://cdn.leafscape.be/kacho/kachoPB_web.woff2") format("woff2");
}

/* -------------------------------header---------------------------------- */
header {
  height: 80px;
  width: 100%;
  position: absolute;
  right: 0;
  z-index: 100;
}

.header-menu {
  display: flex;
  line-height: 80px;
  justify-content: flex-end;
}

.header-menu li {
  padding: 0 30px;
  font-weight: bold;
  letter-spacing: 1.3px;
}
.header-menu li:hover {
  background: #fff;
  color: #000 !important;
  background: #fff;
}
.header-menu li:hover a {
  color: #000;
  -webkit-text-stroke: 0px #000;
  text-decoration: none;
}

.header-menu a {
  color: #fff;
  -webkit-text-stroke: 1px #000;
  paint-order: stroke fill;
  font-size: 20px;
  font-weight: 500;
}
.header-logo {
  padding: 0 30px;
}
.header-logo__link {
  align-items: center;
  text-align: center;
  display: flex;
}
.header-logo__link:hover {
  text-decoration: none;
  opacity: 0.75;
}
.header-logo__text {
  color: #fff;
  padding: 0 24px 0 12px;
  font-size: 28px;
  letter-spacing: 1.3px;
}
.header-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* ドロップダウン */
.header-menu .has-dropdown {
  position: relative;
}

/* ドロップダウン本体（カード用） */
.header-dropdown--cards {
  position: absolute;
  top: 100%;
  left: -150%;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
  padding: 14px;
  width: min(620px, 78vw);
  background: #422d00;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

.header-menu .has-dropdown:hover .header-dropdown--cards,
.header-menu .has-dropdown:focus-within .header-dropdown--cards {
  opacity: 0.95;
  transform: translateY(0);
  pointer-events: auto;
}

.header-subcard {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.header-subcard__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.header-subcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

.header-subcard__title {
  font-size: 16px;
  letter-spacing: .04em;
  white-space: nowrap;
  color: #fff;
}

.header-subcard__title:hover {
 transform: scale(1.04);
}
.header-subcard:hover .header-subcard__img img {
  transform: scale(1.04);
}

/* -------------------------------top---------------------------------- */
.top-box {
  position: relative;
  overflow: hidden;
  font-family: serif;
}
.top-img.video {
  width: 100%;
  height: 100%;
}

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

.top-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.top-texts {
  font-size: 32px;
  color: #fff;
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 20px 0;
  z-index: 3;
}

.top-texts p {
  display: block;
  margin: 0;
}

.consept-jp {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}

.consept-en {
  text-align: center;
}

.slider {
  opacity: 0;
  transition: 3s;
}

.slick-initialized {
  opacity: 1;
}

/* アニメーション */
.reveal {
  opacity: 0;
  transition: opacity 2.5s ease;
}

.reveal.is-visible {
  opacity: 1;
}

.reveal[data-ani="up"] {
  transform: translateY(22px);
}

/* -------------------------------コンセプト----------------------------------- */
.concept {
  background: #422d00;
  padding: clamp(40px, 5vw, 70px) 0 clamp(60px, 6vw, 90px);
  color: #fff;
  overflow: hidden;
  font-family: serif;
}

.concept__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
}

.concept__title {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 32px;
  margin: 0;
  color: #fff;
}

.concept__title-line {
  display: block;
  width: 90px;
  height: 1px;
  background: #fff;
  margin: 16px auto 0;
  color: #fff;
}
.concept-block {
  position: relative;
  min-height: 280px;
  margin-top: clamp(34px, 10vw, 140px);
}

.concept-block__frame {
  position: absolute;
  top: 18px;
  bottom: 18px;
  border: 1px solid #fff;
  pointer-events: none;
}

.concept-block__frame--left {
  left: 0;
  width: min(620px, 70%);
}

.concept-block__frame--right {
  right: 0;
  width: min(620px, 70%);
}

.concept-block__content {
  position: relative;
  z-index: 2;
  width: min(520px, 62%);
  padding: clamp(18px, 2.2vw, 28px);
}

.concept-block__content--left {
  padding: clamp(30px, 4vw, 56px) 28px;
  text-align: center;
}

.concept-block__content--right {
  margin-left: auto;
  padding: clamp(30px, 4vw, 56px) 36px 40px 0;
  text-align: center;
}

.concept-block__heading {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.concept-block__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  font-size: 13px;
  max-width: 42em;
}

.concept-block__media {
  position: absolute;
  z-index: 3;
  right: 0;
  top: -30%;
  width: min(560px, 60%);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.concept-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept-block__media--left {
  left: 0;
  right: auto;
  top: -30%;
  width: min(560px, 60%);
  aspect-ratio: 16 / 9;
}

.concept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 18px;
  width: 160px;
  height: 44px;
  border: 1px solid #fff;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  transform: skewX(-12deg);
}

.concept-btn:hover {
  background: #b08a3b;
  text-decoration: none;
  color: #fff;
    border: 1px solid #b08a3b;
}

.js-rise {
  transform: translateY(60px) !important;
  opacity: 0 !important;
  transition:
    transform 0.9s ease,
    opacity 0.9s ease;
  will-change: transform, opacity;
}
.js-rise.is-inview {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.concept-block--top {
  padding-top: 10px;
}
.concept-block--bottom {
  margin-top: clamp(56px, 10vw, 140px);
  padding-bottom: 18px;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .concept__title {
    font-size: 22px;
  }
  .concept-block {
    padding-top: 10px;
    margin-top: 190px;
    min-height: auto;
  }

  .concept-block__frame {
    width: 90% !important;
    top: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column-reverse;
  }
  .concept-block__frame--right {
    right: 0 !important;
  }

  .concept-block__media,
  .concept-block__media--left {
    position: absolute;
    top: -50%;
    right: 0;
    width: 90%;
    margin: 16px 0 0;
  }

  .concept-block__content {
    width: 100%;
    margin: 0;
    padding: 80px 18px 24px;
  }

  .concept-block__content--left,
  .concept-block__content--right {
    margin: 0;
    width: 90%;
  }
  .concept-block__content--right {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (max-width: 400px) {
  .concept-block__media,
  .concept-block__media--left {
    top: -40%;
  }
}

/* -------------------------------事業紹介----------------------------------- */
.biz {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.biz-hero {
  position: relative;
  display: block;
  height: clamp(320px, 55vh, 560px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.biz-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biz-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.biz-hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 1;
  padding: 24px;
}
.biz-hero__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
}
.biz-hero__line {
  display: block;
  width: 84px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.8);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.biz-card {
  position: relative;
  display: block;
  height: clamp(220px, 32vh, 360px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.biz-card:hover {
  color: #d6d6d6 !important;
}
.biz-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
}
.biz-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.biz-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  place-content: center;
  text-align: center;
  padding: 18px;
}

.biz-card__title {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 24px);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.biz-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(180px, 70%);
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.15);
  letter-spacing: 0.06em;
  font-family: sans-serif;
}

.biz-card__sub {
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

@media (hover: hover) {
  .biz-card:hover .biz-card__overlay {
    background: rgba(0, 0, 0, 0.38);
    color: #fff !important;
  }
}

@media (max-width: 820px) {
  .biz-grid {
    grid-template-columns: 1fr;
  }
  .biz-card {
    height: 240px;
  }
  .biz-hero {
    height: 400px;
  }
}

/* -------------------------------実績紹介----------------------------------- */

.works {
  background: #f7f6f3;
  padding: clamp(48px, 6vw, 80px) 16px;
}

.works__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.works__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.works__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #b08a3b;
}

.works__rule {
  display: inline-block;
  width: 92px;
  height: 1px;
  margin-top: 14px;
  background: #b08a3b;
  opacity: 0.85;
}

.works__grid {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.works__card {
  background: transparent;
  width: 100%;
}

.works__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.works__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.works__link:hover .works__thumb img {
  transform: scale(1.04);
}

.works__link:hover {
  border: none;
  text-decoration: none;
}

.works__body {
  background: #efece3;
  padding: 18px 16px;
  min-height: 64px;
  display: grid;
  place-items: center;
}

.works__name {
  margin: 0;
  text-align: center;
  color: #b08a3b;
  letter-spacing: 0.06em;
  line-height: 1.7;
  font-size: 15px;
}

.works__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 44px);
}

.works__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 54px;
  color: #b08a3b;
  text-decoration: none;
  letter-spacing: 0.08em;
  border: 1px solid #b08a3b;
  background: transparent;
  transform: skewX(-12deg);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.works__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.works__btn span,
.works__btn {
  position: relative;
}
.works__btn {
  position: relative;
}
.works__btn:hover {
  background: #b08a3b;
  color: #fff;
  text-decoration: none;
}
.works__btn {
  font-size: 14px;
}
.works__btn::after {
  content: "";
}
.works__btn {
  padding: 0;
}

.works__btn > span {
  transform: skewX(12deg);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .works__grid {
    grid-template-columns: 1fr;
    display: block;
  }
  .works__body {
    min-height: auto;
    padding: 16px 14px;
  }
  .works__card {
    margin-bottom: 14px;
  }
}

.reveal-card {
  position: relative;
  overflow: hidden;
}

.reveal-card .works__thumb img,
.reveal-card .nav-card__media img {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.reveal-card.is-done .works__thumb img,
.reveal-card.is-done .nav-card__media img {
  opacity: 1;
}

.reveal-card.is-done::before {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.reveal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #422d00;
  transform: translateX(-110%);
  z-index: 5;
}

.reveal-card.is-visible::before {
  animation: wipe 2s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes wipe {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

/* -------------------------------企業情報----------------------------------- */

/* ===== layout ===== */
.nav-cards {
  padding: 0;
  background: #fff;
  max-width: 1000px;
  margin: 64px auto;
}

.nav-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ===== card ===== */
.nav-card {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #111;
}

.nav-card__media {
  position: absolute;
  inset: 0;
  background: #fff;
}

.nav-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease;
  will-change: transform;
}

.nav-card:hover .nav-card__media img {
  transform: scale(1.08);
}

.nav-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

.nav-card__bottom {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.nav-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #fff;
}

.nav-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  background: transparent;
  color: #fff;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  flex: 0 0 auto;
}

.nav-card:hover .nav-card__arrow {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ===== responsive ===== */
@media (max-width: 900px) {
  .nav-cards__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .nav-card {
    height: 650px;
  }
  .nav-card__title {
    font-size: 22px;
  }
  .nav-cards {
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .nav-card {
    height: 450px;
  }
}

/* -------------------------------パンフレット----------------------------------- */

.pamphlets {
  background: #f7f6f3;
  padding: 64px 16px;
}
.pamphlets__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.pamphlets__head {
  text-align: center;
  margin-bottom: 48px;
}
.pamphlets__title {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #b08a3b;
}
.pamphlets__rule {
  display: inline-block;
  width: 92px;
  height: 1px;
  margin-top: 16px;
  background: #b08a3b;
  opacity: 0.85;
}

.pamphlets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pamphlet {
  text-align: center;
}
.pamphlet__img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 18px;
}
.pamphlet__img img {
  width: 100%;
  height: auto;
  display: block;
}

.pamphlet__name {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
}
.pamphlet__desc {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #555;
}

.pamphlet__pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 150px;
  height: 44px;
  border: 1px solid #b08a3b;
  color: #b08a3b;
  text-decoration: none;
  letter-spacing: 0.08em;
  transform: skewX(-12deg);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.pamphlet__pdf > * {
  transform: skewX(12deg);
}
.pamphlet__pdf:hover {
  background: #b08a3b;
  color: #fff;
  text-decoration: none;
}
.pamphlet__icon {
  font-size: 16px;
  line-height: 1;
}

/* Read more（台形） */
.pamphlets__cta {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
.pamphlets__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  border: 1px solid #b08a3b;
  color: #b08a3b;
  text-decoration: none;
  letter-spacing: 0.08em;
  transform: skewX(-12deg);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.pamphlets__more:hover {
  background: #b08a3b;
  color: #fff;
  text-decoration: none;
}

.reveal-brochure {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-brochure.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-brochure[data-ani="up"] {
  transform: translateY(22px);
}

.reveal-brochure[data-ani="left"] {
  transform: translateX(-22px);
}

.reveal-brochure[data-ani="right"] {
  transform: translateX(22px);
}

.reveal-brochure[data-ani="scale"] {
  transform: scale(0.98);
}

[data-stagger] > .reveal-brochure {
  transition-delay: calc(var(--i, 0) * 200ms);
}

/* responsive */
@media (max-width: 1024px) {
  .pamphlets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .pamphlets__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pamphlet__img {
    max-width: 300px;
  }
}
/* -------------------------------パララックス----------------------------------- */

.fixed-hero {
  position: relative;
  min-height: 500px;
  padding: clamp(56px, 6vw, 90px) 16px;
  overflow: hidden;
  color: #fff;
}

.fixed-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("./img/fixed-hero.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-attachment: fixed;
}

.fixed-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.fixed-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
}

.fixed-hero__grid {
  gap: clamp(22px, 3vw, 60px);
  align-items: center;
}

.fixed-hero__big {
  margin: 0;
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.fixed-hero__line {
  display: inline-block;
  width: 78%;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.fixed-hero__lead {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
}
.fixed-hero__quote {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.fixed-hero__text {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* responsive */
@media (max-width: 900px) {
  .fixed-hero__grid {
    grid-template-columns: 1fr;
  }
  .fixed-hero__line {
    width: 220px;
  }
  .fixed-hero__bg {
    background-attachment: scroll;
  }
}

/* -------------------------------about----------------------------------- */
#about {
  padding-bottom: 120px;
}

.about-box {
  display: flex;
  margin-bottom: 60px;
}

.about-texts {
  width: 57%;
  padding: 0 30px;
  order: 1;
}

.about-texts p {
  line-height: 1.9;
}

.about-text p {
  line-height: 1.9;
}

.about-text {
  padding: 0 30px;
}

.about-read {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.about-img {
  width: 43%;
  position: relative;
  order: 2;
}

.about-img img {
  position: absolute;
  z-index: 2;
}

.about-img-bg {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  width: 410px;
  height: 270px;
  background-color: #00a3af;
}

/* -------------------------------services----------------------------------- */
#services {
  background-color: #f5f4f1;
  padding-bottom: 120px;
}

.service-pet h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f6d3";
  font-weight: 900;
  padding-right: 10px; /*文字との隙間*/
  color: #333; /*アイコンの色*/
  font-size: 40px;
}

.service-pet h3 {
  border-bottom: solid 3px #333;
  position: relative;
  padding-bottom: 15px;
}

.service-pet h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #00a3af;
  bottom: -3px;
  width: 25%;
}

.fz18 p {
  font-size: 18px;
  line-height: 1.7;
}

.pet-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px;
}

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

.pet-area {
  width: 470px;
  margin: 10px;
}

.pet-description {
  text-align: center;
  margin-top: 10px;
}

button {
  width: 380px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 1px 1px 6px#c0c0c0;
  margin-top: 30px;
}

button a {
  color: #fff;
  text-decoration: none;
}

button:hover {
  opacity: 0.5;
}

button:hover a {
  color: #fff;
  text-decoration: none;
}

.bnt-yellow {
  background-color: #f0aa3f;
}

.bnt-green {
  background-color: #15a8c0;
}

.instagram img {
  width: 50px;
  height: 50px;
  margin: 30px;
}

.instagram img:hover {
  opacity: 0.5;
}

/* -------------------------------company----------------------------------- */
#company {
  padding-bottom: 120px;
}

.company-box {
  display: flex;
  padding: 60px 0;
  font-size: 18px;
}

.company-bacic {
  width: 45%;
}

.company-bacic dt {
  float: left;
  margin-bottom: 20px;
}

.company-bacic dd {
  margin-left: 80px;
  margin-bottom: 20px;
}

.company-bacic a {
  color: #333;
}

.company-bacic a:hover {
  color: #333;
}

.company-relation {
  width: 55%;
  position: relative;
}

.company-business-title {
  margin-bottom: 0;
  font-weight: bold;
}

.company-business li {
  padding-bottom: 7px;
  line-height: 1.5;
}

.tel-number {
  color: #333;
}

.tel-number:hover {
  color: #333;
  text-decoration: none;
}

.company-business dt {
  margin-top: 25px;
}

.company-business dt:first-of-type {
  margin-top: 0;
}

.greeting-box {
  display: flex;
  margin-bottom: 60px;
}

.greeting-img {
  width: 35%;
  order: 2;
}

.greeting-text {
  width: 65%;
  padding-right: 30px;
  order: 1;
}

.greeting-texts {
  font-size: 16px;
  line-height: 1.8;
}

.greeting-img2 {
  width: 19%;
}

.greeting-text2 {
  width: 81%;
  padding-left: 30px;
}

.greeting-texts h3 {
  position: relative;
  padding: 0 25px 5px 25px;
  display: inline-block;
  margin: 0 0 30px 0;
}

.greeting-texts h3:before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(0, 163, 175);
}

.greeting-texts h3:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px rgb(0, 163, 175);
}

.font {
  font-family: "花鳥風月PB", sans-serif;
  font-size: 24px;
  padding-top: 10px;
  padding-right: 40px;
  text-align: right;
}

/* -------------------------------access----------------------------------- */
#access {
  background-color: #f5f4f1;
  padding-bottom: 60px;
}

#access h2 {
  margin-top: 60px;
}

.access-box {
  display: flex;
}

.access-img {
  width: 60%;
  order: 2;
}

.access-texts {
  width: 40%;
  order: 1;
  padding-top: 40px;
}

.access-text {
  margin-bottom: 40px;
}

.access-title {
  font-size: 20px;
  margin-bottom: 5px;
}

/* -------------------------------contact---------------------------------- */
:root {
  --base: #f7f6f3;
  --dark: #422d00;
  --gold: #b08a3b;
  --white: #fff;
}

.contact-cta {
  background: var(--base);
  padding: clamp(36px, 4vw, 64px) 16px;
}

.contact-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 14px;
  border: 1px solid rgba(66, 45, 0, 0.12);
  background: linear-gradient(
    135deg,
    rgba(176, 138, 59, 0.07),
    rgba(255, 255, 255, 0.6)
  );
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}

.contact-cta__title {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--dark);
  font-weight: 800;
}

.contact-cta__lead {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
}

.contact-cta__center {
  display: flex;
  justify-content: center;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(520px, 100%);
  padding: 18px 26px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(66, 45, 0, 0.16);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
}

.contact-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(66, 45, 0, 0.22);
  text-decoration: none;
  color: #c4c4c4;
}

.contact-cta__btn:active {
  transform: translateY(0);
  opacity: 0.95;
}

.contact-cta__btnIcon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
}

.contact-cta__right {
  text-align: right;
}

.contact-cta__label {
  margin: 0 0 6px;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
}

.contact-cta__tel {
  display: inline-block;
  margin: 0 0 6px;
  color: var(--gold);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.contact-cta__tel:hover {
  text-decoration: none;
  color: rgb(95, 66, 5);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-cta__center {
    justify-content: flex-start;
  }

  .contact-cta__btn {
    min-width: 100%;
  }

  .contact-cta__right {
    text-align: center;
  }
}

/* -------------------------------footer-info------------------------------- */
.footer-info {
  background-color: #422d00;
  color: #fff;
  font-size: 14px;
  padding: 60px 0;
}

.footer-info-box {
  display: flex;
  justify-content: space-between;
}

.footer-title {
  font-size: 20px;
  font-weight: bold;
}

.footer-menu li {
  padding: 5px 0;
  font-weight: bold;
  letter-spacing: 1.3px;
}

.footer-menu a {
  color: #fff;
}

.tel-link {
  color: #fff;
  text-decoration: none;
}

.tel-link:hover {
  color: #fff;
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 0px;
  z-index: 1;
}

.page-top {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #707070;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.8;
}

.scroll-top a:hover {
  text-decoration: none;
  cursor: pointer;
}

.page-top:hover {
  opacity: 0.5;
}

/* -------------------------------footer---------------------------------- */

footer {
  height: 60px;
  line-height: 60px;
  background-color: #422d00;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid #e6e6e6;
}
