@charset "UTF-8";
/*!
Theme Name: takashin-reform
Theme URI: https://reform-studio.jp/
Author: WINKMARK
Author URI: https://winkmark.co.jp/
Description: タカシンリフォームサイト用オリジナルテーマ
Version: 1.0
Text Domain: takashin-reform
*/
/*!
 * このファイルはSCSSから自動生成されています。
 * 直接編集しないでください。
 * 修正する場合は対応するSCSSファイルを編集してください。
 */
/* ===== foundation/reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul, ol {
  padding: 0;
  list-style: none;
}

body {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

/* ===== End foundation/reset ===== */
/* ===== foundation/base ===== */
:root {
  --main-color: #21993A;
  --sub-color1: #A3CA80;
  --sub-color2: #DCEBCE;
  --base-color: #F1F1F1;
  --orange-color: #E8AD54;
  --blue-color: #559CCF;
  --font-size-xs: 1.2rem;
  --font-size-s: 1.4rem;
  --font-size-m: clamp(1.6rem, 0.3vw + 1.4rem, 1.7rem);
  --font-size-l: clamp(1.8rem, 0.5vw + 1.6rem, 2rem);
  --font-size-xl: clamp(2.2rem, 0.7vw + 1.8rem, 2.5rem);
  --font-size-xxl: clamp(2.7rem, 1.1vw + 2.1rem, 3.2rem);
  --font-size-xxxl: clamp(3.2rem, 1.6vw + 2.3rem, 3.9rem);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--font-size-m);
  color: #333;
  background-color: #fff !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

a {
  transition: all 0.3s !important;
}

a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

img {
  vertical-align: bottom;
}

/* ===== End foundation/base ===== */
/* ===== layout/container ===== */
.l-container {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  padding-inline: 2rem;
}

.l-section {
  padding: 8rem 0;
  overflow: hidden;
}

.content-wrapper {
  max-width: 104rem;
  margin: 0 auto;
}

.last-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#CONTENTS {
  padding-top: 11rem;
}

@media (max-width: 1100px) {
  #CONTENTS {
    padding-top: 5rem;
  }
}
/* ===== End layout/container ===== */
/* ===== layout/header ===== */
/* ======================
 ヘッダー
====================== */
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 997;
  height: 11rem;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease, box-shadow 0.3s ease;
}

/* 非表示（上に隠す） */
.header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* 上スクロール → 表示（滑らか） */
.header.is-show {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.header__wrapper {
  max-width: 114rem;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 11rem;
}

.header__logo img {
  width: 18rem;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

/* ======================
 PC メニュー
====================== */
.header__nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.header__nav .menu li a {
  position: relative;
}
.header__nav .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #333;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header__nav .menu li:hover a::after {
  transform: scaleX(1);
}

.header__tel {
  text-align: center;
}
.header__tel a {
  font-size: var(--font-size-xxl);
}
.header__tel .flex {
  justify-content: space-between;
  gap: 1rem;
}
.header__tel .flex p {
  font-size: var(--font-size-s);
}

.info-label {
  background: #555;
  color: #fff;
  padding: 0.3rem 1rem;
  margin-right: 0.5rem;
}

/* ======================
 SP 用
====================== */
.hamburger {
  display: none;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger.is-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}
.hamburger.is-close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-close span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-close span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: #fff;
  padding: 6rem 2rem;
  transition: 0.8s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.header__sp-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
}
.header__sp-menu .sub-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.header__sp-menu.active {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-menu {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4rem;
}
.sp-menu > li:last-child {
  border-bottom: none;
}
.sp-menu .sub-menu li:last-child {
  border-bottom: none;
}
.sp-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1em;
}
.sp-menu .sub-menu a {
  display: block;
  padding: 0.6em 0;
}
.sp-menu span {
  display: block;
}
.sp-menu .parent-link {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: block;
  padding: 0.75em 45px 0.75em 0.5em;
  border-bottom: 1px solid #e0e0e0;
}
.sp-menu .parent-link::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: var(--sub-color1);
}
.sp-menu .parent-link::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.sp-menu li.parent-link::before {
  display: none;
}
.sp-menu li.parent-link::after {
  display: none;
}
.sp-menu .parent-link.active::after {
  transform: translateY(-50%) rotate(-135deg);
}
.sp-menu .sub-menu.open {
  max-height: 52rem;
}

@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }
  .header__buttons {
    display: none;
  }
  .header__tel {
    display: none;
  }
  .header {
    height: 5rem;
  }
  .header__wrapper {
    height: 5rem;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }
  .header__logo {
    width: 24rem;
  }
  .header__logo img {
    width: 13.5rem;
  }
}
/* ===== End layout/header ===== */
/* ===== layout/footer ===== */
/* ======================
 フッター
====================== */
.footer {
  background: #f1f1f1;
  padding: 6rem 2rem;
}
.footer small {
  font-size: var(--font-size-xs);
  display: block;
}

.footer__wrapper {
  max-width: 114rem;
  margin: 0 auto;
}
.footer__wrapper > .flex {
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer__info {
  width: 40%;
}

.footer__menu {
  width: 60%;
  font-size: var(--font-size-s);
}
.footer__menu p {
  border-bottom: 1px solid var(--main-color);
  padding: 0.75em 0.5em;
  font-weight: bold;
}
.footer__menu ul {
  margin-top: 1rem;
}
.footer__menu ul li a {
  padding: 0.7rem 0.8rem 0.7rem 2.8rem;
  position: relative;
  display: block;
}
.footer__menu ul li a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 12px;
  height: 0;
  background-color: currentColor;
  border-top: 1px solid currentColor;
}
.footer__menu ul li a:hover {
  background: rgba(3, 2, 2, 0.05);
}
.footer__menu ul.sp-menu li a {
  padding: 1.2rem 0.8rem 1.2rem 2.8rem;
  position: relative;
  display: block;
}
.footer__menu ul.sp-menu li.parent-link {
  font-weight: bold;
}
.footer__menu ul.sp-menu li.parent-link a {
  padding: 0;
}
.footer__menu ul.sp-menu li.parent-link a::before {
  display: none;
}

.footer__logo img {
  max-width: 22rem;
  margin: 0 auto;
}

.footer__tel-box {
  background: #fff;
  padding: 2em;
  max-width: 45rem;
  margin: 3em auto 1em;
}
.footer__tel-box p {
  margin-top: 1rem;
}
.footer__tel-box p .info-label {
  display: inline-block;
  width: 10rem;
  text-align: center;
  margin-right: 1rem;
}

.footer__tel {
  border-bottom: 2px solid var(--main-color);
  margin: 1rem 0 2rem;
  text-align: center;
}
.footer__tel a {
  font-size: var(--font-size-xxl);
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}
.footer__sns a {
  display: inline-block;
}
.footer__sns img {
  width: 48px;
  height: auto;
  display: block;
}

.footer__menu-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 4rem;
}
.footer__menu-wrapper > div:nth-child(1) {
  grid-area: 1/1/2/2;
}
.footer__menu-wrapper > div:nth-child(2) {
  grid-area: 1/2/4/3;
}
.footer__menu-wrapper > div:nth-child(3) {
  grid-area: 2/1/3/2;
}
.footer__menu-wrapper > div:nth-child(4) {
  grid-area: 3/1/4/2;
}
.footer__menu-wrapper > div:nth-child(5) {
  grid-area: 4/1/5/2;
}
.footer__menu-wrapper > div:nth-child(6) {
  grid-area: 4/2/5/3;
}
.footer__menu-wrapper > div .arrow-link {
  position: relative;
  padding-left: 2rem;
}
.footer__menu-wrapper > div .arrow-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 1%;
  width: 6px;
  height: 6px;
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  transform: rotate(-45deg);
  transition-duration: 300ms;
}
.footer__menu-wrapper > div .arrow-link:has(a:hover)::before {
  left: 2%;
}

@media (max-width: 1000px) {
  .footer .pc-block {
    display: none;
  }
  .footer .sp-block {
    display: block;
  }
  .footer small {
    text-align: center;
  }
  .footer__wrapper {
    max-width: 75rem;
  }
  .footer__wrapper > .flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
  }
  .footer__info {
    width: 100%;
  }
  .footer__menu {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 6rem 2rem 8rem;
  }
  .footer__tel a {
    pointer-events: none;
  }
  .footer__tel-box {
    padding: 1.5em;
  }
  .footer__sns img {
    width: 40px;
  }
}
/* ===== End layout/footer ===== */
/* ===== component/button ===== */
.btn {
  display: inline-block;
  background-color: var(--main-color);
  padding: 0.4em 0.8em;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: 500;
  font-size: inherit;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  color: #fff;
}

.btn.size-s {
  max-width: 20rem;
}

.btn.size-l {
  max-width: 42rem;
}

.btn.soudan {
  width: 19.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  font-size: var(--font-size-l);
  padding: 0.6em 0.8em;
}
.btn.soudan span {
  font-size: var(--font-size-s);
  font-weight: 500;
}

.link-btn {
  padding: 0.8em 2.5em 0.8em 1.7em;
  position: relative;
  background: var(--sub-color1);
}
.link-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  margin: auto;
}

.btn-wrapper {
  text-align: center;
}

/* もっと見るボタン */
.more-wrap {
  text-align: center;
  margin-top: 3rem;
}

.more-btn {
  padding: 0.8rem 2rem 0.8rem 0;
  border: 1px solid var(--sub-color1);
  border-radius: 0.2rem;
  font-weight: bold;
  color: var(--sub-color1);
  background: #fff;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 17rem;
}
.more-btn:hover {
  background: var(--sub-color1);
  color: #fff;
}
.more-btn:hover::after {
  background: #fff;
  color: var(--sub-color1);
}
.more-btn::after {
  content: "+";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--sub-color1);
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 0.1rem;
  transition: 0.3s;
  position: absolute;
  right: 1.5rem;
  top: auto;
}

.more-btn.open::after {
  content: "−";
}

/* ===== End component/button ===== */
/* ===== component/link ===== */
.tel-link strong {
  position: relative;
  white-space: nowrap;
  color: var(--main-color);
  font-family: "Roboto", sans-serif;
}
.tel-link strong::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(assets/img/common/tel.svg);
  background-position: top -2px left;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* ===== End component/link ===== */
/* ===== component/title ===== */
.section-ttl {
  position: relative;
  text-align: center;
  margin: 0 0 2em;
  padding-bottom: 0.75em;
  line-height: 1.4;
  font-size: var(--font-size-xxl);
}
.section-ttl span {
  display: block;
  color: var(--main-color);
  font-weight: 400;
  font-size: var(--font-size-l);
}

.ttl-marks {
  position: relative;
  line-height: 1.4;
  padding: 0.25em 1.1em;
  display: inline-block;
  font-size: var(--font-size-xl);
  font-weight: inherit;
}
.ttl-marks::before {
  content: "";
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
  border-left: solid 1px currentColor;
  border-top: solid 1px currentColor;
  top: 0;
  left: 0;
}
.ttl-marks::after {
  content: "";
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
  border-right: solid 1px currentColor;
  border-bottom: solid 1px currentColor;
  bottom: 0;
  right: 0;
}

.ttl-highlight {
  color: inherit;
  letter-spacing: 0.1em;
  font-size: var(--font-size-xxl);
  font-weight: 700;
  position: relative;
  line-height: 1.4;
  text-align: center;
}
.ttl-highlight .sub-txt {
  display: block;
  font-size: var(--font-size-l);
  margin: 0 auto 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
.ttl-highlight .main-txt {
  position: relative;
}
.ttl-highlight .main-txt::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 4rem;
  height: 3.7rem;
  background-image: url(assets/img/accent/highlight_orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: -2em;
}
.ttl-highlight .main-txt::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 4rem;
  height: 3.7rem;
  background-image: url(assets/img/accent/highlight_orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: -2em;
  transform: scaleX(-1);
}
.ttl-highlight.blue .main-txt::before {
  background-image: url(assets/img/accent/highlight_blue.svg);
}
.ttl-highlight.blue .main-txt::after {
  background-image: url(assets/img/accent/highlight_blue.svg);
}

/* ===== End component/title ===== */
/* ===== component/tag ===== */
.works-tag span {
  display: inline-block;
  color: var(--sub-color1);
  background: #fff;
  border: 1px solid var(--sub-color1);
  border-radius: 3rem;
  padding: 0.8rem 2rem;
  font-size: var(--font-size-xs);
  margin: 0 0.2rem 0.8rem 0;
  transition: 0.3s all;
  white-space: nowrap;
  line-height: 1;
}

/* ===== End component/tag ===== */
/* ===== component/accordion ===== */
.acd {
  max-width: 96rem;
  border-radius: 16px;
  margin: 0 auto 4rem;
}
.acd__item + .acd__item {
  border-top: 1px solid #ddd;
}
.acd__header {
  width: 100%;
  padding: 2.4rem;
  text-align: left;
  background: var(--main-color);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font-size-l);
  border-radius: 16px;
  position: relative;
  padding-right: 5rem;
}
.acd__header::after {
  content: "";
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.acd__header.is-open::after {
  transform: translateY(-50%) rotate(-135deg);
}
.acd__content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  background: #FFE8EC;
  border-radius: 0 0 16px 16px;
  margin: -1rem 0 0;
}
.acd__inner {
  padding: 6rem 2rem;
  max-width: 84rem;
  margin: 0 auto;
}

