@charset "UTF-8";
/*
 * 共通リセットCSS（静的スターター / WPスターター共通・2026-08-15統一）
 * ベース: 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,
ol {
  margin: 0;
}

/* Remove list styles and padding on ul, ol */
ul,
ol {
  list-style: none;
  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%;
  width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Blur images when they have no alt attribute（alt必須ルールの開発時セーフティ） */
img:not([alt]) {
  filter: blur(10px);
}

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

/* フォームリセット（ブラウザ標準のボタン枠・装飾を打ち消す） */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* 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;
  }
}
:root {
  --inner: 1110px;
  --padding-pc: 20px;
  --padding-sp: 22px;
  --color-black: #333;
  --color-red: #e00;
  --white-ffffff: #ffffff;
  --main-color: #ffffff;
  --accent-color: #a7374f;
  --base-color: #222222;
  --disable-color: #bdbdbd;
  --color-wine: #a7374f;
  --color-dark: #222222;
  --color-bg-gray: #f5f5f5;
  --color-caption: #333333;
  --color-white: #ffffff;
  --color-border: rgba(167, 55, 79, 0.3);
  --ff-en: "Outfit", sans-serif;
  --noto: "Noto Sans JP", sans-serif;
  --base-font-size: 16px;
  --lh-base: 2;
  --extra-light: 200;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;
  --fs-heading-en: 3.75rem;
  --fs-heading-jp: 1.25rem;
  --lh-heading-jp: 1.4;
  --fs-body: 1rem;
  --lh-body: 2;
  --fs-table: 1rem;
  --lh-table: 1.5;
  --fs-cta: 1.5rem;
  --section-gap-lg: 7.5rem;
  --section-gap-md: 3.75rem;
  --gap-title-body: 3.5rem;
}

@media screen and (max-width: 767px) {
  :root {
    --fs-heading-en: 3.125rem;
    --fs-heading-jp: 1.125rem;
    --lh-heading-jp: 1.3889;
    --fs-body: 0.9375rem;
    --lh-body: 2;
    --fs-table: 0.9375rem;
    --lh-table: 1.5333;
    --fs-cta: 1.25rem;
    --section-gap-lg: 3.75rem;
    --section-gap-md: 2.5rem;
    --gap-title-body: 2.25rem;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * maxremの計算
 * 参考
******************************************/
html {
  scroll-behavior: smooth;
  font-size: var(--base-font-size);
}
@media (max-width: 1110px) {
  html {
    font-size: 1.4414414414vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: var(--base-font-size);
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: var(--noto);
  font-weight: var(--regular);
  color: var(--color-black);
  line-height: var(--lh-base);
  background-color: var(--main-color);
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  opacity: 1;
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  a:hover {
    opacity: 0.7;
  }
}

.l-footer {
  background: var(--color-dark);
}

.l-footer .l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 8rem 6.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer__inner {
    padding-block: 3.75rem 3.6875rem;
  }
}

.l-footer__logo {
  width: 16.625rem;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}

.l-footer__name {
  margin-top: 1.875rem;
  font-size: var(--fs-heading-jp);
  font-weight: var(--bold);
  line-height: var(--lh-heading-jp);
  color: var(--color-white);
}

.l-footer__address {
  margin-top: 0.375rem;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white);
}

.l-footer__license {
  margin-top: 1.375rem;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white);
}

.l-footer__copyright {
  padding-block: 0.6875rem 0.8125rem;
  padding-inline: var(--padding-pc);
  text-align: center;
  background: var(--color-wine);
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    padding-block: 0.625rem 0.8125rem;
  }
}
.l-footer__copyright small {
  font-size: 0.75rem;
  line-height: 2.67;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-footer__copyright small {
    font-size: 0.625rem;
  }
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-pc) * 2);
  width: 100%;
  padding: 0 var(--padding-pc);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 22px;
  }
}

