@charset "UTF-8";
/* ************************************** _
タイトル：common.css
概要：サイト共通のスタイルシート
更新：2025.07.20
_ ************************************** */
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* 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,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

/* 共通ベース用
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: 500;
  font-size: 16px;
  color: #4a4b47;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  background-color: #f8f8f6;
  letter-spacing: 0.025em;
}
@media (max-width: 1440px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

a,
button {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover,
button:hover {
  cursor: pointer;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.l-section {
  padding-bottom: 150px;
  background-color: #f8f8f6;
}
@media (max-width: 1440px) {
  .l-section {
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .l-section {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .l-section {
    padding-bottom: 60px;
  }
}

.l-wrapper {
  width: 100%;
  margin: 0 auto;
}

.l-inner {
  width: 87.778%;
  max-width: 1680px;
  margin: 0 auto;
}
.l-inner--narrow {
  max-width: 1200px;
}

.c-bg {
  padding: 150px 0;
}
@media (max-width: 1440px) {
  .c-bg {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  .c-bg {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .c-bg {
    padding: 60px 0;
  }
}
.c-bg--beige-dark {
  background-color: #e4e1d9;
}

.u-sp__only {
  display: none !important;
}
@media (max-width: 480px) {
  .u-sp__only {
    display: block !important;
  }
}

.u-tb__only {
  display: none !important;
}
@media (max-width: 1024px) {
  .u-tb__only {
    display: block !important;
  }
}

.u-pc__only {
  display: block !important;
}
@media (max-width: 1024px) {
  .u-pc__only {
    display: none !important;
  }
}

.u-center {
  text-align: center;
}

.u-color {
  color: #a40000;
}

/* ===============================
アニメーション
=============================== */
/* テキスト行分割 */
.js-split {
  visibility: hidden;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-inner {
  display: inline-block;
  transform: translateY(130%);
  opacity: 0;
}

/* パララックス */
.p-parallax {
  position: relative;
  overflow: hidden;
}

.js-parallax,
.js-parallax-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* フェードアップ */
.js-fadeup {
  opacity: 0;
}

/* 共通パーツ　ヘッダー用
---------------------------------------------------------------------------- */
.l-header {
  position: relative;
}
.l-header__logo {
  left: 6.45%;
  top: 25px;
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  .l-header__logo {
    top: 17px;
  }
}
@media (max-width: 480px) {
  .l-header__logo {
    top: 15px;
    position: fixed;
    z-index: 99;
  }
}
.l-header__logo a {
  display: block;
  max-width: 145px;
  width: 100%;
}
@media (max-width: 1440px) {
  .l-header__logo a {
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .l-header__logo a {
    max-width: 85px;
  }
}
.l-header__logo img {
  aspect-ratio: 50/31;
}

.body--white-logo .l-header__logo img {
  filter: invert(1);
  transition: all 0.3s ease;
}

/* スクロールしたら黒に戻す */
.body--white-logo.is-scrolled .l-header__logo img {
  filter: invert(0);
}

.is-scrolled .l-header__logo a {
  max-width: 70px;
  transition: all 0.3s ease;
}

.is-scrolled .l-header__logo {
  top: 0;
  left: 0;
  padding: 18px 24px;
  background-color: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: fixed;
  z-index: 99;
}

/* 共通パーツ　フッター用
---------------------------------------------------------------------------- */
.l-footer {
  background-color: #4a4b47;
  padding: 200px 0;
}
@media (max-width: 1440px) {
  .l-footer {
    padding: 150px 0;
  }
}
@media (max-width: 1024px) {
  .l-footer {
    padding: 120px 0;
  }
}
@media (max-width: 480px) {
  .l-footer {
    padding: 80px 0;
  }
}
.l-footer__inner {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 480px) {
  .l-footer__inner {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .l-footer__main {
    border-top: 1px solid;
    padding-top: 80px;
  }
}
@media (max-width: 480px) {
  .l-footer__main {
    padding-top: 60px;
  }
}
.l-footer__side {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .l-footer__side {
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .l-footer__side {
    gap: 40px;
  }
}
.l-footer__logo {
  max-width: 190px;
}
@media (max-width: 1440px) {
  .l-footer__logo {
    max-width: 160px;
  }
}
@media (max-width: 480px) {
  .l-footer__logo {
    max-width: 120px;
  }
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.l-footer__info-company {
  margin-bottom: 5px;
}
.l-footer__info-address {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .l-footer__info-address {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.l-footer__info-tel {
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .l-footer__info-tel {
    font-size: 28px;
  }
}
.l-footer__info-tel span {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.l-footer__info-time {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .l-footer__info-time {
    font-size: 18px;
  }
}
.l-footer__info-time span {
  font-size: 14px;
  padding: 4px 7px;
  margin-left: 5px;
  border: 1px solid #fff;
}
@media (max-width: 480px) {
  .l-footer__info-time span {
    font-size: 12px;
    padding: 3px 5px;
  }
}
.l-footer__info-holiday {
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .l-footer__info-holiday {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width: 480px) {
  .l-footer__sns {
    font-size: 16px;
    gap: 8px;
  }
}
.l-footer__sns-icon img {
  width: 22px;
  height: 22px;
  position: relative;
  top: 2px;
}
@media (max-width: 1440px) {
  .l-footer__sns-icon img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .l-footer__sns-icon img {
    width: 18px;
    height: 18px;
  }
}
.l-footer__legal-list {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .l-footer__legal-list {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .l-footer__legal-list {
    font-size: 11px;
    gap: 3px;
  }
}
.l-footer__legal-copyright {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
}
@media (max-width: 1440px) {
  .l-footer__legal-copyright {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .l-footer__legal-copyright {
    font-size: 12px;
  }
}
.l-footer__nav {
  display: flex;
  gap: 150px;
}
@media (max-width: 1440px) {
  .l-footer__nav {
    gap: 80px;
  }
}
@media (max-width: 1024px) {
  .l-footer__nav {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1440px) {
  .l-footer__list {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .l-footer__list {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .l-footer__list {
    width: 100%;
    gap: 20px;
    font-size: 13px;
  }
}
.l-footer__list-item {
  font-weight: 600;
}
.l-footer__list-link:hover {
  opacity: 0.7;
}
.l-footer__sub {
  text-indent: 30px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
  max-height: none;
  overflow: visible;
}
@media (max-width: 480px) {
  .l-footer__sub {
    text-indent: 20px;
  }
}
.l-footer__accordion-btn {
  display: none;
}

@media (max-width: 480px) {
  .l-footer__list-item.is-open .l-footer__sub {
    max-height: 1000px;
    display: flex;
    opacity: 1;
  }
  .l-footer__list-item.is-open .l-footer__accordion-btn {
    transform: rotate(90deg);
  }
  .l-footer__list-item.is-open .l-footer__accordion-btn::before {
    display: none;
  }
  .l-footer__accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .l-footer__sub {
    display: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.2s ease;
  }
  .l-footer__accordion-btn {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .l-footer__accordion-btn::before, .l-footer__accordion-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%, -50%);
  }
  .l-footer__accordion-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
/* 共通CTA
---------------------------------------------------------------------------- */
.p-cta__inner {
  display: flex;
}
@media (max-width: 480px) {
  .p-cta__inner {
    flex-direction: column;
  }
}
.p-cta__item {
  width: 50%;
  height: 480px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, filter 0.4s ease;
}
@media (max-width: 1440px) {
  .p-cta__item {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .p-cta__item {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .p-cta__item {
    height: 220px;
    width: 100%;
  }
}
.p-cta__item--works {
  background-image: url(../img/_common/pat_texture--gray.jpg);
  background-repeat: repeat;
  color: #fff;
}
.p-cta__item--contact {
  background-color: #f3efe6;
  background-image: url(../img/_common/pat_texture--beige.jpg);
  background-repeat: repeat;
}
.p-cta__item--contact::before {
  border-color: rgba(0, 0, 0, 0.6) !important;
}
.p-cta__item::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease, inset 0.4s ease;
  pointer-events: none;
}
@media (max-width: 480px) {
  .p-cta__item::before {
    inset: 20px;
  }
}
.p-cta__item:hover::before {
  opacity: 1;
  inset: 15px;
}
@media (max-width: 480px) {
  .p-cta__item:hover::before {
    inset: 10px;
  }
}
.p-cta__heading {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 72px;
}
@media (max-width: 1440px) {
  .p-cta__heading {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .p-cta__heading {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .p-cta__heading {
    font-size: 34px;
  }
}
.p-cta__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .p-cta__lead {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .p-cta__lead {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .p-cta__lead {
    font-size: 12px;
  }
}
.p-cta__link {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}
.p-cta__link:active {
  background-color: rgba(0, 0, 0, 0.03);
}
.p-cta__arrow {
  content: "";
  display: block;
  background-image: url(../img/_common/arrow_common.svg);
  background-size: cover;
  aspect-ratio: 300/83;
  height: 10px;
  margin-top: 60px;
  transition: transform 0.4s ease;
}
@media (max-width: 1440px) {
  .p-cta__arrow {
    height: 9px;
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .p-cta__arrow {
    height: 8px;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .p-cta__arrow {
    height: 6px;
    margin-top: 25px;
  }
}
.p-cta__arrow--white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(259deg) brightness(100%) contrast(103%);
}
@media (hover: hover) and (pointer: fine) {
  .p-cta__link:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .p-cta__link:hover .p-cta__arrow {
    transform: translateX(8px);
  }
  .p-cta {
    /* 内枠の演出を使う場合 */
  }
  .p-cta__item:hover::before {
    opacity: 1;
    inset: 10px;
  }
}

/* 共通パーツ　ボタン関連
---------------------------------------------------------------------------- */
.c-btn,
#mfp_button_send,
#mfp_button_cancel {
  width: 400px;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  background-color: #5b6871;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (max-width: 1440px) {
  .c-btn,
  #mfp_button_send,
  #mfp_button_cancel {
    max-width: 350px;
    font-size: 18px;
    padding: 15px 0;
  }
}
@media (max-width: 1024px) {
  .c-btn,
  #mfp_button_send,
  #mfp_button_cancel {
    max-width: 300px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .c-btn,
  #mfp_button_send,
  #mfp_button_cancel {
    max-width: 250px;
    font-size: 16px;
    padding: 12px 0;
  }
}
.c-parag + .c-btn,
.c-parag + #mfp_button_send,
.c-parag + #mfp_button_cancel {
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .c-parag + .c-btn,
  .c-parag + #mfp_button_send,
  .c-parag + #mfp_button_cancel {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .c-parag + .c-btn,
  .c-parag + #mfp_button_send,
  .c-parag + #mfp_button_cancel {
    margin-top: 25px;
  }
}
.c-btn::after,
#mfp_button_send::after,
#mfp_button_cancel::after {
  content: "";
  position: absolute;
  background-image: url(../img/_common/arrow_common.svg);
  background-size: cover;
  aspect-ratio: 300/83;
  height: 7px;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(259deg) brightness(100%) contrast(103%);
}
@media (max-width: 1024px) {
  .c-btn::after,
  #mfp_button_send::after,
  #mfp_button_cancel::after {
    height: 6px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .c-btn::after,
  #mfp_button_send::after,
  #mfp_button_cancel::after {
    height: 5px;
    right: 10px;
  }
}
.c-btn:hover,
#mfp_button_send:hover,
#mfp_button_cancel:hover {
  opacity: 0.7;
}
.c-btn--center,
#mfp_button_send--center,
#mfp_button_cancel--center {
  margin: 0 auto;
}
.c-btn--tel,
#mfp_button_send--tel,
#mfp_button_cancel--tel {
  background-color: #e4e1d9;
  font-size: 20px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4b47;
  gap: 5px;
}
@media (max-width: 480px) {
  .c-btn--tel,
  #mfp_button_send--tel,
  #mfp_button_cancel--tel {
    font-size: 19px;
  }
}
.c-btn--tel span,
#mfp_button_send--tel span,
#mfp_button_cancel--tel span {
  font-size: 25px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  top: 1px;
}
@media (max-width: 480px) {
  .c-btn--tel span,
  #mfp_button_send--tel span,
  #mfp_button_cancel--tel span {
    font-size: 22px;
    top: 2px;
  }
}
.c-btn--tel::after,
#mfp_button_send--tel::after,
#mfp_button_cancel--tel::after {
  display: none;
}
.c-btn--beige,
#mfp_button_send--beige,
#mfp_button_cancel--beige {
  background-color: #e4e1d9;
  color: #4a4b47;
}
.c-btn--beige::after,
#mfp_button_send--beige::after,
#mfp_button_cancel--beige::after {
  filter: none;
}
.c-btn--black,
#mfp_button_send--black,
#mfp_button_cancel--black {
  background-color: #4a4b47;
}
.c-btn__line,
#mfp_button_send__line,
#mfp_button_cancel__line {
  display: block;
  max-width: 390px;
  width: 100%;
  padding: 20px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #4a4b47;
  position: relative;
}
@media (max-width: 1440px) {
  .c-btn__line,
  #mfp_button_send__line,
  #mfp_button_cancel__line {
    max-width: 350px;
    padding: 15px 10px;
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .c-btn__line,
  #mfp_button_send__line,
  #mfp_button_cancel__line {
    max-width: 300px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .c-btn__line,
  #mfp_button_send__line,
  #mfp_button_cancel__line {
    max-width: 250px;
    font-size: 19px;
    padding: 12px 10px;
  }
}
.c-parag + .c-btn__line,
.c-parag + #mfp_button_send__line,
.c-parag + #mfp_button_cancel__line {
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .c-parag + .c-btn__line,
  .c-parag + #mfp_button_send__line,
  .c-parag + #mfp_button_cancel__line {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .c-parag + .c-btn__line,
  .c-parag + #mfp_button_send__line,
  .c-parag + #mfp_button_cancel__line {
    margin-top: 15px;
  }
}
.c-btn__line::after,
#mfp_button_send__line::after,
#mfp_button_cancel__line::after {
  content: "";
  position: absolute;
  background-image: url(../img/_common/arrow_common.svg);
  background-size: cover;
  aspect-ratio: 300/83;
  height: 7px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 1440px) {
  .c-btn__line::after,
  #mfp_button_send__line::after,
  #mfp_button_cancel__line::after {
    right: 10px;
  }
}
@media (max-width: 1024px) {
  .c-btn__line::after,
  #mfp_button_send__line::after,
  #mfp_button_cancel__line::after {
    height: 6px;
  }
}
@media (max-width: 480px) {
  .c-btn__line::after,
  #mfp_button_send__line::after,
  #mfp_button_cancel__line::after {
    height: 5px;
  }
}
.c-btn__line:hover,
#mfp_button_send__line:hover,
#mfp_button_cancel__line:hover {
  color: #5b6871;
  border-bottom: 1px solid #5b6871;
}
.c-btn__line:hover::after,
#mfp_button_send__line:hover::after,
#mfp_button_cancel__line:hover::after {
  transform: translateX(8px);
}
.c-btn__line--small,
#mfp_button_send__line--small,
#mfp_button_cancel__line--small {
  font-size: 22px;
  padding: 15px;
}
@media (max-width: 480px) {
  .c-btn__line--small,
  #mfp_button_send__line--small,
  #mfp_button_cancel__line--small {
    max-width: 250px;
    font-size: 19px;
    padding: 12px 10px;
  }
}
.c-btn__line--right,
#mfp_button_send__line--right,
#mfp_button_cancel__line--right {
  margin: 0 0 0 auto;
}

