@charset "UTF-8";
/* 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;
}

/* Reset button and submit default styles */
button,
[type=button],
[type=reset],
[type=submit] {
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
}

/* 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;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2413793103vw;
  }
}
@media (min-width: 1160px) {
  html {
    font-size: 14.4px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/bg_paper.png");
  background-size: cover;
  background-position: center top;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

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

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

/* ========================================
  フッター
======================================== */
.l-footer__bottom {
  position: relative;
  background-color: #eee8dd;
  padding-block: 1.75rem 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    height: 14.5rem;
    padding-block: 3.3125rem 1.3125rem;
    padding-inline: clamp(2.5rem, 8.33vw, 7.5rem);
  }
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}

.l-footer__company-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #555;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-footer__company-name {
    font-size: 1.625rem;
  }
}

.l-footer__company-info {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__company-info {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 0.9375rem;
  }
}

.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(1.25rem, 2.7vw, 2.4375rem);
  }
}

.l-footer__nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-link {
    font-size: clamp(0.875rem, 1.4vw, 1.25rem);
  }
}

.l-footer__nav-link:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright {
  font-size: 0.6875rem;
  font-weight: 300;
  color: #555;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    position: absolute;
    bottom: 1.3125rem;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    font-size: 1rem;
    white-space: nowrap;
    margin-top: 0;
  }
}

/* ========================================
  ヘッダー
======================================== */
.l-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 3.75rem;
  background-color: #fff;
  z-index: 300;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 6.25rem;
    z-index: 100;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: clamp(2.5rem, 8.33vw, 7.5rem);
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  position: relative;
  z-index: 400;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    gap: 0.5rem;
    position: static;
    z-index: auto;
  }
}

.l-header__logo-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-header__logo-icon {
    width: 2.625rem;
    height: 2.625rem;
  }
}

.l-header__logo-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__logo-text {
  font-size: 1rem;
  font-weight: 400;
  color: #111;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    font-size: 1.25rem;
  }
}

/* ハンバーガーボタン */
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 400;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
    position: static;
    z-index: auto;
  }
}

.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-header__hamburger:focus-visible {
  outline: 2px solid #6e6a63;
  outline-offset: 4px;
}

/* ナビゲーション */
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: block;
    background-color: transparent;
    z-index: auto;
  }
}

.l-header__nav.is-open {
  display: flex;
}

.l-header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.l-header__nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: #5c5c5c;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__nav-link {
    font-size: 1rem;
  }
}

.l-header__nav-link:focus-visible {
  outline: 2px solid #6e6a63;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}
/* SP専用CTAリストアイテム */
.l-header__nav-item--sp-cta {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-item--sp-cta {
    margin-top: 0;
    display: none;
  }
}

/* CTAボタン */
.l-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10.3125rem;
  height: 2.25rem;
  background-color: #6e6a63;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__cta {
    font-size: 1rem;
  }
}

/* PC専用CTAボタン（ヘッダーバー内） */
.l-header__cta--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__cta--pc {
    display: inline-flex;
  }
}

.l-header__cta:focus-visible {
  outline: 2px solid #6e6a63;
  outline-offset: 4px;
}

@media (any-hover: hover) {
  .l-header__cta:hover {
    opacity: 1;
    background-color: #444444;
  }
}
/* メニュー展開中のbodyスクロール固定 */
body.is-locked {
  overflow: hidden;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1160px;
  }
}

/* ========================================
  私たちについて Hero
======================================== */
.p-about-hero {
  background-color: rgba(238, 232, 221, 0.95);
  text-align: center;
  padding-block: 3rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-hero {
    padding-block: 5rem 6.25rem;
  }
}

.p-about-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.65;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-about-hero__title {
    font-size: 2.5rem;
  }
}

.p-about-hero__catch {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-hero__catch {
    font-size: 1.5rem;
    line-height: 1.667;
    margin-top: 3rem;
  }
}

.p-about-hero__lead {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-hero__lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 2.5rem;
  }
}

/* ========================================
  私たちの原点
======================================== */
.p-about-origin {
  background-color: rgba(238, 232, 221, 0.95);
  padding-block: 3rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-origin {
    padding-block: 5rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-origin__inner {
    max-width: 56.25rem;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-origin__body {
    flex: 1;
    min-width: 0;
  }
}

.p-about-origin__label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #464746;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-origin__label {
    text-align: left;
  }
}

