@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    box-sizing: border-box;
  }
}
html,
body {
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

@font-face {
  font-family: "PT Sans";
  src: local("PT Sans");
  unicode-range: U+0020-007E, U+00A0-00FF;
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT Sans", "Noto Sans JP", serif;
  font-weight: 400;
  color: #2c2c2c;
  background-color: #062805;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

main {
  width: 100% !important;
}

.mv,
.hero,
.works,
.about,
.skill,
.footer {
  width: 100% !important;
  max-width: none !important;
}

html,
body {
  width: 100% !important;
  max-width: none !important;
  overflow-x: hidden;
  background-color: #f1e6dc;
}

.l-inner {
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-down {
  padding-bottom: 5rem;
  position: absolute;
  left: 50%;
  font-size: 1rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .scroll-down {
    margin-top: 40px;
  }
}

.scroll-down::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 1px;
  height: 3.75rem;
  background: #333;
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.tag-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #2F5D50;
}
@media screen and (min-width: 768px) {
  .tag-text {
    font-size: 0.9375rem;
  }
}

.section-title {
  font-size: clamp(5rem, 3.814rem + 5.93vw, 9.375rem);
  font-weight: normal;
  color: transparent;
  -webkit-text-stroke: 2px #8d8479;
  margin-bottom: 20px;
}

.section-title span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  color: #2F5D50;
}

.works-list__title {
  padding-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: start;
  font-weight: 700;
  color: #2c2c2c;
}
@media screen and (min-width: 768px) {
  .works-list__title {
    padding-bottom: 1.5625rem;
    font-size: 1.5rem;
  }
}

.works-list__title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.625rem;
  color: #2c2c2c;
}
@media screen and (min-width: 768px) {
  .works-list__title span {
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}

.more-btn {
  position: relative;
  display: block;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #3b3b3b;
  margin-right: 20px;
  margin-top: 10px;
  width: 64px;
}
@media screen and (min-width: 768px) {
  .more-btn {
    margin-top: 100px;
    width: 86px;
  }
}

.about__more {
  display: flex;
  justify-content: end;
}

/* 円 */
.more-btn__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #efe6dc;
  position: relative;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}
@media screen and (min-width: 768px) {
  .more-btn__circle {
    width: 86px;
    height: 86px;
  }
}

/* SVGリング */
.more-btn__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.more-btn__ring circle {
  fill: none;
  stroke: #1f2a44;
  stroke-width: 1;
  stroke-linecap: round;
  /* 円周 ≒ 276 */
  stroke-dasharray: 276;
  /* 少し欠けたリング */
  stroke-dashoffset: 276;
  transition: stroke-dashoffset 0.6s ease;
}

/* 矢印 */
.more-btn__arrow {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .more-btn__arrow {
    font-size: 16px;
  }
}

/* more文字 */
.more-btn__text {
  position: absolute;
  left: -8px;
  bottom: -4px;
  font-size: 12px;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .more-btn__text {
    font-size: 16px;
    left: -10px;
    bottom: -6px;
  }
}

/* hover */
.more-btn:hover .more-btn__circle,
.more-btn.is-active .more-btn__circle {
  background: transparent;
}

.more-btn:hover circle,
.more-btn.is-active circle {
  stroke-dashoffset: 0;
}

.mv {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 85vh, 1000px);
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__title-wrap {
    top: 50%;
    left: 50%;
    right: calc(50% - min(50vw, 34.375rem));
    left: auto;
    transform: translateY(-50%);
    width: initial;
    text-align: right;
    max-width: 37.5rem;
  }
}

.mv__main-title {
  font-size: 30px;
  color: #2c2c2c;
  text-align: end;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .mv__main-title {
    font-size: 80px;
  }
}

.mv__sub-title {
  margin-top: 20px;
  font-size: 20px;
  color: #062805;
  text-align: end;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    font-size: 35px;
  }
}

.mv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv__img picture {
  width: 100%;
  height: 100%;
  display: block;
}

.mv__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
  .mv__inner {
    height: auto;
  }
  .mv__img {
    position: relative;
    inset: auto;
    height: auto;
  }
  .mv__img picture {
    height: auto;
  }
  .mv__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.paw-trail {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 220px;
  height: 120px;
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .paw-trail {
    width: 240px;
    height: 130px;
  }
}

.paw {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  animation: pawStep 3.4s ease-in-out infinite;
}
.paw::before, .paw::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(145, 123, 103, 0.55);
}
.paw::before {
  width: 14px;
  height: 10px;
  left: 4px;
  bottom: 1px;
  transform: rotate(-12deg);
}
.paw::after {
  width: 6px;
  height: 6px;
  left: 0;
  top: 1px;
  box-shadow: 7px -2px 0 rgba(145, 123, 103, 0.55), 14px 1px 0 rgba(145, 123, 103, 0.55);
}