.c-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 33.75rem;
  min-height: 5.75rem;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-wine);
  border-radius: 62.5rem;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-contact-btn {
    max-width: 100%;
    min-height: 5.25rem;
  }
}

.c-contact-btn__label {
  font-size: var(--fs-cta);
  font-weight: var(--bold);
  line-height: 1.17;
  color: var(--color-dark);
  transition: 0.3s ease-in-out;
}

.c-contact-btn__note {
  margin-top: 0.375rem;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-dark);
  transition: 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .c-contact-btn:hover {
    background: var(--color-wine);
  }
  .c-contact-btn:hover .c-contact-btn__label,
  .c-contact-btn:hover .c-contact-btn__note {
    color: var(--color-white);
  }
}
.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-section-title__en {
  font-family: var(--ff-en);
  font-size: var(--fs-heading-en);
  font-weight: var(--extra-light);
  line-height: 1.2666666667;
  color: var(--color-wine);
}

.c-section-title__jp {
  margin-top: 0.6875rem;
  font-size: var(--fs-heading-jp);
  font-weight: var(--bold);
  line-height: var(--lh-heading-jp);
  color: var(--color-dark);
}

.c-section-title--white .c-section-title__jp {
  color: var(--color-white);
}

.c-to-top {
  position: fixed;
  inset-inline-end: 2.5rem;
  inset-block-end: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(167, 55, 79, 0.9);
  border: none;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-to-top::before {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.3125rem;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(45deg);
  content: "";
}
@media screen and (max-width: 767px) {
  .c-to-top {
    inset-inline-end: 1rem;
    inset-block-end: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

.c-to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

@media (any-hover: hover) {
  .c-to-top:hover {
    background: var(--color-wine);
  }
}
.p-top-about {
  padding-top: var(--section-gap-lg);
}

.p-top-about__lead {
  max-width: 45.625rem;
  margin-top: var(--gap-title-body);
  margin-inline: auto;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
}

.p-top-about__img {
  margin-top: var(--gap-title-body);
  margin-bottom: -14.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    margin-bottom: -4.375rem;
  }
}
.p-top-about__img img {
  aspect-ratio: 1110/472;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-about__img img {
    aspect-ratio: 330/140;
  }
}

.p-top-company {
  padding-top: var(--section-gap-lg);
  padding-bottom: var(--section-gap-lg);
}

.p-top-company__table {
  max-width: 45.625rem;
  margin-top: var(--section-gap-md);
  margin-inline: auto;
}

.p-top-company__row {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  padding-block: 1.1875rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.p-top-company__row:last-child {
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-top-company__row {
    grid-template-columns: 5.625rem 1fr;
    padding-block: 0.875rem 0.8125rem;
  }
}

.p-top-company__key {
  font-size: var(--fs-table);
  font-weight: var(--regular);
  line-height: var(--lh-table);
  color: var(--color-dark);
}

.p-top-company__value {
  font-size: var(--fs-table);
  font-weight: var(--regular);
  line-height: var(--lh-table);
  color: var(--color-dark);
  white-space: pre-line;
}

.p-top-contact {
  padding-top: var(--section-gap-lg);
  padding-bottom: var(--section-gap-lg);
  background: var(--color-bg-gray);
}

.p-top-contact__lead {
  max-width: 45.625rem;
  margin-top: var(--gap-title-body);
  margin-inline: auto;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
}

.p-top-contact__buttons {
  display: flex;
  gap: 2.5625rem;
  justify-content: center;
  margin-top: var(--gap-title-body);
}
@media screen and (max-width: 767px) {
  .p-top-contact__buttons {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.p-top-mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100svh, 50rem);
  min-height: 37.5rem;
  background: url("../images/mv-bg.jpg") no-repeat center/cover;
}
.p-top-mv::before {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.6);
  content: "";
}
.p-top-mv::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1.25rem;
  background: rgba(167, 55, 79, 0.8);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    height: 31.25rem;
    min-height: auto;
    background-image: url("../images/mv-bg-sp.jpg");
  }
}