.p-about-origin__text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-origin__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1.25rem;
  }
}

.p-about-origin__image {
  aspect-ratio: 444/297;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-origin__image {
    margin-top: 0;
    flex-shrink: 0;
    width: 27.75rem;
  }
}

.p-about-origin__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ========================================
  私たちのスタンス
======================================== */
.p-about-stance {
  text-align: center;
  padding-block: 3rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-stance {
    padding-block: 5rem 6.25rem;
  }
}

.p-about-stance__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.65;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-about-stance__title {
    font-size: 2.5rem;
  }
}

.p-about-stance__lead {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-stance__lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 3rem;
  }
}

.p-about-stance__text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #464746;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-stance__text {
    font-size: 1rem;
    margin-top: 3rem;
  }
}

/* ========================================
  会社概要
======================================== */
.p-company {
  background-color: rgba(238, 232, 221, 0.95);
  padding-block: 3rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding-block: 5rem 7.5rem;
  }
}

.p-company__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.65;
  color: #464746;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-company__title {
    font-size: 2.5rem;
  }
}

.p-company__inner {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company__inner {
    display: flex;
    align-items: flex-start;
    gap: 3.75rem;
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company__list {
    flex: 1;
    min-width: 0;
  }
}

.p-company__item {
  display: flex;
  align-items: baseline;
  padding-block: 1rem;
  border-bottom: 1px solid #d0d8e0;
}

.p-company__item:first-child {
  border-top: 1px solid #d0d8e0;
}

.p-company__term {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #464746;
  flex-shrink: 0;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-company__term {
    font-size: 1.25rem;
    width: 7.5rem;
  }
}

.p-company__desc {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #464746;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company__desc {
    font-size: 1.25rem;
    margin-left: 1.5rem;
  }
}

.p-company__image {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-company__image {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.p-company__image img {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-company__image img {
    width: 16.9375rem;
    height: 16.9375rem;
  }
}

/* ========================================
  お問い合わせフォーム
======================================== */
.p-contact-form {
  position: relative;
  background-color: #fff;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    padding-block: 7.9375rem;
  }
}


.p-contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg_paper.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.p-contact-form .l-inner {
  position: relative;
  z-index: 1;
}

.p-contact-form__card {
  background-color: #fff;
  border-radius: 8px;
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__card {
    max-width: 62.5rem;
    margin-inline: auto;
    border: 1px solid #989a96;
    padding-top: 3.8125rem;
    padding-bottom: 3rem;
    padding-inline: 3.75rem;
  }
}

.wpcf7-spinner{
	display: none !important;
}

.p-contact-form__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #464746;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__heading {
    font-size: 2rem;
  }
}

.p-contact-form__lead {
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  text-align: center;
  margin-top: 0.875rem;
  line-height: 1.7;
}

.p-contact-form__caution {
	color: red;
	display: inline-block;
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .p-contact-form__lead {
    font-size: 1rem;
    margin-top: 1.0625rem;
    line-height: 1.31;
  }
}



.p-contact-form__form {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form {
    margin-top: 5.375rem;
  }
}

.p-contact-form__field:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__field:not(:first-child) {
    margin-top: 2.375rem;
  }
}

.p-contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact-form__label {
    font-size: 1rem;
  }
}

.p-contact-form__required {
  color: #f21818;
}

.p-contact-form__optional {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__optional {
    font-size: 0.875rem;
  }
}

.p-contact-form__input {
  display: block;
  width: 100%;
  height: 3rem;
  margin-top: 0.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  padding-inline: 0.875rem;
  font-size: 1rem;
  background-color: #fff;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-contact-form__input {
    height: 3.625rem;
    margin-top: 0.625rem;
  }
}

.p-contact-form__input:focus-visible {
  outline: 2px solid #464746;
  outline-offset: 2px;
  border-color: #464746;
}

.p-contact-form__textarea {
  display: block;
  width: 100%;
  height: 11.25rem;
  margin-top: 0.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  padding: 0.875rem;
  font-size: 1rem;
  background-color: #fff;
  color: #464746;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-contact-form__textarea {
    height: 23.3125rem;
    margin-top: 0.625rem;
  }
}

.p-contact-form__textarea:focus-visible {
  outline: 2px solid #464746;
  outline-offset: 2px;
  border-color: #464746;
}

.p-contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__submit {
    margin-top: 3.75rem;
  }
}

