/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  opacity: 1;
  transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "RoGSanSerif";
  font-weight: 400;
}

body {
  color: #000;
}

@font-face {
  font-family: "RoGSanSerif";
  src: url("../fonts/RoGSanSrfStd-UB.ttf.woff") format("woff"), url("../fonts/RoGSanSrfStd-UB.ttf.eot") format("eot");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 16px;
}
@media (max-width: 767px) {
  html {
    font-size: 2.0860495437vw;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s ease;
  }
}

body.noscroll {
  overflow: hidden;
}

header {
  background: #E893B4;
  height: 6.25rem;
  width: 100%;
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
@media screen and (min-width: 1226px) {
  header {
    position: fixed;
    height: 100px;
    background: transparent;
  }
}

.header__logo {
  position: relative;
  z-index: 101;
  width: 34.375rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 400px;
  }
}

.header__menu {
  background-image: url(../image/menu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 1226px) {
  .header__menu {
    height: 100vh;
    left: calc(50% + 280px);
    background-image: none;
  }
}

.header__menu__inner {
  width: 100%;
  height: 100%;
  max-width: 41.25rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1em;
}
@media screen and (min-width: 1226px) {
  .header__menu__inner {
    margin: 0;
    padding: 0;
  }
}

.header__link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.75rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 1226px) {
  .header__link {
    color: #fff;
    transform: none;
    font-size: 16px;
  }
}

@media screen and (min-width: 1226px) {
  .header__link:hover {
    color: #EB3EA6;
    opacity: 1;
    transform: scale(1.1);
  }
}

.header__menu.active {
  opacity: 1;
  visibility: inherit;
}

.header__btn__wrap {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1226px) {
  .header__btn__wrap {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
}

.header__btn {
  margin: 0 auto;
  margin-top: 2.5rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.header__btn img {
  max-width: 25rem;
}

.btn-animate {
  animation: fuwafuwa 1s ease 0s infinite alternate;
  transform-origin: center;
  cursor: pointer;
}

@keyframes fuwafuwa {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .inner__page {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.hamburger__btn {
  position: relative;
  z-index: 100;
  height: 6.25rem;
  display: block;
  padding: 1.125rem 0.5rem 0.5rem;
}
@media screen and (min-width: 1226px) {
  .hamburger__btn {
    display: none;
  }
}

.hamburger__btn span {
  display: block;
  width: 3.25rem;
  height: 0.375rem;
  background: #fff;
  border-radius: 0.1875rem;
  transition: transform 0.3s;
}

.hamburger__btn span:nth-child(1) {
  margin-bottom: 0.625rem;
}

.hamburger__btn span:nth-child(2) {
  margin-bottom: 0.625rem;
}

.hamburger__btn span:nth-child(3) {
  margin-bottom: 0.625rem;
}

.hamburger__btn.active span:nth-child(1) {
  transform: translateY(1rem) rotate(-45deg);
}

.hamburger__btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger__btn.active span:nth-child(3) {
  transform: translateY(-1rem) rotate(45deg);
}

main {
  background-image: url(../image/menu-bg.png);
  background-size: cover;
  background-attachment: fixed;
}

section {
  position: relative;
  padding-top: 6.25rem;
  margin-top: -6.25rem;
}
@media screen and (min-width: 1226px) {
  section {
    padding-top: 0;
    margin-top: 0;
  }
}

.fv {
  min-height: 100vh;
  width: 100%;
  background-image: url(../image/fv/fv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}

.fv__inner {
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 1.5rem 6.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding: 120px 24px 100px;
  }
}
@media screen and (min-width: 1226px) {
  .fv__inner {
    height: 100vh;
    flex-direction: row;
    padding: 0 24px;
    align-items: flex-end;
  }
}

.fv__icon {
  width: 11.25rem;
  height: auto;
  max-width: 11.25rem;
  aspect-ratio: 1/1;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}
.fv__iconWrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  width: 40%;
}
@media screen and (min-width: 1226px) {
  .fv__iconWrap {
    gap: 2vw;
    position: relative;
    bottom: 29.375rem;
    margin-right: -3.5rem;
    margin-left: 5rem;
  }
}
.fv__iconLeft, .fv__iconRight {
  display: flex;
}
.fv__iconimg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1226px) {
  .fv__icon {
    width: 10rem;
  }
}
.fv__icon--01, .fv__icon--04 {
  margin-top: 45%;
}
.fv__icon--04 {
  margin-left: -2rem;
}
.fv__icon--01 {
  margin-right: -2rem;
}

.fv__mainWrap {
  margin-top: -11.25rem;
  opacity: 0;
  visibility: hidden;
  width: 71vw;
  max-width: 45rem;
}
@media screen and (min-width: 1226px) {
  .fv__mainWrap {
    max-width: unset;
    width: 60%;
    margin-right: -6vw;
  }
}

.fv__price {
  max-width: 43.125rem;
  opacity: 0;
  visibility: hidden;
  width: 50vh;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .fv__price {
    width: 50vh;
  }
}
@media screen and (min-width: 1226px) {
  .fv__price {
    position: absolute;
    bottom: 60px;
    left: 6.25rem;
    max-width: unset;
    width: 40%;
  }
}

.step__btn {
  position: absolute;
  cursor: pointer;
  top: 31.25rem;
  right: 2.5rem;
  width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .step__btn {
    top: 376px;
    right: 28px;
    width: 330px;
  }
}
@media screen and (min-width: 1226px) {
  .step__btn {
    top: 276px;
  }
}

.google-map {
  width: 100%;
  aspect-ratio: 5/3;
  position: absolute;
  top: 25.625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .google-map {
    top: 310px;
  }
}
@media screen and (min-width: 1226px) {
  .google-map {
    top: 210px;
  }
}

.google-map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.access__btn__wrap {
  position: absolute;
  bottom: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access__btn__wrap {
    bottom: 130px;
  }
}

.access__btn {
  display: block;
  width: 31.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .access__btn {
    width: 330px;
  }
}

.floating__btn {
  width: 100%;
  height: 12.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(90, 188, 99, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.floating__btn img {
  width: 38.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .floating__btn img {
    width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .floating__btn {
    height: 100px;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */