﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  wrapper

--------------------------------------------------------------------------------*/
.l-wrapper {
  position: relative;
  min-height: 100%;
}

/*--------------------------------------------------------------------------------

  header

--------------------------------------------------------------------------------*/
:root { --hd-height: 5rem; }
.l-hd {
  width: 100%;
  height: var(--hd-height);
  display: flex;
}

/*--------------------------------------------------------------------------------
  .l-hd_logo
--------------------------------------------------------------------------------*/
.l-hd_logo {
  --link-color: var(--txt-color);
  --link-color-hover: var(--txt-color);
  --link-deco: none;
  --link-deco-hover: none;
  align-self: center;
  font-size: var(--fs-m);
  font-family: var(--ff-go);
  font-weight: 500;
}
.l-hd_logo a {
  display: block;
  padding: 0.75rem;
}
.l-hd_logo img {
  width: auto;
  height: 2.5rem;
  margin-right: 1rem;
}
@media (min-width: 761px) {
  .l-hd_logo {
    z-index: 10;
    position: absolute;
    top: 0;
    left: calc(var(--side-space) / 3);
    border-bottom-right-radius: var(--rd-1);
    background-color: #FFF;
    margin: 1rem 0 1rem 0;
  }
  #top .l-hd_logo {
    top: var(--space-m);
    left: calc(var(--side-space) / 2);
    margin: 2rem 0 2rem 0;
  }
  /*
  .l-hd_logo {
    z-index: 10;
    position: absolute;
    top: var(--space-m);
    left: calc(var(--side-space) / 2);
    border-bottom-right-radius: var(--rd-1);
    background-color: #FFF;
    margin: 2rem 0 2rem 0;
  }
  */
  .l-hd_logo a {
    padding: 0 2rem 1rem 1rem;
  }
  #top .l-hd_logo {
    padding: 0 2rem 2rem 1rem;
    /*padding: 2rem 2rem 2rem 1rem;*/
  }
  .l-hd_logo img {
    height: 3rem;
  }
}

/*--------------------------------------------------------------------------------
  .l-hd_nav
--------------------------------------------------------------------------------*/
ul.l-hd_nav {
  --link-color: var(--txt-color);
  --link-color-hover: var(--color-secondary);
  --link-deco: none;
  --link-deco-hover: none;
  font-size: var(--fs-s);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  padding-right: calc(var(--gnav-btn-width) + calc(var(--side-space) / 2) + 1rem);
}
@media (max-width: 1220px) {
  div:not(#top) ul.l-hd_nav { display: none; }
}
@media (max-width: 1000px) {
  #top ul.l-hd_nav { display: none; }
}
ul.l-hd_nav > li {
  position: relative;
}
ul.l-hd_nav > li > a,
ul.l-hd_nav > li > span {
  display: block;
  padding: 1rem;
}
ul.l-hd_nav > li > .dropdown_nav {
  position: absolute;
  top: 45px;
  display: block;
  width: 100%;
  padding: 20px 0 0 0;
  opacity: 0;
  z-index: 501;
  transition: all 0.2s ease-in-out;
}
ul.l-hd_nav > li:hover > .dropdown_nav {
  filter: drop-shadow(0px 0px 15px 0px rgba(0,0,0,0.1));
  opacity: 1;
}
ul.l-hd_nav > li > .dropdown_nav > ul {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% + 120px);
  background: #ffffff;
  border-radius: var(--rd-1);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  filter: drop-shadow(0px 0px 15px 0px rgba(0,0,0,0.1));
  margin: 0 -60px;
  padding: 5px 20px;
  list-style: none;
}
ul.l-hd_nav > li > .dropdown_nav > ul::before {
  content: "";
  position: absolute;
  top: calc(tan(-60deg) * 15px / 2);
  right: 0;
  left: 0;
  width: 30px;
  height: calc(tan(60deg) * 15px / 2);
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  clip-path: polygon(50% 0,100% 100%,0 100%);
  margin: auto;
}
ul.l-hd_nav > li > .dropdown_nav > ul > li {
}
ul.l-hd_nav > li > .dropdown_nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: normal;
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding: 15px 0 !important;
}
ul.l-hd_nav > li > .dropdown_nav > ul > li:nth-of-type(1) > a {
  border-top: none;
}
ul.l-hd_nav > li > .dropdown_nav > ul > li > a:hover {
  color: var(--color-secondary) !important;
}
ul.l-hd_nav > li > .dropdown_nav > ul > li > a::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  top: 23px;
  right: 10px;
  width: 9px;
  height: 9px;
  border: 0;
  border-top: 2.5px solid var(--border-color);
  border-right: 2.5px solid var(--border-color);
  border-radius: 1px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
