@charset "UTF-8";
/* clear
===============================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, a, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  height: auto;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

i, u, abbr, code, pre, address {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

input, select {
  vertical-align: middle;
}

button:hover img {
  opacity: 0.85;
}

button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
}

button::before, button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

button, button::before, button::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button:hover {
  cursor: pointer;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* reset
===============================================================*/
html {
  width: 100%;
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-all;
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0;
}

a {
  color: #0090d2;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}

picture {
  display: block;
}

/*----------------------------------------------------------------------------
	base
----------------------------------------------------------------------------*/
:root {
  --header-height: 14rem;
  --font-size-title-en: 2.2rem;
  --font-size-title-ja: 2.4rem;
  --font-size-title-ja-l: 3.2rem;
  --font-size-text-large: 2rem;
  --font-size-text-medium: 1.6rem;
  --font-size-text-small: 1.4rem;
  --font-size-text-xsmall: 1.2rem;
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 20rem;
    --font-size-text-medium: 2.4rem;
  }
}
html {
  width: 100%;
  font-size: 62.5%;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
  html:has(.l-header__trigger.is-open) {
    overflow: hidden;
  }
}

body {
  padding-top: var(--header-height);
  color: #000F08;
  font-size: var(--font-size-text-medium);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f9f7f1;
}

pictrure,
figure {
  display: block;
  width: 100%;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------------------------------------------
	c-link
----------------------------------------------------------------------------*/
.c-link {
  padding-right: 3.3rem;
  background: url(../images/common/icon_arrow.svg) no-repeat right center/2.4rem auto;
  -webkit-filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
}
.c-link--white {
  -webkit-filter: none;
          filter: none;
}

/*----------------------------------------------------------------------------
	c-button
----------------------------------------------------------------------------*/
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #000F08;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 100%;
    height: 12rem;
    font-size: 4.2rem;
    border-radius: 6rem;
  }
}
.c-button::after {
  display: inline-block;
  aspect-ratio: 1;
  width: 2rem;
  background: url(../images/common/icon_arrow.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-button::after {
    width: 4rem;
  }
}
.c-button--small {
  width: 20rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-button--small {
    width: 100%;
    height: 12rem;
    font-size: 4.2rem;
    border-radius: 6rem;
  }
}
.c-button--small::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-button--small::after {
    right: 2rem;
  }
}
.c-button--simulation {
  justify-content: space-between;
  width: 22rem;
  height: 5rem;
  padding: 0 1.5rem 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-button--simulation::after {
  width: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-button--simulation {
    justify-content: center;
    width: 100%;
    font-size: 4.2rem;
    height: 12rem;
    text-align: center;
    border-radius: 6rem;
  }
  .c-button--simulation::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 4rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/*----------------------------------------------------------------------------
	c-works-panel
----------------------------------------------------------------------------*/
.c-works-panel {
  display: block;
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #6D696A;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-works-panel {
    border-radius: 2rem;
  }
}
.c-works-panel__image {
  aspect-ratio: 480/204;
}
.c-works-panel__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.c-works-panel__content {
  padding: 1rem 2rem;
}
.c-works-panel__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-works-panel__title {
    font-size: 3rem;
  }
}
.c-works-panel__date {
  color: #6D696A;
  font-weight: 700;
}

/*----------------------------------------------------------------------------
	c-plans-panel
----------------------------------------------------------------------------*/
.c-plans-panel {
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #6D696A;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-plans-panel {
    border-radius: 2rem;
  }
}
.c-plans-panel__category {
  position: absolute;
  top: 1rem;
  left: 0;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 0 1rem 1rem 0;
  background-color: #6D696A;
}
@media screen and (max-width: 767px) {
  .c-plans-panel__category {
    font-size: 2.4rem;
  }
}
.c-plans-panel__image {
  aspect-ratio: 305/189;
}
.c-plans-panel__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.c-plans-panel__content {
  padding: 1.5rem 2rem;
}
.c-plans-panel__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-plans-panel__title {
    font-size: 2.4rem;
  }
}
.c-plans-panel__price {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.4rem;
}
.c-plans-panel__price strong {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 1239px) {
  .c-plans-panel__price strong {
    font-size: min(2.4vw, 4rem);
  }
}
@media screen and (max-width: 767px) {
  .c-plans-panel__price strong {
    font-size: 4.2rem;
  }
}

