@charset "UTF-8";
@import url("./reset.css");

:root {
  --font-zen-maru-gothic: "Zen Maru Gothic", sans-serif;
  --color-base: #333;
  --color-lemon: #ffec41;
  --color-lemon-light: #fffece;
  --color-carrot: #ffb341;
  --color-carrot-dark: #ff9a03;
  --color-maroon: #ff5454;
  --color-navy: #34c0ff;
  --color-emerald: #0cc277;
  --color-emerald-light: #cce5d3;
  --color-emerald-ultralight: #e9fcef;
  --color-emerald-dark: #078652;
  --color-green: #64b747;
  --size-header: 14.5rem;
  --size-content: 110rem;
  --size-inline: 2.4rem;
  --size-block: 10rem;
  --size-border-radius: 2.4rem;
  --pattern-grid: url(/assets/img/common/bg-grid.webp) repeat left top / 2.6rem auto;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;

}
body {
  -webkit-text-size-adjust: 100%;
  color: var(--color-base);
  font-family: var(--font-zen-maru-gothic);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.56;
  text-align: justify;
  margin-top: var(--size-header);
}
.center {
  text-align: center;
}
@media (hover: hover) {
  button,
  a {
    transition: opacity 0.3s;
    &:hover {
      opacity: 0.7;
    }
  }
}
@media (max-width: 1600px) and (min-width: 769px) {
  html {
    font-size: calc(1000vw / 1600);
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --size-header: 8rem;
    --size-inline: 1.6rem;
    --size-block: 6rem;
    --size-border-radius: 1.6rem;
    --pattern-grid: url(/assets/img/common/bg-grid.webp) repeat left top / 1.3rem auto;
  }
  html {

    font-size: calc(1000vw / 375);
  }
  body {
    margin-top: var(--size-header);
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
}
/* ==========================================================================
   Modules & Components
========================================================================== */
.inner-content {
  max-width: var(--size-content);
  margin-inline: auto;
}
.ico-fa:before,
.ico-fa:after,
.button-standard:after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  text-align: center;
  text-rendering: auto;
}
.button-standard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 6rem;
  padding: 0.6rem 3.2rem;
  background: #fff;
  border: 2px solid var(--color-base);
  border-radius: 999rem;
  position: relative;
  line-height: 1.3;
}
.button-standard:after {
  content: "\f0da";
  position: absolute;
  right: 0.8rem;
  pointer-events: none;
  font-size: min(1.8rem, 100%);
}
.button-standard.pdf {
  justify-content: flex-start;
  padding-left: 8rem;
}
.button-standard.pdf:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1/1;
  background: url(/assets/img/common/ico-pdf.webp) no-repeat center center/ contain;
  position: absolute;
  left: 2.4rem;
  pointer-events: none;
}
.heading-standard {
  width: fit-content;
  margin-inline: auto;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
.heading-standard:before {
  content: attr(text);
  display: block;
  font-size: 0.5em;
  font-weight: 700;
  pointer-events: none;
}
.heading-standard:after {
  content: "";
  display: block;
  width: 100%;
  height: 1.6rem;
  margin-top: 0.8rem;
  border-radius: 99rem;
  background: var(--color-carrot);
  -webkit-mask: url(/assets/img/common/pattern-wave.svg) repeat-x center center / auto 100%;
  mask: url(/assets/img/common/pattern-wave.svg) repeat-x center center / auto 100%;
  pointer-events: none;
}
.heading-standard.green:after {
  background: var(--color-green);
}
.heading-standard.navy:after {
  background: var(--color-navy);
}
.heading-standard.lemon:after {
  background: var(--color-lemon);
}
.heading-standard.maroon:after {
  background: var(--color-maroon);
}
.heading-dot {
  font-size: 3.5rem;
  font-weight: bold;
  text-indent: -1em;
}
.heading-dot:before {
  content: "⚫︎";
  font-size: 0.8em;
  color: var(--color-green);
}
.heading-dot.navy:before {
  color: var(--color-navy);
}
.heading-dot.carrot:before {
  color: var(--color-carrot);
}
.heading-dot.lemon:before {
  color: var(--color-lemon);
}
.heading-dot.maroon:before {
  color: var(--color-maroon);
}
.border-btm-highlight {
  text-decoration: underline;
  text-decoration-color: var(--color-lemon);
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.border-btm-highlight.lemon {
  text-decoration-color: var(--color-lemon);
}
.border-btm-highlight.carrot {
  text-decoration-color: var(--color-carrot);
}
.border-btm-highlight.emerald {
  text-decoration-color: var(--color-emerald);
}
.border-btm-highlight.navy {
  text-decoration-color: var(--color-navy);
}
.sec-cta {
  padding: 20rem var(--size-inline) 30rem;
  background:
    url(/assets/img/common/bg-cta.webp) no-repeat center top/ 23.5rem auto,
    linear-gradient(transparent 7rem, var(--color-emerald-light) 7rem);
  text-align: center;
}
.sec-cta hgroup {
  margin-bottom: 8rem;
}
.sec-cta hgroup h2 {
  font-size: 3.5rem;
  margin-bottom: 1.6rem;
}
.cta-block {
  max-width: 76.8rem;
  margin-top: 3rem;
  margin-inline: auto;
  padding: calc(var(--size-inline) * 2) var(--size-inline) var(--size-inline);
  background: #fff;
  border: 4px solid var(--color-green);
  border-radius: var(--size-border-radius);
  text-align: center;
}
.cta-block .title {
  width: fit-content;
  margin: -8rem auto 1.6rem;
  padding: 0.8rem 4rem;
  background: #fff;
  border: 4px solid var(--color-green);
  border-radius: 999rem;
  color: var(--color-green);
  font-size: 2.4rem;
}
.cta-block .tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 3.2rem;
  font-weight: bold;
}
.cta-block .button-standard {
  display: inline-flex;
  width: min(100%, 24rem);
  min-height: 4.8rem;
  padding-left: 5.6rem;
  background: var(--color-carrot);
  color: #fff;
  border: none;
  font-size: 2.2rem;
}
.cta-block .button-standard:before {
  content: "\f0e0";
  position: absolute;
  left: 2rem;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}
.page-title {
  padding: 3rem calc(50% - (var(--size-content) / 2));
  height: 26rem;
  background: url(/assets//img/common/bg-pagetitle.svg) no-repeat center bottom/ 100% auto;
}
.page-title h2 {
  padding-inline: var(--size-inline);
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.page-title h2:before {
  content: "・" attr(text);
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-green);
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .button-standard {
    min-height: 5rem;
  }
  .button-standard.pdf {
    padding-left: 5.6rem;
  }
  .button-standard.pdf:before {
    left: 1.6rem;
    width: 3rem;
  }
  .heading-standard {
    font-size: 2.8rem;
  }
  .heading-standard:after {
    height: 0.8rem;
    margin-top: 0.4rem;
  }
  .heading-dot {
    font-size: 2rem;
    text-indent: 0;
  }
  .sec-cta hgroup {
    margin-bottom: 5rem;
  }
  .sec-cta hgroup h2 {
    margin-bottom: 0.8rem;
    font-size: 2.6rem;
  }
  .cta-block {
    border-width: 3px;
  }
  .cta-block .title {
    font-size: 1.8rem;
    padding: 0.8rem 3rem;
    border-width: 3px;
    margin: -6rem auto 1rem;
  }
  .cta-block .button-standard {
    width: 100%;
    font-size: 1.8rem;
  }
  .page-title {
    padding: 2.4rem var(--size-inline) 5rem;
    height: auto;
    background:
      url(/assets//img/common/bg-pagetitle.svg) no-repeat center bottom/ 100% auto,
      linear-gradient(to top, transparent 5rem, var(--color-emerald-light) 5rem);
  }
  .page-title h2 {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
  .page-title h2:before {
    margin-bottom: 0;
  }
}
/* ==========================================================================
   Header
========================================================================== */
.site-header {
  width: 100%;
  max-height: var(--size-header);
  padding: 0.8rem var(--size-inline) 1.6rem;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background-color .3s;
}
body:not(#top) .site-header{background-color:#fff;}
.site-header.is-scrolled {
  background-color: #FFF;

}
.site-header .inner-content {
  display: grid;
  grid-template-columns: 24rem 1fr;
  grid-template-areas:
    "logo secondary"
    "logo navi";
  align-items: center;
  max-width: 117rem;
}
.site-header .logo {
  width: 23rem;
  grid-area: logo;
}
.site-header .secondary {
  grid-area: secondary;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.site-header .secondary p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 3.2rem;
  font-weight: bold;
}
.site-header .secondary a.button-standard {
  width: min(100%, 24rem);
  min-height: 4.8rem;
  padding-left: 5.6rem;
  background: var(--color-carrot);
  color: #fff;
  border: none;
  font-size: 2.2rem;
}
.site-header .secondary a.button-standard:before {
  content: "\f0e0";
  position: absolute;
  left: 2rem;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}
.site-header .global-navi {
  grid-area: navi;
}
.site-header .global-navi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.2rem 2rem;
  font-weight: bold;
  font-size: 2rem;
}
.site-header .menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header {
    padding-block: 0.8rem 1.2rem;
  }
  .site-header .inner-content {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .site-header .logo {
    flex: 0 0 12rem;
  }
  .site-header .secondary {
    display: block;
    flex: 0 0 auto;
  }
  .site-header .secondary p {
    font-size: 2rem;
  }
  .site-header .secondary a.button-standard {
    font-size: 1.4rem;
    min-height: 3.2rem;
    width: fit-content;
    padding-inline: 4rem 2.4rem;
  }
  .site-header .secondary a.button-standard:before {
    left: 1.2rem;
  }
  .site-header .global-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100svh;
    min-height: 55rem;
    padding: 0 var(--size-inline);
    background: #e9f2fff0;
    position: fixed;
    top: 0rem;
    right: 0rem;
    clip-path: ellipse(0 0 at right 5rem top 5rem);
    transition: clip-path 0.4s;
    z-index: 8;
  }
  .site-header .global-navi.is-active {
    clip-path: ellipse(100rem 100rem at right 5rem top 5rem);
    transition: clip-path 1.2s;
  }
  .site-header .global-navi ul {
    flex-direction: column;
    align-items: center;
    font-size: 2.2rem;
    gap: 2.4rem 0;
  }
  .site-header .global-navi ul li {
    position: relative;
    opacity: 0;
    transform: scaleX(0) translateX(-260px);
    transition: none;
  }
  .site-header .global-navi.is-active li {
    opacity: 1;
    transform: scaleX(1) translateX(0);
    transition: all 0.3s ease-out;
  }
  .site-header .global-navi.is-active li:nth-child(1) {
    transition-delay: 0.15s;
  }
  .site-header .global-navi.is-active li:nth-child(2) {
    transition-delay: 0.3s;
  }
  .site-header .global-navi.is-active li:nth-child(3) {
    transition-delay: 0.45s;
  }
  .site-header .global-navi.is-active li:nth-child(4) {
    transition-delay: 0.6s;
  }
  .site-header .global-navi.is-active li:nth-child(5) {
    transition-delay: 0.75s;
  }
  .site-header .global-navi.is-active li:nth-child(6) {
    transition-delay: 0.9s;
  }
  .site-header .global-navi.is-active li:nth-child(7) {
    transition-delay: 1.05s;
  }
  .site-header .global-navi.is-active li:nth-child(8) {
    transition-delay: 1.2s;
  }
  .site-header .global-navi.is-active li:nth-child(9) {
    transition-delay: 1.35s;
  }
  .site-header .global-navi.is-active li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.8rem;
    margin-top: 0rem;
    border-radius: 99rem;
    -webkit-mask: url(/assets/img/common/pattern-wave.svg) repeat-x center center / auto 100%;
    mask: url(/assets/img/common/pattern-wave.svg) repeat-x center center / auto 100%;
    pointer-events: none;
  }
  .site-header .global-navi.is-active li:nth-child(5n + 1) a:after {
    background: var(--color-lemon);
  }
  .site-header .global-navi.is-active li:nth-child(5n + 2) a:after {
    background: var(--color-carrot);
  }
  .site-header .global-navi.is-active li:nth-child(5n + 3) a:after {
    background: var(--color-maroon);
  }
  .site-header .global-navi.is-active li:nth-child(5n + 4) a:after {
    background: var(--color-navy);
  }
  .site-header .global-navi.is-active li:nth-child(5n + 5) a:after {
    background: var(--color-emerald);
  }
  .site-header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    aspect-ratio: 1;
    background: var(--color-maroon);
    border-radius: 999rem;
    z-index: 9;
    position: fixed;
    right: 1.6rem;
    top: 1.6rem;
  }
  .site-header .menu span {
    width: 2rem;
    height: 2px;
    border-radius: 99rem;
    background: #fff;
    position: relative;
    transition: all 0.3s;
  }
  .site-header .menu span:before,
  .site-header .menu span:after {
    content: "";
    width: inherit;
    height: inherit;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1rem;
    transform-origin: center center;
    transform: rotate(0deg);
    transition: all 0.3s;
  }
  .site-header .menu span:before {
    top: -0.6rem;
  }
  .site-header .menu span:after {
    bottom: -0.6rem;
  }
  .site-header .menu.is-active span {
    background: transparent;
  }
  .site-header .menu.is-active span:before {
    transform: rotate(45deg);
    top: 0;
  }
  .site-header .menu.is-active span:after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}
/* ==========================================================================
   Footer
========================================================================== */
.site-footer {
  padding: 38rem var(--size-inline) 5rem;
  background:
    url(/assets/img/common/bg-footer.svg) repeat-x top center / 160rem auto,
    linear-gradient(to bottom, transparent 31rem, var(--color-emerald) 31rem);
  gap: 1.6rem;
  color: #fff;
}
html:has(.sec-cta) .site-footer {
  margin-top: -32rem;
}
.site-footer .inner-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer .info figure {
  max-width: 33rem;
  margin-bottom: 1.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 1.6rem;
  background: #fff;
  overflow: hidden;
}
.site-footer .info p {
  line-height: 1.8;
}
.site-footer .info p em {
  font-size: 1.3em;
}
.site-footer ul {
  flex: 0 0 50rem;
  display: flex;
  flex-wrap: wrap;
}
.site-footer ul li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 50%;
  margin:1rem auto;
}

