﻿@charset "UTF-8";

/*
Variables
------------------------------------------- */
:root {
  --c-main: #d94248;
  --c-price: #ff6600;
  --c-line: #06c755;
  --c-accent: #ffcc33;
  --c-gray: #f9f7f2;
  --c-white: #fff;
  --c-text: #333;
  --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;
  }
}

/*
Utility
------------------------------------------- */
.u_text_accent {
  color: var(--c-main);
  font-weight: bold;
}

@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-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.header__btn_line {
  background: var(--c-line);
  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: 76px;
}

.header__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: 76px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-text);
  text-decoration: none;
  border-left: 1px solid var(--c-text);
  padding-left: 1em;
  min-width: 220px;
}

.header__tel_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header__tel_num {
  display: block;
  font-size: 1.438rem;
  font-weight: bold;
  line-height: 1.2;
}

.header__tel_time {
  font-size: 0.75rem;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .header__tel_num {
    font-size: 1.75rem;
  }

  .header__tel_time {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

/*
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__actions .header__btn_line,
.drawer__actions .header__btn_mail {
  width: 100%;
  justify-content: center;
  height: auto;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 8px;
  gap: 0.5em;
}

.drawer__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  margin-top: 8px;
}
.drawer__actions .header__tel_num {
  font-size: 1.875rem;
}
.drawer__actions .header__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;
  }
}

/*
Mainvisual
------------------------------------------- */
.mv {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 622px;
}

.mv__bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv__bg_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv__bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.mv__woman_img {
  position: absolute;
  left: 48%;
  max-height: 469px;
  width: auto;
  bottom: 0;
  z-index: 11;
}

.mv__woman_img img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.mv__content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.mv__sub_title {
  font-size: 1rem;
  margin-bottom: 3em;
  font-weight: normal;
}

.mv__main_copy {
  line-height: 1.2;
}

.mv__copy_small {
  display: inline-block;
  font-size: 2.5rem;
  color: var(--c-text);
  margin-bottom: 20px;
  position: relative;
  padding: 0 2em;
  font-weight: bold;
}

.mv__copy_small::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 20px;
  transform: translateY(-50%) rotate(60deg);
  width: 2em;
  height: 3px;
  background-color: var(--c-text);
}

.mv__copy_small::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%) rotate(-60deg);
  width: 2em;
  height: 3px;
  background-color: var(--c-text);
}

.mv__copy_large {
  display: block;
  font-size: 4rem;
  color: var(--c-main);
  font-weight: bold;
  line-height: 1.4;
}

.mv__copy_large span {
  background: var(--c-white);
  padding: 0 0 0 0.5em;
}

@media (max-width: 767px) {
  .mv {
    height: 600px;
    align-items: flex-end;
  }

  .mv__woman_img {
    right: 0;
    height: 380px;
    bottom: -50px;
    aspect-ratio: 489 / 469;
    margin-inline: auto;
    left: 0;
  }

  .mv__content.inner {
    text-align: center;
    position: absolute;
    top: 100px;
    padding-inline: 0;
  }

  .mv__copy_large {
    font-size: 2.4375rem;
  }

  .mv__sub_title {
    font-size: 0.75rem;
  }

  .mv__copy_small {
    font-size: 1.4375rem;
  }
}

/*
Intro
------------------------------------------- */
.intro {
  padding: 0 20px;
  text-align: center;
}

.intro__lead {
  margin-top: -62px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.intro__lead_text {
  margin: 0 0 20px;
  color: var(--c-text);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

.intro__lead_text::before {
  content: '';
  display: block;
  width: 2px;
  height: 124px;
  margin: 0 auto 24px;
  background: var(--c-text);
}

.intro__lead_title {
  margin: 0;
}

.intro__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0 100px;
  margin-bottom: 60px;
}

.intro__feature_item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  align-items: center;
}

.intro__feature_title {
  color: var(--c-main);
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro__feature_item .intro__feature_img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__feature_desc {
  text-align: left;
  font-size: var(--fz-text);
  margin-top: 1em;
}

.intro__profile {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 700px;
  margin: 0 auto 100px;
}

.intro__profile_img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.intro__profile_content {
  text-align: left;
  flex: 1;
}

.intro__profile_title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--c-main);
  text-align: center;
}

.intro__profile_text {
  font-size: var(--fz-text);
}