.p-contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 15.625rem;
  height: 2.375rem;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  background-color: #6e6a63;
  border-radius: 5px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  transition: opacity 0.3s;
}

.p-contact-form__btn:focus-visible {
  outline: 2px solid #6e6a63;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .p-contact-form__btn:hover {
    opacity: 0.8;
  }
}
.p-contact-form__btn-arrow {
  display: block;
  width: 0;
  height: 0;
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
  border-left: 6px solid #fff;
}

/* ========================================
  お問い合わせ
======================================== */
.p-contact {
  position: relative;
  overflow: hidden;
  min-height: 22.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2.75rem;
}
.p-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(217, 217, 217, 0.22);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-contact {
    min-height: auto;
    height: 31.25rem;
    padding-block: 0;
  }
}

.p-contact__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-contact__bg-img {
  width: 100%;
  height: 125%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.p-contact__box {
  position: relative;
  z-index: 2;
  width: auto;
  margin-inline: 1.25rem;
  background-color: rgba(255, 255, 255, 0.81);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 8px;
  padding-block: 2.25rem 2.25rem;
  padding-inline: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__box {
    width: 57.8125rem;
    margin-inline: 0;
    padding-block: 3.6875rem 3.1875rem;
    padding-inline: 3.75rem;
  }
}

.p-contact__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.2;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}

.p-contact__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.9;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-top: 2.1875rem;
  }
}

.p-contact__sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.6;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__sub {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-top: 2.1875rem;
  }
}

.p-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.875rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  margin-top: 1.75rem;
  transition: box-shadow 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    width: 22.9375rem;
    height: 3.1875rem;
    font-size: 1.25rem;
    margin-top: 3.4375rem;
  }
}

.p-contact__btn:focus-visible {
  outline: 2px solid #464746;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .p-contact__btn:hover {
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}
/* ========================================
  ディレクター紹介 - 専門性とバックグラウンド
======================================== */
.p-director-background {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-director-background {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}

.p-director-background__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #464746;
  letter-spacing: 0.013em;
}
@media screen and (min-width: 768px) {
  .p-director-background__title {
    font-size: 1.75rem;
  }
}

.p-director-background__body {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-background__body {
    margin-top: 2.5rem;
    padding-left: 4.875rem;
  }
}

.p-director-background__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.93;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 768px) {
  .p-director-background__text {
    font-size: 1.25rem;
    line-height: 1.55;
  }
}

/* ========================================
  ディレクター紹介 - ページヘッダー
======================================== */
.p-director-hero {
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-hero {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.p-director-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #464746;
  text-align: center;
  letter-spacing: 0.009em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-director-hero__title {
    font-size: 2.5rem;
    letter-spacing: 0.009em;
  }
}

.p-director-hero__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-director-hero__profile {
    margin-top: 3rem;
    gap: 0.8125rem;
  }
}

.p-director-hero__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-director-hero__avatar {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-director-hero__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-director-hero__name {
  font-size: 1rem;
  font-weight: 500;
  color: #464746;
  letter-spacing: 0.009em;
}
@media screen and (min-width: 768px) {
  .p-director-hero__name {
    font-size: 1.5rem;
  }
}

/* ========================================
  ディレクター紹介 - メッセージ
======================================= */
.p-director-message {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-director-message {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}

.p-director-message__heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: #464746;
  line-height: 1.63;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .p-director-message__heading {
    font-size: 1.5rem;
    line-height: 1.22;
  }
}

.p-director-message__text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.5;
  letter-spacing: 0.018em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-director-message__text {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}

/* ========================================
  ディレクター紹介 - 対応領域・技術
======================================== */
.p-director-skills {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-director-skills__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #464746;
  letter-spacing: 0.013em;
}
@media screen and (min-width: 768px) {
  .p-director-skills__title {
    font-size: 1.75rem;
  }
}

.p-director-skills__list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__list {
    margin-top: 2.5rem;
  }
}

.p-director-skills__item {
  padding-left: 1rem;
  border-left: 3px solid #6e6a63;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item {
    padding-left: 2.5rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.p-director-skills__item:nth-child(1) {
  border-left-color: #088f13;
}

.p-director-skills__item:nth-child(2) {
  border-left-color: #2011ad;
}

.p-director-skills__item:nth-child(3) {
  border-left-color: #c99314;
}

.p-director-skills__item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item:not(:first-child) {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-director-skills__item-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-director-skills__item-text-wrap {
    flex: 1;
  }
}

.p-director-skills__item-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #464746;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-heading {
    font-size: 1.5rem;
  }
}