/* もっと見る初期状態 */
.more-item {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s ease, opacity 0.6s ease;
}

/* 開いた状態 */
.more-item.open {
  opacity: 1;
}

/* 最小高さ確保でアニメーションがぎこちなくならない */
.more-item .voice-img,
.more-item .news__item-inner,
.more-item .item-inner {
  min-height: 50px; /* 投稿の最小高さに調整 */
}

/* ===== End component/accordion ===== */
/* ===== component/type-list ===== */
.type-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 67rem;
  margin: 0 auto;
}
.type-list li {
  border-radius: 7px;
  width: 15.6rem;
  height: 15.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  cursor: pointer;
}
.type-list li:hover {
  opacity: 0.7;
}
.type-list p {
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
.type-list__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
.type-list__img {
  width: 70px;
  height: 57px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .type-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 33rem;
  }
}
/* ===== End component/type-list ===== */
/* ===== project/event ===== */
.event__slider {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
.event__slider .slick-prev,
.event__slider .slick-next {
  width: 4rem;
  height: 4rem;
  background: var(--sub-color1);
  border-radius: 50%;
  transition: 0.3s all;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.25);
}
.event__slider .slick-prev:hover, .event__slider .slick-prev:focus, .event__slider .slick-prev:active,
.event__slider .slick-next:hover,
.event__slider .slick-next:focus,
.event__slider .slick-next:active {
  background: var(--sub-color1);
  outline: none;
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.25);
}
.event__slider .slick-prev,
.event__slider .slick-next {
  -webkit-tap-highlight-color: transparent;
}
.event__slider .slick-prev:before,
.event__slider .slick-next:before {
  content: "";
}
.event__slider .slick-prev:after,
.event__slider .slick-next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #fff;
  transition: 0.3s all;
}
.event__slider .slick-prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
  left: 46%;
}
.event__list .slide, .event__list .event__item {
  border: 1px solid var(--sub-color1);
  margin: 0 1rem;
  box-sizing: border-box;
  transition: 0.3s all;
}
.event__list .event__img {
  aspect-ratio: 4/5;
}
.event__list .event__img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.event__list .event__detail {
  padding: 1em;
  font-size: var(--font-size-s);
}
.event__list .ttl {
  font-weight: bold;
  font-size: var(--font-size-m);
}
.event__list .date, .event__list .place {
  color: var(--main-color);
}
.event__list .date::before, .event__list .place::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: -3px;
}
.event__list .date::before {
  background-image: url("assets/img/event/icon_calendar.svg");
}
.event__list .place::before {
  background-image: url("assets/img/event/icon_map.svg");
}
.event__list .event__btn {
  background: var(--sub-color1);
  text-align: center;
  font-weight: bold;
  padding: 0.5rem;
  color: #fff;
  position: relative;
}
.event__list .event__btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 2.25rem;
  bottom: 0;
  margin: auto;
}

@media (max-width: 1300px) {
  .event__slider {
    max-width: 90rem;
  }
}
@media (max-width: 767px) {
  .event__slider {
    max-width: 45rem;
  }
}
@media (max-width: 1000px) {
  .event__slider .slick-prev {
    left: -15px;
  }
  .event__slider .slick-prev:before {
    font-size: 3rem;
  }
  .event__slider .slick-next {
    right: -5px;
  }
  .event__slider .slick-next:before {
    font-size: 3rem;
  }
}
/* ===== End project/event ===== */
/* ===== project/service-menu ===== */
.service .page-detail .service-menu {
  padding: 4rem 0 12rem;
}
.service .page-detail .service-menu h2 {
  display: none;
}

.service-menu {
  background: var(--base-color);
}
.service-menu .service-menu__ttl {
  max-width: 65rem;
  margin: 0 auto;
}
.service-menu .ttl-mark {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12rem;
  height: 12rem;
  top: -1.6em;
  right: -1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  font-size: var(--font-size-l);
  background-image: url(assets/img/accent/wave-label_orange.svg);
}
.service-menu .top-menu {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 85rem;
  margin: 5rem auto 3rem;
}
.service-menu .top-menu__heading {
  position: absolute;
  bottom: 8%;
  left: 4%;
}
.service-menu .top-menu__heading span {
  display: inline-block;
  background: var(--base-color);
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: var(--font-size-s);
  line-height: 1;
}
.service-menu .top-menu .menu-img {
  position: relative;
}
.service-menu .top-menu li {
  max-width: 40rem;
  flex: 1;
}
.service-menu .top-menu li.line-orange {
  border: 1px solid var(--orange-color);
}
.service-menu .top-menu li.line-orange::after {
  border-bottom: 28px solid var(--orange-color);
  border-left: 28px solid transparent;
}
.service-menu .top-menu li.line-blue {
  border: 1px solid var(--blue-color);
}
.service-menu .top-menu li.line-blue::after {
  border-bottom: 28px solid var(--blue-color);
  border-left: 28px solid transparent;
}
.service-menu .top-menu li.line-blue .ttl-mark {
  background-image: url(assets/img/accent/wave-label_blue.svg);
}
.service-menu .top-menu li.line-blue .ttl-highlight .main-txt::before, .service-menu .top-menu li.line-blue .ttl-highlight .main-txt::after {
  background-image: url(assets/img/accent/highlight_blue.svg);
}
.service-menu li {
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: 0.3s all;
  min-width: 0;
}
.service-menu li .menu-txt {
  padding: 3.2rem 1.6rem;
  font-weight: bold;
  text-align: center;
}
.service-menu li .menu-name {
  font-size: var(--font-size-l);
}
.service-menu li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 28px solid var(--sub-color1);
  border-left: 28px solid transparent;
}
.service-menu li:hover {
  transform: translateY(-5px);
}
.service-menu .ttl-highlight {
  font-size: var(--font-size-s);
  margin-bottom: 0.8rem;
}
.service-menu .ttl-highlight .main-txt::before, .service-menu .ttl-highlight .main-txt::after {
  width: 2.5rem;
  height: 2.3rem;
}
.service-menu .other-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.service-menu .other-menu__ttl {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: var(--font-size-l);
  font-weight: bold;
  padding: 0.4rem 0;
}
.service-menu .other-menu li {
  border: 1px solid var(--sub-color1);
}
.service-menu .other-menu .menu-txt {
  padding: 1.6rem;
}
.service-menu .plan__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
}
.service-menu .plan__price .circle {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  padding-top: 0.5rem;
}
.service-menu .plan__price .circle02 {
  width: 53px;
  height: 53px;
  line-height: 1.2;
  font-size: var(--font-size-s);
  background: var(--base-color);
  color: inherit;
}
.service-menu .plan__price .price {
  line-height: 1;
}
.service-menu .plan__price .number {
  color: var(--main-color);
  font-size: var(--font-size-xxxl);
  padding: 0 0.2em;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  vertical-align: -0.08em;
}
.service-menu .slider-controls {
  display: none;
}
.service-menu__bnr {
  max-width: 70rem;
  margin: 4rem auto 0;
  transition: 0.3s all;
}
.service-menu__bnr:hover {
  transform: translateY(-5px);
}

@media (max-width: 1100px) {
  .service-menu .other-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .service-menu .other-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .service-menu .top-menu {
    flex-direction: column;
    align-items: center;
  }
  .service-menu .ttl-highlight .main-txt::before {
    left: -2em;
  }
  .service-menu .ttl-highlight .main-txt::after {
    right: -2em;
  }
  .service-menu .ttl-mark {
    width: 10rem;
    height: 10rem;
    font-size: var(--font-size-m);
    right: -0.5em;
  }
  .service-menu .other-menu {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 29px, #000 calc(100% - 29px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 29px, #000 calc(100% - 29px), transparent 100%);
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 7.5%;
    scrollbar-width: none;
  }
  .service-menu .other-menu li {
    flex: 0 0 85%;
    height: 100%;
    scroll-snap-align: center;
    max-width: 32rem;
  }
  .service-menu .slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 0 10px;
  }
  .service-menu .slider-controls .arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.09);
    transition: 0.3s all;
  }
  .service-menu .slider-controls .arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 2px;
  }
  .service-menu .slider-controls .arrow.prev::before {
    transform: rotate(180deg);
    margin-left: -2px;
  }
  .service-menu .slider-controls .scrollbar {
    flex: 1;
    height: 3px;
    background: rgba(64, 46, 37, 0.1);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
  }
  .service-menu .slider-controls .scrollbar-thumb {
    height: 100%;
    width: 30%; /* 初期値 */
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
  }
}
/* ===== End project/service-menu ===== */
/* ===== project/fixed-ui ===== */
/* ======================
 トップへ戻るボタン
====================== */
/* ======================
   SP固定バー
====================== */
.back-to-top {
  position: fixed;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 11px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.back-to-top .arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #fff;
  margin-bottom: 6px;
}
.back-to-top .text {
  letter-spacing: 1px;
  font-weight: bold;
}
.back-to-top:active {
  transform: translateY(-4px);
  background: #bcbcbc;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.sp-fixed-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: #9e9e9e;
  display: flex;
  transform: translateY(100%);
  transition: 0.3s;
  z-index: 200;
}
.sp-fixed-bar a {
  flex: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--font-size-xs);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.sp-fixed-bar a:active {
  opacity: 0.7;
}
.sp-fixed-bar a:last-child {
  border-right: none;
}
.sp-fixed-bar a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sp-fixed-bar a.tel {
  background: var(--main-color);
}
.sp-fixed-bar a.tel::before {
  background-image: url(assets/img/common/tel_white.svg);
}
.sp-fixed-bar a.soudan {
  background: var(--orange-color);
}
.sp-fixed-bar a.soudan::before {
  background-image: url(assets/img/common/soudan.svg);
}
.sp-fixed-bar a.top::before {
  background: #fff;
  clip-path: polygon(50% 20%, 80% 60%, 20% 60%);
  transform: translateY(5px);
}

.sp-fixed-bar.show {
  transform: translateY(0);
}

@media (hover: hover) {
  .back-to-top:hover {
    transform: translateY(-4px);
    background: #bcbcbc;
  }
}
@media (min-width: 768px) {
  .sp-fixed-bar {
    display: none;
  }
}
/* ===== End project/fixed-ui ===== */
/* ===== project/link-box ===== */
/* ======================
 来店予約・お見積りボタン
====================== */
#LINK-BOX {
  padding: 6rem 0;
  background: var(--sub-color2);
}
#LINK-BOX .l-container .txt-center {
  font-size: var(--font-size-xl);
  font-weight: bold;
  padding-bottom: 3.2rem;
}
#LINK-BOX .l-container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
#LINK-BOX .l-container ul::before {
  content: "";
  position: absolute;
  left: 75%;
  top: -59%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background-image: url(assets/img/common/sugichan_03.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
#LINK-BOX .l-container ul .link-inner {
  background: #fff;
  border-radius: 4px;
  padding: 2.4rem 2rem;
  width: 25.2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: bold;
}
#LINK-BOX .l-container ul .link-inner:hover {
  background: var(--main-color);
  opacity: 1;
}
#LINK-BOX .l-container ul li {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16rem;
  width: 100%;
}
#LINK-BOX .l-container ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#LINK-BOX .l-container ul .btn-reason {
  background-image: url(assets/img/common/link_01.webp);
}
#LINK-BOX .l-container ul .btn-flow {
  background-image: url(assets/img/common/link_02.webp);
}
#LINK-BOX .l-container ul .btn-faq {
  background-image: url(assets/img/common/link_03.webp);
}
#LINK-BOX .l-container ul a {
  color: var(--main-color);
  font-size: var(--font-size-l);
}
#LINK-BOX .l-container ul a:hover {
  color: #fff;
}