ul.l-hd_nav > li > .dropdown_nav > ul > li > a:hover::after {
  right: 2px;
  border-color: var(--color-secondary) !important;
}

/*--------------------------------------------------------------------------------

  global navigation

--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  .l-gnav-btn
--------------------------------------------------------------------------------*/
@media (min-width: 501px) { :root { --gnav-btn-icon-width: 40px; --gnav-btn-icon-height: 12px; } }
@media (max-width: 500px) { :root { --gnav-btn-icon-width: 28px; --gnav-btn-icon-height: 8px; } }
:root {
  --gnav-btn-width: calc(var(--gnav-btn-icon-width) + var(--space-s));
  --gnav-btn-height: calc(var(--gnav-btn-icon-height) + 1rem);
  --gnav-btn-pd: 0.5rem 0;
  
  --gnav-btn-line-height: 2px;
  --gnav-btn-line-bg: var(--color-primary);
  --gnav-btn-line-bg-hover: var(--color-primary);
  --gnav-btn-close-line-bg: #FFF;
  --gnav-btn-close-line-bg-hover: #FFF;
}
.l-gnav-btn {
  width: fit-content;
  padding: var(--gnav-btn-pd);
  height: var(--hd-height);
  position: fixed;
  top: 0;
  right: var(--space-s);
  z-index: 999;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-gnav-btn_icon {
  position: relative;
  width: var(--gnav-btn-icon-width);
  height: var(--gnav-btn-icon-height);
  transition: all 0.2s ease-out;
}
.l-gnav-btn_line {
  position: absolute;
  right: 0;
  left: 0;
  height: var(--gnav-btn-line-height);
  transition: all 0.2s ease-out;
  background-color: var(--gnav-btn-line-bg);
}
.l-gnav-btn.is-close .l-gnav-btn_line { background-color: var(--gnav-btn-close-line-bg-hover); }
.l-gnav-btn_line:nth-of-type(1) { width: 100%; top: 0; }
.l-gnav-btn_line:nth-of-type(2) { width: 100%; top: 100%; }
.l-gnav-btn.is-close .l-gnav-btn_line:nth-of-type(1) {
  width: 100%;
  top: 0;
  transform: translateY(calc((var(--gnav-btn-icon-height) / 2))) rotate(-45deg);
}
.l-gnav-btn.is-close .l-gnav-btn_line:nth-of-type(2) {
  width: 100%;
  bottom: 0;
  transform: translateY(calc(-1 * (var(--gnav-btn-icon-height) / 2))) rotate(45deg);
}
@media (hover: hover) {
  .l-gnav-btn:not(.is-close):hover .l-gnav-btn_line { background-color: var(--gnav-btn-line-bg-hover); }
  .l-gnav-btn.is-close:hover .l-gnav-btn_line { background-color: var(--gnav-btn-close-line-bg-hover); }
}

/*--------------------------------------------------------------------------------
  .l-gnav
--------------------------------------------------------------------------------*/
.l-gnav {
  display: none;
  pointer-events: none;
  width: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}

/* open・close
----------------------------------------*/
body:has(.l-gnav.is-open) { overflow: hidden; }
.l-gnav.is-open,
.l-gnav.is-close { display: grid; pointer-events: auto; }

/* background
----------------------------------------*/
.l-gnav:before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(0,0,0,0.2);
  opacity: 0;
}
.l-gnav.is-open:before { animation: 0.3s gnav-open-bg forwards; }
.l-gnav.is-close:before { animation: 0.15s gnav-close-bg forwards; }
@keyframes gnav-open-bg { from { opacity: 0; } to { opacity: 1; } }
@keyframes gnav-close-bg { from { opacity: 1; } to { opacity: 0; } }

