﻿@charset "UTF-8";

/*
Variables
------------------------------------------- */
:root {
  --c-main: #d94248;
  --c-price: #ff6600;
  --c-line: #06c755;
  --c-accent: #ffcc33;
  --c-accent2: #00a896;
  /* --c-gray: #f9f7f2; */
  --c-gray: #f3f0e8;
  --c-white: #fff;
  --c-text: #333;
  --c-link: #007bff;
  --w-content: 1240px;
  --h-header: 80px;
  --fz-text: 1rem;
}
@media (min-width: 768px) {
  :root {
    --h-header: 116px;
    --fz-text: 1.125rem;
  }
}
/*
Reset & Normalize
------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  appearance: none;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
    filter: brightness(1.2);
    transition: 0.3s;
  }
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*
Fonts
------------------------------------------- */
@font-face {
  font-family: 'Noto Sans JP Custom';
  src: url('../fonts/NotoSansJP-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP Custom';
  src: url('../fonts/NotoSansJP-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*
Base
------------------------------------------- */
body {
  font-size: 100%;
  font-family: 'Noto Sans JP Custom', sans-serif;
  color: var(--c-text);
  line-height: 1.7;
  word-wrap: break-word;
  padding-top: 0;
}
.smooth-scroll {
  scroll-behavior: smooth;
  scroll-padding-top: var(--h-header);
}
.inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 20px;
}
.lead_title-highlight {
  display: inline-block;
  background: var(--c-text);
  color: var(--c-white);
  font-size: 1.625rem;
  padding: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .lead_title-highlight {
    font-size: 2.5rem;
  }
} /* LINEボタン */
.btn_line {
  background: var(--c-line);
  color: var(--c-white);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5em;
  height: auto;
} /* お問い合わせボタン */
.btn_mail {
  background: var(--c-text);
  color: var(--c-white);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5em;
  height: auto;
} /* 電話番号リンク */
.tel {
  display: flex;
  gap: 0.5em;
}
.tel_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.tel_num {
  display: block;
  font-size: 1.438rem;
  font-weight: bold;
  line-height: 1.2;
}
.tel_time {
  font-size: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .tel_num {
    font-size: 1.75rem;
  }
  .tel_time {
    font-size: 0.875rem;
  }
}
/*
Utility
------------------------------------------- */
.u_text_accent {
  color: var(--c-main) !important;
  font-weight: bold;
}
.u_text_link {
  color: var(--c-link);
  font-weight: bold;
  text-decoration: underline;
}
.u_text_link[target='_blank']::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  vertical-align: -0.125em;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M15%203h6v6'/%3E%3Cpath%20d='M10%2014%2021%203'/%3E%3Cpath%20d='M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M15%203h6v6'/%3E%3Cpath%20d='M10%2014%2021%203'/%3E%3Cpath%20d='M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.u_price {
  color: var(--c-price);
  font-weight: bold;
}
.u_mt1 {
  margin-top: 1em !important;
}
.u_mt2 {
  margin-top: 2em !important;
}
.u_mark {
  background: #fff0b3;
}

@media only screen and (max-width: 767px) {
  .u_pc_only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .u_sp_only {
    display: none !important;
  }
}
/*
Header (Fade logic)
------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease;
  height: var(--h-header);
}
.header.is_scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1920px;
  margin: 0 auto;
  height: inherit;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo_link {
  display: flex;
  align-items: center;
  max-width: 247px;
}
.header__logo_link img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .header__logo_link {
    height: 50px;
  }
}
.header__logo_area {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-text);
  border-bottom: 1px solid var(--c-text);
  padding: 0.5em 1em;
  gap: 0.2em;
  flex: 1 0 auto;
}
@media (min-width: 1200px) {
  .header__logo_area {
    gap: 0.5em;
  }
}
.header__logo_area_label {
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: center;
}
.header__logo_area_text {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--c-text);
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 1200px) {
  .header__logo_area_text {
    font-size: 1.125rem;
  }
}
.header__nav_list {
  display: flex;
  gap: 20px;
  font-weight: bold;
  font-size: 1.125rem;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__btn_line {
  font-size: 1.125rem;
  height: 76px;
}
.header__btn_mail {
  font-size: 1.125rem;
  height: 76px;
}
.header__tel {
  padding-left: 1em;
  min-width: 220px;
  border-left: 1px solid var(--c-text);
}
.header__tel_body {
  gap: 2px;
}
.header__tel_num {
  font-size: 1.438rem;
}
.header__tel_time {
  font-size: 0.75rem;
}
@media (min-width: 1200px) {
  .header__tel_num {
    font-size: 1.75rem;
  }
  .header__tel_time {
    font-size: 0.875rem;
  }
}
/*
Hamburger & Drawer
------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  position: relative;
}
@media (max-width: 1319px) {
  .header__inner {
    justify-content: flex-start;
    gap: 8px;
  }
  .header__logo {
    margin-right: auto;
  }
  .hamburger {
    display: flex;
  }
  .header__contact {
    gap: 8px;
  }
  .header__contact .header__nav {
    display: none;
  }
  .header__btn_text {
    display: none;
  }
  .header__btn_line,
  .header__btn_mail {
    width: 60px;
    justify-content: center;
    padding: 0;
    gap: 0;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header__contact .header__btn_line,
  .header__contact .header__btn_mail,
  .header__contact .header__tel {
    display: none;
  }
}
.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.is_open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is_open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is_open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80vw, 300px);
  height: 100%;
  background: var(--c-white);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  padding: 60px 24px 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.drawer.is_open {
  transform: translateX(0);
}
.drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.drawer__nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer__nav_list li {
  border-bottom: 1px solid #eee;
}
.drawer__nav_list a {
  display: block;
  padding: 16px 4px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--c-text);
}
.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer__btn_line,
.drawer__btn_mail {
  width: 100%;
  justify-content: center;
  height: 60px;
  padding: 14px 20px;
  font-size: 1rem;
}
.drawer__tel {
  margin-top: 8px;
}
.drawer__tel_num {
  font-size: 1.875rem;
}
.drawer__tel_time {
  font-size: 0.9375rem;
}
/* Overlay */
.drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.drawer__overlay.is_open {
  display: block;
}
.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.375rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background-color 0.3s,
    transform 0.3s;
  line-height: 1;
}
@media (hover: hover) {
  .drawer__close:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: rotate(90deg);
    opacity: 1;
  }
}
/*
Footer
------------------------------------------- */
.footer {
  color: var(--c-white);
}
.footer__upper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--c-text);
}
.footer__upper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/footer_bg.webp') center center / cover no-repeat;
  z-index: 0;
}
.footer__upper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.82);
  z-index: 1;
}
.footer__upper_inner {
  position: relative;
  z-index: 2;
}
.footer__lower {
  background-color: #222;
  padding: 60px 0 28px;
}
.footer__sitemap {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__sitemap {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__sitemap_link {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9375rem;
}
.footer__heading {
  display: block;
  margin: 0 0 32px;
  padding: 0;
  background: none;
  color: var(--c-white);
  font-weight: bold;
  line-height: 1.4;
  font-size: 0.9375rem;
}
.footer__heading::after {
  content: '';
  display: block;
  width: 2.75em;
  height: 2px;
  margin-top: 16px;
  background: var(--c-white);
}
.footer__sitemap_list li {
  margin-bottom: 1.25em;
  font-size: 0.9375rem;
}
.footer__info_wrap {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1fr);
  gap: 48px 56px;
}
.footer__contact_body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.footer__contact_actions {
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 280px;
}
.footer__contact_actions .footer__btn_mail,
.footer__contact_actions .footer__btn_line {
  width: 100%;
}
.footer__address,
.footer__tel,
.footer__mobile,
.footer__hours {
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.footer__area_notes {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 20px;
  line-height: 1.8;
}
.footer_tel {
  margin-bottom: 24px;
}
.footer_tel_body {
  gap: 4px;
}
.footer_tel_num {
  font-size: 2rem;
}
.footer_tel_time {
  font-size: 0.9375rem;
}
.footer__btn_mail {
  background: var(--c-white);
  color: var(--c-text);
  justify-content: center;
  padding: 15px;
  margin-bottom: 28px;
  font-size: 1.25rem;
}
.footer__btn_line {
  justify-content: center;
  padding: 15px;
  font-size: 1.25rem;
}
.footer__qr {
  flex: 0 0 auto;
}
.footer__qr img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0;
  background: var(--c-white);
  padding: 8px;
  box-sizing: content-box;
}
.footer__copyright {
  margin: 100px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--c-white);
}
@media (max-width: 767px) {
  .footer__info_wrap {
    grid-template-columns: 1fr;
  }
  .footer__contact_body {
    flex-direction: column;
  }
  .footer__contact_actions {
    max-width: none;
  }
  .footer__qr img {
    margin: 0 auto;
  }
}
/*
Page Top
------------------------------------------- */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--c-main);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.pagetop.is_visible {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .pagetop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
  }
}
@media (min-width: 768px) {
  .pagetop {
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
  }
}