/*----------------------------------------------------------------------------
	c-blog-panel
----------------------------------------------------------------------------*/
.c-blog-panel {
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #6D696A;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-blog-panel {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
  }
}
.c-blog-panel__image {
  aspect-ratio: 305/189;
}
@media screen and (max-width: 767px) {
  .c-blog-panel__image {
    width: 42%;
    aspect-ratio: 230/140;
  }
}
.c-blog-panel__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.c-blog-panel__content {
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-blog-panel__content {
    flex: 1;
    padding: 0;
  }
}
.c-blog-panel__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-blog-panel__title {
    min-height: 3.8em;
    margin-top: -0.5rem;
    font-size: 2.8rem;
    line-height: 1.142;
  }
}
.c-blog-panel__date {
  color: #6D696A;
  font-weight: 700;
}

/*----------------------------------------------------------------------------
	c-municipality
----------------------------------------------------------------------------*/
.c-municipality {
  padding: 3rem 0 4rem 0;
  background-color: #6D696A;
}
@media screen and (max-width: 767px) {
  .c-municipality {
    padding: 5rem 4rem;
  }
}
.c-municipality__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 899px) {
  .c-municipality__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-municipality__list {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.c-municipality__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-municipality__link {
    height: 7.2rem;
    border-radius: 1rem;
  }
}
.c-municipality__link img {
  width: 18rem;
}
@media screen and (max-width: 767px) {
  .c-municipality__link img {
    width: 25.5rem;
  }
}

/*----------------------------------------------------------------------------
	c-cta
----------------------------------------------------------------------------*/
.c-cta {
  display: flex;
  justify-content: space-between;
}
.c-cta__box {
  position: relative;
  flex: 1;
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
  background: url(../images/common/icon_arrow.svg) no-repeat right 2rem center/4rem auto #6D696A;
}
@media screen and (max-width: 899px) {
  .c-cta__box {
    padding-bottom: 10rem;
    background-position: center bottom 4rem;
    background-size: 5rem auto;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__box {
    padding: 2rem 0 10rem 0;
  }
}
.c-cta__box:not(:last-child) {
  border-right: 1px solid #fff;
}
.c-cta__copy {
  padding-bottom: 4rem;
  font-size: 2rem;
  background: url(../images/common/bg_hukidashi.svg) no-repeat center bottom/36rem auto;
}
@media screen and (max-width: 767px) {
  .c-cta__copy {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    font-size: 3rem;
    background-size: 30rem auto;
    line-height: 1.4;
  }
}
.c-cta__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  height: 7rem;
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1239px) {
  .c-cta__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__title {
    align-items: center;
    flex-direction: column;
    height: auto;
    font-size: 4.4rem;
    line-height: 1.4;
  }
}
.c-cta__title--simulation {
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__title--simulation {
    margin-top: 0;
  }
}
.c-cta__title--simulation::before {
  width: 5.2rem;
  aspect-ratio: 52/70;
  background: url(../images/common/icon_simulation.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 1239px) {
  .c-cta__title--simulation::before {
    width: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__title--simulation::before {
    width: 5rem;
  }
}
.c-cta__title--inquiry {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__title--inquiry {
    margin-top: 4rem;
  }
}
.c-cta__title--inquiry::before {
  width: 6.4rem;
  aspect-ratio: 64/50;
  background: url(../images/common/icon_mail.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 1239px) {
  .c-cta__title--inquiry::before {
    width: 4.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__title--inquiry::before {
    width: 6.4rem;
  }
}
.c-cta__text {
  margin-top: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-cta__text {
    margin-top: 1.5rem;
    font-size: 2.4rem;
    line-height: 1.375;
  }
}

/*----------------------------------------------------------------------------
	c-modal
----------------------------------------------------------------------------*/
.c-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.c-modal.is-active {
  display: block;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* オーバーレイ */
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-modal__inner {
  position: relative;
  max-width: 100rem;
  width: calc(100% - 8rem);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.c-modal__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 90%;
  position: relative;
  flex-grow: 1;
  min-height: 0;
  padding: 4rem;
  border-radius: 1rem;
  background: #fff;
}
.c-modal__close {
  position: absolute;
  right: 0;
  top: -5.3rem;
  width: 4.2rem;
  height: 4.2rem;
  font: 0/0 a;
  background: url(../images/common/icon_close.svg) no-repeat center center/contain;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: -10rem;
    width: 8rem;
    height: 8rem;
  }
}

/*----------------------------------------------------------------------------
	c-modal-works
----------------------------------------------------------------------------*/
.c-modal-works__title {
  margin-bottom: 0.5rem;
  padding-bottom: 0.7rem;
  font-size: 3rem;
  font-weight: 700;
  border-bottom: 1px solid #6D696A;
}
@media screen and (max-width: 767px) {
  .c-modal-works__title {
    font-size: 4.5rem;
  }
}
.c-modal-works__data {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-modal-works__data {
    display: block;
  }
}
.c-modal-works__data-title {
  width: 18.5rem;
  font-size: 1.6rem;
  color: #6D696A;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-modal-works__data-title {
    width: 100%;
    font-size: 2.4rem;
  }
}
.c-modal-works__data-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-modal-works__data-list {
    display: block;
  }
}
.c-modal-works__data-list li {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-modal-works__data-list li {
    font-size: 3rem;
  }
}
.c-modal-works__data-list li::before {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #6D696A;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-modal-works__data-list li::before {
    width: 2rem;
    height: 2rem;
  }
}

/*----------------------------------------------------------------------------
	c-pagetop
----------------------------------------------------------------------------*/
.c-pagetop {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: 8rem;
  height: 8rem;
  font: 0/0 a;
  border-radius: 50%;
  overflow: hidden;
  background: url(../images/common/btn_pagetop.svg) no-repeat center center/contain #fff;
  border: 1px solid #fff;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    width: 10rem;
    height: 10rem;
    bottom: 3rem;
  }
}

/*----------------------------------------------------------------------------
	c-banner-blog
----------------------------------------------------------------------------*/
.c-banner-blog {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: 9rem;
  height: 32rem;
  padding: 6rem 1.5rem 0 1.5rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  border-radius: 0 1rem 1rem 0;
  background: url(../images/common/icon_blog.svg) no-repeat center top 1.3rem/6.2rem auto #16ad82;
  -webkit-box-shadow: 3px 0px 3px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 0px 3px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-banner-blog {
    bottom: 2rem;
    width: 57rem;
    height: 12rem;
    padding: 1rem 2rem 1rem 15rem;
    font-size: 3rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-align: center;
    line-height: 1;
    border-radius: 0 2rem 2rem 0;
    background-size: 11rem auto;
    background-position: 2rem center;
  }
}
.c-banner-blog span {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-banner-blog span {
    font-size: 4.8rem;
  }
}
.c-banner-blog em {
  font-size: 3.4rem;
  font-weight: 700;
  font-style: normal;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
@media screen and (max-width: 767px) {
  .c-banner-blog em {
    font-size: 5.8rem;
  }
}

/*----------------------------------------------------------------------------
  .l-inner
----------------------------------------------------------------------------*/
.l-inner {
  max-width: 136rem;
  margin: 0 auto;
  padding-left: max(4rem, 2.7777777778cqi);
  padding-right: max(4rem, 2.7777777778cqi);
}
.l-inner--large {
  max-width: 144rem;
}
.l-inner--small {
  max-width: 98rem;
}

/*----------------------------------------------------------------------------
	.l-header
----------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 4rem;
    left: 4rem;
    width: calc(100% - 8rem);
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  padding: 0 2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 12rem;
    padding: 1rem 2rem 1rem 1rem;
    background-color: rgba(22, 173, 130, 0.75);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
  }
}
.l-header__logo {
  width: 28.6rem;
  margin-right: 2rem;
}
@media screen and (max-width: 1239px) {
  .l-header__logo {
    width: min(22vw, 28.6rem);
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31.5rem;
    height: 10rem;
    margin: 0;
    border-radius: 1rem;
    background-color: #fff;
  }
  .l-header__logo img {
    width: 29.5rem;
  }
}
@media screen and (max-width: 899px) {
  .l-header__sns {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    display: none;
  }
}
.l-header__sns-list {
  display: flex;
  gap: 1rem;
}
.l-header__sns-list li {
  width: 5rem;
}
@media screen and (max-width: 1239px) {
  .l-header__sns-list li {
    width: min(3vw, 5rem);
  }
}
.l-header__sns-list li img {
  width: 100%;
}
.l-header__contact {
  margin-left: auto;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .l-header__contact {
    display: none;
  }
}
.l-header__contact-phone {
  padding-left: 3.5rem;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  background: url(../images/common/icon_phone.svg) no-repeat left center/3rem auto;
}
.l-header__contact-hour {
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 1.2;
}
.l-header__simulation {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header__simulation {
    display: none;
  }
}
.l-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  height: 6rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: rgba(22, 173, 130, 0.75);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17rem;
  height: 8rem;
  font-size: 3rem;
  font-weight: 700;
  border-radius: 4rem;
  background-color: #fff;
  cursor: pointer;
}
.l-header__trigger.is-open {
  font: 0/0 a;
}
.l-header__trigger.is-open::before {
  font-size: 3rem;
  font-weight: 700;
  content: "CLOSE";
}

/*----------------------------------------------------------------------------
	.l-footer
----------------------------------------------------------------------------*/
.l-footer {
  padding: 4rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5rem 0;
  }
}
.l-footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1239px) {
  .l-footer__flex {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__flex {
    display: block;
    padding: 0 4.5rem;
    text-align: center;
  }
}
.l-footer__sitelogo {
  width: 22rem;
}
@media screen and (max-width: 1239px) {
  .l-footer__sitelogo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sitelogo {
    width: 41.5rem;
  }
}
.l-footer__address {
  margin-top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-top: 1rem;
  }
}
.l-footer__contact {
  margin-top: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.l-footer__contact-phone {
  padding-left: 5rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: url(../images/common/icon_phone.svg) no-repeat left center/4rem auto;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-phone {
    display: inline-block;
    padding-left: 6rem;
    font-size: 6rem;
    background-size: 5rem;
  }
}
.l-footer__contact-hour {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-hour {
    font-size: 3rem;
  }
}
.l-footer__sns {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin-bottom: 4.5rem;
  }
}
.l-footer__sns-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 1239px) {
  .l-footer__sns-list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list {
    gap: 4rem;
  }
}
.l-footer__sns-list li {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list li {
    width: 8rem;
  }
}
.l-footer__sns-list img {
  width: 100%;
}
.l-footer__menu {
  display: flex;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  justify-content: flex-end;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__menu {
    display: block;
    border-top: 1px solid #000F08;
  }
  .l-footer__menu-item {
    text-align: left;
    border-bottom: 1px solid #000F08;
  }
  .l-footer__menu-item a {
    display: block;
    padding: 2.3rem 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    background: url(../images/common/icon_arrow.svg) no-repeat right 1.5rem center/5rem auto;
    -webkit-filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
  }
}
.l-footer__copyright {
  display: block;
  margin-top: 0.6rem;
  text-align: right;
}
@media screen and (max-width: 1239px) {
  .l-footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin: 4rem -2rem 0 -2rem;
    font-size: 2.4rem;
  }
}