.p-director-skills__item-list {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-list {
    margin-top: 1.25rem;
  }
}

.p-director-skills__item-list-item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #464746;
  line-height: 2.18;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-list-item {
    font-size: 1.125rem;
    line-height: 1.94;
  }
}

.p-director-skills__item-list-item::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.25rem;
  z-index: 1;
  width: 6px;
  height: 6px;
  background-color: #464746;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-list-item::before {
    top: 0.8125rem;
  }
}

.p-director-skills__item-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-image {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.125rem;
    flex-shrink: 0;
  }
}

.p-director-skills__item-image img {
  max-width: 10rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-director-skills__item-image img {
    max-width: 18.125rem;
  }
}

.p-director-skills__note {
  font-size: 0.875rem;
  font-weight: 500;
  color: #464746;
  text-align: center;
  letter-spacing: 0.015em;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-skills__note {
    font-size: 1.5rem;
    margin-top: 3.5rem;
  }
}

/* ========================================
  ディレクター紹介 - Web制作への想い
======================================== */
.p-director-vision {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-director-vision {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-director-vision__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #464746;
  letter-spacing: 0.013em;
}
@media screen and (min-width: 768px) {
  .p-director-vision__title {
    font-size: 1.75rem;
  }
}

.p-director-vision__inner {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-vision__inner {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}
.p-director-vision__body {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-director-vision__body {
    padding-left: 4.25rem;
  }
}
.p-director-vision__image {
  flex-shrink: 0;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-director-vision__image {
    width: 18.0625rem;
    margin-top: 0;
  }
}
.p-director-vision__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-director-vision__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 2.07;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 768px) {
  .p-director-vision__text {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

/* ========================================
  FV
======================================== */
.p-fv {
  position: relative;
  height: 25rem;
  overflow: hidden;
}
.p-fv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 55%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 47.5rem;
  }
  .p-fv::before {
    top: 2.5625rem;
    width: 46.9375rem;
    height: 17.375rem;
    background: rgba(255, 255, 255, 0.88);
    filter: blur(80px);
  }
}

.p-fv__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-fv__content {
  position: absolute;
  top: 3rem;
  left: 1.25rem;
  z-index: 2;
  width: calc(100% - 2.5rem);
}
@media screen and (min-width: 768px) {
  .p-fv__content {
    top: 5rem;
    left: 7.4375rem;
    width: auto;
  }
}

.p-fv__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-fv__heading {
    font-size: 3rem;
    line-height: 1.375;
  }
}

.p-fv__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #464746;
  letter-spacing: 0.018em;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    font-size: 1.25rem;
    line-height: 1.55;
    margin-top: 1.8125rem;
  }
}

.p-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 2.875rem;
  padding-inline: 1rem;
  background-color: #fffbf5;
  border: 1.5px solid #6c6761;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  margin-top: 1.75rem;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-fv__btn {
    height: 3.75rem;
    width: 18.75rem;
    padding-inline: 1.5rem;
    gap: 1rem;
    margin-top: 3rem;
  }
}

.p-fv__btn-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #464746;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-fv__btn-text {
    font-size: 1.25rem;
  }
}

.p-fv__btn-icon {
  display: inline-block;
  width: 0.5625rem;
  height: 0.4375rem;
  background-image: url("../images/fv_btn_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-fv__btn-icon {
    width: 0.6875rem;
    height: 0.5625rem;
  }
}

@media (any-hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.8;
  }
}
/* ========================================
  ページヘッダー
======================================== */
.p-page-header {
  position: relative;
  z-index: 0;
  height: 13.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-page-header {
    height: 25rem;
  }
}

.p-page-header__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-page-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-header__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.p-page-header__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.p-page-header__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: #464746;
  letter-spacing: 0.01em;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-page-header__title {
    font-size: 2.25rem;
    letter-spacing: 0.01em;
  }
}

/* ========================================
  プライバシーポリシー本文
======================================== */
.p-privacy {
  padding-block: 3.25rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 5rem 6.25rem;
  }
}

.p-privacy__lead {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 2.75;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    font-size: 1rem;
    line-height: 2.75;
  }
}

.p-privacy__block {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__block {
    margin-top: 3.25rem;
  }
}

.p-privacy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #464746;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-privacy__text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #464746;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 0.5rem;
  }
}

.p-privacy__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    padding-left: 1.5rem;
  }
}

