@charset "UTF-8";


/* =============================================================

Base

* ============================================================= */
*,
*:before,
*:after {
  box-sizing: border-box;
}
:root{
  --header-height:75px;
}

html {
  font-size: 62.5%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  width: 100%;
  color: #212121;
  background: #aed493;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 100%;
  display: block;
}
svg path:not([fill]) {
  fill: currentColor;
}

a {
  color: currentColor;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a.js-tel {
  text-decoration: none;
}
a.js-tel._active {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}



/* =============================================================

Main

* ============================================================= */
/* l-main
=============================== */
.l-main {
  flex-grow: 1;
  position: relative;
  background-image: url(../img/bg-bottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
}

/* =============================================================

header

* ============================================================= */

/* l-header
============================== */
.l-header{
  height: var(--header-height);
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  max-width: 414px;
  top: 0;
  z-index: 1000;
}
@media screen and (max-width: 560px) {
  .l-header{
    max-width: 100%;
  }
}


/* l-header-logo
============================== */
.l-header-logo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.l-header-logo a {
  display: block;
  max-width: 225px;
}

/* l-header-toggle
============================== */
.l-header-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  aspect-ratio: 1;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  color: #007fc8;
  transition: all .2s;
  appearance: none;
}

.l-header-toggle:hover {
  opacity: .7;
}

.l-header-toggle > span {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: all .2s;
  backface-visibility: hidden;
}

body.is-menu-open .l-header-toggle > span {
  background: transparent;
}

.l-header-toggle > span:before, .l-header-toggle > span:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top .2s ease-out .2s, bottom .2s ease-out .2s, transform .2s ease-out;
}

.l-header-toggle > span:before {
  top: 9px;
}

body.is-menu-open .l-header-toggle > span:before {
  top: 0;
  transition: top .2s ease-out, transform .2s ease-out .2s;
  transform: rotate(-45deg);
}

.l-header-toggle > span:after {
  bottom: 9px;
}

body.is-menu-open .l-header-toggle > span:after {
  bottom: 0;
  transition: bottom .2s ease-out, transform .2s ease-out .2s;
  transform: rotate(45deg);
}

/* l-header-menu
============================== */
.l-header-menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;

  overscroll-behavior-y: none;
  left: 0;
  max-width: 414px;
  margin: 0 auto;
  z-index: 1000;
  padding-bottom: 100px;
}
@media screen and (max-width: 560px) {
  .l-header-menu {
    max-width: 100%;
  }
}

.l-header-menu__head{
  display: flex;
  justify-content: flex-end;
  padding-bottom: 100px;
}

body.is-menu-open .l-header-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

}

.l-header-menu-list{
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-inline: auto;
  max-width: 289px;
}
.l-header-menu-list li{
  position: relative;
}
.l-header-menu-list li:not(:last-child)::after{
  content: "";
  width: 100%;
  background-image: url(../img/menu-dots.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  display: block;
  height: 10px;
  bottom: -24px;
  transform: translateY(50%);
}


/* =============================================================

wrapper

* ============================================================= */
/* l-wrapper
=============================== */


.l-wrapper {
  width: 100%;
  max-width: 414px;
  min-height: 100%;
  padding: 0;
  position: relative;
  margin: 0 auto;
}

*[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateY(20px);
}

*[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateX(0);
}

*[data-intersection-x] {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateX(20px);
}

*[data-intersection-x][data-intersecting=true] {
  opacity: 1;
  transition: all 0.2s ease-out 0.1s;
  transform: translateX(0);
  position: sticky;
}