.p-top-mv__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top-mv__logo {
  width: 28.875rem;
}
.p-top-mv__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-mv__logo {
    width: 12.625rem;
  }
}

.p-top-mv__divider {
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-top: 2.3125rem;
  background: var(--color-wine);
}
@media screen and (max-width: 767px) {
  .p-top-mv__divider {
    margin-top: 2.375rem;
  }
}

.p-top-mv__catch {
  margin-top: 2.1875rem;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-mv__catch {
    margin-top: 2.125rem;
  }
}

.p-top-mv__name {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1.17;
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-mv__name {
    font-size: 1.25rem;
  }
}

.p-top-services {
  padding-top: calc(14.75rem + var(--section-gap-lg));
  background: var(--color-bg-gray);
}
@media screen and (max-width: 767px) {
  .p-top-services {
    padding-top: calc(4.1875rem + var(--section-gap-lg));
  }
}

.p-top-services__lead {
  max-width: 45.625rem;
  margin-top: var(--gap-title-body);
  margin-inline: auto;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
}

.p-top-services__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.875rem;
  margin-top: var(--gap-title-body);
}
@media screen and (max-width: 767px) {
  .p-top-services__list {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}

.p-top-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.3125rem;
  font-size: 1.25rem;
  font-weight: var(--bold);
  line-height: var(--lh-heading-jp);
  text-align: center;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-wine);
}
.p-top-services__item:nth-child(1) {
  grid-column: 2/4;
}
.p-top-services__item:nth-child(2) {
  grid-column: 4/6;
}
.p-top-services__item:nth-child(3) {
  grid-column: 1/3;
}
.p-top-services__item:nth-child(4) {
  grid-column: 3/5;
}
.p-top-services__item:nth-child(5) {
  grid-column: 5/7;
}
.p-top-services__item:nth-child(6) {
  grid-column: 2/4;
}
.p-top-services__item:nth-child(7) {
  grid-column: 4/6;
}
@media screen and (max-width: 767px) {
  .p-top-services__item {
    min-height: 4.1875rem;
    font-size: 1.125rem;
  }
  .p-top-services__item:nth-child(n) {
    grid-column: auto;
  }
}

.p-top-services__item-note {
  font-size: 0.875rem;
  font-weight: var(--regular);
}
@media screen and (max-width: 767px) {
  .p-top-services__item-note {
    font-size: 0.8125rem;
  }
}

.p-top-services__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--section-gap-md);
  margin-bottom: -14.75rem;
}
.p-top-services__photos img {
  aspect-ratio: 370/472;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-services__photos {
    margin-bottom: -4.375rem;
  }
  .p-top-services__photos img {
    aspect-ratio: 110/140;
  }
}

.p-top-works {
  padding-top: calc(14.75rem + var(--section-gap-lg));
  padding-bottom: var(--section-gap-lg);
  background: var(--color-dark);
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding-top: calc(4.375rem + var(--section-gap-lg));
  }
}

.p-top-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: var(--section-gap-md);
}
@media screen and (max-width: 767px) {
  .p-top-works__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-top-works__card {
  background: var(--color-caption);
}

.p-top-works__img img {
  aspect-ratio: 350/218;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works__body {
  padding-block: 0.875rem 0.625rem;
  padding-inline: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-works__body {
    padding-block: 0.8125rem 0.625rem;
  }
}

.p-top-works__title {
  font-size: var(--fs-body);
  font-weight: var(--bold);
  line-height: 1.7;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-works__title {
    line-height: 1.5;
  }
}

.p-top-works__place {
  font-size: var(--fs-body);
  font-weight: var(--regular);
  line-height: var(--lh-body);
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
.u-fade {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--fade-delay, 0s);
}

.u-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .u-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/*# sourceMappingURL=style.css.map */