.p-privacy__list-item {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__list-item {
    font-size: 1rem;
    line-height: 1.9375;
  }
}

.p-privacy__list-item:not(:first-child) {
  margin-top: 0.25rem;
}

.p-privacy__link {
  text-decoration: underline;
  color: #464746;
}
.p-privacy__link:focus-visible {
  outline: 2px solid #464746;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .p-privacy__link:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
/* ========================================
  できること
======================================== */
.p-service {
  padding-block: 3.25rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-block: 5.625rem 5.625rem;
  }
}

.p-service__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.65;
  color: #464746;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    font-size: 2.5rem;
  }
}

.p-service__list {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    margin-top: 3.75rem;
  }
}

.p-service__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}

.p-service__item--reverse {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service__item--reverse {
    flex-direction: row-reverse;
  }
}

.p-service__item:not(:first-child) {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__item:not(:first-child) {
    margin-top: 5.625rem;
  }
}

.p-service__item-image {
  flex: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service__item-image {
    flex: 0 0 31.25rem;
    width: auto;
  }
}

.p-service__item-image img {
  width: 100%;
  height: 13.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-service__item-image img {
    height: 20.9375rem;
  }
}

.p-service__item-body {
  flex: 1;
  min-width: 0;
}

.p-service__item-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #464746;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 768px) {
  .p-service__item-heading {
    font-size: 1.5rem;
    line-height: 1.22;
  }
}

.p-service__item-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__item-text {
    font-size: 1rem;
    line-height: 2.0625;
    letter-spacing: 0.125em;
    margin-top: 1.25rem;
  }
}

.p-service__item-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-service__item-list {
    padding-left: 1.5rem;
    margin-top: 1rem;
  }
}

.p-service__item-list li {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-service__item-list li {
    font-size: 1rem;
    line-height: 2.0625;
    letter-spacing: 0.125em;
  }
}

/* ========================================
  私たちが大切にしていること
======================================== */
.p-values {
  background-color: #eee8dd;
  padding-block: 3.5rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-values {
    padding-block: 6.25rem 5rem;
  }
}

.p-values__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.65;
  color: #464746;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-values__title {
    font-size: 2.5rem;
  }
}

.p-values__lead {
  font-size: 1rem;
  font-weight: 500;
  color: #464746;
  text-align: center;
  line-height: 1.8;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-values__lead {
    font-size: 1.5rem;
    line-height: 1.667;
    margin-top: 3.75rem;
  }
}

.p-values__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464746;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-values__text {
    font-size: 1.125rem;
    letter-spacing: 0.111em;
    margin-top: 2.5rem;
  }
}

.p-values__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-values__cards {
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 5rem;
  }
}

.p-values__card {
  flex: 1;
  min-width: 0;
}

.p-values__card-inner {
  width: 100%;
  background-image: url("../images/values_card_frame.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.5rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-values__card-inner {
    aspect-ratio: 350/293;
    padding-block: 0;
    padding-top: 10%;
    gap: 0;
  }
}

.p-values__card-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon-wrap {
    height: 5.0625rem;
  }
}

.p-values__card-icon {
  flex-shrink: 0;
}

.p-values__card-icon--01 {
  width: 3.75rem;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon--01 {
    width: 4.6875rem;
    height: 3.4375rem;
  }
}

.p-values__card-icon--02 {
  width: 3.25rem;
  height: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon--02 {
    width: 4.0625rem;
    height: 4.8125rem;
  }
}

.p-values__card-icon--03 {
  width: 3.6875rem;
  height: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon--03 {
    width: 4.625rem;
    height: 3.5625rem;
  }
}