@media (max-width: 1000px) {
  #LINK-BOX {
    padding: 3rem 0 6rem;
  }
  #LINK-BOX .l-container ul {
    grid-template-columns: 1fr;
    place-items: center;
  }
  #LINK-BOX .l-container ul::before {
    left: 79%;
    top: -16%;
    width: 17rem;
    height: 17rem;
  }
  #LINK-BOX .l-container ul li {
    max-width: 50rem;
  }
}
@media (max-width: 767px) {
  #LINK-BOX {
    padding: 3rem 0 6rem;
  }
  #LINK-BOX .l-container ul {
    grid-template-columns: 1fr;
    place-items: center;
  }
  #LINK-BOX .l-container ul::before {
    left: 75%;
    top: -31.5%;
    width: 12rem;
    height: 12rem;
    z-index: 100;
  }
  #LINK-BOX .l-container ul li {
    max-width: 36rem;
  }
}
/* ===== End project/link-box ===== */
/* ===== project/page ===== */
/* ======================
   下層ページ　共通
====================== */
#CONTENTS .page-ttl {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 20rem;
  display: flex;
  align-items: center;
}
#CONTENTS .page-ttl h1 {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: var(--font-size-xxxl);
  line-height: 1;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
}
#CONTENTS .page-ttl h1 .sub-ttl {
  margin-top: 0.4em;
  margin-left: 0;
  font-size: 0.5em;
  letter-spacing: 0.06em;
  display: block;
  font-weight: 400;
}
#CONTENTS .breadcrumb {
  margin-bottom: 5rem;
}
#CONTENTS .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0;
}
#CONTENTS .breadcrumb li {
  position: relative;
  margin-right: 1.5em;
  white-space: nowrap;
  font-size: var(--font-size-s);
}
#CONTENTS .breadcrumb li:last-child {
  margin-right: 0;
  white-space: wrap;
}
#CONTENTS .breadcrumb li:last-child::after {
  content: none;
}
#CONTENTS .breadcrumb li::after {
  position: absolute;
  top: 50%;
  right: -0.8em;
  margin-top: -0.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-top: solid 0.1rem #999;
  border-right: solid 0.1rem #999;
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
}
#CONTENTS .intro-txt {
  padding-bottom: 5rem;
  text-align: center;
}

@media (max-width: 767px) {
  #CONTENTS .page-ttl {
    padding: 6rem 0;
    height: inherit;
  }
  #CONTENTS .page-ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
}
/* ===== End project/page ===== */
/* ===== project/works ===== */
.works__slider {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
.works__slider .slick-prev,
.works__slider .slick-next {
  width: 4rem;
  height: 4rem;
  background: var(--sub-color1);
  border-radius: 50%;
  transition: 0.3s all;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.25);
}
.works__slider .slick-prev:hover, .works__slider .slick-prev:focus, .works__slider .slick-prev:active,
.works__slider .slick-next:hover,
.works__slider .slick-next:focus,
.works__slider .slick-next:active {
  background: var(--sub-color1);
  outline: none;
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.25);
}
.works__slider .slick-prev,
.works__slider .slick-next {
  -webkit-tap-highlight-color: transparent;
}
.works__slider .slick-prev:before,
.works__slider .slick-next:before {
  content: "";
}
.works__slider .slick-prev:after,
.works__slider .slick-next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #fff;
  transition: 0.3s all;
}
.works__slider .slick-prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
  left: 46%;
}
.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto 3.5rem;
}

.works__card {
  background: #fff;
  overflow: hidden;
  transition: 0.3s all;
  position: relative;
}
.works__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 28px solid var(--sub-color1);
  border-left: 28px solid transparent;
}
.works__card:hover {
  transform: translateY(-5px);
}

.works__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
}
.works__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.works__thumb img.noimage {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 24rem;
  padding: 0 0.5rem;
}

.works__ttl {
  line-height: 1.6;
  font-weight: bold;
}

.works-tag {
  text-align: center;
}

.works-tag a span:hover {
  color: #fff;
  background: var(--sub-color1);
}

@media (max-width: 767px) {
  .works__list {
    grid-template-columns: 1fr;
    max-width: 45rem;
  }
}
/* ===== End project/works ===== */
/* ===== project/voice ===== */
.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 0 auto 4em;
  padding: 0 1rem;
}

.voice__card {
  background: #fff;
  border: 1px solid #FCBA78;
  box-shadow: 10px 10px #FCBA78;
  transition: 0.3s all;
}

.voice__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #FDECE5;
}
.voice__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.voice__contents {
  padding: 1em;
}

.voice__meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0.5rem 0;
  font-size: var(--font-size-s);
}

@media (max-width: 767px) {
  .voice__list {
    grid-template-columns: 1fr;
    max-width: 45rem;
  }
  .voice-lead:before {
    width: 53px;
    height: 44px;
  }
}
/* ===== End project/voice ===== */
/* ===== project/google ===== */
.review-banner__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-banner__wrapper .num {
  color: #FBBC05;
  margin-left: 0.5em;
}
.review-banner__wrapper .star-rating {
  line-height: 1;
  margin: 0 0 0 0.2em;
  position: relative;
  width: 5em;
  height: 1em;
  float: left;
  font-weight: bold;
}
.review-banner__wrapper .star-rating-front {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
  letter-spacing: 0;
  color: #FBBC05;
  white-space: nowrap;
}
.review-banner__wrapper .star-rating-back {
  color: #D9D9D9;
  letter-spacing: 0;
  white-space: nowrap;
}

.review__lead {
  text-align: center;
  color: var(--sub-color2);
  position: relative;
  width: 15em;
  margin: 0 auto;
  font-size: var(--font-size-l);
}
.review__lead::before {
  position: absolute;
  left: -0.5em;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 85%;
  background-color: var(--sub-color2);
  transform: rotate(-30deg);
  content: "";
  z-index: 10;
}
.review__lead::after {
  position: absolute;
  left: -0.5em;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 85%;
  background-color: var(--sub-color2);
  transform: rotate(-30deg);
  content: "";
  z-index: 10;
  right: -0.5em;
  left: inherit;
  transform: rotate(30deg);
}

.review-banner__wrapper.review-section {
  margin-bottom: 1em;
}

.review__txt {
  font-weight: bold;
  font-size: var(--font-size-xl);
  color: var(--main-color);
}