/*--------------------------------------------------------------------------------
  .l-gnav_inner
  .l-gnav_content
--------------------------------------------------------------------------------*/
.l-gnav_inner {
  opacity: 0;
  height: 100%;
  display: grid;
  position: relative;
  padding: calc(var(--space-l) + var(--gnav-btn-height)) var(--inner-space-m) var(--space-l) var(--inner-space-m);
}
.l-gnav_content {
  --link-color: #FFF;
  --link-color-hover: #FFF;
  --link-deco: none;
  --link-deco-hover: none;
  margin: 0 auto;
  display: grid;
  align-content: start;
  opacity: 0;
  color: #FFF;
}
@media (min-width: 761px) {
  .l-gnav_inner { width: 560px; margin-left: auto; }
  .l-gnav_content { width: min(100%, 560px); }
}
@media (max-width: 760px) {
  .l-gnav_inner,
  .l-gnav_content { width: 100%; }
}

/* open・close
----------------------------------------*/
:root { --gnav-close-duration: 150; }
.l-gnav.is-open .l-gnav_inner { animation: 0.3s gnav-open-content forwards; }
.l-gnav.is-open .l-gnav_content { animation: 0.6s gnav-open-content forwards; animation-delay: 0.15s; }
.l-gnav.is-close .l-gnav_inner,
.l-gnav.is-close .l-gnav_content { animation: calc(var(--gnav-close-duration) * 0.001s) gnav-close-content forwards; }
@keyframes gnav-open-content { from { opacity: 0; } to { opacity: 1; } }
@keyframes gnav-close-content { from { opacity: 1; } to { opacity: 0; } }

/* background
----------------------------------------*/
.l-gnav_inner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--color-primary);
}
.l-gnav.is-open .l-gnav_inner:before { animation: 0.6s gnav-open-inner-bg var(--cubic-bezier) forwards; }
@keyframes gnav-open-inner-bg { from { transform: translateX(100%); } to { transform: translateX(0); } }

