@charset "UTF-8";
/* ===========================================
 * LAYOUT CSS
 * ======================================== */
/* ===========================================
 * preloader
 * ======================================== */
#preloader {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* ===========================================
 * container
 * ======================================== */
.l-container {
  width: 90%;
  margin: auto;
}

/* container ( 992 px < ) */
/* ======================================== */
@media (min-width: 992px) {
  .l-container {
    max-width: 1080px;
  }
}
/* ===========================================
 * main
 * ======================================== */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s ease 0s;
}
body.is-menu-open::after {
  z-index: 98;
  pointer-events: auto;
  opacity: 1;
}

/* main ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  body::after {
    display: none !important;
  }
}
/* main ( 992 px < ) */
/* ======================================== */
/* main ( 1200 px < ) */
/* ======================================== */
/* ===========================================
 * section
 * ======================================== */
.l-section {
  padding: 1.875rem 0;
}

/* section ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  .l-section {
    padding: 2.5rem 0;
  }
}
/* section ( 992 px < ) */
/* ======================================== */
/* section ( 1200 px < ) */
/* ======================================== */
/* ===========================================
 * sns
 * ======================================== */
.l-sns-follow {
  padding-bottom: 0;
}
.l-sns-follow__title {
  margin-bottom: 0;
}
.l-sns-follow__list {
  margin: 3.75rem auto;
  padding: 0;
  list-style: none;
  display: flex;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  line-height: 0;
  justify-content: center;
  align-items: center;
}
.l-sns-follow__list li img {
  width: 5rem;
}

/* sns ( 768 px < ) */
/* ======================================== */
/* sns ( 992 px < ) */
/* ======================================== */
/* sns ( 1200 px < ) */
/* ======================================== */
/* ===========================================
 * header
 * ======================================== */