.site-footer ul li:before {
  content: "\f0da";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  text-align: center;
  text-rendering: auto;
}
.site-footer > p {
  margin-top: 5.6rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding-block: 15rem 5rem;
    background:
      url(/assets/img/common/bg-footer.svg) repeat-x top left / 80rem auto,
      linear-gradient(to bottom, transparent 15rem, var(--color-emerald) 15rem);
  }
  .site-footer .inner-content {
    display: block;
  }
  .site-footer .info figure {
    margin-inline: auto;
  }
  .site-footer .info p {
    text-align: center;
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .site-footer .info p em {
    font-size: 1.8rem;
  }
  .site-footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 0;
    margin-block: 1.6rem;
    padding: 1.6rem;
    --dot-gap: 0.6rem;
    --dot-size: 0.12rem;
    --border-height: calc(var(--dot-size) * 2);
    --dot-color: rgba(255, 255, 255, 0.7);
    background-repeat: repeat-x;
    background-position:
      top center,
      bottom center;
    background-size: calc(var(--dot-size) + var(--dot-gap)) var(--border-height);
    background-image: radial-gradient(circle, var(--dot-color) var(--dot-size), transparent var(--dot-size)), radial-gradient(circle, var(--dot-color) var(--dot-size), transparent var(--dot-size));
  }
  .site-footer ul li {
    flex: 1 1 50%;
    gap: 0.6rem;
    margin: 0 !important;
    font-size: 1.2rem;
  }
  .site-footer ul li:before {
    font-size: 1rem;
  }
  .site-footer > p {
    margin-top: 2.4rem;
    font-size: 1.1rem;
    letter-spacing: 0;
    font-weight: 400;
  }
}