.p-values__card-icon-sprite {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.p-values__card-icon-sprite img {
  position: absolute;
  max-width: none;
}
.p-values__card-icon-sprite--01 {
  width: 3.75rem;
  height: 2.75rem;
}
.p-values__card-icon-sprite--01 img {
  width: 272.59%;
  height: 209.09%;
  left: -132%;
  top: -109.09%;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon-sprite--01 {
    width: 4.6875rem;
    height: 3.4375rem;
  }
}
.p-values__card-icon-sprite--02 {
  width: 3.25rem;
  height: 3.875rem;
}
.p-values__card-icon-sprite--02 img {
  width: 314.53%;
  height: 149.35%;
  left: -40%;
  top: -24.68%;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon-sprite--02 {
    width: 4.0625rem;
    height: 4.8125rem;
  }
}
.p-values__card-icon-sprite--03 {
  width: 3.6875rem;
  height: 2.875rem;
}
.p-values__card-icon-sprite--03 img {
  width: 276.28%;
  height: 201.75%;
  left: -118.92%;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-values__card-icon-sprite--03 {
    width: 4.625rem;
    height: 3.5625rem;
  }
}

.p-values__card-text {
  font-size: 1rem;
  font-weight: 500;
  color: #464746;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.083em;
}
@media screen and (min-width: 768px) {
  .p-values__card-text {
    font-size: 1.5rem;
  }
}

/* ========================================
  制作実績 ヒーロー
======================================== */
.p-works-hero {
  background-color: #f7f7f5;
  padding-block: 3.5rem 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-works-hero {
    padding-block: 5.875rem 3.75rem;
  }
}

.p-works-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.375;
  color: #111;
}
@media screen and (min-width: 768px) {
  .p-works-hero__title {
    font-size: 2.5rem;
  }
}

.p-works-hero__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.73;
  color: #464746;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-works-hero__lead {
    font-size: 1.375rem;
    line-height: 1.73;
    margin-top: 3rem;
  }
}

.p-works-hero__note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.11;
  color: #464746;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works-hero__note {
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}

/* ========================================
  制作実績 一覧
======================================== */
.p-works-list {
  background-color: #f7f7f5;
  padding-block: 2.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-works-list {
    padding-block: 3rem 5rem;
  }
}

.p-works-list__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-works-list__item {
  position: relative;
  z-index: 0;
  border-radius: 8px;
  overflow: hidden;
}

.p-works-list__link {
  display: block;
}

.p-works-list__image {
  aspect-ratio: 360/203;
  overflow: hidden;
}

.p-works-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .p-works-list__link:hover .p-works-list__image img {
    transform: scale(1.04);
  }
}
/* ホバーキャプション */
.p-works-list__caption {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 5;
  pointer-events: none;
}

.p-works-list__caption-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-works-list__caption-text {
    font-size: 1rem;
  }
}

@media (any-hover: hover) and (min-width: 768px) {
  .p-works-list__link:hover .p-works-list__caption {
    opacity: 1;
  }
}
.p-works-list__link:focus-visible {
  outline: 2px solid #464746;
  outline-offset: 2px;
}

/* SP用キャプションテキスト（画像の下に表示） */
.p-works-list__sp-caption {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #464746;
  line-height: 1.7;
  padding: 0.5rem 0.25rem 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .p-works-list__sp-caption {
    display: none;
  }
}

/* 準備中オーバーレイ */
.p-works-list__item--coming-soon .p-works-list__image img {
  opacity: 0.38;
}

.p-works-list__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(217, 217, 217, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 8px;
}

.p-works-list__coming-soon {
  font-size: 1.25rem;
  font-weight: 300;
  color: #464746;
  letter-spacing: 0.21em;
}
@media screen and (min-width: 768px) {
  .p-works-list__coming-soon {
    font-size: 1.5rem;
  }
}

/* フッターエリア（もっと見るボタン → ご相談内容の順） */
.p-works-list__footer {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-works-list__footer {
    margin-top: 4rem;
  }
}

.p-works-inquiry {
  align-self: flex-start;
  width: 100%;
}

/* ========================================
  ご相談いただく内容
======================================== */
.p-works-inquiry__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-works-inquiry__title {
    font-size: 1.75rem;
  }
}

.p-works-inquiry__list {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-works-inquiry__list {
    margin-top: 1.25rem;
  }
}

.p-works-inquiry__item {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  color: #464746;
}
@media screen and (min-width: 768px) {
  .p-works-inquiry__item {
    font-size: 1.25rem;
  }
}

/* ========================================
  実績をもっと見るボタン
======================================== */
.p-works-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 2.375rem;
  background-color: #6e6a63;
  border-radius: 5px;
  gap: 0.5rem;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-works-more {
    width: 15.625rem;
    margin-bottom: 3rem;
  }
}

.p-works-more__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-works-more__text {
    font-size: 1rem;
  }
}

.p-works-more__icon {
  display: inline-block;
  width: 0.4375rem;
  height: 0.5625rem;
  background-image: url("../images/works/works_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-works-more:focus-visible {
  outline: 2px solid #6e6a63;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .p-works-more:hover {
    background-color: #5a5650;
  }
}
.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