.l-header {
  width: 100%;
  height: 8.125rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.9);
}
.l-header__wrapper {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
  position: relative;
  z-index: 101;
  transition: all 0.4s ease 0s;
}
.l-header__wrapper.is-hide {
  opacity: 0.25;
  filter: grayscale(1);
}
.l-header__logo {
  display: block;
  text-indent: -9999px;
  width: 20rem;
  height: 6.875rem;
  overflow: hidden;
  position: relative;
  margin-right: auto;
}
.l-header__logo::before, .l-header__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateZ(0);
  transition: opacity 0.6s ease 0s;
  will-change: opacity;
}
.l-header__logo::before {
  background-image: url(../img/logo-inv.svg);
}
.l-header__logo::after {
  background-image: url(../img/logo.svg);
  opacity: 0;
}
@media (max-width: 767.98px) {
  .l-header__logo.is-open::before {
    opacity: 0;
  }
  .l-header__logo.is-open::after {
    opacity: 1;
  }
}
.l-header__tel {
  display: none;
}
.l-header__tel img.default {
  display: block;
}
.l-header__tel img.inv {
  display: none;
}
.l-header__tel p {
  color: #fff;
}
.l-header__map-button {
  width: 12.0625rem;
  line-height: 0;
}
.l-header__map-button img {
  width: 100%;
}
.l-header__menu-button {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.4s ease 0s;
  margin-right: -2.5%;
  border-radius: 1.25rem;
}
.l-header__menu-button i {
  display: block;
  position: relative;
  width: 3.75rem;
  height: 1.6875rem;
  border-top: solid 2px #444;
  border-bottom: solid 2px #444;
  transition: border-color 0.4s ease 0s;
}
.l-header__menu-button i::before, .l-header__menu-button i::after {
  content: "";
  background-color: #444;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.4s ease 0s;
}
.l-header__menu-button.is-close {
  background-color: transparent !important;
}
.l-header__menu-button.is-close i {
  border-color: transparent !important;
}
.l-header__menu-button.is-close i::before, .l-header__menu-button.is-close i::after {
  background-color: #444 !important;
  transform: rotate(45deg);
}
.l-header__menu-button.is-close i::after {
  transform: rotate(-45deg);
}
.l-header__pc-menu {
  display: none;
}
.l-header__area-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  padding: 8.125rem 0;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 102;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s ease 0s;
}
.l-header__area-menu.is-open {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}
.l-header__area-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 8.125rem;
  line-height: 0;
}
.l-header__area-logo {
  width: 14.375rem;
  height: 5rem;
}
.l-header__area-close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  width: 3.75rem;
  height: 3.75rem;
}
.l-header__area-close::before, .l-header__area-close::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.l-header__area-close::after {
  transform: rotate(-45deg);
}
.l-header__area-content {
  margin: 2.8125rem auto;
}
.l-header__area-title {
  font-size: 1.875rem;
  margin-bottom: 0.75em;
}
.l-header__main-menu {
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  box-sizing: border-box;
  padding-top: 8.125rem;
  background-color: #f2f2f2;
  position: fixed;
  top: 0;
  right: -100vw;
  transition: right 0.6s ease 0s;
}
.l-header__main-menu.is-open {
  right: 0;
}
.l-header__menu-search {
  padding: 5vw;
  background-color: #fad9dd;
}
.l-header__menu-list {
  display: flex;
  flex-wrap: wrap;
  margin: 5vw;
  padding: 0;
  list-style: none;
  border-top: solid 1px #ccc;
  background-color: #fff;
}
.l-header__menu-list li {
  flex-basis: 100%;
  border: solid 1px #ccc;
  border-top: none;
  box-sizing: border-box;
}
.l-header__menu-list li a {
  display: flex;
  width: 100%;
  height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-sizing: border-box;
}
.l-header__menu-list li a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/arrow.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}
.l-header__menu-list li a:hover::after {
  filter: brightness(0) invert(44%) sepia(95%) saturate(1125%) hue-rotate(320deg) brightness(111%) contrast(84%);
}
.l-header__menu-list li:nth-child(n+4) {
  flex-basis: 50%;
}
.l-header__menu-list li:nth-child(n+4) a {
  font-size: 0.9em;
  padding: 0 10%;
}
.l-header__menu-list li:nth-child(2n+4) {
  border-right: none;
}
.l-header__menu-tel {
  margin-bottom: 5vw;
}
.l-header__menu-line {
  padding-bottom: 5vw;
}
.l-header__menu-line a {
  font-size: 1.25em;
  display: flex;
  width: 66%;
  height: 3em;
  margin: auto;
  background: #00b900;
  color: #fff;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0.5em;
  font-weight: 700;
  transition: background-color 0.4s ease 0s;
  box-sizing: border-box;
}
.l-header__menu-line a img {
  height: 2em;
  width: auto;
}
.l-header__menu-line a:hover {
  opacity: 1;
  background-color: #000;
}
.l-header__menu-mail {
  padding-bottom: 5vw;
}
.l-header__menu-mail a {
  font-size: 1.25em;
  display: flex;
  width: 80%;
  height: 3em;
  margin: auto;
  background-color: #000;
  color: #fff;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 1em;
  font-weight: 700;
  transition: background-color 0.4s ease 0s;
}
.l-header__menu-mail a img {
  height: 1em;
}
.l-header__menu-mail a:hover {
  opacity: 1;
  background-color: #eb6877;
}
.l-header.no-bg {
  background-color: transparent;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.2); // ←この行を打ち直し*/
}
.l-header.no-bg .l-header__logo::before {
  opacity: 0;
}
.l-header.no-bg .l-header__logo::after {
  opacity: 1;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}
.l-header.no-bg .l-header__menu-button {
  background-color: #444;
}
.l-header.no-bg .l-header__menu-button i {
  border-color: #fff;
}
.l-header.no-bg .l-header__menu-button i::before, .l-header.no-bg .l-header__menu-button i::after {
  background-color: #fff;
}
.l-header.no-bg .l-header__tel a img.default {
  display: none;
}
.l-header.no-bg .l-header__tel a img.inv {
  display: block;
}