.google-review__wrapper {
  border: 1px solid #D9D9D9;
  padding: 1.5em 1em;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  margin: 0 auto 3em;
  background: #fff;
  max-width: 78rem;
  position: relative;
}
.google-review__wrapper::after {
  content: "";
  position: absolute;
  right: -6em;
  top: -4.5em;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 15rem;
  background-image: url(assets/img/common/sugichan_02.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.google-review-scroll {
  max-height: 38rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.google-review-scroll::-webkit-scrollbar {
  width: 10px;
}
.google-review-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.google-review-scroll::-webkit-scrollbar-thumb {
  background-color: var(--sub-color1);
  border-radius: 6px;
}

.ti-widget.ti-goog .ti-review-item:hover {
  transform: none !important;
}

@media (max-width: 767px) {
  .google-review__wrapper::after {
    right: -5em;
    top: -3em;
    width: 13rem;
    height: 10rem;
    z-index: -1;
  }
}
@media (max-width: 650px) {
  .google-review__wrapper::after {
    right: -9em;
  }
}
/* ===== End project/google ===== */
/* ===== project/showroom ===== */
.showroom-img ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.showroom-img .main-img {
  margin: 4rem auto 1.6rem;
}
.showroom .flex {
  gap: 4rem;
  padding: 6rem 2rem;
  margin: 0 auto;
  max-width: 84rem;
}
.showroom .map {
  aspect-ratio: 4/3;
  flex: 1;
}

dl.info {
  display: grid;
  grid-template-columns: 10rem 1fr;
}
dl.info dt,
dl.info dd {
  border-bottom: 1px solid #D9D9D9;
}
dl.info dt {
  background: var(--sub-color1);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
dl.info dd {
  background: #fff;
  padding: 0.8rem 1.6rem;
}

@media (max-width: 767px) {
  .showroom .flex {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .showroom-img ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== End project/showroom ===== */
/* ===== project/review-banner ===== */
.review-banner__wrapper .review-banner__btn {
  color: var(--sub-color2);
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid var(--sub-color2);
  padding: 0.2em 2.2em 0.2em 1.5em;
  margin-left: 1em;
  position: relative;
  transition: 0.3s all;
  font-size: var(--font-size-s);
}
.review-banner__wrapper .review-banner__btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--sub-color2);
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.review-banner__wrapper .review-banner__btn:hover {
  color: #fff;
  background-color: var(--sub-color2);
}
.review-banner__wrapper .review-banner__btn:hover::after {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.1333333333);
}

@media (max-width: 650px) {
  .review-banner__wrapper {
    font-size: inherit;
  }
  .review-banner__wrapper .g-logo {
    width: 100px;
  }
  .review-banner__wrapper .review-banner__btn p {
    display: none;
  }
  .review-banner__wrapper .review-banner__btn {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    padding: 0;
    margin-left: 0.3em;
  }
  .review-banner__wrapper .review-banner__btn::after {
    right: 7px;
  }
  .result-review {
    white-space: nowrap;
  }
}
/* ===== End project/review-banner ===== */
/* ===== project/area-map ===== */
.area-map .section-ttl {
  margin: 0;
}
.area-map .txt-center {
  padding: 0.5em 0 2em;
}
.area-map__summary {
  max-width: 52.5rem;
  margin: 0 auto;
  padding: 0;
}
.area-map__summary ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto 3em;
}
.area-map__summary li {
  overflow: hidden;
  border: 1px solid var(--main-color);
  border-radius: 9px;
  text-align: center;
  font-weight: 700;
}
.area-map__summary li > p {
  margin: 0;
  padding: 8px 4px;
  color: #fff;
  background: var(--main-color);
  font-size: var(--font-size-l);
  letter-spacing: 0.08em;
}
.area-map__summary li > div {
  padding: 13px 6px 12px;
}
.area-map__summary li > div > span:first-child {
  display: block;
  margin-bottom: 5px;
}
.area-map__summary .subtotal {
  margin-right: 3px;
  color: var(--main-color);
  font-family: "Roboto", sans-serif;
  font-size: clamp(31px, 4vw, 39px);
  font-weight: 700;
  line-height: 1;
}
.area-map__summary li:nth-child(2) {
  border-color: var(--orange-color);
}
.area-map__summary li:nth-child(2) > p {
  background: var(--orange-color);
}
.area-map__summary li:nth-child(2) .subtotal {
  color: var(--orange-color);
}
.area-map__summary li:nth-child(3) {
  border-color: #367bd4;
}
.area-map__summary li:nth-child(3) > p {
  color: #367bd4;
  background: #fff;
  border-bottom: 1px solid #367bd4;
}
.area-map__summary li:nth-child(3) .subtotal {
  color: #367bd4;
}
.area-map__total {
  text-align: center;
  margin-bottom: 3rem;
}
.area-map__total > span {
  display: block;
  padding: 7px 12px;
  color: #fff;
  background: var(--main-color);
  border-radius: 4px;
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.area-map__total > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 12px;
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 1;
}
.area-map__total strong {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(72px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #0b8745 0%, #18aa61 55%, #0d8d75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.area-map__total strong::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  content: "";
  background: #ffdf57;
  transform: translateY(5px) skewX(-12deg);
}
.area-map__total p {
  margin: 8px 0 0;
  font-size: var(--font-size-s);
  text-align: right;
}
.area-map__map {
  position: relative;
  overflow: hidden;
  padding: 0 0 2em;
  border-radius: 24px;
  background: #f2f2f0;
  margin-bottom: 3em;
}
.area-map__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("./assets/img/top/area-map_bg.webp") 50% 50%/cover no-repeat;
  border-radius: inherit;
  pointer-events: none;
}
.area-map__map > * {
  position: relative;
  z-index: 1;
}
.area-map__region {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 5px 10px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  width: 8rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area-map__region--gifu {
  background: var(--main-color);
  transform: translate(8%, -60%);
}
.area-map__region--aichi {
  background: var(--orange-color);
  grid-column: var(--col)/span 2;
  grid-row: var(--row);
  transform: translateY(-30%);
}
.area-map__region--other {
  background: #367bd4;
}
.area-map .map-card {
  z-index: 1;
  grid-column: var(--col)/span 2;
  grid-row: var(--row);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  font-size: 1.3rem;
}
.area-map .map-card .city {
  white-space: nowrap;
  line-height: 1.3;
}
.area-map .map-card strong {
  font-size: var(--font-size-xl);
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  margin-right: -3px;
}
.area-map .map-card[data-rank] {
  transform: scale(1.08);
  z-index: 10;
  position: relative;
}
.area-map .map-card[data-rank]::before {
  content: "";
  position: absolute;
  top: -22.5px;
  left: 34%;
  width: 24px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}
.area-map .map-card[data-rank="1"] {
  border: 4px solid #fbcf00 !important;
  background: #FFF8E5;
}
.area-map .map-card[data-rank="1"]::before {
  background-image: url("./assets/img/top/no1.svg");
}
.area-map .map-card[data-rank="1"] strong {
  color: #B88400;
}
.area-map .map-card[data-rank="2"] {
  border: 3px solid #c1c5c8 !important;
  background: #F7F8F9;
}
.area-map .map-card[data-rank="2"]::before {
  background-image: url("./assets/img/top/no2.svg");
}
.area-map .map-card[data-rank="2"] strong {
  color: #6B7280;
}
.area-map .map-card[data-rank="3"] {
  border: 3px solid #D6B06A !important;
  background: #FFFBF5;
}
.area-map .map-card[data-rank="3"]::before {
  background-image: url("./assets/img/top/no3.svg");
}
.area-map .map-card[data-rank="3"] strong {
  color: #A3681A;
}
.area-map .map-card--midpoint {
  transform: translateY(50%);
}
.area-map__map-gifu {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  grid-template-rows: repeat(5, 70px);
  gap: 12px;
  margin: 7em auto 0;
  max-width: 95rem;
}
.area-map__map-gifu .map-card {
  border: 1px solid var(--main-color);
}
.area-map__map-gifu strong {
  color: var(--main-color);
}
.area-map__map-aichi {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  grid-template-rows: repeat(2, 70px);
  gap: 12px;
  margin: 0 auto;
  max-width: 95rem;
}
.area-map__map-aichi .map-card {
  border: 1px solid var(--orange-color);
}
.area-map__map-aichi strong {
  color: var(--orange-color);
}
.area-map__map-other {
  display: grid;
  grid-template-columns: repeat(3, 87px);
  grid-template-rows: repeat(2, 70px);
  gap: 16px 8px;
  margin: -1em auto 0em;
  max-width: 95rem;
}
.area-map__map-other .area-map__region--other {
  grid-column: 1/-1;
}
.area-map__map-other .map-card {
  min-height: 70px;
  border: 1px solid #367bd4;
  grid-column: var(--col)/span 1;
}
.area-map__map-other strong {
  color: #367bd4;
}

@media (max-width: 650px) {
  .area-map__summary ul {
    gap: 8px;
  }
  .area-map__summary li > p {
    letter-spacing: 0;
  }
  .area-map__summary li > div {
    padding: 10px 3px;
  }
  .area-map__total {
    margin-bottom: 28px;
  }
}
/* SP　ランキング＋アコーディオン */
.area-map__map--sp {
  display: none;
}
.area-map-ranking {
  display: none;
}

@media screen and (max-width: 1000px) {
  .area-map__map--pc {
    display: none;
  }
  .area-map__map--sp {
    display: grid;
    gap: 12px;
    max-width: 52.5rem;
    margin: 0 auto;
  }
  .area-map-sp__accordion {
    overflow: hidden;
    border: 2px solid #2d9156;
    border-radius: 10px;
    background: #fff;
  }
  .area-map-sp__accordion:nth-child(2) {
    border-color: var(--orange-color);
  }
  .area-map-sp__accordion:nth-child(2) summary {
    background: #fff5e8;
  }
  .area-map-sp__accordion:nth-child(2) summary::before {
    background: var(--orange-color);
  }
  .area-map-sp__accordion:nth-child(2) summary::after {
    background: var(--orange-color);
  }
  .area-map-sp__accordion:nth-child(3) {
    border-color: #367bd4;
  }
  .area-map-sp__accordion:nth-child(3) summary {
    background: #edf7fc;
  }
  .area-map-sp__accordion:nth-child(3) summary::before {
    background: #367bd4;
  }
  .area-map-sp__accordion:nth-child(3) summary::after {
    background: #367bd4;
  }
  .area-map-sp__accordion summary {
    position: relative;
    display: block;
    padding: 14px 48px 14px 16px;
    background: #eef8f0;
    font-size: var(--font-size-l);
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
  }
  .area-map-sp__accordion summary::-webkit-details-marker {
    display: none;
  }
  .area-map-sp__accordion summary::before {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    content: "";
    transition: transform 0.3s ease;
    transform: translateY(-50%);
  }
  .area-map-sp__accordion summary::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    content: "";
    transition: transform 0.3s ease;
    transform: translateY(-50%) rotate(90deg);
  }
  .area-map-sp__accordion[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .area-map-sp__list {
    margin: 0;
    padding: 9px 16px 12px;
    list-style: none;
  }
  .area-map-sp__list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 7px 0;
    font-weight: 700;
  }
  .area-map-sp__list li::after {
    flex: 1;
    order: 1;
    border-bottom: 2px dotted #9bb5a2;
    content: "";
  }
  .area-map-sp__list strong {
    order: 2;
    color: var(--main-color);
    font-size: var(--font-size-l);
  }
  .area-map-sp__list small {
    margin-left: 2px;
    color: #333;
    font-size: var(--font-size-s);
  }
  .area-map-sp__list--aichi strong {
    color: var(--orange-color);
  }
  .area-map-sp__list--other strong {
    color: #367bd4;
  }
  .area-map-ranking {
    display: block;
    overflow: hidden;
    border: 2px solid #C77800;
    border-radius: 10px;
    background: #fff;
    margin: 0 auto 1.5em;
    max-width: 52.5rem;
  }
  .area-map-ranking h2 {
    margin: 0;
    padding: 10px 16px;
    color: #fff;
    background: #C77800;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }
  .area-map-ranking__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 4px;
    margin: 0;
    padding: 18px 10px 20px;
    list-style: none;
    text-align: center;
  }
  .area-map-ranking__item {
    min-width: 0;
    position: relative;
    padding-top: 5rem;
  }
  .area-map-ranking__crown {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 35px;
    height: 45px;
    background: center/contain no-repeat;
    transform: translateX(-50%);
  }
  .area-map-ranking p {
    margin: 0 0 2px;
    font-size: var(--font-size-s);
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
  }
  .area-map-ranking strong {
    font-size: var(--font-size-xl);
    line-height: 1;
    display: block;
  }
  .area-map-ranking strong small {
    margin-left: 2px;
    font-size: var(--font-size-xs);
    color: #333;
  }
  .area-map-ranking__item[data-rank="1"] {
    transform: scale(1.2);
  }
  .area-map-ranking__item[data-rank="1"] .area-map-ranking__crown {
    background-image: url("./assets/img/top/no1.svg");
  }
  .area-map-ranking__item[data-rank="1"] strong {
    color: #B88400;
  }
  .area-map-ranking__item[data-rank="2"] {
    transform: scale(1.08);
  }
  .area-map-ranking__item[data-rank="2"] .area-map-ranking__crown {
    background-image: url("./assets/img/top/no2.svg");
  }
  .area-map-ranking__item[data-rank="2"] strong {
    color: #6B7280;
  }
  .area-map-ranking__item[data-rank="3"] .area-map-ranking__crown {
    background-image: url("./assets/img/top/no3.svg");
  }
  .area-map-ranking__item[data-rank="3"] p {
    transform: translateY(2px);
  }
  .area-map-ranking__item[data-rank="3"] strong {
    color: #A3681A;
    transform: translateY(2px);
  }
}
/* ===== End project/area-map ===== */
/* ===== page/top ===== */
.top-page .main-visual {
  position: relative;
  max-width: 160rem;
  margin: 0 auto;
}
.top-page .main-visual__txt {
  max-width: 160rem;
  position: absolute;
  bottom: 1%;
  left: 0;
  padding-left: 4em;
  font-weight: bold;
  z-index: 500;
}
.top-page .main-visual__txt .main-txt {
  position: relative;
  z-index: 200;
  font-size: var(--font-size-xxl);
}
.top-page .main-visual__txt .main-txt span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  padding: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
.top-page .main-visual__txt .sub-txt {
  position: relative;
  z-index: 100;
  background: #fff;
  border-radius: 4px;
  font-size: var(--font-size-l);
  padding: 3.2rem 4rem;
  bottom: 1em;
  left: 3em;
  line-height: 1.6;
}
.top-page .main-visual .slick-dots li button:before {
  font-size: 10px;
}
.top-page .main-visual .slick-dots li button:after {
  font-size: 10px;
}
.top-page .main-visual .slick-dots li.slick-active button:before {
  color: var(--main-color);
  opacity: 1;
}
.top-page .main-visual__slider .slick-slide {
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.8s ease;
}
.top-page .main-visual__slider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-page .main-visual__txt {
    padding-left: 1em;
    bottom: -3%;
  }
  .top-page .main-visual__txt .main-txt {
    font-size: var(--font-size-l);
  }
  .top-page .main-visual__txt .main-txt span {
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
  }
  .top-page .main-visual__txt .sub-txt {
    left: 1.5em;
    font-size: var(--font-size-m);
    padding: 1.2rem 1.5rem;
  }
}
.top-page .top-banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 110rem;
  margin: 8rem auto;
}
.top-page .top-banner a:hover {
  transform: translateY(-5px);
}
@media (max-width: 767px) {
  .top-page .top-banner {
    flex-direction: column;
    max-width: 65rem;
    margin: 8rem auto 0;
  }
}
.top-page {
  /* サービス　ここから */
}
.top-page #SERVICE .section-ttl {
  margin: 0 0 -2em;
}
@media (max-width: 1200px) {
  .top-page #SERVICE .service__list {
    max-width: 75rem;
    flex-wrap: wrap;
  }
  .top-page #SERVICE .service__list li {
    width: 30%;
  }
}
.top-page {
  /* サービス　ここまで */
  /* 選ばれる理由　ここから */
}
.top-page #REASON .flex {
  gap: 2rem;
  margin-bottom: 5rem;
}
.top-page #REASON .flex-left {
  flex: 1 0 47rem;
}
.top-page #REASON .flex-right img {
  border-radius: 4px;
}
.top-page #REASON .reason__lead {
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  font-size: var(--font-size-xl);
  font-weight: bold;
}
.top-page #REASON .reason__txt {
  margin-bottom: 3.5rem;
}
.top-page #REASON .reason__img {
  position: relative;
  margin: -5rem auto 7rem;
}
.top-page #REASON .reason__img img {
  max-width: 32rem;
}
.top-page #REASON .reason__img01 img {
  margin-left: auto;
}
.top-page #REASON .reason__img02 img {
  margin-top: -5rem;
  margin-left: 5rem;
}
@media (max-width: 1000px) {
  .top-page #REASON .flex {
    flex-direction: column;
    max-width: 65rem;
    margin: 0 auto;
  }
  .top-page #REASON .reason__img {
    margin: 2rem auto 5rem;
  }
}
@media (max-width: 650px) {
  .top-page #REASON .reason__img img {
    max-width: 22rem;
  }
  .top-page #REASON .reason__img02 img {
    margin-top: -2rem;
    margin-left: 0;
  }
}
.top-page {
  /* 選ばれる理由　ここまで */
}
.top-page .event-empty {
  text-align: center;
  margin: -6rem 0 4rem;
}
.top-page {
  /* 施工事例　ここから */
}
.top-page .works .works__list {
  margin: 4rem auto 3.5rem;
}
.top-page {
  /* 施工事例　ここまで */
  /* お知らせ　ここから */
}
.top-page #NEWS.l-section {
  padding: 8rem 0 12rem;
}
.top-page .news__list {
  max-width: 90rem;
  margin: 0 auto 2rem;
}
.top-page .news__list a {
  display: block;
}
.top-page .news__list a:hover {
  background: rgba(3, 2, 2, 0.05);
}
.top-page .news__item {
  display: flex;
  gap: 1.6rem;
  padding: 1.2rem 0.8rem;
  border-bottom: 0.5px solid #AEAEB2;
  font-weight: bold;
}
.top-page .news__date {
  color: #666;
  min-width: 10rem;
  flex-shrink: 0;
  font-size: inherit;
}
.top-page .news__title {
  color: #333;
  text-decoration: none;
}
.top-page {
  /* お知らせ　ここまで */
  /* Googleクチコミ　ここから */
  /* Googleクチコミ　ここまで */
}