.paw--1 {
  left: 0;
  top: 16px;
  animation-delay: 0s;
  transform: rotate(-18deg);
}

.paw--2 {
  left: 42px;
  top: 50px;
  animation-delay: 0.35s;
  transform: rotate(8deg);
}

.paw--3 {
  left: 88px;
  top: 22px;
  animation-delay: 0.7s;
  transform: rotate(-14deg);
}

.paw--4 {
  left: 136px;
  top: 52px;
  animation-delay: 1.05s;
  transform: rotate(10deg);
}

.paw--5 {
  left: 182px;
  top: 50px;
  animation-delay: 1.4s;
  transform: rotate(-10deg);
}

.paw-flower {
  position: absolute;
  right: 10px;
  top: 60px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(219, 170, 180, 0.9);
  box-shadow: -8px 5px 0 rgba(219, 170, 180, 0.75), 8px 5px 0 rgba(219, 170, 180, 0.75), 0 12px 0 rgba(219, 170, 180, 0.65);
  opacity: 0.95;
  z-index: 3;
  filter: blur(0.2px);
}

@keyframes pawStep {
  0% {
    opacity: 0;
    filter: blur(1px);
  }
  12% {
    opacity: 0.9;
    filter: blur(0);
  }
  32% {
    opacity: 0.85;
  }
  52% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    filter: blur(1px);
  }
}
@media screen and (max-width: 767px) {
  .paw-trail {
    right: 4%;
    bottom: 8%;
    width: 140px;
    height: 80px;
  }
  .paw {
    width: 16px;
    height: 16px;
  }
  .paw::before {
    width: 10px;
    height: 7px;
    left: 3px;
    bottom: 1px;
  }
  .paw::after {
    width: 4px;
    height: 4px;
    left: 0;
    top: 1px;
    box-shadow: 5px -1px 0 rgba(145, 123, 103, 0.55), 10px 1px 0 rgba(145, 123, 103, 0.55);
  }
  .paw--1 {
    left: 0;
    top: 10px;
  }
  .paw--2 {
    left: 28px;
    top: 30px;
  }
  .paw--3 {
    left: 58px;
    top: 16px;
  }
  .paw--4 {
    left: 88px;
    top: 36px;
  }
  .paw--5 {
    left: 116px;
    top: 22px;
  }
}
.header__inner {
  height: inherit;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.125rem;
  }
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #3a3a3a;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #062805;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.header__nav-item a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -30%;
  width: 30%;
  height: 2px;
  background: #062805;
  transition: 0.5s;
  opacity: 0;
}
.header__nav-item a:hover::after {
  transform: scaleX(1);
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  margin-left: auto;
  cursor: pointer;
  transition: 0.3s;
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 40px;
  height: 2px;
  background-color: #333;
  transition: 0.3s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

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

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 14.25rem 0;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 40, 5, 0.95);
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FBFAF7;
  text-align: center;
  text-transform: uppercase;
}

.works__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .works__inner {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    max-width: 93.75rem;
  }
}

.works__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.works__ttl {
  font-weight: normal;
}

.section-title span {
  font-size: 16px;
  color: #062805;
}