/* header ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
  .l-header__wrapper {
    width: calc(100% - 5rem);
    max-width: 9999px;
    gap: 1.25rem;
  }
  .l-header__logo {
    width: 10rem;
    height: 3.4375rem;
  }
  .l-header__tel {
    display: block;
    line-height: 0;
  }
  .l-header__tel img {
    height: 2.8125rem;
    width: auto;
  }
  .l-header__map-button {
    width: 6.875rem;
    cursor: pointer;
  }
  .l-header__menu-button {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 0.625rem;
    margin-right: -1.25vw;
    cursor: pointer;
  }
  .l-header__menu-button i {
    width: 2.0625rem;
    height: 0.875rem;
    border-width: 2px;
  }
  .l-header__menu-button i::before, .l-header__menu-button i::after {
    height: 2px;
  }
  .l-header__pc-menu {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 3.75rem;
    text-align: center;
    background-color: #eb6877;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s ease 0s;
  }
  .l-header__pc-menu .l-container {
    width: 100%;
    height: 100%;
  }
  .l-header__pc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    font-size: 0.875em;
    line-height: 1.25;
  }
  .l-header__pc-list li {
    flex: 1;
    height: 100%;
    border-left: solid 1px #fff;
  }
  .l-header__pc-list li a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  }
  .l-header__pc-list li a:hover {
    opacity: 1;
    background-color: #fff;
    color: #eb6877;
  }
  .l-header__pc-list li.contact {
    border-right: solid 1px #fff;
  }
  .l-header__pc-list li.contact a {
    background-color: #000;
    color: #fff;
  }
  .l-header__pc-list li.contact a img {
    display: inline-block;
    height: 0.75em;
    margin-right: 0.5em;
  }
  .l-header__pc-list li.contact a:hover {
    background-color: #fff;
    color: #eb6877;
  }
  .l-header__pc-list li.contact a:hover img {
    filter: invert(56%) sepia(95%) saturate(1125%) hue-rotate(320deg) brightness(111%) contrast(84%);
  }
  .l-header__area-menu {
    height: auto;
    max-height: 100dvh;
    padding: 5rem 0;
  }
  .l-header__area-header {
    height: 5rem;
  }
  .l-header__area-logo {
    width: 10rem;
    height: 3.4375rem;
  }
  .l-header__area-close {
    width: 2.0625rem;
    height: 2.0625rem;
    cursor: pointer;
  }
  .l-header__area-close::before, .l-header__area-close::after {
    height: 0.125rem;
  }
  .l-header__area-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .l-header__area-wrapper > div {
    flex-basis: calc(50% - 1rem);
  }
  .l-header__area-wrapper > div:first-child {
    flex-basis: 100%;
  }
  .l-header__area-content {
    margin: 0;
  }
  .l-header__area-title {
    margin-top: 0;
  }
  .l-header__main-menu {
    width: 23.4375rem;
    padding-top: 5rem;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  }
  .l-header__menu-search {
    padding: 1.875rem;
  }
  .l-header__menu-list {
    margin: 1.875rem;
  }
  .l-header__menu-list li a {
    height: 3.125rem;
  }
  .l-header__menu-tel {
    margin-bottom: 1.875rem;
  }
  .l-header__menu-line {
    padding-bottom: 1.875rem;
  }
  .l-header__menu-mail {
    padding-bottom: 1.875rem;
  }
  .l-header.scroll .l-header__pc-menu {
    clip-path: inset(0 0 100% 0);
  }
}
/* header ( 992 px < ) */
/* ======================================== */
/* header ( 1200 px < ) */
/* ======================================== */
/* ===========================================
 * footer
 * ======================================== */
.l-footer__inner {
  padding: 4.375rem;
}
.l-footer__inner:has(.l-footer__company) {
  border-top: solid 1px #fff;
}
.l-footer__area {
  background-color: #f6f6f6;
}
.l-footer__area-title {
  font-size: 1em;
  margin-bottom: 1em;
}
.l-footer__area-summery {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  font-weight: 900;
  height: 3em;
}
.l-footer__area-summery::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/arrow.svg") center center no-repeat;
  background-size: contain;
}
.l-footer__area-summery.is-open::after {
  transform: rotate(180deg);
}
.l-footer__area-text {
  display: none;
  margin-bottom: 1em;
}
.l-footer__area-pref {
  margin-bottom: 1em;
}
.l-footer__area-pref h3 {
  font-size: 1em;
  margin: 0 0 0.5em;
}
.l-footer__area-pref ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.l-footer__menu {
  background-color: #444;
  color: #fff;
  padding-bottom: 3.75rem;
}
.l-footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  font-weight: 700;
  flex-direction: column;
  gap: 1.5em;
}
.l-footer__company-name {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 0.5em;
}
.l-footer__company-address {
  margin-bottom: 3em;
}
.l-footer__company-tel {
  display: flex;
  gap: 0.75em;
  align-items: center;
  font-weight: 700;
  margin-bottom: 1.25em;
}
.l-footer__company-tel dt {
  padding: 0.25em 0.75em;
  background-color: #eb6877;
  border-radius: 1.25em;
}
.l-footer__company-tel dd {
  margin-left: 0;
}
.l-footer__company-time {
  margin: 2em 0 3em;
}