/*----------------------------------------------------------------------------
	.l-glnavi
----------------------------------------------------------------------------*/
.l-header:not(:has(.is-open)) + .l-glnavi {
  visibility: hidden;
  opacity: 0;
}

.l-glnavi {
  visibility: visible;
  opacity: 1;
  position: fixed;
  top: 18rem;
  left: 4rem;
  width: calc(100% - 8rem);
  max-height: calc(100% - 20rem);
  padding: 4rem 4rem 10rem 4rem;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.75);
  overflow-y: auto;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .l-glnavi {
    display: none;
  }
}
.l-glnavi__menu {
  margin-bottom: 10rem;
  border-top: 1px solid #000F08;
}
.l-glnavi__menu-item {
  border-bottom: 1px solid #000F08;
}
.l-glnavi__menu-item a {
  display: block;
  padding: 2.3rem 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  background: url(../images/common/icon_arrow.svg) no-repeat right 1.5rem center/5rem auto;
  -webkit-filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(5%) sepia(31%) saturate(2211%) hue-rotate(118deg) brightness(87%) contrast(101%);
}
.l-glnavi__contact {
  margin-bottom: 4rem;
  text-align: center;
}
.l-glnavi__contact-phone {
  display: inline-block;
  padding-left: 6rem;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  background: url(../images/common/icon_phone.svg) no-repeat left center/5rem auto;
}
.l-glnavi__contact-hour {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.2;
}
.l-glnavi__simulation {
  margin-bottom: 10rem;
}
.l-glnavi__sns-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.l-glnavi__sns-list li {
  width: 8rem;
}
.l-glnavi__sns-list li img {
  width: 100%;
}

/*----------------------------------------------------------------------------
  .l-fixed
----------------------------------------------------------------------------*/
.l-fixed {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .l-fixed {
    height: 17rem;
  }
}

@media screen and (min-width: 768px) {
  .u-hide--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hide--sp {
    display: none !important;
  }
}

.u-inlineblock {
  display: inline-block;
}

.u-font-en {
  font-family: "Poppins", sans-serif;
}

.u-animate--fadeInUp {
  visibility: hidden;
}
.u-animate--fadeInUp.is-animated {
  -webkit-animation: animate-fadeInUp 1.5s ease 0s both 1 normal;
          animation: animate-fadeInUp 1.5s ease 0s both 1 normal;
  visibility: visible !important;
}

@-webkit-keyframes animate-fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*# sourceMappingURL=common.css.map */