.works-list__label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #4a7c59;
}
@media screen and (min-width: 768px) {
  .works-list__label {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item {
    display: flex;
    justify-content: start;
    align-items: stretch;
    margin: 0 auto;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.works-list__item + .works-list__item {
  margin-top: 96px;
}

.works-list__item-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .works-list__item-img {
    max-width: 37.5rem;
    width: 100%;
    flex: 0 1 55%;
  }
}

.works-list__item-img > img,
.works-list__item-img img {
  width: 100%;
  aspect-ratio: 590/462;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .works-list__item-img > img,
  .works-list__item-img img {
    width: 80%;
    max-width: 80%;
    aspect-ratio: 590/462;
  }
}

/* 写真 hover で拡大 */
.works-list__card:hover .works-list__item-img img,
.works-list__card:hover .works-list__item-img > img {
  transform: scale(1.05);
}

.works-list__item-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #2c2c2c;
}
@media screen and (min-width: 768px) {
  .works-list__item-text {
    margin-top: 0;
    width: 100%;
  }
}

.works-list__title {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(even) .works-list__item-text {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(odd) .works-list__item-img {
    margin-left: -2%;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(even) .works-list__item-img {
    margin-right: -2%;
  }
}

/* 右側のテキスト全体 */
@media screen and (min-width: 768px) {
  .works__txt-boxes {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 20px;
  }
}

/* テキスト部分 */
@media screen and (min-width: 768px) {
  .works__txt-box {
    width: 100%;
  }
}

/* ボタンエリア */
@media screen and (min-width: 768px) {
  .works__btn-box {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    padding-top: 1.25rem;
  }
}

/* ボタンそのものを基準にする小さい箱 */
.works__btn-wrap {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

/* ボタン本体 */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

/* =========================
   シマエナガ
========================= */
.works-list__card--animals {
  position: relative;
  display: block;
  overflow: visible;
}

/* 画像をシマエナガより前面に */
.works-list__card--animals .works-list__item-img {
  position: relative;
  z-index: 2;
}

.works-list__card--animals .works-list__item-img > img {
  position: relative;
  z-index: 2;
}

/* 動物本体：初期状態は耳だけ見せる */
.works-list__animals {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(30%) translateY(-49%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* 動物画像 */
.works-list__animals img {
  width: 130px;
  height: auto;
  display: block;
  background-color: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
  border-radius: 0;
  backdrop-filter: none;
}

/* =========================
   PCだけ hover でぴょこ
========================= */
@media (hover: hover) and (pointer: fine) {
  .works-list__card--animals:hover .works-list__animals {
    animation: animalPeekHover 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }
}
/* =========================
   SPでスクロール時に自動ぴょこ
========================= */
.works-list__card--animals.is-show .works-list__animals {
  animation: animalPeekScroll 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

@keyframes animalPeekScroll {
  0% {
    transform: translateX(30%) translateY(-40%);
  }
  70% {
    transform: translateX(30%) translateY(-86%);
  }
  85% {
    transform: translateX(30%) translateY(-79%);
  }
  100% {
    transform: translateX(30%) translateY(-82%);
  }
}
/* =========================
   hover用アニメーション
========================= */
@keyframes animalPeekHover {
  0% {
    transform: translateX(30%) translateY(-40%);
  }
  100% {
    transform: translateX(30%) translateY(-82%);
  }
}
/* =========================
   scroll用アニメーション
========================= */
@keyframes animalPeekScroll {
  0% {
    transform: translateX(30%) translateY(-40%);
  }
  100% {
    transform: translateX(30%) translateY(-82%);
  }
}
.about__inner {
  margin-bottom: 100px;
}

.about__txt-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__txt-img,
.about__txt-box {
  width: 100%;
}

.about__txt-img img {
  display: block;
  width: 90%;
  height: auto;
  margin: auto;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

@media screen and (min-width: 768px) {
  .about__txt-boxes {
    flex-direction: row;
    align-items: center;
    gap: 3.75rem;
  }
  .about__txt-img {
    width: 45%;
    flex-shrink: 0;
  }
  .about__txt-box {
    width: 55%;
  }
}
.about__txt-box {
  display: flex;
  flex-direction: column;
}

.more-link {
  margin-left: auto;
  margin-right: 20px;
  margin-top: 1.25rem;
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 0.375rem;
}

.more-link::after {
  content: " →";
}

.more-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
}

.skill__inner-box-right {
  margin-bottom: 100px;
}

.hero {
  width: 100%;
}

.hero__inner {
  width: calc(100% - 20px);
}

.hero__ttl {
  font-size: clamp(1.5rem, 0.591rem + 4.55vw, 4rem);
  line-height: 1.3;
  color: #bca27f;
}

.hero__txt {
  margin-top: 1.5rem;
  line-height: 1.8;
  font-size: 16px;
  max-width: 500px;
  width: 100%;
}

.hero__txt-first {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
}

@media screen and (min-width: 768px) {
  .hero__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.75rem;
    margin-top: 6.25rem;
  }
  .hero__txt {
    margin-top: 0;
  }
}
.skill {
  margin-bottom: 100px;
}

.skill__inner {
  margin: 3.75rem auto 0;
  padding: 0 3.75rem;
  width: 100%;
  max-width: 75rem;
  margin-bottom: 60px;
}

.p-skill {
  padding: 5rem 1.25rem;
  color: #8d8479;
}
@media screen and (min-width: 768px) {
  .p-skill {
    padding: 7.5rem 2.5rem;
  }
}

.p-skill__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}

.p-skill__cards {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-skill__cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
}

.p-skill-card {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-skill-card {
    width: calc(50% - 1.5rem);
  }
}

.p-skill-card__icon-circle {
  width: 11.25rem;
  height: 11.25rem;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #efe6dc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 230, 220, 0.6);
  box-shadow: 0 8px 20px rgba(180, 170, 150, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-skill-card__icon-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(180, 170, 150, 0.22);
}
@media screen and (min-width: 768px) {
  .p-skill-card__icon-circle {
    width: 13.75rem;
    height: 13.75rem;
  }
}

.p-skill-card__icon {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-skill-card__icon {
    font-size: 3.625rem;
  }
}

.p-skill-card__title {
  margin-top: 2rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-skill-card__title {
    margin-top: 2.5rem;
    font-size: 2.25rem;
  }
}

.p-skill-card__text {
  margin-top: 1.75rem;
  text-align: left;
  font-size: 1.125rem;
  line-height: 2;
  max-width: 29.375rem;
  margin-inline: auto;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-skill-card__text {
    margin-top: 2.5rem;
  }
}

.p-skill-card__tools {
  margin-top: 2.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-inline: auto;
  position: relative;
  padding-left: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-skill-card__tools {
    margin-top: 2.75rem;
  }
}

.p-work-detail,
.p-work-detail * {
  z-index: auto;
}

.p-work-detail {
  background-color: #f1e6dc;
  color: #2c2c2c;
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail {
    padding: 0 4rem;
  }
}

.p-work-detail__hero {
  padding-top: 3.5rem;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail__hero {
    padding-top: 5rem;
    padding-bottom: 2.25rem;
  }
}

.p-work-detail__container {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail__container {
    padding: 0 4rem;
  }
}

.p-work-detail__head {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.p-work-detail__title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail__title {
    font-size: 3.5rem;
  }
}

.p-work-detail__title-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f5f56;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-work-detail__title-sub {
    font-size: 1rem;
  }
}

.p-work-detail__title-line {
  flex: 1;
  height: 1px;
  background: #111;
  opacity: 0.7;
}

.p-work-detail__kv-text {
  display: grid;
  gap: 0.625rem;
}

.p-work-detail__tag {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
}

.p-work-detail__name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__name {
    font-size: 2rem;
  }
}

.p-work-detail__kv-image {
  width: 100%;
  overflow: hidden;
}

.p-work-detail__kv-image img {
  width: 100%;
  max-width: 80%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__kv-image img {
    width: 100%;
  }
}

/* 説明文 */
.p-work-detail__lead {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #111;
  opacity: 0.85;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-work-detail__lead {
    margin-top: 1.875rem;
  }
}

/* ===== body ===== */
.p-work-detail__body {
  padding-top: 1.375rem;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__body {
    padding-top: 2.125rem;
  }
}

.p-work-detail__list {
  margin-top: 1.625rem;
}

/* 1項目＝横線＋タイトル＋本文 */
.p-work-detail__item {
  border-top: 1px solid rgba(17, 17, 17, 0.25);
  padding: 1.625rem 0;
}
@media screen and (min-width: 768px) {
  .p-work-detail__item {
    padding: 2.125rem 0;
  }
}

.p-work-detail__term {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-work-detail__term {
    font-size: 1.375rem;
  }
}

.p-work-detail__desc {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #111;
  opacity: 0.85;
}

.p-work-detail__view-image img {
  width: 100%;
  max-width: 70%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-work-detail__view-image img {
    width: 100%;
  }
}

.p-work-detail__view-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  margin-left: auto;
  margin-right: auto;
}

.p-work-detail-view {
  margin-top: 5rem;
}

.p-work-detail-view__inner {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
  padding-bottom: 40px;
}

.p-work-detail-view__mockups {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail-view__mockups {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.p-work-detail-view__mockup {
  border: 1px solid #e7e2da;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.p-work-detail-view__mockup img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.p-work-detail-view__mockup--pc {
  width: 100%;
  max-width: 47.5rem;
}

.p-work-detail-view__mockup--sp {
  width: 100%;
  max-width: 16.25rem;
}
@media screen and (min-width: 768px) {
  .p-work-detail-view__mockup--sp {
    margin-bottom: -1.25rem;
  }
}

.p-work-detail__buttons {
  margin-top: 1.25rem;
  justify-content: start;
  margin-top: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #111;
  opacity: 0.85;
  margin: 0 auto;
}

.p-work-detail__btn {
  position: relative;
  text-decoration: none;
}

.p-work-detail__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.p-work-detail__btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  sp-br {
    display: block;
  }
}
body {
  background-color: #f1e6dc;
}

.p-about {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 5.375rem;
    padding-bottom: 13.125rem;
  }
}

.p-about__inner {
  width: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    width: min(100%, 96rem);
    margin-inline: auto;
    padding-inline: 5.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__profile {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
}

.p-about__profile-box {
  margin: 0 auto;
}

.p-about__img img {
  width: 70%;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__img img {
    max-width: clamp(18.75rem, 11.932rem + 34.09vw, 37.5rem);
  }
}

/* =================================
about title
================================= */
.p-about__section-title {
  line-height: 1.2;
}

.p-about__section-title span {
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__section-title span {
    margin-left: 0.75rem;
  }
}

/* =================================
profile
================================= */
.p-about__profile {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-about__profile {
    margin-top: 7.375rem;
  }
}

.p-about__furigana {
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
}

.p-about__name {
  margin-top: 0.625rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-about__name {
    font-size: 2.5rem;
  }
}

.p-about__profile-text {
  margin-top: 2.25rem;
  max-width: 29.375rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-about__profile-text {
    margin-top: 3.5rem;
  }
}

/* =================================
common small label
================================= */
/* =================================
strength
================================= */
.p-about__strength {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__strength {
    margin-top: 6.75rem;
  }
}

.p-about__circle-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__circle-list {
    flex-direction: row;
    align-items: center;
    gap: 3.9375rem;
  }
}

.p-about__circle {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  background-color: #f3ece3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #3a3a3a;
  text-align: center;
  font-weight: 500;
  position: relative;
  border: 1px solid rgba(239, 230, 220, 0.6);
  box-shadow: 0 8px 20px rgba(180, 170, 150, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-about__circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(180, 170, 150, 0.22);
}
@media screen and (min-width: 768px) {
  .p-about__circle {
    width: 11.0625rem;
    height: 11.0625rem;
    font-size: 1.25rem;
  }
}

.p-about__circle::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 42%;
  height: 28%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(8px);
}

.p-about__strength-list {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__strength-list {
    margin-top: 6.25rem;
  }
}

.p-about__strength-item + .p-about__strength-item {
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-about__strength-item + .p-about__strength-item {
    margin-top: 7.875rem;
  }
}

.p-about__strength-number {
  font-size: 3.125rem;
  line-height: 1;
  color: #111;
}

.p-about__strength-name {
  margin-top: 0.75rem;
  margin-left: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__strength-name {
    font-size: 1.375rem;
  }
}

.p-about__strength-item-box {
  display: flex;
}

/* =================================
why
================================= */
.p-about__why {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__why {
    margin-top: 10rem;
  }
}

.p-about__why-text {
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-about__why-text {
    margin-top: 2.75rem;
    padding-left: 1.125rem;
  }
}

.layout-header {
  z-index: 900;
  top: 0;
  right: 0;
}

.header__hamburger {
  position: fixed;
  z-index: 1001;
  top: 0.625rem;
  right: 0.625rem;
}

.l-inner {
  width: 100%;
  max-width: 81.25rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 1.875rem;
    padding-top: 80px;
  }
}

.contact {
  text-align: start;
}
.contact__inner {
  max-width: 100px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.contact__title {
  font-size: 46px;
  margin-bottom: 20px;
}
.contact__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #333;
}
.contact__mail {
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid #2f5d50;
  padding-bottom: 4px;
}
.contact__mail:hover {
  opacity: 0.7;
}

.contact__heading {
  font-size: clamp(64px, 10vw, 120px);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px #dcdcdc;
}

.contact-mail {
  color: #dcdcdc;
  line-height: 3;
}

.footer {
  position: relative;
  padding: 70px 0 40px;
  position: relative;
  background: #062805;
  overflow: visible;
  width: 100%;
  z-index: 1;
}

.footer__curve {
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  overflow: visible;
  line-height: 0;
}
.footer__curve svg {
  display: block;
  width: 100%;
  height: 90px;
}

.footer__curve path {
  fill: #062805;
}

.footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 1.5625rem;
    max-width: 37.5rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap {
    display: flex;
    justify-content: space-between;
  }
}

.footer__nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__nav-items {
    display: flex;
    align-items: center;
  }
}

.footer__nav-item a {
  padding: 0.5rem;
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #8d8479;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    padding: 0.9375rem;
    text-align: center;
  }
}

.footer__copyright {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #F5F2EE;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 3.125rem;
  }
}

.footer__copyright span {
  text-transform: uppercase;
}

/* 動物エリア */
.footer__animals {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 0;
}

/* 共通 */
.footer__animal {
  position: absolute;
  width: 100px;
  transform: translateY(-50%);
  z-index: 10;
}

/* 位置調整 */
.footer__animal--1 {
  left: 72%;
}
@media screen and (min-width: 768px) {
  .footer__animal--1 {
    left: 73%;
  }
}

.footer__animal--2 {
  left: 82%;
}
@media screen and (min-width: 768px) {
  .footer__animal--2 {
    left: 81%;
  }
}