/*--------------------------------------------------------------------------------
  .l-gnav-list
--------------------------------------------------------------------------------*/
ul.l-gnav-list {
  font-size: var(--fs-m);
  font-family: var(--ff-go);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
ul.l-gnav-list a {
  display: block;
  padding: 0.5rem 0;
}
ul.l-gnav-list > li > ul {
  font-size: var(--fs-s);
}
ul.l-gnav-list > li > ul > li {
}
ul.l-gnav-list > li > ul > li > a {
  padding: 0.25rem 0;
}
ul.l-gnav-list > li > ul > li > a::before {
  content: "・";
  display: inline-block;
  padding-right: 0.25em;
}
@media (hover: hover) {
  ul.l-gnav-list a:hover { opacity: 0.6; }
}

/*--------------------------------------------------------------------------------
  .l-gnav-contact
--------------------------------------------------------------------------------*/
.l-gnav-contact {
  padding-top: 2.5rem;
  line-height: var(--line-height-s);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.75rem;
}
.l-gnav-contact a {
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--rd-h);
}
.l-gnav-contact .tel { grid-column: span 2; }
.l-gnav-contact .tel a {
  line-height: 1;
  row-gap: 0.5rem;
  flex-direction: column;
  border: 1px solid #FFF;
}
.l-gnav-contact .tel_no {
  font-size: var(--fs-2l);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
}
.l-gnav-contact .tel_no:before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  background: currentColor;
  color: currentColor;
  mask: var(--icon-tel) no-repeat center center;
  mask-size: contain;
}
.l-gnav-contact .tel small { font-size: var(--fs-2s); }
/*
.l-gnav-contact li:not(.tel) a {
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}
.l-gnav-contact li:not(.tel) a:before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
}
*/
.l-gnav-contact li:not(.tel) a {
  line-height: 1;
  row-gap: 0.5rem;
  flex-direction: column;
}
/*
@media (max-width: 400px) {
  .l-gnav-contact li:not(.tel) a:before { width: 100%; }
}
.l-gnav-contact .mail a { background-color: var(--color-tertiary); }
.l-gnav-contact .mail a:before { mask-image: var(--icon-mail); }
.l-gnav-contact .line a { background-color: #0AB446; }
.l-gnav-contact .line a:before { mask-image: var(--icon-line3); }
*/
.l-gnav-contact .mail a { background-color: var(--color-tertiary); }
.l-gnav-contact .line a { background-color: #0AB446; }
.l-gnav-contact .mail small { font-size: var(--fs-2s); }
.l-gnav-contact .line small { font-size: var(--fs-2s); }
.l-gnav-contact .mail_text,
.l-gnav-contact .line_text {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
}
.l-gnav-contact .mail_text::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  mask-image: var(--icon-mail);
}
.l-gnav-contact .line_text::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  mask-image: var(--icon-line3);
}
@media (hover: hover) {
  .l-gnav-contact .mail a:hover { background-color: var(--color-tertiary-light); }
  .l-gnav-contact .line a:hover { background-color: #19C355; }
}

/*--------------------------------------------------------------------------------
  .l-gnav-sns
--------------------------------------------------------------------------------*
.l-gnav-sns {
  padding-top: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --sns-size: 1.65rem;
}
.l-gnav-sns a {
  color: #FFF;
  padding: 0.75rem;
}
@media (hover: hover) {
  .l-gnav-sns a:hover { opacity: 0.6; }
}

/*--------------------------------------------------------------------------------

  footer

--------------------------------------------------------------------------------*/
.l-ft {
  --link-color: #FFF;
  --link-color-hover: rgba(255,255,255,0.6);
  --link-deco: underline;
  --link-deco-hover: none;
  background-color: var(--color-primary);
  color: #FFF;
  padding: var(--space-2l) var(--side-space) var(--space-l) var(--side-space);
  display: grid;
  row-gap: var(--space-l);
}
@media (min-width: 1001px) {
  .l-ft {
    grid-template-columns: 1fr auto;
  }
}
/*
@media (max-width: 760px) {
  .l-ft {
    padding-bottom: var(--space-5l);
  }
}
*/


/*--------------------------------------------------------------------------------
  .l-ft_content
--------------------------------------------------------------------------------*/
.l-ft_content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m) var(--space-l);
}
@media (max-width: 760px) {
  .l-ft_content {
    gap: var(--space-m);
  }
}
@media (max-width: 500px) {
  .l-ft_content {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------------------------
  .l-ft_office
--------------------------------------------------------------------------------*/
.l-ft_office {
  line-height: var(--line-height-s);
  display: flex;
  gap: var(--space-m) var(--space-l);
  font-size: var(--fs-s);
}
.l-ft_office .name {
  font-size: var(--fs-n-rem);
}
.l-ft_office address {
  margin: 0.75rem 0 1rem 0;
}
@media (min-width: 1001px) {
  .l-ft_office {
    grid-area: 1 / 1 / 2 / 3;
  }
}
@media (max-width: 760px) {
  .l-ft_office {
    gap: var(--space-m);
  }
}
@media (max-width: 500px) {
  .l-ft_office {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------
  .l-ft_catch
--------------------------------------------------------------------------------*/
.l-ft_catch {
  width: 100%;
  max-width: 160px;
}
@media (max-width: 760px) {
  .l-ft_catch {
    max-width: 120px;
  }
}


/*--------------------------------------------------------------------------------
  .l-ft_ssl
--------------------------------------------------------------------------------*/
.l-ft_ssl {
  font-size: var(--fs-2s);
}
@media (min-width: 1001px) {
  .l-ft_ssl {
    align-self: end;
    grid-area: 2 / 1 / 3 / 2;
  }
}

/*--------------------------------------------------------------------------------
  .l-ft_sns
--------------------------------------------------------------------------------*/
.l-ft_sns {
  display: flex;
  gap: var(--space-3s);
  margin-top: var(--space-2s);
}
.l-ft_sns img {
  width: 100%;
  max-width: 60px;
  height: auto;
}
@media (max-width: 500px) {
  .l-ft_sns {
    justify-content: center;
  }
}
/*
.l-ft_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  --sns-size: 1.65rem;
}
@media (min-width: 1001px) {
  .l-ft_sns {
    align-self: end;
    grid-area: 2 / 2 / 3 / 3;
  }
}
.l-ft_sns a {
  padding: 0.75rem;
}
*/

/*--------------------------------------------------------------------------------
  .l-ft-bnr
--------------------------------------------------------------------------------*/
@media (min-width: 1001px) { .l-ft-bnr { --col: 4; } }
@media (max-width: 1000px) { .l-ft-bnr { --col: 2; } }
.l-ft-bnr {
  padding: var(--space-l) 0;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: var(--space-2s);
}
.l-ft-bnr li {
  border: 2px solid var(--border-color-light);
  border-radius: var(--rd-h);
  overflow: hidden;
  text-align: center;
}
.l-ft-bnr a { display: block; }
.l-ft-bnr img { width: min(100%, 260px); }


/*--------------------------------------------------------------------------------
  .l-ft-bnr
--------------------------------------------------------------------------------*/
.l-ft-movie {
  padding: var(--space-l) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2s);
  border-top: 1px dashed #ccc;
}
.l-ft-movie iframe {
  width: 40%;
  aspect-ratio:16 / 9;
}
@media (max-width: 760px) {
  .l-ft-movie {
    flex-wrap: wrap;
  }
  .l-ft-movie p {
    width: 100%;
  }
  .l-ft-movie iframe {
    width: 100%;
    max-width: 500px;
  }
}

/*--------------------------------------------------------------------------------
  back to top
--------------------------------------------------------------------------------*/
.l-backtoTop-wrap {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  pointer-events: none;
  text-align: right;
}
.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  width: 88px;
  height: 88px;
  cursor: pointer;
}
.l-backtoTop-wrap.is-noFix {
  position: absolute;
  bottom: inherit;
  left: 0 !important;
}
.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-top: 1px solid #202020;
  border-right: 1px solid #202020;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-backtoTop-wrap.is-scrFt .l-backtoTop__icon:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media screen and (max-width:760px) {
  .l-backtoTop-wrap {
    display: none !important;
  }
}

/*--------------------------------------------------------------------------------
  fix-contact
--------------------------------------------------------------------------------*/

@media (min-width: 761px) {
  #fix-contact {
    position: fixed;
    top: 90px;
    right: 0;
    z-index: 2;  
    --link-deco: none;
    --link-deco-hover: none;
    --pd: 1rem;
    line-height: var(--line-height-s);
    border-top-left-radius: var(--rd-q);
    border-bottom-left-radius: var(--rd-q);
    background-color: var(--bg-gray);
    padding: var(--pd);
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.1);
  }
  #fix-contact p {
    margin-bottom: var(--pd);
    color: var(--color-secondary-dark);
    font-size: var(--fs-s);
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  #fix-contact p .interpunct {
    display: block;
    width: 0;
    height: 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .l-fix-contact {
    display: grid;
    gap: var(--pd);
    grid-template-columns: 1fr;
  }
  .l-fix-contact li a span {
    display: none;
  }
  .l-fix-contact li.tel {
    display: none;
    --link-color: var(--txt-color);
    --link-color-hover: var(--txt-color);
  }
  .l-fix-contact li:not(.tel) {
    --link-color: #FFF;
    --link-color-hover: #FFF;
  }
  .l-fix-contact .tel a { background-color: var(--bg-gray); }
  .l-fix-contact .mail a { background-color: var(--color-tertiary); }
  .l-fix-contact .line a { background-color: #0AB446; }
  .l-fix-contact a {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--rd-h);
    font-size: var(--fs-2l);
  }
  .l-fix-contact .tel a:before {
    content: "";
    width: 0.9em;
    height: 0.9em;
    background: currentColor;
    color: var(--color-secondary);
    mask: var(--icon-tel) no-repeat center center;
    mask-size: contain;
  }
  .l-fix-contact .mail a::before {
    content: "";
    width: 0.9em;
    height: 0.9em;
    background: currentColor;
    color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    mask-image: var(--icon-mail);
  }
  .l-fix-contact .line a::before {
    content: "";
    width: 0.9em;
    height: 0.9em;
    background: currentColor;
    color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    mask-image: var(--icon-line3);
  }
}
@media (max-width: 760px) {
  #fix-contact {
    display: none;
    --link-deco: none;
    --link-deco-hover: none;
    --pd: clamp(1.25rem, 5vw, 2.5rem);
    width: 100%;
    line-height: var(--line-height-s);
    background-color: #FFF;
    padding: var(--pd);
    position: fixed;
    bottom: 0;
    z-index: 2;  
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  #fix-contact.hidden {
    opacity: 0;
  }
  #fix-contact p {
    color: var(--color-secondary-dark);
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
  }
  #fix-contact p br {
    display: none;
  }
  .l-fix-contact {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: var(--pd) 0.75rem;
  }
  .l-fix-contact li.tel {
    --link-color: var(--txt-color);
    --link-color-hover: var(--txt-color);
  }
  .l-fix-contact li:not(.tel) {
    --link-color: #FFF;
    --link-color-hover: #FFF;
  }
  .l-fix-contact a {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: var(--rd-h);
  }
  .l-fix-contact .tel a {
    line-height: 1;
    row-gap: 0.5rem;
    flex-direction: column;
  }
  .l-fix-contact .tel_no {
    width: 1.5em;
    height: 1.5em;
    background: currentColor;
    color: var(--color-secondary);
    mask: var(--icon-tel) no-repeat center center;
    mask-size: contain;
  }
  .l-fix-contact li:not(.tel) a {
    line-height: 1;
    row-gap: 0.5rem;
    flex-direction: column;
  }
  .l-fix-contact .tel a { background-color: var(--bg-gray); }
  .l-fix-contact .mail a { background-color: var(--color-tertiary); }
  .l-fix-contact .line a { background-color: #0AB446; }
  .l-fix-contact .mail_text,
  .l-fix-contact .line_text {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    font-size: var(--fs-s);
  }
  .l-fix-contact .mail_text::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background: currentColor;
    color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    mask-image: var(--icon-mail);
  }
  .l-fix-contact .line_text::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background: currentColor;
    color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    mask-image: var(--icon-line3);
  }
  @media (hover: hover) {
    .l-fix-contact .mail a:hover { background-color: var(--color-tertiary-light); }
    .l-fix-contact .line a:hover { background-color: #19C355; }
  }
}
@media (max-width: 500px) {
  .l-fix-contact li:not(.tel) a:before { width: 100%; }
}