/* ===== End page/top ===== */
/* ===== page/service ===== */
/* 一覧ページ */
.service .page-ttl {
  background-image: url(assets/img/service/service-title.webp);
}
.service .page-list h2 {
  letter-spacing: 0.1em;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--main-color);
}
.service#CONTENTS .intro-txt {
  text-align: left;
}
.service {
  /* 詳細ページ */
}
.service .page-list .l-section .flex {
  gap: 6rem;
  justify-content: space-between;
  align-items: center;
}
.service .page-detail .circle {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
}
.service .page-detail .intro {
  margin: 0 auto;
  max-width: 80rem;
}
.service .page-detail h2 {
  position: absolute;
  top: 45%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 1.6rem;
  font-size: var(--font-size-xxl);
  text-align: center;
}
.service .page-detail h3 {
  margin-bottom: 1.5rem;
  padding-left: 12.5rem;
  font-size: var(--font-size-xl);
  position: relative;
}
.service .page-detail h3::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 10rem;
  height: 1px;
  background-color: currentColor;
  left: 0;
}
.service .page-detail h4 {
  font-size: var(--font-size-xl);
  margin-bottom: 3rem;
  text-align: center;
}
.service .page-detail .main-img {
  margin: 3rem auto;
  max-width: 80rem;
  position: relative;
}
.service .page-detail .main-img img {
  border-radius: 4px;
}
.service .page-detail .problem {
  position: relative;
  overflow: visible;
  background: var(--base-color);
}
.service .page-detail .problem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--base-color);
}
.service .page-detail .problem ul {
  margin: 0 auto;
  max-width: 72rem;
}
.service .page-detail .problem li {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}
.service .page-detail .problem li:last-child {
  margin: 4rem 0 0;
}
.service .page-detail .problem__txt {
  position: relative;
}
.service .page-detail .problem__txt::before {
  content: "";
  position: absolute;
  left: -27px;
  bottom: 6%;
  width: 9px;
  height: 9px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service .page-detail .problem__txt::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 60%;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service .page-detail .problem__txt p {
  position: relative;
  margin: 0;
}
.service .page-detail .problem__txt span {
  position: relative;
  background: #fff;
  border: 2px solid #333;
  border-radius: 6rem;
  padding: 1.6rem 2rem;
  display: block;
  width: 42rem;
  max-width: 100%;
  text-align: center;
}
.service .page-detail .problem__txt span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 6rem;
  z-index: -1;
}
.service .page-detail .problem__img {
  position: absolute;
  bottom: -27px;
  width: 12rem;
}
.service .page-detail .problem__img img {
  margin: 0 auto;
}
.service .page-detail .left .problem__img {
  left: -14%;
  transform: translateX(-60%);
}
.service .page-detail .right .problem__img {
  right: -18%;
  transform: translateX(60%);
}
.service .page-detail .right .problem__txt::before {
  right: -35px;
  left: inherit;
}
.service .page-detail .right .problem__txt::after {
  right: -23px;
  left: inherit;
}
.service .page-detail .merit h4 span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.7em;
  font-weight: 500;
  margin: 0 auto 2rem;
  position: relative;
  padding: 1rem;
  border-bottom: 2px solid #333333;
}
.service .page-detail .merit h4 span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5%;
  width: 14px;
  height: 14px;
  background: #fcf3e8;
  transform: translate(-50%, 50%) rotate(45deg);
}
.service .page-detail .merit h4 span::after {
  content: "";
  position: absolute;
  left: 51%;
  top: 117%;
  width: 20px;
  height: 1.8px;
  background: #333;
  transform: translateX(-50%) rotate(-50deg);
}
.service .page-detail .merit ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem 1rem;
  margin: 5.5rem auto 0;
}
.service .page-detail .merit ul li {
  background: #fff;
  padding: 5.5rem 2rem 2rem;
  position: relative;
  border-radius: 4px;
}
.service .page-detail .merit .circle {
  background: var(--orange-color);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 8.6rem;
  height: 8.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service .page-detail .merit .circle .small {
  line-height: 1.4;
  font-size: var(--font-size-s);
}
.service .page-detail .merit .circle .number {
  font-weight: 700;
  font-size: var(--font-size-xxl);
  line-height: 1;
}
.service .page-detail .merit__img {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/2;
}
.service .page-detail .merit__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.service .page-detail .plan .flex {
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 90rem;
  margin: 5rem auto 0;
}
.service .page-detail .plan .circle {
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
}
.service .page-detail .plan .circle01 {
  width: 85px;
  height: 85px;
  position: relative;
}
.service .page-detail .plan .circle01::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 17px solid var(--main-color);
  transform: rotate(-45deg);
}
.service .page-detail .plan .circle02 {
  width: 53px;
  height: 53px;
  line-height: 1.2;
  font-size: var(--font-size-s);
  background: var(--base-color);
  color: inherit;
}
.service .page-detail .plan .number {
  color: var(--main-color);
  font-size: var(--font-size-xxl);
  padding: 0 0.3em;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  vertical-align: -0.08em;
}
.service .page-detail .plan .square {
  color: #b29511;
  border: 1px solid #b29511;
  padding: 0.3em 1em;
  margin: 1.5rem 0 1rem;
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
  font-size: var(--font-size-s);
}
.service .page-detail .plan__price {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.service .page-detail .plan__img {
  flex-shrink: 0;
}
.service .page-detail .plan__img img {
  max-width: 35rem;
  margin: 0 auto;
  border-radius: 4px;
}
.service .page-detail .plan__ttl {
  display: flex;
  gap: 1rem;
}
.service .page-detail .plan__detail {
  padding-left: 9rem;
}
.service .page-detail .works .slide {
  margin: 0 1rem;
}
.service .page-detail .works__img {
  aspect-ratio: 4/3;
}
.service .page-detail .works__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.service .page-detail .works-tag {
  margin: 1rem 0 0;
  text-align: left;
  font-weight: inherit;
}
.service .page-detail .works__slider {
  margin: 0 auto;
}
.service .coordinator {
  background: rgba(252, 243, 232, 0.6);
  max-width: 75rem;
  margin: 0 auto 5rem;
  border: 1px solid #E8AD54;
  border-radius: 4px;
  padding: 3rem;
  align-items: center;
  gap: 2rem;
}
.service .coordinator__role, .service .coordinator__name {
  font-weight: 700;
}
.service .coordinator__img {
  flex-shrink: 0;
  width: 15rem;
}
.service .example li:not(:last-child) {
  margin-bottom: 5rem;
}
.service .example .flex {
  gap: 2rem;
  margin-top: 1.5rem;
}
.service .example__img {
  position: relative;
  aspect-ratio: 3/2;
  max-width: 57rem;
  margin: 0 auto;
  border: 1px solid #ccc;
  overflow: hidden;
}
.service .example__img p {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 2.5em;
  font-size: var(--font-size-s);
  font-weight: 700;
}
.service {
  /* タブボタン */
}
.service .tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.service .tab-button {
  padding: 1rem 2rem;
  border: none;
  background: #ddd;
  cursor: pointer;
}
.service .tab-button.active {
  background: var(--sub-color1);
  color: #fff;
}
.service {
  /* コンテンツ切り替え */
}
.service .tab-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s;
}
.service .tab-content.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.service .label-green {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  padding: 0.3em 2.5em;
  font-weight: 700;
  margin-top: 1.5rem;
}
.service #OTHERS .example__img {
  max-width: 35rem;
  margin: 0;
}
@media (max-width: 767px) {
  .service #OTHERS .flex {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.others #CONTENTS .breadcrumb {
  margin-bottom: 0;
}
.others .example .gallery-list {
  margin: 1rem auto 3.2rem;
}

@media (max-width: 1300px) {
  .service .works__slider {
    max-width: 90rem;
  }
}
@media (max-width: 1000px) {
  .service .page-detail .merit ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 73rem;
  }
  .service .page-detail .works__slider {
    max-width: 80rem;
  }
}
@media (max-width: 767px) {
  .service .l-section .flex {
    flex-direction: column;
    margin-bottom: 0;
  }
  .service .l-section .flex .btn-wrapper {
    text-align: center;
  }
  .service .page-detail .problem__img {
    width: 8rem;
  }
  .service .page-detail .right .problem__img {
    right: -14%;
  }
  .service .page-detail .problem__txt span {
    width: 41rem;
  }
  .service .page-detail .plan .flex {
    max-width: 50rem;
  }
  .service .page-detail .plan .circle01 {
    width: 75px;
    height: 75px;
  }
  .service .page-detail .plan__img img {
    max-width: inherit;
    width: 100%;
  }
  .service .page-detail .works__slider {
    max-width: 50rem;
  }
  .service .page-detail .works__slider .slick-next:before {
    font-size: 3rem;
  }
  .service .page-detail .works__slider .slick-next {
    right: -1rem;
  }
  .service .page-detail .works__slider .slick-prev:before {
    font-size: 3rem;
  }
  .service .page-detail .works__slider .slick-prev {
    left: -1rem;
  }
  .service .page-detail .plan__detail {
    padding-left: 0;
    text-align: center;
  }
  .service .page-detail .plan__price {
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .service .coordinator {
    flex-direction: column;
  }
  .service .coordinator__role, .service .coordinator__name {
    text-align: center;
  }
  .service .page-detail h2 {
    font-size: var(--font-size-xl);
  }
  .service .page-detail h3 {
    padding-left: 5.5rem;
    font-size: var(--font-size-l);
  }
  .service .page-detail h3::before {
    width: 4rem;
  }
  .service .page-detail .problem ul {
    padding-top: 0.1rem;
  }
  .service .page-detail .problem__txt span {
    padding: 1rem 0.5rem;
    width: 33rem;
    font-size: var(--font-size-s);
  }
  .service .page-detail .problem__txt::before {
    display: none;
  }
  .service .page-detail .problem__txt::after {
    display: none;
  }
  .service .page-detail .left .problem__img {
    left: -11%;
    transform: translate(60%, -72%);
  }
  .service .page-detail .right .problem__img {
    right: 14%;
    transform: translate(60%, -55%);
    width: 7.5rem;
  }
  .service .page-detail .merit ul {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }
}
/* ===== End page/service ===== */
/* ===== page/flow ===== */
.flow .page-ttl {
  background-image: url("assets/img/flow/flow-title.webp");
}
.flow h3 {
  font-size: var(--font-size-xl);
}
.flow .vertical-line {
  font-weight: 500;
  font-size: var(--font-size-l);
  margin-left: 1.2em;
}
.flow .step__inner {
  max-width: 96rem;
  display: flex;
  margin: 0 auto;
  gap: 2.4rem;
  position: relative;
  z-index: 100;
  padding-bottom: 4rem;
  height: 100%;
}
.flow .step__img {
  background: #fff;
  border-radius: 50%;
  width: 12.6rem;
  height: 12.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.flow .step__img img {
  width: 6rem;
}
.flow .step__number span {
  display: block;
  line-height: 1;
  text-align: center;
  color: var(--main-color);
  font-weight: 500;
}
.flow .step__number .large {
  font-size: var(--font-size-xxl);
}
.flow .step__ttl {
  gap: 1.6rem;
  align-items: center;
  height: 12.6rem;
}
.flow .step__txt {
  margin-top: 1.6rem;
}
.flow .step__body {
  margin-inline: auto;
  padding-inline: 2rem;
}
.flow .step__body:not(:last-child) .step__inner::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 0;
  background: var(--main-color);
  top: 0;
  left: 61px;
  transition: height 1.5s ease-out;
  z-index: -1;
}
.flow .step__body.bc-orange .step__inner::before {
  background: #7D422F;
}
.flow .step__body.animate:not(:last-child) .step__inner::before {
  height: 100%;
}
.flow .step__body.animate:nth-child(6) .step__inner::before {
  height: 130%;
}
.flow .after-box {
  padding: 6rem 2rem 10rem;
  overflow: hidden;
}
.flow .after-box__inner {
  background: #fff;
  max-width: 84rem;
  margin: 0 auto;
  padding: 4rem 10rem;
  border-radius: 4px;
}
.flow .after-box h3 span {
  padding-right: 1.6rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: var(--font-size-xxxl);
  line-height: 1em;
}
.flow .after-box__txt {
  margin-top: 2.4rem;
  padding-left: 3rem;
}
.flow .after-box__txt .vertical-line {
  margin-bottom: 1.4rem;
}

@media (max-width: 767px) {
  .flow .step__img {
    width: 8rem;
    height: 8rem;
    padding: 1.5rem;
  }
  .flow .step__body:not(:last-child) .step__inner:before {
    left: 37px;
  }
  .flow .flex.step__ttl {
    height: 8rem;
  }
  .flow .step__inner {
    gap: 1rem;
  }
  .flow .flow .vertical-line {
    margin-left: 0;
  }
  .flow .flow h3 {
    font-size: var(--font-size-l);
  }
  .flow .after-box__inner {
    padding: 3rem 2.5rem;
    max-width: 60rem;
  }
  .flow .after-box__inner::before {
    left: -22px;
  }
  .flow .after-box__inner::after {
    right: -15px;
  }
}
/* ===== End page/flow ===== */
/* ===== page/news ===== */
.news .page-ttl {
  background-image: url("assets/img/news/news-title.webp");
}
.news .news-detail {
  padding-bottom: 8rem;
}
.news .news-detail img {
  max-width: 80rem;
  margin: 1rem auto;
}
.news .news-detail .is-layout-flex {
  max-width: 80rem;
  margin: 0 auto;
}
.news .news-detail a {
  text-decoration: underline;
  color: var(--sub-color1);
}
.news .news-detail h2 {
  border-bottom: 1px solid var(--main-color);
  margin: 0.5rem 0 4rem;
  padding-bottom: 2.4rem;
}
.news .news-detail__date {
  color: #999;
  margin-bottom: 1rem;
}
.news__date {
  color: #999;
  font-size: var(--font-size-s);
}
.news__category {
  background: var(--sub-color1);
  color: #fff;
  border-radius: 60px;
  padding: 0.2rem 1.2rem;
  font-size: var(--font-size-s);
  margin-left: 0.5rem;
  white-space: nowrap;
}
.news .page-news .news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
.news .page-news .news__thumbnail {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #F1F1F1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6rem;
}
.news .page-news .news__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.news .page-news .news__thumbnail img.noimage {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 24rem;
  padding: 0 0.5rem;
}
.news .page-news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 4rem;
}
.news .page-news .pagination a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sub-color1);
  background: var(--sub-color1);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}