.l-cta {
  position: fixed;
  bottom: -8.125rem;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.875rem;
  display: flex;
  justify-content: space-between;
  line-height: 0;
  z-index: 103;
  pointer-events: none;
  transition: bottom 0.6s ease 0s;
}
.l-cta.scroll {
  bottom: 0;
}
.l-cta__tel, .l-cta__top {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  pointer-events: auto;
  line-height: 0;
}
.l-cta__tel img, .l-cta__top img {
  width: 100%;
  height: auto;
}
.l-cta__tel:hover, .l-cta__top:hover {
  opacity: 0.75;
}
/* footer ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  .l-footer__inner {
    width: 90%;
    box-sizing: border-box;
    padding: 3.125rem 0;
    max-width: 67.5rem;
    margin: auto;
  }
  .l-footer__inner:has(.l-footer__company) {
    border: none;
  }
  .l-footer__area-wrapper {
    display: block;
  }
  .l-footer__area-summery {
    pointer-events: none;
  }
  .l-footer__area-summery::after {
    display: none;
  }
  .l-footer__area-text {
    display: block !important;
  }
  .l-footer__area-pref {
    display: flex;
  }
  .l-footer__area-pref h3 {
    flex-basis: 5em;
  }
  .l-footer__area-pref ul {
    flex-basis: calc(100% - 5em);
  }
  .l-footer__menu-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 3.125rem;
    width: 90%;
    box-sizing: border-box;
    padding: 3.125rem 0;
    max-width: 67.5rem;
    margin: auto;
  }
  .l-footer__menu-wrapper .l-footer__inner {
    padding: 0;
    margin: 0;
    flex-basis: 22.5rem;
  }
  .l-footer__menu-wrapper .l-footer__inner:first-child {
    order: 1;
    flex-basis: calc(100% - 24rem);
  }
  .l-footer__menu-list {
    display: flex;
    font-weight: 700;
    flex-direction: column;
    flex-wrap: wrap;
    height: 18.75rem;
    gap: 1.5em;
    text-align: right;
  }
  .l-footer__menu-item:nth-child(4) {
    margin-bottom: 6.25rem;
  }
  .l-footer__company-name {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .l-footer__company-tel {
    display: flex;
    gap: 0.75em;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1.25rem;
  }
  .l-footer__company-tel dt {
    padding: 0.25em 0.75em;
    background-color: #eb6877;
    border-radius: 1.25rem;
  }
  .l-footer__company-time {
    margin: 2em 0 3em;
  }
  .l-cta {
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 0;
    bottom: -8.125rem;
  }
  .l-cta__tel {
    display: none;
  }
  .l-cta__top {
    width: 5.625rem;
    height: auto;
    margin-bottom: 0.625rem;
  }
}
/* footer ( 992 px < ) */
/* ======================================== */
/* footer ( 1200 px < ) */
/* ======================================== */
/* ===========================================
 * spacer
 * ======================================== */
.l-spacer {
  width: 100%;
  height: 12.5rem;
}

/* spacer ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  .l-spacer {
    height: 6.25rem;
  }
}
/* ===========================================
 * header
 * ======================================== */