#mfp_button_cancel {
  background-color: #e4e1d9;
  color: #4a4b47;
}
#mfp_button_cancel::after {
  filter: none;
}

.c-tel {
  background-color: #e4e1d9;
  font-size: 20px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4b47;
  gap: 5px;
}
.c-tel::after {
  display: none;
}
@media (max-width: 1024px) {
  .c-tel {
    font-size: 18px;
  }
}
.c-tel span {
  font-size: 25px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  top: 1px;
}
@media (max-width: 1024px) {
  .c-tel span {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .c-tel span {
    top: 2px;
  }
}
@media (max-width: 1024px) {
  .c-tel__col {
    display: flex;
    flex-direction: column;
  }
}
.c-tel__time {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .c-tel__time {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .c-tel__time {
    font-size: 18px;
  }
}
.c-tel__time span {
  font-size: 14px;
  padding: 4px 7px;
  margin-left: 5px;
  border: 1px solid #4a4b47;
}
@media (max-width: 480px) {
  .c-tel__time span {
    font-size: 12px;
    padding: 3px 5px;
  }
}
.c-tel__holiday {
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .c-tel__holiday {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/* 共通パーツ　テキスト関連
---------------------------------------------------------------------------- */
.c-parag {
  font-weight: 500;
  line-height: 1.8;
}
.c-parag + .c-parag {
  margin-top: 12px;
}
@media (max-width: 480px) {
  .c-parag + .c-parag {
    margin-top: 8px;
  }
}
.c-lead + .c-parag {
  margin-top: 25px;
}
@media (max-width: 1440px) {
  .c-lead + .c-parag {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .c-lead + .c-parag {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .c-lead + .c-parag {
    margin-top: 10px;
  }
}

.c-lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
@media (max-width: 1440px) {
  .c-lead {
    font-size: 18px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .c-lead {
    font-size: 16px;
  }
}
.c-lead + .c-lead {
  margin-top: 8px;
}
.c-parag + .c-lead {
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .c-parag + .c-lead {
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .c-parag + .c-lead {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .c-parag + .c-lead {
    margin-top: 20px;
  }
}
.c-lead--endline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-lead--endline::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #4a4b47;
}
@media (max-width: 1440px) {
  .c-lead--endline::after {
    display: none;
  }
}
.c-lead--startline {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .c-lead--startline {
    gap: 8px;
  }
}
.c-lead--startline::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #4a4b47;
}
@media (max-width: 1024px) {
  .c-lead--startline::before {
    width: 30px;
  }
}
@media (max-width: 480px) {
  .c-lead--startline::before {
    width: 20px;
  }
}

.c-line-height--tight {
  line-height: 1.4;
}
.c-line-height--wide {
  line-height: 2.2;
}
@media (max-width: 1440px) {
  .c-line-height--wide {
    line-height: 2;
  }
}

.c-heading__index {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .c-heading__index {
    gap: 25px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1024px) {
  .c-heading__index {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .c-heading__index {
    gap: 20px;
    margin-bottom: 10px;
  }
}
.c-heading__index h2 {
  font-size: 54px;
  color: #5b6871;
  font-weight: 600;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width: 1440px) {
  .c-heading__index h2 {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .c-heading__index h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .c-heading__index h2 {
    font-size: 36px;
  }
}
.c-heading__index p {
  font-size: 24px;
  letter-spacing: 0.1;
  font-weight: 600;
  color: #4a4b47;
}
@media (max-width: 1440px) {
  .c-heading__index p {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .c-heading__index p {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .c-heading__index p {
    font-size: 15px;
  }
}
.c-heading__section {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .c-heading__section {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .c-heading__section {
    margin-bottom: 25px;
  }
}
.c-heading__section h2 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 64px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .c-heading__section h2 {
    font-size: 58px;
  }
}
@media (max-width: 1024px) {
  .c-heading__section h2 {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .c-heading__section h2 {
    font-size: 32px;
  }
}
.c-heading__section p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .c-heading__section p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-heading__section p {
    font-size: 12px;
  }
}
.c-heading__section--baseline {
  align-items: baseline;
}
@media (max-width: 1440px) {
  .c-heading__section--baseline h2 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .c-heading__section--baseline h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .c-heading__section--baseline h2 {
    font-size: 32px;
  }
}
@media (max-width: 1440px) {
  .c-heading__section--baseline p {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .c-heading__section--baseline p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-heading__section--baseline p {
    font-size: 12px;
  }
}
.c-heading__section--intro {
  margin-bottom: 90px;
}
@media (max-width: 1440px) {
  .c-heading__section--intro {
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) {
  .c-heading__section--intro {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .c-heading__section--intro {
    margin-bottom: 30px;
  }
}
.c-heading__section--intro p {
  font-size: 18px;
  margin-top: 10px;
}

/* 共通パーツ　下層ページ共通
---------------------------------------------------------------------------- */
.c-page__title {
  margin-top: 200px;
  margin-bottom: 100px;
}
@media (max-width: 1440px) {
  .c-page__title {
    margin-top: 180px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .c-page__title {
    margin-top: 150px;
    margin-bottom: 70px;
  }
}
@media (max-width: 480px) {
  .c-page__title {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
.c-page__title--archive {
  margin-top: 160px;
}
@media (max-width: 1440px) {
  .c-page__title--archive {
    margin-top: 120px;
  }
}
@media (max-width: 480px) {
  .c-page__title--archive {
    margin-top: 100px;
  }
}
.c-page__title--archive .c-breadcrumb__list {
  justify-content: flex-start;
}
.c-page__inner {
  text-align: center;
}
.c-page__heading h1 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 72px;
  font-weight: 600;
  color: #5b6871;
}
@media (max-width: 1440px) {
  .c-page__heading h1 {
    font-size: 54px;
  }
}
@media (max-width: 1024px) {
  .c-page__heading h1 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .c-page__heading h1 {
    font-size: 36px;
  }
}
.c-page__heading p {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .c-page__heading p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .c-page__heading p {
    font-size: 11px;
  }
}
.c-page__heading--row {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .c-page__heading--row {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .c-page__heading--row {
    gap: 15px;
  }
}
.c-page__contents {
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .c-page__contents {
    margin-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .c-page__contents {
    margin-bottom: 80px;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #80817e;
  gap: 10px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .c-breadcrumb__list {
    font-size: 12px;
    gap: 8px;
    margin: 8px;
  }
}
@media (max-width: 480px) {
  .c-breadcrumb__list {
    font-size: 11px;
    gap: 8px 5px;
  }
}
.c-breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .c-breadcrumb__list li {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .c-breadcrumb__list li {
    gap: 5px;
  }
}
.c-breadcrumb__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 0.5px;
  background-color: #80817e;
}
.c-breadcrumb__list li a {
  border-bottom: 1px solid #80817e;
}
.c-breadcrumb__item.is-current span {
  max-width: 240px;
  /* 好きな幅に調整 */
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
@media (max-width: 480px) {
  .c-breadcrumb__item.is-current span {
    max-width: 180px;
  }
}

.c-sub-header {
  position: relative;
  overflow: clip;
}
.c-sub-header .c-breadcrumb__list {
  justify-content: flex-start;
}
@media (max-width: 480px) {
  .c-sub-header {
    overflow: visible;
  }
}
.c-sub-header__visual {
  height: 600px;
  overflow: hidden;
  margin-bottom: 150px;
  background-size: cover;
  background-position: center;
  overflow: clip;
}
@media (max-width: 1440px) {
  .c-sub-header__visual {
    height: 500px;
    margin-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__visual {
    height: 480px;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .c-sub-header__visual {
    height: 280px;
    margin-bottom: 0;
  }
}
.c-sub-header__visual--company .c-sub-header__bg {
  background-image: url("../img/company/img_company_main.jpg");
}
.c-sub-header__visual--next .c-sub-header__bg {
  background-image: url("../img/next/img_next_main.jpg");
}
.c-sub-header__visual--showroom .c-sub-header__bg {
  background-image: url("../img/showroom/img_showroom_main.jpg");
}
.c-sub-header__visual--services .c-sub-header__bg {
  background-image: url("../img/services/img_services_main.jpg");
}
.c-sub-header__visual--audio .c-sub-header__bg {
  background-image: url("../img/audio/img_audio_main.jpg");
}
.c-sub-header__visual--hometheater .c-sub-header__bg {
  background-image: url("../img/hometheater/img_hometheater_main.jpg");
}
@media (max-width: 1024px) {
  .c-sub-header__visual--hometheater .c-sub-header__bg {
    background-position: right;
  }
}
.c-sub-header__visual--intelux .c-sub-header__bg {
  background-image: url("../img/intelux/img_intelux_main.jpg");
}
.c-sub-header__visual--works {
  height: 400px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .c-sub-header__visual--works {
    height: 320px;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__visual--works {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .c-sub-header__visual--works {
    height: 135px;
  }
}
.c-sub-header__visual--works .c-sub-header__bg {
  background-image: url("../img/works/img_works_main.jpg");
  height: 400px;
}
@media (max-width: 1440px) {
  .c-sub-header__visual--works .c-sub-header__bg {
    height: 320px;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__visual--works .c-sub-header__bg {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .c-sub-header__visual--works .c-sub-header__bg {
    height: 135px;
  }
}
.c-sub-header__visual:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(to right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.2) calc(50% - 0.5px), rgba(255, 255, 255, 0.2) calc(50% + 0.5px), transparent calc(50% + 0.5px)), linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 200px 100%;
  background-position: 0 0, center;
}
@media (max-width: 480px) {
  .c-sub-header__visual:before {
    background-size: 100% 100%, 100px 100%;
  }
}
.c-sub-header__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  will-change: transform;
}
.c-sub-header__body {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 480px) {
  .c-sub-header__body {
    bottom: auto;
    top: 80%;
  }
}
.c-sub-header__inner {
  display: flex;
  align-items: end;
}
@media (max-width: 1024px) {
  .c-sub-header__inner {
    flex-direction: column;
  }
}
.c-sub-header__item {
  width: 50%;
  background-color: #f8f8f6;
}
.c-sub-header__item--heading {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 70px 0 0;
  padding-left: 6.111%;
  gap: 5px;
}
@media (max-width: 1440px) {
  .c-sub-header__item--heading {
    padding: 50px 0 0;
    padding-left: 6.111%;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__item--heading {
    padding: 25px 6.111% 11px;
    width: 85%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__item--nav {
    width: 100%;
  }
}
.c-sub-header__item--works {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 50px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .c-sub-header__item--works {
    gap: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .c-sub-header__item--works {
    gap: 25px;
    margin-bottom: 15px;
  }
}
.c-sub-header__nav {
  background: #5b6871;
  padding: 55px 6.111%;
  z-index: 1;
  position: relative;
}
@media (max-width: 1440px) {
  .c-sub-header__nav {
    padding: 50px 6.111%;
  }
}
@media (max-width: 1024px) {
  .c-sub-header__nav {
    padding: 20px 6.111%;
    background-color: #f8f8f6;
  }
}
@media (max-width: 480px) {
  .c-sub-header__nav {
    padding: 10px 6.111%;
    font-size: 12px;
  }
}
.c-sub-header__nav-list {
  display: flex;
  gap: 12px 50px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .c-sub-header__nav-list {
    gap: 10px 40px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .c-sub-header__nav-list {
    gap: 10px 25px;
  }
}
.c-sub-header__nav-link {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .c-sub-header__nav-link {
    gap: 10px;
    color: #4a4b47;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-sub-header__nav-link {
    gap: 8px;
    font-size: 13px;
  }
}
.c-sub-header__nav-link::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: relative;
  top: -1px;
  transform: rotate(135deg);
}
@media (max-width: 1024px) {
  .c-sub-header__nav-link::after {
    width: 7px;
    height: 7px;
    border-top: solid 2px #5b6871;
    border-right: solid 2px #5b6871;
  }
}
@media (max-width: 480px) {
  .c-sub-header__nav-link::after {
    width: 6px;
    height: 6px;
  }
}

.c-intro {
  position: relative;
}
.c-intro::after {
  content: "";
  width: 480px;
  height: 480px;
  background-color: #f3efe6;
  position: absolute;
  left: 0;
  top: 20%;
  z-index: 0;
}
@media (max-width: 1440px) {
  .c-intro::after {
    width: 450px;
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .c-intro::after {
    top: 15%;
    width: 320px;
    height: 400px;
    display: none;
  }
}
@media (max-width: 480px) {
  .c-intro::after {
    top: 55.5%;
    width: 250px;
    height: 400px;
  }
}
.c-intro__inner {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 300px;
}
@media (max-width: 1440px) {
  .c-intro__inner {
    margin-bottom: 200px;
  }
}
@media (max-width: 1024px) {
  .c-intro__inner {
    flex-direction: column-reverse;
    margin-bottom: 120px;
    gap: 70px;
  }
}
@media (max-width: 480px) {
  .c-intro__inner {
    margin-bottom: 60px;
    gap: 60px;
  }
}
.c-intro__inner--showroom {
  margin-bottom: 0;
}
.c-intro__inner--services {
  margin-bottom: 200px;
}
@media (max-width: 1440px) {
  .c-intro__inner--services {
    margin-bottom: 150px;
  }
}
@media (max-width: 1024px) {
  .c-intro__inner--services {
    margin-bottom: 120px;
  }
}
@media (max-width: 480px) {
  .c-intro__inner--services {
    margin-bottom: 80px;
  }
}
.c-intro__img {
  width: 50%;
  position: relative;
}
@media (max-width: 1440px) {
  .c-intro__img {
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .c-intro__img {
    width: 70%;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .c-intro__img {
    width: 85%;
    margin: auto;
  }
}
.c-intro__img-first {
  margin: 0 0 0 auto;
  max-width: 600px;
  position: relative;
}
@media (max-width: 1440px) {
  .c-intro__img-first {
    right: -5%;
  }
}
@media (max-width: 1024px) {
  .c-intro__img-first {
    right: -10%;
    top: 0;
  }
}
@media (max-width: 480px) {
  .c-intro__img-first {
    right: 0;
  }
}
.c-intro__img-first--reverse {
  margin: 0 0 auto 0;
}
@media (max-width: 1440px) {
  .c-intro__img-first--reverse {
    left: -5%;
  }
}
@media (max-width: 1024px) {
  .c-intro__img-first--reverse {
    top: 0;
    left: -10%;
  }
}
@media (max-width: 480px) {
  .c-intro__img-first--reverse {
    left: 0;
  }
}
.c-intro__img-second {
  position: absolute;
  bottom: -10%;
  left: 0;
}
@media (max-width: 1440px) {
  .c-intro__img-second {
    width: 60%;
    position: absolute;
    bottom: -1%;
    left: -10%;
  }
}
@media (max-width: 1024px) {
  .c-intro__img-second {
    width: 55%;
    bottom: -5%;
    left: -15%;
  }
}
@media (max-width: 480px) {
  .c-intro__img-second {
    width: 50%;
    bottom: -8%;
    left: -8%;
  }
}
.c-intro__img-second--reverse {
  right: 0;
  bottom: 0;
  left: auto;
}
@media (max-width: 1440px) {
  .c-intro__img-second--reverse {
    right: -10%;
  }
}
@media (max-width: 1024px) {
  .c-intro__img-second--reverse {
    right: -15%;
    bottom: -5%;
  }
}
@media (max-width: 480px) {
  .c-intro__img-second--reverse {
    right: -8%;
    bottom: -8%;
  }
}
@media (max-width: 1440px) {
  .c-intro__img-second--services {
    width: 45%;
  }
}
.c-intro__text {
  flex: 1;
  z-index: 1;
}
.c-intro__lead {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.5rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 45px;
}
@media (max-width: 1440px) {
  .c-intro__lead {
    font-size: 28px;
    gap: 30px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1024px) {
  .c-intro__lead {
    font-size: 24px;
    gap: 25px;
    margin-bottom: 30px;
    line-height: 1.9;
  }
}
@media (max-width: 480px) {
  .c-intro__lead {
    font-size: 19px;
    gap: 20px;
    margin-bottom: 23px;
    line-height: 1.8;
  }
}
.c-intro__lead::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #5b6871;
}
@media (max-width: 1440px) {
  .c-intro__lead::after {
    width: 70px;
  }
}
@media (max-width: 1024px) {
  .c-intro__lead::after {
    width: 55px;
  }
}
@media (max-width: 480px) {
  .c-intro__lead::after {
    width: 45px;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .c-table {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .c-table {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .c-table {
    font-size: 12px;
  }
}
.c-table-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .c-table-heading {
    font-size: 19px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1024px) {
  .c-table-heading {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .c-table-heading {
    font-size: 15px;
  }
}
.c-table th,
.c-table td {
  padding: 20px 0px;
  border-bottom: 1px solid #80817e;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 1440px) {
  .c-table th,
  .c-table td {
    padding: 20px 20px 20px 0;
  }
}
@media (max-width: 1024px) {
  .c-table th,
  .c-table td {
    padding: 17px 20px 17px 0;
  }
}
@media (max-width: 480px) {
  .c-table th,
  .c-table td {
    padding: 10px 25px 10px 0;
  }
}
.c-table th {
  width: 30%;
  font-weight: 500;
}
.c-table td:nth-child(2) {
  width: 30%;
}
.c-table td:nth-child(3) {
  width: 40%;
}
@media (max-width: 480px) {
  .c-table--brand tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.c-table--brand th {
  width: 40%;
}
@media (max-width: 480px) {
  .c-table--brand th {
    width: 100%;
    order: 1;
  }
}
.c-table--brand td:nth-child(2) {
  width: 40%;
}
@media (max-width: 480px) {
  .c-table--brand td:nth-child(2) {
    width: 50%;
  }
}
.c-table--brand td:nth-child(3) {
  width: 20%;
}
@media (max-width: 480px) {
  .c-table--brand td:nth-child(3) {
    width: 50%;
  }
}
.c-table--brand .border-none {
  border: none;
}
@media (max-width: 480px) {
  .c-table--brand tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .c-table--brand tbody th {
    width: 100%;
    order: 1;
    padding-top: 20px;
  }
  .c-table--brand tbody th:empty {
    display: none;
  }
  .c-table--brand tbody td {
    width: 50%;
    order: 2;
    padding-right: 10px;
  }
  .c-table--brand tbody .last-cell {
    padding-bottom: 20px;
  }
}

.c-showroom {
  overflow: hidden;
}
.c-showroom__view {
  width: 100%;
  height: 100vh;
  background-image: url(../img/_common/img_common_showroom.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 150px;
  clip-path: inset(0 40%);
  scale: 1.15;
}
@media (max-width: 1440px) {
  .c-showroom__view {
    margin-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .c-showroom__view {
    height: 65vh;
    margin-bottom: 80px;
    clip-path: none;
  }
}
@media (max-width: 480px) {
  .c-showroom__view {
    height: 55vh;
  }
}
.c-showroom__view::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
.c-showroom__view-copy {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  width: 100%;
}
.c-showroom__view-copy img {
  max-width: 350px;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(259deg) brightness(100%) contrast(103%);
  aspect-ratio: 50/31;
  margin: 0 auto 50px;
}
@media (max-width: 1440px) {
  .c-showroom__view-copy img {
    margin: 0 auto 40px;
    max-width: 320px;
  }
}
@media (max-width: 1024px) {
  .c-showroom__view-copy img {
    max-width: 240px;
  }
}
@media (max-width: 480px) {
  .c-showroom__view-copy img {
    max-width: 155px;
    margin: 0 auto 25px;
  }
}
.c-showroom__heading {
  font-size: 54px;
  color: #fff;
  font-weight: 700;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (max-width: 1440px) {
  .c-showroom__heading {
    font-size: 48px;
  }
}
@media (max-width: 1440px) {
  .c-showroom__heading {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .c-showroom__heading {
    font-size: 24px;
    padding: 0 30px;
  }
}
.c-showroom__bottom {
  text-align: center;
}
.c-showroom__lead {
  font-size: 24px;
  letter-spacing: 0.075em;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .c-showroom__lead {
    font-size: 21px;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .c-showroom__lead {
    font-size: 18px;
    margin-bottom: 20px;
    word-break: auto-phrase;
    line-height: 1.6;
  }
}
.c-showroom__btns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .c-showroom__btns {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .c-showroom__btns {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .c-showroom__btns {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    align-items: center;
  }
}

/* 共通パーツ　グローバルナビ用
---------------------------------------------------------------------------- */
.p-global-nav {
  background-color: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  height: 100px;
  right: 0;
  top: 0;
  min-width: 50%;
  z-index: 999;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.p-global-nav.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1440px) {
  .p-global-nav {
    height: 80px;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .p-global-nav {
    min-width: 0;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }
}
@media (max-width: 480px) {
  .p-global-nav {
    height: 65px;
  }
}
.p-global-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  padding: 0 40px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 1440px) {
  .p-global-nav__list {
    font-size: 15px;
    padding: 0 25px;
  }
}
@media (max-width: 1024px) {
  .p-global-nav__list {
    display: none;
  }
}
.p-global-nav__item a:hover {
  color: #5b6871;
}
.p-global-nav__btns {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.p-global-nav__cta {
  background-color: #5b6871;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .p-global-nav__cta {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .p-global-nav__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 85px;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .p-global-nav__cta {
    width: 65px;
  }
}
.p-global-nav__cta-label {
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 1;
}
@media (max-width: 1440px) {
  .p-global-nav__cta-label {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .p-global-nav__cta-label {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .p-global-nav__cta-label {
    font-size: 10px;
  }
}
.p-global-nav__cta img {
  display: none;
}
@media (max-width: 1024px) {
  .p-global-nav__cta img {
    display: block;
    width: 32px;
  }
}
@media (max-width: 480px) {
  .p-global-nav__cta img {
    width: 30px;
  }
}
.p-global-nav__cta:hover {
  opacity: 0.7;
}
.p-global-nav__hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .p-global-nav__hamburger {
    display: flex;
    background-color: #4a4b47;
  }
}
.p-global-nav__hamburger-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .p-global-nav__hamburger-inner {
    gap: 7px;
    margin-top: 5px;
  }
}
.p-global-nav__hamburger-inner span {
  display: block;
  width: 36px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 480px) {
  .p-global-nav__hamburger-inner span {
    width: 33px;
  }
}
.p-global-nav__hamburger-inner span:last-child {
  width: 15px;
}
@media (max-width: 480px) {
  .p-global-nav__hamburger-inner span:last-child {
    width: 12px;
  }
}

/* 共通パーツ　グローバルナビ SP用
---------------------------------------------------------------------------- */
.p-sp-nav {
  inset: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
}
.p-sp-nav__inner {
  width: 87.778%;
  max-width: 768px;
  margin: 120px auto 80px;
}
@media (max-width: 480px) {
  .p-sp-nav__inner {
    margin: 100px auto;
  }
}
.p-sp-nav__nav {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .p-sp-nav__nav {
    font-size: 15px;
  }
}
.p-sp-nav__list {
  border-top: 1px solid #dededd;
}
.p-sp-nav__item {
  position: relative;
  border-bottom: 1px solid #dededd;
  padding: 20px 20px;
}
@media (max-width: 480px) {
  .p-sp-nav__item {
    padding: 12px 10px;
  }
}
.p-sp-nav__item.is-open .p-sp-nav__sub {
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 1;
  text-indent: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.025em;
}
@media (max-width: 480px) {
  .p-sp-nav__item.is-open .p-sp-nav__sub {
    font-size: 13px;
    margin-top: 10px;
    text-indent: 10px;
    gap: 10px;
  }
}
.p-sp-nav__item.is-open .p-sp-nav__toggle {
  transform: rotate(90deg);
}
.p-sp-nav__item.is-open .p-sp-nav__toggle::before {
  display: none;
}
.p-sp-nav__sub {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  display: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.25s ease;
}
.p-sp-nav__sub li a {
  display: block;
}
.p-sp-nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.p-sp-nav__toggle::before, .p-sp-nav__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: #4a4b47;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .p-sp-nav__toggle::before, .p-sp-nav__toggle::after {
    width: 20px;
  }
}
.p-sp-nav__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-sp-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-sp-nav__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .p-sp-nav__cta {
    flex-direction: column;
    top: 15px;
  }
}
.p-sp-nav__cta-item {
  text-align: center;
}
@media (max-width: 480px) {
  .p-sp-nav__btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 60px;
  }
}
.p-sp-nav__time {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .p-sp-nav__time {
    font-size: 18px;
  }
}
.p-sp-nav__time span {
  font-size: 14px;
  padding: 4px 7px;
  margin-left: 5px;
  border: 1px solid #4a4b47;
}
@media (max-width: 480px) {
  .p-sp-nav__time span {
    font-size: 12px;
    padding: 3px 5px;
  }
}
.p-sp-nav__holiday {
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .p-sp-nav__holiday {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.p-sp-nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-sp-nav__sns {
    font-size: 16px;
    gap: 8px;
  }
}
.p-sp-nav__sns img {
  width: 25px;
  height: 25px;
  position: relative;
  top: 2px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(9%) saturate(178%) hue-rotate(34deg) brightness(92%) contrast(91%);
}
@media (max-width: 1440px) {
  .p-sp-nav__sns img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .p-sp-nav__sns img {
    width: 18px;
    height: 18px;
  }
}

body.is-fixed {
  overflow: hidden;
}

.p-sp-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.p-sp-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-global-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(30deg);
}
.p-global-nav__hamburger.is-open span:nth-child(2) {
  transform: translateY(-1px) rotate(-30deg);
}
.p-global-nav__hamburger.is-open span:nth-child(3) {
  opacity: 0;
}

/* 共通パーツ　サービスメニュー用
---------------------------------------------------------------------------- */
.p-services-menu {
  padding: 100px 0 120px;
  background-color: #4a4b47;
  color: #fff;
}
@media (max-width: 1440px) {
  .p-services-menu {
    padding: 80px 0 100px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu {
    padding: 60px 0 80px;
  }
}
@media (max-width: 480px) {
  .p-services-menu {
    padding: 60px 0;
  }
}
.p-services-menu__heading {
  text-align: center;
  margin-bottom: 35px;
  color: #fff;
}
@media (max-width: 1440px) {
  .p-services-menu__heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu__heading {
    margin-bottom: 25px;
  }
}
.p-services-menu__heading h2 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.035em;
  margin-bottom: 12px;
}
@media (max-width: 1440px) {
  .p-services-menu__heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu__heading h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .p-services-menu__heading h2 {
    font-size: 28px;
  }
}
.p-services-menu__heading p {
  font-size: 16px;
  letter-spacing: 0.08em;
}
@media (max-width: 1024px) {
  .p-services-menu__heading p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .p-services-menu__heading p {
    font-size: 13px;
  }
}
.p-services-menu__list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .p-services-menu__list {
    gap: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu__list {
    gap: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .p-services-menu__list {
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
  }
}
.p-services-menu__item {
  width: calc((100% - 120px) / 3);
}
@media (max-width: 1440px) {
  .p-services-menu__item {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 1024px) {
  .p-services-menu__item {
    width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 480px) {
  .p-services-menu__item {
    width: 100%;
  }
}
.p-services-menu__link {
  display: block;
}
.p-services-menu__link:hover .p-services-menu__img img {
  transform: scale(1.05);
}
.p-services-menu__link:hover .p-services-menu__text h3 {
  opacity: 0.75;
}
.p-services-menu__img {
  overflow: hidden;
  aspect-ratio: 100/58;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .p-services-menu__img {
    margin-bottom: 8px;
  }
}
.p-services-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.p-services-menu__text {
  text-align: center;
  color: #fff;
}
.p-services-menu__text h3 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease;
}
@media (max-width: 1440px) {
  .p-services-menu__text h3 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu__text h3 {
    font-size: 24px;
  }
}
.p-services-menu__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 3px;
}
@media (max-width: 1440px) {
  .p-services-menu__text p {
    font-size: 13px;
    margin-top: 5px;
  }
}
@media (max-width: 1024px) {
  .p-services-menu__text p {
    font-size: 12px;
    margin-top: 3px;
  }
}/*# sourceMappingURL=common.css.map */