.news .page-news .pagination a:hover {
  background: #fff;
  color: var(--sub-color1);
}
.news .page-news .pagination a span {
  position: relative;
  background: var(--sub-color1);
}
.news .page-news .pagination a span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
}
.news .page-news .pagination a span.prev::after {
  transform: rotate(180deg);
}
.news .page-news .pagination a span:hover {
  background: #fff;
}
.news .page-news .pagination a span:hover::after {
  border-color: transparent transparent transparent var(--sub-color1);
}
.news .page-news .pagination span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sub-color1);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sub-color1);
  background: #fff;
  transition: 0.3s;
}
.news .page-news .pagination .current {
  color: var(--sub-color1);
  background-color: #fff;
}
.news .page-detail.l-container {
  max-width: 104rem;
}
@media (max-width: 767px) {
  .news__category {
    margin-left: 0;
  }
  .news .page-news .news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 1.6rem;
  }
}

/* ===== End page/news ===== */
/* ===== page/event ===== */
.event .page-ttl {
  background-image: url(assets/img/event/event-title.webp);
}
.event__list--all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto 5rem;
}
.event__list--all .event__item {
  margin: 0;
}

@media (max-width: 1000px) {
  .event .event__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
  .event .event__list .detail {
    padding: 1.6rem 2rem;
  }
}
@media (max-width: 650px) {
  .event .event__list {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }
}
/* ===== End page/event ===== */
/* ===== page/staff ===== */
.staff .page-ttl {
  background-image: url("assets/img/staff/staff-title.webp");
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 14rem auto 8rem;
  gap: 9.6rem 2.4rem;
}
.staff-list li {
  flex: 1 0 32rem;
  max-width: 32rem;
  border-radius: 8px;
  position: relative;
  padding: 18rem 3.2rem 2.4rem;
}

.staff .bc-01 {
  background: #E8F4CC;
}
.staff .bc-02 {
  background: #F4E7CC;
}
.staff__img {
  border-radius: 50%;
  border: 10px solid #fff;
  width: 24rem;
  height: 24rem;
  overflow: hidden;
  position: absolute;
  top: -8.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.staff__img img {
  width: 100%;
}
.staff__txt {
  text-align: center;
}
.staff .position {
  font-size: var(--font-size-s);
}
.staff .name {
  padding: 1.6rem 0;
  line-height: 1.5;
}
.staff .name strong {
  font-size: var(--font-size-l);
}
.staff .name .en {
  display: block;
}
.staff .comment {
  background: #fff;
  border-radius: 8px;
  padding: 1.6rem;
  text-align: left;
}
.staff .comment span {
  background: #7D422F;
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem 1.6rem;
  font-size: var(--font-size-s);
}
.staff .comment ul {
  margin-top: 1rem;
}
.staff .comment li {
  padding: inherit;
  list-style: disc;
  margin-left: 2rem;
}

@media (max-width: 650px) {
  .staff .ttl-highlight {
    font-size: var(--font-size-xl);
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .ttl-highlight .main-txt::before, .ttl-highlight .main-txt::after {
    width: 3rem;
    height: 2.7rem;
  }
  .ttl-highlight .main-txt::before {
    left: -1.5em;
  }
  .ttl-highlight .main-txt::after {
    right: -1.5em;
  }
}
/* ===== End page/staff ===== */
/* ===== page/company ===== */
.company .l-container {
  max-width: 100rem;
}
.company .page-ttl {
  background-image: url(assets/img/company/company-title.webp);
}
.company #CONTENTS .breadcrumb {
  margin-bottom: 0;
}
.company h2 {
  margin-bottom: 4rem;
}
.company h3 {
  font-size: var(--font-size-xl);
  padding: 0 0 2rem;
}
.company .philosophy img {
  border-radius: 4px;
}
.company .philosophy .intro {
  justify-content: center;
  gap: 2rem;
}
.company .philosophy .intro img {
  max-width: 50rem;
  margin: 0 auto;
}
.company .philosophy ul {
  margin: 6rem auto 0;
}
.company .philosophy ul li {
  margin-bottom: 14rem;
  justify-content: space-between;
  position: relative;
}
.company .philosophy ul li::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 69%;
  height: 100%;
  background: var(--base-color);
  z-index: 1;
}
.company .philosophy ul li .philosophy-txt .inner {
  background: #fff;
  padding: 4rem 2.4rem;
  z-index: 3;
  position: relative;
  top: 40%;
  left: -10%;
  width: 40rem;
  max-width: 100%;
  border-radius: 4px;
}
.company .philosophy ul li .philosophy-txt h4 {
  font-size: var(--font-size-xl);
  padding-bottom: 1.6rem;
}
.company .philosophy ul li .philosophy-img {
  max-width: 55rem;
  position: relative;
  z-index: 2;
}
.company .philosophy ul li.reverse::before {
  right: 31%;
}
.company .philosophy ul li.reverse .philosophy-txt {
  left: 16%;
}
.company .philosophy ul li.reverse .philosophy-txt .inner {
  left: inherit;
  top: 48%;
}
.company .philosophy .bc-yellow {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 3.2rem;
  border: 1px dashed var(--sub-color1);
}
.company .overview dl.info {
  grid-template-columns: 20rem 1fr;
}
.company .overview dl.info img {
  width: 25rem;
}
.company .overview dl.info dt, .company .overview dl.info dd {
  border-bottom: 1px solid #D9D9D9;
}
.company .overview dl.info dt:first-of-type, .company .overview dl.info dd:first-of-type {
  border-top: 1px solid #D9D9D9;
}
.company .overview dl.info dt {
  border-left: 1px solid #D9D9D9;
}
.company .overview dl.info dd {
  border-right: 1px solid #D9D9D9;
  padding: 1rem 2.4rem;
}
.company .overview dl.info dd span {
  display: block;
  width: 100%;
}
.company .overview dl.info dd a {
  text-decoration: underline;
  color: var(--main-color);
}
.company .overview dl.info dd.flex {
  align-items: center;
  gap: 1rem;
}
.company .showroom .ttl {
  background: var(--main-color);
  color: #fff;
  border-radius: 16px;
  padding: 1.6rem 2.4rem;
  font-size: var(--font-size-l);
}
.company .showroom dl.info {
  max-width: 42rem;
}
.company .showroom dl.info dt, .company .showroom dl.info dd {
  border-bottom: 1px solid var(--sub-color2);
}

@media (max-width: 767px) {
  .company #CONTENTS .page-ttl {
    background-position: top 0 left 20%;
  }
  .company .philosophy .flex {
    flex-direction: column;
    max-width: 60rem;
    margin: 0 auto;
  }
  .company .philosophy ul li {
    align-items: center;
    padding-bottom: 3rem;
  }
  .company .philosophy ul li::before {
    height: 66%;
  }
  .company .philosophy ul li .philosophy-txt .inner {
    margin-top: -7rem;
    left: 29%;
    width: 35rem;
  }
  .company .overview dl.info {
    display: block;
    border-left: 1px solid #d9d9d9;
  }
  .company .overview dl.info dt {
    padding: 0.8rem 2.4rem;
    justify-content: flex-start;
  }
  .company .showroom dl.info {
    max-width: inherit;
  }
}
@media (max-width: 600px) {
  .company .philosophy ul li .philosophy-txt .inner {
    padding: 2.4rem;
    width: 30rem;
    left: 4%;
    margin-top: -4rem;
  }
  .company .philosophy ul li.reverse .philosophy-txt .inner {
    left: 4%;
  }
  .company .philosophy ul li::before {
    display: none;
  }
  .company .philosophy .bc-yellow {
    padding: 3rem 2.2rem;
  }
}
/* ===== End page/company ===== */
/* ===== page/faq ===== */
.faq .page-ttl {
  background-image: url("assets/img/faq/faq-title.webp");
}
.faq .bc-yellow {
  padding: 8rem 0;
}
.faq .acd {
  max-width: 90rem;
}
.faq .acd__header {
  border-radius: 8px;
  background: #fff;
  color: inherit;
  font-weight: inherit;
  position: relative;
  padding-left: 8rem;
}
.faq .acd__header::after {
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
.faq .acd__header::before {
  content: "Q";
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-l);
}
.faq .acd__content {
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.faq .acd__content p {
  position: relative;
  padding: 0 2.4rem 3rem 8rem;
}
.faq .acd__content p::before {
  content: "A";
  position: absolute;
  left: 2%;
  top: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--orange-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-l);
}
.faq .acd__inner {
  max-width: inherit;
  padding: 2rem 0 0;
}