/*--------------------------------------------------------------------------------

  container

--------------------------------------------------------------------------------*/
.l-container {
  width: calc(var(--container-width, var(--base-width)) * 1px);
  max-width: calc(100% - (var(--container-side-space, var(--side-space)) * 2));
  margin-inline: auto;
}

/*--------------------------------------------------------------------------------

  contact

--------------------------------------------------------------------------------*/
.l-contact-area {
  background-color: var(--color-secondary);
  padding: var(--space-l) 0;
}
.l-contact {
  width: calc(var(--container-width, var(--base-width)) * 1px);
  max-width: calc(100% - (var(--container-side-space, var(--side-space)) * 2));
  margin-inline: auto;
}
.l-contact_hd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 var(--space-l);
}
@media (min-width: 1001px) {
  .l-contact_hd { padding: 0 var(--space-l); }
  .l-contact_hd .img02 { padding-bottom: var(--space-m); }
}
@media (max-width: 1000px) {
  .l-contact_hd {
    flex-direction: column;
    padding-bottom: var(--space-m);
  }
  .l-contact_hd .img01 { width: min(100%, 620px); }
  .l-contact_hd .img02 {
    width: min(80%, 440px);
    transform: translateY(-1rem);
  }
}

/*--------------------------------------------------------------------------------
  .l-contact_link
--------------------------------------------------------------------------------*/
.l-contact_link {
  --link-deco: none;
  --link-deco-hover: none;
  --pd: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  line-height: var(--line-height-s);
  border-radius: var(--rd-q);
  background-color: #FFF;
  padding: var(--pd);
  gap: var(--pd) 0.75rem;
}
.l-contact_link li.tel {
  --link-color: var(--txt-color);
  --link-color-hover: var(--txt-color);
}
.l-contact_link li:not(.tel) {
  --link-color: #FFF;
  --link-color-hover: #FFF;
}
@media (min-width: 1001px) {
  .l-contact_link { grid-template-columns: 1.25fr 1fr 1fr; }
}
@media (max-width: 1000px) {
  .l-contact_link { grid-template-columns: repeat(2, 1fr); }
  .l-contact_link .tel { grid-column: span 2; }
}
.l-contact_link a {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--rd-h);
}
.l-contact_link .tel a {
  line-height: 1;
  row-gap: 0.5rem;
  flex-direction: column;
}
.l-contact_link .tel_no {
  font-size: var(--fs-2l);
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
}
.l-contact_link .tel_no:before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  background: currentColor;
  color: var(--color-secondary);
  mask: var(--icon-tel) no-repeat center center;
  mask-size: contain;
}
.l-contact_link .tel small { font-size: var(--fs-2s); }
/*
.l-contact_link li:not(.tel) a {
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}
.l-contact_link li:not(.tel) a:before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
}
*/
.l-contact_link li:not(.tel) a {
  line-height: 1;
  row-gap: 0.5rem;
  flex-direction: column;
}
@media (min-width: 761px) {
  .l-contact_link li:not(.tel) a { font-size: var(--fs-m); }
}
@media (max-width: 500px) {
  .l-contact_link li:not(.tel) a:before { width: 100%; }
}
.l-contact_link .tel a { background-color: var(--bg-quaternary-2); }
/*
.l-contact_link .tel a { background-color: var(--bg-gray); }
.l-contact_link .mail a { background-color: var(--color-tertiary); }
.l-contact_link .mail a:before { mask-image: var(--icon-mail); }
.l-contact_link .line a { background-color: #0AB446; }
.l-contact_link .line a:before { mask-image: var(--icon-line3); }
*/
.l-contact_link .mail a { background-color: var(--color-tertiary); }
.l-contact_link .line a { background-color: #0AB446; }
.l-contact_link .mail small { font-size: var(--fs-2s); }
.l-contact_link .line small { font-size: var(--fs-2s); }
.l-contact_link .mail_text,
.l-contact_link .line_text {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
}
.l-contact_link .mail_text::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  mask-image: var(--icon-mail);
}
.l-contact_link .line_text::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: currentColor;
  color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  mask-image: var(--icon-line3);
}
@media (hover: hover) {
  .l-contact_link .mail a:hover { background-color: var(--color-tertiary-light); }
  .l-contact_link .line a:hover { background-color: #19C355; }
}

/*--------------------------------------------------------------------------------

  eyecatch

--------------------------------------------------------------------------------*/
.eyecatch {
  display: none;
}
/*
.eyecatch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - var(--side-space));
  height: 300px;
  font-size: min(calc(1.5vw + var(--fs-n)), var(--fs-3l));
  border-radius: 0 0 var(--rd-1h) var(--rd-1h);
  margin: 0 calc(var(--side-space) / 2);
}
.eyecatch .catch {
  color: #ffffff;
  font-size: var(--fs-l);
  font-family: var(--ff-go);
  font-weight: 600;
  text-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
  line-height: var(--line-height-s);
}
*/

/*--------------------------------------------------------------------------------

  price-pay(top & investigation/fee)

--------------------------------------------------------------------------------*/
.price-pay {
  display: flex;
  align-items: center;
  column-gap: var(--inner-space-m);
  margin-top: var(--space-2l);
  background-color: var(--bg-gray);
  border-radius: var(--rd-q);
  padding: var(--inner-space-m);
}
.price-pay figure {
  order: 2;
  display: block;
  width: 30%;
  text-align: right;
}
.price-pay figure img {
  width: 100%;
  height: auto;
  max-width: 256px;
}
.price-pay .ttl {
  font-family: var(--ff-go);
  font-size: var(--fs-l);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.price-pay .descripiton {
  width: 70%;
}
@media (max-width:760px) {
  .price-pay {
    flex-wrap: wrap;
    gap: var(--inner-space-m);
  }
  .price-pay figure {
    order: 1;
    width: 100%;
    text-align: left;
  }
  .price-pay .descripiton {
    width: 100%;
  }
}