@media (max-width: 767px) {
  .intro__lead_text {
    font-size: 1.375rem;
  }

  .intro__features {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .intro__feature_item {
    display: block;
    max-width: 500px;
    margin-inline: auto;
  }

  .intro__feature_title {
    font-size: 1.375rem;
  }

  .intro__profile {
    flex-direction: column;
    padding: 40px 20px;
    border-radius: 80px 0 80px 0;
  }

  .intro__profile_title {
    font-size: 1.375rem;
  }
}

/*
Service
------------------------------------------- */
.service {
  background: var(--c-gray);
  padding: 100px 0;
  text-align: center;
}

.service__main_title {
  margin-bottom: 64px;
  position: relative;
}

.service__group {
  margin-bottom: 0;
  padding-bottom: 48px;
  text-align: left;
}

.service__group + .service__group {
  padding-top: 48px;
}

.service__group_title {
  font-size: 2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.4;
}

.service__group_title::before {
  content: '';
  width: 72px;
  height: 2px;
  background: var(--c-text);
}

@media (max-width: 767px) {
  .service__group_title {
    font-size: 1.25rem;
  }

  .service__group_title::before {
    width: 30px;
  }
}

.service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 37px;
}

.service__item {
  background: var(--c-white);
  border: 2px solid var(--c-text);
  padding: 0 48px 0 20px;
  position: relative;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  height: 80px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.service__item::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--c-text);
  border-right: 2px solid var(--c-text);
  flex-shrink: 0;
}

@media (hover: hover) {
  .service__item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    opacity: 1;
  }
}

.service__item_icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__item_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service__item_label {
  flex: 1;
  min-width: 0;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service__note {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 32px;
}

.service__note_sub {
  font-size: var(--fz-text);
  margin-top: 15px;
  line-height: 2;
  max-width: 1000px;
  margin-inline: auto;
  word-break: keep-all;
}

@media (max-width: 767px) {
  .service__list {
    grid-template-columns: 1fr;
  }
}

/*
Area
------------------------------------------- */
.area {
  padding: 100px 0;
}

.area__title {
  text-align: center;
  margin-bottom: 60px;
}

.area__content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.area__text {
  flex: 1;
}

.area__lead {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.area__item {
  margin-bottom: 25px;
  font-size: var(--fz-text);
}

.area__item dt {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.area__map {
  flex: 1;
}

@media (max-width: 767px) {
  .area__content {
    flex-direction: column-reverse;
  }
}

/*
Works
------------------------------------------- */
.works {
  padding: 100px 0;
  background: var(--c-gray);
  text-align: center;
}

.works__title {
  margin-bottom: 10px;
}

.works__sub_title {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 1.25rem;
}

.works__note {
  font-size: 1.25rem;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .works__sub_title,
  .works__note {
    font-size: 1rem;
  }
}

.works__category {
  margin-bottom: 80px;
  text-align: left;
}

.works__category_title {
  font-size: 2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.4;
}

.works__category_title::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--c-text);
}

.works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 30px;
}

.works__item {
  border: 2px solid var(--c-text);
  position: relative;
  display: flex;
  background: var(--c-white);
  border-radius: 8px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

@media (hover: hover) {
  .works__item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    opacity: 1;
  }
}

.works__item_label {
  position: absolute;
  top: 1em;
  left: 1em;
  background: var(--c-accent);
  color: var(--c-text);
  font-size: 0.9375rem;
  font-weight: bold;
  padding: 2px 12px;
  z-index: 5;
  border-radius: 999px;
}

.works__item_img {
  width: 40%;
  overflow: hidden;
}

.works__item_img figure {
  height: 100%;
}

.works__item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works__item_body {
  width: 60%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.works__item_name {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.works__item_spec {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.works__item_price {
  color: var(--c-price);
  font-size: 1rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.2;
}

.works__item_price span {
  font-size: 2em;
}

@media (max-width: 767px) {
  .works__category_title {
    font-size: 1.25rem;
  }

  .works__item {
    height: auto;
    flex-direction: column;
  }

  .works__item_img,
  .works__item_body {
    width: 100%;
  }
}

@media (max-width: 499px) {
  .works__list {
    grid-template-columns: 1fr;
  }
}

/*
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__btn_tel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
  color: var(--c-white);
  width: 100%;
}

.footer__btn_tel_icon {
  flex-shrink: 0;
  display: flex;
  color: var(--c-white);
}

.footer__btn_tel_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.footer__btn_tel_num {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.footer__btn_tel_sub {
  display: block;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.3;
}

.footer__btn_mail {
  background: var(--c-white);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 28px;
  font-size: 1.25rem;
  border-radius: 8px;
}

.footer__btn_line {
  background: var(--c-line);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px;
  font-weight: bold;
  border-radius: 8px;
  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;
  }
}