/* ===== End page/faq ===== */
/* ===== page/works ===== */
/* 施工事例一覧ページ */
.works .page-ttl {
  background-image: url(assets/img/works/works-title.webp);
}
.works .type-list li {
  background: var(--sub-color1);
}
.works .type-list li.active, .works .type-list li.is-active {
  background: var(--main-color);
}
.works .works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 6rem auto;
  gap: 2.4rem 1.6rem;
}
.works .works__list .item {
  background: #fff;
  border: 1px solid var(--sub-color1);
  position: relative;
}
.works .works__list .item::before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--sub-color1);
  border-radius: 50%;
  position: absolute;
  right: 8px;
  bottom: 6px;
  margin: auto;
}
.works .works__list .item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 17px;
  bottom: 15px;
  margin: auto;
}
.works .works__list .city {
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 2.5em;
  font-size: var(--font-size-s);
  font-weight: bold;
}
.works .works__list .detail {
  padding: 1.6rem 2.4rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.works .works__list .flex {
  font-size: var(--font-size-s);
  gap: 1.6rem;
}
.works .works__list .pink-label {
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  padding: 0.6rem 0.8rem;
  margin-right: 0.8rem;
  font-weight: bold;
}
.works .works__list .data {
  white-space: nowrap;
}
.works .works__list .works-tag {
  font-weight: bold;
  text-align: left;
  margin-bottom: 0;
}
.works .works-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
}
.works .works-img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .works-img img.noimage {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 24rem;
  padding: 0 0.5rem;
}
.works .detail__txt dl dt {
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  padding: 0.6rem 0.8rem;
  margin-right: 0.8rem;
  font-weight: bold;
  display: inline-block;
  font-size: var(--font-size-s);
  margin-top: 1.6rem;
}
.works .detail__txt dl dd {
  padding: 0.8rem 0 1.6rem;
  border-bottom: 1px solid #CACACA;
}
.works .detail__txt {
  flex: 1;
}

/* 施工事例詳細ページ */
.single-works #CONTENTS .breadcrumb {
  margin-bottom: 0;
}
.single-works h2 {
  margin-bottom: 3.2rem;
}
.single-works .item {
  aspect-ratio: 3/2;
}
.single-works .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-works .detail__wrapper.flex {
  gap: 4rem;
  justify-content: center;
  padding: 0 3.2rem;
}
.single-works .gallery-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 96rem;
  margin: 0 auto 3.2rem;
}
.single-works .works-slide {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
}
.single-works .works-thumbnail {
  width: 20rem;
  flex-shrink: 0;
}
.single-works .works-thumbnail .item {
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  opacity: 0.4;
  transition: opacity 0.3s;
  cursor: pointer;
}
.single-works .works-thumbnail img {
  width: 100%;
  display: block;
}
.single-works .works-thumbnail .slick-current {
  opacity: 1;
}
.single-works .detail__img {
  flex: 1;
}
.single-works .detail__img .before {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border: 1px solid #ccc;
}
.single-works .detail__img .before p {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 2.5em;
  font-size: var(--font-size-s);
  font-weight: bold;
}
.single-works .detail__img .after {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-top: 0.8rem;
  border: 1px solid #ccc;
}
.single-works .detail__img .after p {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 2.5em;
  font-size: var(--font-size-s);
  font-weight: bold;
}
.single-works .detail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-works .pink {
  color: var(--main-color);
  display: block;
  font-weight: bold;
}
.single-works .detail__txt span {
  color: var(--sub-color1);
  font-weight: bold;
}
.single-works .detail__txt .works-tag {
  text-align: left;
}
.single-works .works__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: var(--sub-color1);
  max-width: 55rem;
  margin: 6rem auto;
  font-weight: bold;
}
.single-works .works__nav .list {
  border: 1px solid var(--sub-color1);
  border-radius: 2px;
}
.single-works .works__nav .list:hover {
  color: #fff;
  background: var(--sub-color1);
}
.single-works .works__nav .list a {
  display: block;
  padding: 0.8rem 1.6rem;
  text-align: center;
}
.single-works .works__nav .prev a {
  position: relative;
}
.single-works .works__nav .prev a::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--sub-color1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -35px;
}
.single-works .works__nav .prev a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -27px;
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
}
.single-works .works__nav .next {
  text-align: right;
}
.single-works .works__nav .next a {
  position: relative;
}
.single-works .works__nav .next a::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--sub-color1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -35px;
}
.single-works .works__nav .next a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -27px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}

@media (max-width: 1000px) {
  .works .works__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
  .works .works__list .detail {
    padding: 1.6rem 2rem;
  }
}
@media (max-width: 650px) {
  .works .works__list {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }
  .single-works .works__nav {
    gap: 1rem;
    margin: 0 auto 12rem;
  }
  .single-works .works__nav .list a {
    padding: 0.8rem 0.5rem;
  }
  .single-works .works__nav .prev {
    text-align: right;
  }
  .single-works .works__nav .prev a::before {
    left: -28px;
  }
  .single-works .works__nav .prev a::after {
    left: -21px;
  }
  .single-works .works__nav .next {
    text-align: left;
  }
  .single-works .works__nav .next a::before {
    right: -28px;
  }
  .single-works .works__nav .next a::after {
    right: -21px;
  }
}
@media (max-width: 1100px) {
  .works .gallery-list {
    flex-direction: column;
    max-width: 85rem;
    margin: 3.2rem auto 5rem;
  }
  .works .works-thumbnail {
    width: 100%;
  }
  .single-works .detail__wrapper.flex {
    flex-direction: column;
    max-width: 70rem;
    margin: 0 auto;
    padding: 0;
  }
  .detail__img .after {
    margin-top: 2rem;
  }
}
/* ===== End page/works ===== */
/* ===== page/voice ===== */
.voice .page-ttl {
  background-image: url(assets/img/voice/voice-title.webp);
}
.voice .type-list li {
  background: #FCBA78;
}
.voice .type-list li.active {
  background: #F89625;
}
.voice .voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 6rem auto;
  gap: 2.4rem 1.6rem;
}
.voice .voice__list .item {
  background: #fff;
  border: 1px solid #FCBA78;
}
.voice .voice__list .city {
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 2.5em;
  font-size: var(--font-size-s);
  font-weight: bold;
}
.voice .voice__list .detail {
  padding: 1.6rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.voice .voice__list .name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
}
.voice .voice-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #FDECE5;
  position: relative;
  display: grid;
  place-items: center;
}
.voice .voice-img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice .voice-img img:not([src]) {
  display: none;
}
.voice .voice-img img[src=""] {
  display: none;
}
.voice .works-tag {
  font-weight: bold;
  text-align: left;
  margin-bottom: 0;
}
.voice .fallback-icons img {
  width: 100px;
  height: 83px;
  background: #fff;
}
.voice .ttl {
  font-weight: bold;
  line-height: 1.6;
}

.fallback-icons {
  position: absolute;
  display: flex;
  gap: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fallback-icons img {
  width: 100px;
  height: 83px;
  background: #fff;
}

@media (max-width: 1000px) {
  .voice .voice__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 80rem;
  }
  .voice .voice__list .detail {
    padding: 1.6rem 2rem;
  }
}
@media (max-width: 650px) {
  .voice .voice__list {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }
}
/* ===== End page/voice ===== */
/* ===== page/form ===== */
.contact #CONTENTS .page-ttl {
  background-image: url("assets/img/contact/contact-title.webp");
  height: auto;
}
.contact #CONTENTS .ttl-mark {
  background-image: url(assets/img/accent/wave-label_orange.svg);
}

#CONTENTS .page-form .ttl-box {
  position: relative;
  background: #fff;
  width: 78rem;
  max-width: 100%;
  border-radius: 16px;
  margin: 0 auto;
  padding: 4rem 6rem;
  text-align: center;
  z-index: 1;
}
#CONTENTS .page-form .form-ttl {
  text-align: center;
  padding-bottom: 2em;
}
#CONTENTS .page-form.contact .page-ttl {
  padding: 8rem 2rem;
}
#CONTENTS .page-form.contact .page-ttl h1 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 1.4;
  color: inherit;
  font-family: inherit;
}
#CONTENTS .page-form.contact .page-ttl .ttl-mark {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12rem;
  height: 12rem;
  top: -1.6em;
  right: -1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: var(--font-size-l);
}
#CONTENTS .page-form.contact .page-ttl .sub-txt {
  display: block;
  font-size: var(--font-size-l);
}

.form-wrapper {
  background: #fff;
  max-width: 92rem;
  border-radius: 16px;
  margin: 0 auto;
  padding: 2rem 1rem 6rem;
}
.form-group {
  padding: 1.6rem 0;
  display: flex;
  gap: 1.6rem;
  border-bottom: 2px dashed #D9D9D9;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.form__tel-box {
  max-width: 50rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  border-radius: 8px;
  padding: 3.2rem 4rem;
  position: relative;
  z-index: 1;
  background: var(--orange-color);
}
.form__tel-box .info-label {
  color: var(--orange-color);
  background: #fff;
}

.form__tel-box + .form-wrapper {
  margin: -8rem auto 0;
  padding: 6rem 1rem;
}
.form__tel-box .tel-link strong {
  color: #fff;
  font-size: var(--font-size-xxl);
}
.form__tel-box .tel-link strong::before {
  background-image: url(assets/img/common/tel_white.svg);
}
.form__tel-box .form__tel {
  border-bottom: 2px solid #fff;
  margin-bottom: 1.6rem;
}
.form__tel-box .flex {
  justify-content: center;
  gap: 1.6rem;
  font-size: var(--font-size-s);
  font-weight: bold;
}
.form__tel-box .info-label {
  padding: 0.5rem 2rem;
}

/* フォーム */
/* 入力画面 */
.fStep {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50rem;
  max-width: 80vw;
  margin: 8rem auto;
  position: relative;
  padding: 0;
}
.fStep:before {
  content: "";
  display: block;
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  height: 4px;
  margin: -13.5px 0 0;
  background-color: #dcdcdc;
}
.fStep span {
  display: block;
  padding: 0 0 2px;
  letter-spacing: normal;
  font-size: 14px;
}
.fStep .fStep__item.fStep__now span.fStep__num {
  background-color: var(--main-color);
}

.fStep__item {
  position: relative;
  float: left;
  width: auto;
  letter-spacing: -1em;
}

span.fStep__num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-xl);
}

span.fStep__txt {
  text-align: center;
  font-weight: bold;
  padding-top: 1.2rem;
}

.calendar-box .fStep__item-step1 span.fStep__num {
  background-color: var(--main-color);
}

.form-area {
  max-width: 80rem;
  width: 90%;
  margin: 0 auto;
}

.form-group {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  border-bottom: 2px dashed #D9D9D9;
}
.form-group .form-label label {
  display: block;
  font-weight: bold;
}
.form-group input[type=text] {
  padding: 12px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
}
.form-group input[type=email] {
  padding: 12px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
}
.form-group input[type=tel] {
  padding: 12px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  width: 170px;
}
.form-group input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  position: relative;
  vertical-align: -0.08em;
  margin-right: 1rem;
}
.form-group input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--sub-color1);
  border-radius: 50%;
}
.form-group input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #D9D9D9;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 1rem;
}
.form-group input[type=checkbox]:checked {
  background: var(--sub-color1);
  border: none;
}
.form-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}

.form-group.border-none {
  border-bottom: none;
}

.form-group.form-top {
  align-items: inherit;
}

.form-group.form_top .form-label label {
  padding-top: 5px;
}
.form-group.form_top .form-label p {
  padding-top: 5px;
}

.form-label {
  width: 37%;
  position: relative;
  flex-shrink: 0;
}
.form-label p {
  display: block;
  font-weight: bold;
  line-height: 1.4;
}

.page-form table.confirm th {
  width: 37%;
  position: relative;
  flex-shrink: 0;
}
.page-form table.confirm td {
  width: 63%;
}

.required {
  white-space: nowrap;
  padding: 4px 6px 5px;
  color: #fff;
  display: inline;
  align-items: center;
  font-size: 15px;
  border-radius: 4px;
  line-height: 24px;
  position: absolute;
  right: 0;
  top: -0.1em;
  background: var(--main-color);
}

.optional {
  white-space: nowrap;
  padding: 4px 6px 5px;
  color: #fff;
  display: inline;
  align-items: center;
  font-size: 15px;
  border-radius: 4px;
  line-height: 24px;
  position: absolute;
  right: 0;
  top: -0.1em;
  background: #999;
}

.form_top .form-label p {
  margin: 0;
}