.l-header {
  width: 100%;
  height: 8.125rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.9);
}
.l-header__wrapper {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
  position: relative;
  z-index: 101;
  transition: all 0.4s ease 0s;
}
.l-header__wrapper.is-hide {
  opacity: 0.25;
  filter: grayscale(1);
}
.l-header__logo {
  display: block;
  text-indent: -9999px;
  width: 20rem;
  height: 6.875rem;
  overflow: hidden;
  position: relative;
  margin-right: auto;
}
.l-header__logo::before, .l-header__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateZ(0);
  transition: opacity 0.6s ease 0s;
  will-change: opacity;
}
.l-header__logo::before {
  background-image: url(../img/logo-inv.svg);
}
.l-header__logo::after {
  background-image: url(../img/logo.svg);
  opacity: 0;
}
@media (max-width: 767.98px) {
  .l-header__logo.is-open::before {
    opacity: 0;
  }
  .l-header__logo.is-open::after {
    opacity: 1;
  }
}
.l-header__tel {
  display: none;
}
.l-header__tel img.default {
  display: block;
}
.l-header__tel img.inv {
  display: none;
}
.l-header__tel p {
  color: #fff;
}
.l-header__map-button {
  width: 12.0625rem;
  line-height: 0;
}
.l-header__map-button img {
  width: 100%;
}
.l-header__menu-button {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.4s ease 0s;
  margin-right: -2.5%;
  border-radius: 1.25rem;
}
.l-header__menu-button i {
  display: block;
  position: relative;
  width: 3.75rem;
  height: 1.6875rem;
  border-top: solid 2px #444;
  border-bottom: solid 2px #444;
  transition: border-color 0.4s ease 0s;
}
.l-header__menu-button i::before, .l-header__menu-button i::after {
  content: "";
  background-color: #444;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.4s ease 0s;
}
.l-header__menu-button.is-close {
  background-color: transparent !important;
}
.l-header__menu-button.is-close i {
  border-color: transparent !important;
}
.l-header__menu-button.is-close i::before, .l-header__menu-button.is-close i::after {
  background-color: #444 !important;
  transform: rotate(45deg);
}
.l-header__menu-button.is-close i::after {
  transform: rotate(-45deg);
}
.l-header__pc-menu {
  display: none;
}
.l-header__area-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  padding: 8.125rem 0;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 102;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s ease 0s;
}
.l-header__area-menu.is-open {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}
.l-header__area-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 8.125rem;
  line-height: 0;
}
.l-header__area-logo {
  width: 14.375rem;
  height: 5rem;
}
.l-header__area-close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  width: 3.75rem;
  height: 3.75rem;
}
.l-header__area-close::before, .l-header__area-close::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.l-header__area-close::after {
  transform: rotate(-45deg);
}
.l-header__area-content {
  margin: 2.8125rem auto;
}
.l-header__area-title {
  font-size: 1.875rem;
  margin-bottom: 0.75em;
}
.l-header__main-menu {
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  box-sizing: border-box;
  padding-top: 8.125rem;
  background-color: #f2f2f2;
  position: fixed;
  top: 0;
  right: -100vw;
  transition: right 0.6s ease 0s;
}
.l-header__main-menu.is-open {
  right: 0;
}
.l-header__menu-search {
  padding: 5vw;
  background-color: #fad9dd;
}
.l-header__menu-list {
  display: flex;
  flex-wrap: wrap;
  margin: 5vw;
  padding: 0;
  list-style: none;
  border-top: solid 1px #ccc;
  background-color: #fff;
}
.l-header__menu-list li {
  flex-basis: 100%;
  border: solid 1px #ccc;
  border-top: none;
  box-sizing: border-box;
}
.l-header__menu-list li a {
  display: flex;
  width: 100%;
  height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-sizing: border-box;
}
.l-header__menu-list li a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/arrow.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}
.l-header__menu-list li a:hover::after {
  filter: brightness(0) invert(44%) sepia(95%) saturate(1125%) hue-rotate(320deg) brightness(111%) contrast(84%);
}
.l-header__menu-list li:nth-child(n+4) {
  flex-basis: 50%;
}
.l-header__menu-list li:nth-child(n+4) a {
  font-size: 0.9em;
  padding: 0 10%;
}
.l-header__menu-list li:nth-child(2n+4) {
  border-right: none;
}
.l-header__menu-tel {
  margin-bottom: 5vw;
}
.l-header__menu-line {
  padding-bottom: 5vw;
}
.l-header__menu-line a {
  font-size: 1.25em;
  display: flex;
  width: 66%;
  height: 3em;
  margin: auto;
  background: #00b900;
  color: #fff;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0.5em;
  font-weight: 700;
  transition: background-color 0.4s ease 0s;
  box-sizing: border-box;
}
.l-header__menu-line a img {
  height: 2em;
  width: auto;
}
.l-header__menu-line a:hover {
  opacity: 1;
  background-color: #000;
}
.l-header__menu-mail {
  padding-bottom: 5vw;
}
.l-header__menu-mail a {
  font-size: 1.25em;
  display: flex;
  width: 80%;
  height: 3em;
  margin: auto;
  background-color: #000;
  color: #fff;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 1em;
  font-weight: 700;
  transition: background-color 0.4s ease 0s;
}
.l-header__menu-mail a img {
  height: 1em;
}
.l-header__menu-mail a:hover {
  opacity: 1;
  background-color: #eb6877;
}
.l-header.no-bg {
  background-color: transparent;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.2); // ←この行を打ち直し*/
}
.l-header.no-bg .l-header__logo::before {
  opacity: 0;
}
.l-header.no-bg .l-header__logo::after {
  opacity: 1;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}
.l-header.no-bg .l-header__menu-button {
  background-color: #444;
}
.l-header.no-bg .l-header__menu-button i {
  border-color: #fff;
}
.l-header.no-bg .l-header__menu-button i::before, .l-header.no-bg .l-header__menu-button i::after {
  background-color: #fff;
}
.l-header.no-bg .l-header__tel a img.default {
  display: none;
}
.l-header.no-bg .l-header__tel a img.inv {
  display: block;
}

/* header ( 768 px < ) */
/* ======================================== */
@media (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
  .l-header__wrapper {
    width: calc(100% - 5rem);
    max-width: 9999px;
    gap: 1.25rem;
  }
  .l-header__logo {
    width: 10rem;
    height: 3.4375rem;
  }
  .l-header__tel {
    display: block;
    line-height: 0;
  }
  .l-header__tel img {
    height: 2.8125rem;
    width: auto;
  }
  .l-header__map-button {
    width: 6.875rem;
    cursor: pointer;
  }
  .l-header__menu-button {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 0.625rem;
    margin-right: -1.25vw;
    cursor: pointer;
  }
  .l-header__menu-button i {
    width: 2.0625rem;
    height: 0.875rem;
    border-width: 2px;
  }
  .l-header__menu-button i::before, .l-header__menu-button i::after {
    height: 2px;
  }
  .l-header__pc-menu {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 3.75rem;
    text-align: center;
    background-color: #eb6877;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s ease 0s;
  }
  .l-header__pc-menu .l-container {
    width: 100%;
    height: 100%;
  }
  .l-header__pc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    font-size: 0.875em;
    line-height: 1.25;
  }
  .l-header__pc-list li {
    flex: 1;
    height: 100%;
    border-left: solid 1px #fff;
  }
  .l-header__pc-list li a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  }
  .l-header__pc-list li a:hover {
    opacity: 1;
    background-color: #fff;
    color: #eb6877;
  }
  .l-header__pc-list li.contact {
    border-right: solid 1px #fff;
  }
  .l-header__pc-list li.contact a {
    background-color: #000;
    color: #fff;
  }
  .l-header__pc-list li.contact a img {
    display: inline-block;
    height: 0.75em;
    margin-right: 0.5em;
  }
  .l-header__pc-list li.contact a:hover {
    background-color: #fff;
    color: #eb6877;
  }
  .l-header__pc-list li.contact a:hover img {
    filter: invert(56%) sepia(95%) saturate(1125%) hue-rotate(320deg) brightness(111%) contrast(84%);
  }
  .l-header__area-menu {
    height: auto;
    max-height: 100dvh;
    padding: 5rem 0;
  }
  .l-header__area-header {
    height: 5rem;
  }
  .l-header__area-logo {
    width: 10rem;
    height: 3.4375rem;
  }
  .l-header__area-close {
    width: 2.0625rem;
    height: 2.0625rem;
    cursor: pointer;
  }
  .l-header__area-close::before, .l-header__area-close::after {
    height: 0.125rem;
  }
  .l-header__area-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .l-header__area-wrapper > div {
    flex-basis: calc(50% - 1rem);
  }
  .l-header__area-wrapper > div:first-child {
    flex-basis: 100%;
  }
  .l-header__area-content {
    margin: 0;
  }
  .l-header__area-title {
    margin-top: 0;
  }
  .l-header__main-menu {
    width: 23.4375rem;
    padding-top: 5rem;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  }
  .l-header__menu-search {
    padding: 1.875rem;
  }
  .l-header__menu-list {
    margin: 1.875rem;
  }
  .l-header__menu-list li a {
    height: 3.125rem;
  }
  .l-header__menu-tel {
    margin-bottom: 1.875rem;
  }
  .l-header__menu-line {
    padding-bottom: 1.875rem;
  }
  .l-header__menu-mail {
    padding-bottom: 1.875rem;
  }
  .l-header.scroll .l-header__pc-menu {
    clip-path: inset(0 0 100% 0);
  }
}
/* header ( 992 px < ) */
/* ======================================== */
/* header ( 1200 px < ) */
/* ======================================== */
/* 2025.09.30*//*# sourceMappingURL=layout.css.map */