.form-inputs {
  width: 63%;
}
.form-inputs label {
  display: block;
}
.form-inputs .area1 input[type=text] {
  width: calc(50% - 10px);
}
.form-inputs .area2 input[type=text] {
  width: calc(50% - 10px);
}
.form-inputs .form-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.form-inputs .form-address .zip_label {
  flex-shrink: 0;
  width: 20px;
}
.form-inputs .form-address label {
  width: 150px;
  font-weight: inherit;
  flex-shrink: 0;
}
.form-inputs .note {
  text-indent: -1em;
  margin: 5px 0 10px 1em;
}
.form-inputs .form-address.prefectures input[type=text] {
  width: 100px;
}
.form-inputs .form-btn {
  padding: 4px 6px 5px;
  margin-left: 1rem;
}
.form-inputs textarea {
  width: 100%;
  height: 150px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

.form-inputs.text_short input[type=text] {
  width: 100px;
}

.form-inputs.zipcode input {
  width: 215px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-btn {
  background: var(--sub-color1);
  color: #fff;
  border-radius: 4px;
  transition: 0.3s all;
  font-weight: bold;
}
.form-btn:hover {
  opacity: 0.7;
}

.form-group.form_top.radio p {
  padding-top: 0;
}

.form-group.radio label {
  margin: 0 2rem 1.2rem 0;
  cursor: pointer;
}
.form-group.radio label:last-child {
  margin: 0 2rem 0 0;
}

.form-group.checkbox label {
  margin: 0 2rem 1.2rem 0;
  cursor: pointer;
}
.form-group.checkbox label:last-child {
  margin: 0 2rem 0 0;
}

.form-group.privacy .form-label .required {
  top: -1em;
}
.form-group.privacy label {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.form-group.privacy input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin: 0.4rem 0 0;
}

.check-label a {
  color: var(--sub-color1);
  text-decoration: underline;
}

.form-wrapper .btn-wrapper {
  padding: 4rem 0;
}

.btn-wrapper .form-btn {
  padding: 8px 16px;
  background: var(--main-color);
}

.txt-box {
  margin: 0 auto;
  max-width: 80rem;
  border-radius: 16px;
  padding: 3.2rem 6rem;
}
.txt-box .txt-center {
  font-weight: bold;
  color: var(--main-color);
  font-size: var(--font-size-l);
  margin-bottom: 2.4rem;
}

.note-list li {
  position: relative;
  margin: 1rem 0 1.5rem;
  padding: 0 0 0 2.3rem;
}
.note-list li::before {
  display: block;
  position: absolute;
  content: "";
  top: 0.4em;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--main-color);
}
.note-list li:last-child {
  margin: 1rem 0 0;
}

/* フォーム　ここまで */
@media (max-width: 767px) {
  .contact #CONTENTS .page-ttl {
    background-image: url("assets/img/contact/contact-title_sp.webp");
  }
  .sub-txt .sp-block {
    display: none;
  }
  #CONTENTS .page-form .ttl-box {
    padding: 4rem 2rem;
    width: 60rem;
  }
  .form-area {
    width: 95%;
  }
  .txt-box {
    max-width: 60rem;
    padding: 3.2rem 2.5rem;
  }
  .contact #CONTENTS .page-form .page-ttl h1 .main-txt::before {
    left: -6em;
  }
}
@media (max-width: 650px) {
  #CONTENTS .page-form .sub-txt .sp-block {
    display: block;
  }
  #CONTENTS .page-form.contact .page-ttl {
    padding: 8rem 1rem;
  }
  #CONTENTS .page-form.contact .page-ttl .ttl-mark {
    width: 10rem;
    height: 10rem;
    font-size: var(--font-size-m);
    right: -0.5em;
  }
  #CONTENTS .page-form.contact .page-ttl h1 .main-txt::before {
    width: 3rem;
    height: 2.7rem;
  }
  #CONTENTS .page-form.contact .page-ttl h1 .main-txt::after {
    width: 3rem;
    height: 2.7rem;
    right: -1em;
  }
  #CONTENTS .page-form .ttl-box {
    padding: 4rem 1rem;
  }
  .contact #CONTENTS .page-form .page-ttl h1 .main-txt::before {
    left: -5em;
  }
  .page-form table.confirm th {
    padding-left: 5rem;
  }
  .form__tel-box {
    padding: 3.2rem 2rem;
    max-width: 30rem;
  }
  .form__tel-box .flex {
    flex-direction: column;
    align-items: baseline;
    padding-left: 2rem;
  }
  span.fStep__num {
    width: 4rem;
    height: 4rem;
  }
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group br.sp-block {
    display: none;
  }
  .form-group .form-label label {
    padding-left: 5rem;
  }
  .form-label {
    width: 100%;
  }
  .form-label p {
    padding-left: 5rem;
  }
  .form-inputs {
    width: 100%;
  }
  table.confirm br.sp-block {
    display: none;
  }
  .required {
    right: inherit;
    left: 0;
    margin-top: -4px;
  }
  .optional {
    right: inherit;
    left: 0;
    margin-top: -4px;
  }
  .privacy .form-label {
    margin-top: 1.5rem;
  }
}
@media (max-width: 375px) {
  #CONTENTS .page-form .page-ttl {
    padding: 8rem 1rem;
  }
  #CONTENTS .page-form .page-ttl h1 {
    font-size: var(--font-size-xl);
  }
  #CONTENTS .page-form .page-ttl .ttl-mark {
    width: 9rem;
    height: 9rem;
  }
}
/* 確認画面 */
.page-form table.confirm {
  width: 100%;
}
.page-form table.confirm tr {
  border-bottom: 2px dashed #D9D9D9;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.page-form table.confirm tr:last-child {
  margin-bottom: 0;
}
.page-form table.confirm th {
  text-align: left;
}
.page-form table.confirm td {
  display: flex;
  flex-direction: column;
}

@media (max-width: 650px) {
  .page-form table.confirm tr {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-form table.confirm th {
    width: 100%;
  }
  .page-form table.confirm td {
    width: 100%;
  }
  .page-form .privacy td {
    margin-top: 2.5rem;
  }
}
/* ===== End page/form ===== */
/* ===== page/privacy ===== */
.privacy-policy .page-ttl {
  background: linear-gradient(to bottom right, #4F8F5F 0%, #F1F4D6 100%);
}
.privacy-policy #CONTENTS .breadcrumb {
  margin-bottom: 0;
}

.policy__item {
  counter-increment: policy-number;
  position: relative;
  margin-top: 6rem;
}
.policy__item h2 {
  color: var(--main-color);
  border-bottom: 2px solid var(--sub-color1);
  padding: 0 0 1rem 5.5rem;
}
.policy__item h2::before {
  content: counter(policy-number, decimal-leading-zero) ". ";
  position: absolute;
  left: 0;
  font-size: var(--font-size-xxl);
  line-height: 1;
}
.policy__item ul li {
  position: relative;
  margin: 1rem 0 1.5rem;
  padding-left: 2.3rem;
}
.policy__item ul li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--main-color);
}
.policy__inner {
  padding: 2.4rem 0 0 4rem;
}

@media (max-width: 767px) {
  .privacy-policy #CONTENTS .page-ttl::before {
    display: none;
  }
}
/* ===== End page/privacy ===== */
/* ===== page/reason ===== */
.reason .page-ttl {
  background-image: url("assets/img/reason/reason-title.webp");
}
.reason h2 {
  letter-spacing: 0.1em;
}
.reason h3 {
  letter-spacing: 0.1em;
  margin: 3.2rem 0 3.2rem 2.4rem;
  line-height: 1.5;
}
.reason .l-section .flex {
  gap: 6rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}
.reason .l-section .flex .btn-wrapper {
  margin-top: 3.2rem;
  text-align: left;
}
.reason .txt {
  flex: 1;
  max-width: 50rem;
}
.reason .img {
  flex: 1;
  max-width: 50rem;
}
.reason .img img {
  border-radius: 4px;
}

@media (max-width: 767px) {
  .reason .l-section .flex {
    flex-direction: column;
  }
  .reason .l-section .flex .btn-wrapper {
    text-align: center;
  }
}
/* ===== End page/reason ===== */
/* ===== page/recruit ===== */
.recruit .page-ttl {
  background-image: url(assets/img/recruit/recruit-title.webp);
}
.recruit .detail.l-section {
  padding: 4rem 0 0;
}
.recruit .intro {
  position: relative;
  margin-bottom: 4rem;
}
.recruit .intro__img {
  max-width: 80rem;
  margin: 0 auto;
}
.recruit .intro__img img {
  border-radius: 4px;
}
.recruit .intro__txt {
  position: absolute;
  bottom: 3%;
  left: 0;
  padding-left: 3em;
  font-weight: 700;
  z-index: 500;
}
.recruit .intro__txt span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  padding: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
.recruit h3 {
  text-align: center;
  font-size: var(--font-size-xl);
}
.recruit .syokusyu-list {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin: 3.2rem auto 4rem;
}
.recruit .syokusyu-list li {
  background: var(--orange-color);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  transition: 0.3s all;
}
.recruit .syokusyu-list li:hover {
  transform: translateY(-5px);
  background: var(--main-color);
}
.recruit .syokusyu-list li a {
  padding: 2.4rem 2.4rem 5rem;
  display: inline-block;
  position: relative;
}
.recruit .syokusyu-list li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  transform: translateX(-50%) rotate(45deg);
  transition-duration: 0.3s;
}
.recruit .syokusyu-list li a:hover {
  opacity: 1;
}
.recruit .syokusyu-list li p {
  padding-bottom: 1rem;
}
.recruit .syokusyu-list li img {
  border-radius: 50%;
  max-width: 15rem;
  margin: 0 auto;
}
.recruit .vertical-line {
  font-size: var(--font-size-l);
}
.recruit .description {
  padding-top: 4rem;
  max-width: 90rem;
  margin: 0 auto;
}
.recruit .description dl.info {
  grid-template-columns: 15rem 1fr;
  margin-top: 1rem;
}
.recruit .description dt {
  background: #fff;
  color: inherit;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: inherit;
  padding: 2rem 0 2rem 4rem;
}
.recruit .description dd {
  padding: 2rem 1.6rem;
}
.recruit .description .btn-wrapper {
  margin: 6rem auto;
}
.recruit .form__tel-box {
  margin: 0 auto 8rem;
}
.recruit .form__tel-box > p:first-of-type {
  font-size: var(--font-size-xl);
}

@media (max-width: 767px) {
  .recruit br.pc-block {
    display: block;
  }
  .recruit .intro__txt {
    font-size: var(--font-size-l);
    padding-left: 1em;
  }
  .recruit .intro__txt span {
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
  }
  .recruit .description dl.info {
    grid-template-columns: 10rem 1fr;
  }
  .recruit .description dt {
    justify-content: center;
    padding: 2rem 0;
  }
}
@media (max-width: 650px) {
  .recruit .form__tel-box {
    max-width: 50rem;
  }
  .recruit br.pc-block {
    display: none;
  }
  .recruit .intro__txt {
    bottom: -10%;
  }
}
/* ===== End page/recruit ===== */
/* ===== utility/utility ===== */
.flex {
  display: flex;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mt5 {
  margin-top: 5rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.pt1 {
  padding-top: 1rem;
}

.pt2 {
  padding-top: 2rem;
}

.pt3 {
  padding-top: 3rem;
}

.pt4 {
  padding-top: 4rem;
}

.pt5 {
  padding-top: 5rem;
}

.pb1 {
  padding-bottom: 1rem;
}

.pb2 {
  padding-bottom: 2rem;
}

.pb3 {
  padding-bottom: 3rem;
}

.pb4 {
  padding-bottom: 4rem;
}

.pb5 {
  padding-bottom: 5rem;
}

.sp-block {
  display: none;
}

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

.under-line {
  background: linear-gradient(#dcebce, #dcebce) 0 100%/100% 0.5em no-repeat;
}

.vertical-line {
  padding: 0.2rem 0 0.2rem 2rem;
  border-left: solid 2px var(--main-color);
}

.ribbon {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 35px;
  background: linear-gradient(90deg, #135A21 0%, #21993A 50%, #135A21 100%);
  color: #fff;
  box-sizing: border-box;
}
.ribbon:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 1;
  top: 0;
  left: 0;
  border-width: 20px 0 20px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.ribbon:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 20px 15px 20px 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.ribbon__wrapper {
  text-align: center;
}

.font-noto {
  font-family: "Noto Sans", sans-serif;
}

.shadow {
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.25);
}

.green01 {
  color: var(--main-color);
}

.green02 {
  color: var(--sub-color1);
}

.bc-green {
  background: #F1FCE7;
}

.bc-orange {
  background: #FCF3E8;
}

.bc-yellow {
  background: #FCFBE8;
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

@media (max-width: 767px) {
  .pc-block {
    display: none;
  }
  .sp-block {
    display: block;
  }
}
/* ===== End utility/utility ===== *//*# sourceMappingURL=style.css.map */