@charset "utf-8";

/*==============================
reset CSS
==============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
}
ol, ul {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: inherit;
}

/*==============================
CSS カスタムプロパティ
==============================*/
:root {
  --text-white: #fff;
  --text-black: #000;
  --text-primary: #F775DC;
  --text-accent: #384898;
  --bg-white: #fff;
  --bg-black: #000;
  --bg-primary: #F775DC;
  --bg-secondary:#FFD7F7;
  --bg-label: #E616BB;
  --border-white: #fff;
  --border-black: #000;
  --border-primary: #F775DC;
}

/*==============================
common
==============================*/
body.is-active {
  width: calc(100% - 16px);
  overflow: hidden;
  @media (width <= 768px) {
    width: 100%;
  }
}
.pcVer {
  display: block;
  @media (width <= 768px) {
    display: none;
  }
}
.spVer {
  display: none;
  @media (width <= 768px) {
    display: block;
  }
}
.section-container {
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.page__title {
  font-size: 2.5rem;
  letter-spacing: 0.375rem;
  text-align: center;
  @media (width <= 768px) {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }
}

/*==============================
header
==============================*/
.head {
  width: 100%;
  height: calc(150 / 1920 * 100vw);
  height: 9.375rem;
  background-image: linear-gradient(to right, #FFE5FA, #F775DC);
  overflow: hidden;
  @media (width <= 1024px) {
    height: calc(80 / 375 * 100vw);
    height: 80px;
  }
}
.head__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  &::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: inline-block;
    width: calc(1061 / 1920 * 100vw);
    width: 1061px;
    height: calc(150 / 1920 * 100vw);
    height: 150px;
    background-image: url(../img/common/head_pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    @media (width <= 1024px) {
      width: calc(123 / 375 * 100vw);
      width: 123px;
      height: calc(80 / 375 * 100vw);
      height: 80px;
      background-image: url(../img/common/head_left_sp.webp);
    }
  }
  &::after {
    @media (width <= 1024px) {
      position: absolute;
      top: 0;
      right: 0;
      content: '';
      display: inline-block;
      width: calc(119 / 375 * 100vw);
      width: 119px;
      height: calc(80 / 375 * 100vw);
      height: 80px;
      background-image: url(../img/common/head_right_sp.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom right;
    }
  }
}
.head__logo {
  position: absolute;
  top: 50%;
  left: calc(360 / 1920 * 100vw);
  left: 360px;
  transform: translateY(-50%);
  width: calc(374 / 1920 * 100vw);
  width: 374px;
  height: calc(102 / 1920 * 100vw);
  height: 102px;
  @media (width <= 1024px) {
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(172 / 375 * 100vw);
    width: 172px;
    height: calc(67 / 375 * 100vw);
    height: 67px;
  }
}
.head__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(250 / 1920 * 100vw);
  margin-right: calc(44 / 1920 * 100vw);
  margin-right: 44px;
  @media (width <= 1024px) {
    margin-right: calc(15 / 375 * 100vw);
  }
  @media (width <= 1440px) {
    gap: calc(50 / 1440 * 100vw);
  }
}
.head__info {
  display: flex;
  align-items: center;
  gap: 50px;
  @media (width <= 1200px) {
    display: none;
  }
}
.head__info-textArea {
  display: grid
}
.head__info-time {
  display: grid;
  grid-template-columns: auto 1fr;
  dt {
    width: 5em;
    text-align: justify;
    text-align-last: justify;
  }
  dd {
    text-align: center;
  }
}
.head__info-tel {
  display: grid;
  grid-template-columns: auto 1fr;
}
.head__menu {
  position: fixed;
  top: 0;
  right: -30rem;
  width: 30rem;
  height: 100dvh;
  background-color: var(--bg-secondary);
  transition: all .8s;
  overflow: hidden;
  z-index: 1500;
  @media (width <= 30rem) {
    right: -100%;
    width: 100%;
  }
  &.is-active {
    right: 0;
  }
}
.head__menu-open {
  display: grid;
  gap: 0.94rem;
  width: 3.75rem;
  padding: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1000;
  @media (width <= 1024px) {
    gap: 0.5rem;
    width: 1.875rem;
  }
  span {
    width: 3.75rem;
    height: 0.25rem;
    background-color: var(--bg-black);
    @media (width <= 1024px) {
      width: 1.875rem;
      height: 0.125rem;
    }
  }
}
.head__menu-close {
  position: absolute;
  top: 75px;
  right: 50px;
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 2000;
  @media (width <= 1024px) {
    top: 40px;
    right: calc(15 / 375 * 100vw);
    width: 1.875rem;
    height: 1.875rem;
  }
  span {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 3.75rem;
    height: 0.25rem;
    background-color: var(--bg-black);
    @media (width <= 1024px) {
      width: 1.875rem;
      height: 0.125rem;
    }
    &:nth-of-type(1) {
      transform: rotate(45deg);
    }
    &:nth-of-type(2) {
      display: none;
    }
    &:nth-of-type(3) {
      transform: rotate(-45deg);
    }
  }
}
.head__menu-inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 14.5rem 2.5rem 5rem;
  max-height: 100dvh;
  overflow-y: auto;
  @media (width <= 1024px) {
    padding: 10rem 2.25rem 5rem;
  }
}
.head__menu-list {
  display: grid;
  gap: 2.5rem;
  @media (width <= 1024px) {
    gap: 1.25rem;
  }
  li {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-primary);
    text-align: center;
    @media (width <= 1024px) {
      padding-bottom: 1.25rem;
    }
  }
  a {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.96px;
    @media (width <= 1024px) {
      font-size: 1rem;
      letter-spacing: 0.04rem;
    }
  }
  .head__menu-item-x {
    @media (width <= 1024px) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      padding-bottom: 0;
      border-bottom: none;
    }
    a {
      @media (width <= 1024px) {
        display: block;
        width: 1.875rem;
        line-height: 1;
      }
    }
  }
}

/*==============================
mv
==============================*/
.mv {
  position: relative;
  padding-bottom: calc(160 / 1920 * 100vw);
  background-color: var(--bg-primary);
  z-index: 10;
  overflow: hidden;
  @media (width <= 768px) {
    padding-bottom: calc(114 / 375 * 100vw);
  }
  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(160 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_top_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(64 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_top_sp.svg);
    }
  }
}
.mv_inner {
  position: relative;
}
.swiper {
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    display: block;
    aspect-ratio: 1920 / 600;
    @media (width <= 768px) {
      aspect-ratio: 375 / 300;
    }
  }
}
.swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 16px);
  @media (width <= 768px) {
    width: 100%;
  }
}
.swiper-wrapper img {
  width: 100%;
  height: auto;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: calc(-71 / 1920 * 100vw);
  @media (width <= 768px) {
    bottom: calc(-44 / 375 * 100vw);
  }
}
.swiper-pagination-bullet {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background-color: #FFD7F7;
  opacity: 1;
  overflow: hidden;
  @media (width <= 768px) {
    width: 15px;
    height: 15px;
  }
}
.swiper-pagination-bullet-active {
  width: 136px;
  height: 18px;
  @media (width <= 768px) {
    width: 115px;
    height: 15px;
  }
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FDBAEF;
}
.swiper-pagination-bullet-active::before {
  animation: paginationActive 5s linear forwards;
}
@keyframes paginationActive {
  100% {
    width: 100%;
  }
}

/*==============================
about
==============================*/
.about {
  position: relative;
  width: 100%;
  padding-bottom: calc(130 / 1920 * 100vw);
  padding-inline: 20px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  z-index: 0;
  @media (width <= 768px) {
    padding-bottom: calc(54 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
  }
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(130 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_bottom_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(54 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_bottom_sp.svg);
    }
  }
  .section-container {
    padding: 5rem 0 2.5rem;
    @media (width <= 768px) {
      padding: 2.8125rem 0 3.75rem;
    }
  }
}
.about__text {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
  & + .about__text {
    margin-top: 1.25rem;
    text-align: right;
  }
}
.about__box {
  margin-top: 2.5rem;
  padding: 0.625rem;
  border: 2px solid var(--border-white);

}
.about__box-inner {
  padding: 2.625rem 1.875rem 1.5rem;
  border: 2px solid var(--border-white);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    padding: 1.25rem 1.45rem 2.25rem;
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.about__box-shop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.5rem;
  gap: 0.625rem;
  line-height: 1;
  @media (width <= 768px) {
    justify-content: center;
    margin-top: 1.5rem;
  }
  a {
    display: block;
  }
}

/*==============================
hours
==============================*/
.hours {
  position: relative;
  padding: 2.5rem 0 1.875rem;
  padding-bottom: calc(160 / 1920 * 100vw + 1.875rem);
  background-color: var(--bg-primary);
  overflow: hidden;
  @media (width <= 768px) {
    padding-bottom: calc(64 / 375 * 100vw + 1.875rem);
  }
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(160 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_top_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 100;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(64 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_top_sp.svg);
    }
  }
  .page__title {
    color: var(--text-white);
  }
}
.hours__table {
  max-width: 68.75rem;
  width: 100%;
  margin: 2.5rem auto 0;
  border-collapse: collapse;
  @media (width <= 768px) {
    max-width: 91.46vw;
  }
}
.hours__th,
.hours__td {
  padding: 1.25rem;
  border: 1px solid var(--border-black);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    padding: 0.625rem;
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.hours__th {
  width: 10%;
  background-color: var(--bg-secondary);
  &:first-of-type {
    width: 30%;
  }
}
.hours__td {
  background-color: var(--bg-white);
  text-align: center;
}
.hours__note {
  max-width: 68.75rem;
  margin: 0.63rem auto 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  text-align: right;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}

/*==============================
access
==============================*/
.access {
  position: relative;
  width: 100%;
  padding-bottom: calc(130 / 1920 * 100vw);
  padding-inline: 20px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  @media (width <= 768px) {
    padding-bottom: calc(54 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
  }
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(130 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_bottom_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(54 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_bottom_sp.svg);
    }
  }
  .section-container {
    padding: 5rem 0 2.5rem;
    @media (width <= 768px) {
      padding: 3.75rem 0 2.5rem;
    }
  }
}
.access__col2 {
  display: grid;
  grid-template-columns: 37.3125fr 33.75fr;
  gap: 4rem;
  margin-top: 2.5rem;
  @media (width <= 768px) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.access__subtitle {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    text-align: center;
  }
}
.access__info-dl {
  display: grid;
  grid-template-columns: 4.24em 1fr;
  gap: 1.875rem 3.4375rem;
  margin-top: 1.875rem;
  @media (width <= 768px) {
    grid-template-columns: 4.16em 1fr;
    gap: 1.25rem 0.68rem;
    margin-top: 2.5rem;
  }
}
.access__info-dt,
.access__info-dd {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  white-space: nowrap;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.access__info-item {
  position: relative;
  padding-left: 1em;
  &::before {
    position: absolute;
    left: 0;
    content: '・';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5em;
  }
}
.access__flow {
  margin-top: 1.875rem;
}
.access__flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 1.875rem;
  @media (width <= 768px) {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-inline: 5.73vw;
  }
}
.access__flow-item{
  position: relative;
}
.access__flow-num {
  position: absolute;
  top: 0.63rem;
  left: 0.63rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border: 3px solid var(--border-black);
  background-color: var(--bg-white);
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  @media (width <= 768px) {
    top: 0.58rem;
    left: 0.58rem;
  }
}
.access__flow-text {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    margin-top: 0.65rem;
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}

/*==============================
flow
==============================*/
.flow {
  position: relative;
  padding: 5rem 0 2.5rem;
  padding-bottom: calc(160 / 1920 * 100vw + 2.5rem);
  background-color: var(--bg-primary);
  overflow: hidden;
  @media (width <= 768px) {
    padding: 1.25rem 0;
    padding-bottom: calc(64 / 375 * 100vw + 1.25rem);
  }
  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(160 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_top_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(64 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_top_sp.svg);
    }
  }
  .page__title {
    color: var(--text-white);
  }
}
.flow__container {
  display: grid;
  gap: 1.875rem;
  padding-top: 2.5rem;
}
.flow__item {
  display: grid;
  gap: 1.875rem;
  padding: 1.875rem 1.25rem;
  border-radius: 1.875rem;
  background: var(--bg-white);
  @media (width <= 768px) {
    gap: 1.25rem;
  }
}
.flow__titleArea {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
  @media (width <= 768px) {
    gap: 0.9rem;
  }
}
.flow__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.125rem;
  height: 2.5rem;
  border-radius: 1.875rem;
  background: var(--bg-primary);
  color: var(--text-white);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    width: 5.625rem;
    height: 1.875rem;
    color: #FFF;
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
}
.flow__subtitle {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
}
.flow__text {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.flow__box {
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: var(--bg-secondary);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}

/*==============================
news
==============================*/
.news {
  position: relative;
  width: 100%;
  padding-bottom: calc(130 / 1920 * 100vw);
  padding-inline: 20px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  @media (width <= 768px) {
    padding-bottom: calc(54 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
  }
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1920 / 1920 * 100vw);
    height: calc(130 / 1920 * 100vw);
    margin-bottom: -1px;
    background-image: url(../img/common/bg_wave_bottom_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    @media (width <= 768px) {
      width: calc(375 / 375 * 100vw);
      height: calc(54 / 375 * 100vw);
      background-image: url(../img/common/bg_wave_bottom_sp.svg);
    }
  }
  .section-container {
    padding: 5rem 0 2.5rem;
    @media (width <= 768px) {
      padding: 3.75rem 0 3.2rem;
    }
  }
}
.news__contents {
  & + .news__contents {
    padding-top: 5rem;
    @media (width <= 768px) {
      padding-top: 2.5rem;
    }
  }
}
.news__subtitle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 2.5rem;
  color: var(--text-black);
  font-size: 1.5rem;
  line-height: 175%;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    align-items: start;
    font-size: 1.125rem;
    line-height: 150%;
    letter-spacing: 0.045rem;
  }
  &::before {
    content: '';
    display: inline-block;
    width: 1.5625rem;
    height: 1.5625rem;
    border-radius: 50%;
    background-color: var(--bg-primary);
    @media (width <= 768px) {
      width: 1rem;
      height: 1rem;
      margin-top: calc((1em - 1lh) / -2);
    }
  }
}
.news__list {
  margin-top: 1.25rem;
}
.news__item {
  margin-left: 1.5em;
  list-style: disc;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.news__accent {
  color: var(--text-accent);
}
.news__text {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  @media (width <= 768px) {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.news__btn-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  margin-top: 2.5rem;
  height: 5rem;
  border: 4px solid var(--border-primary);
  border-radius: 0.625rem;
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06rem;
  transition: all .4s;
  @media (width <= 768px) {
    width: 10rem;
    height: 3.75rem;
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
  @media(hover:hover) {
    &:hover {
      background: var(--bg-primary);
      color: var(--text-white);
    }
  }
}

/*==============================
footer
==============================*/
.foot {
  position: relative;
}
.foot__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3125rem 0rem 0.625rem 0rem;
  background-color: var(--bg-primary);
  @media (width <= 768px) {
    padding: 0.625rem 0rem 1.25rem 0rem;
  }
}
.foot__text {
  color: var(--text-black);
  text-align: center;
  font-size: 1.25rem;
  line-height: 175%;
  letter-spacing: 0.05rem;
  @media (width <= 768px) {
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.04rem;
  }
}

/*==============================
page top
==============================*/
.page__top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 9999px;
  background-color: var(--bg-white);
  opacity: 0;
  transform: translateY(200px);
	transition:all 0.3s;
  z-index: 100;
  @media (width <= 768px) {
    width: 2.1875rem;
    height: 2.1875rem;
  }
  &::before {
    content: '';
    display: inline-block;
    width: 1.8125rem;
    height: 1.06252rem;
    background-image: url(/assets/img/common/arrow_top.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    @media (width <= 768px) {
      width: 1.25rem;
      height: 0.7rem;
    }
  }
}
.page__top.up_move{
	animation: upAnime 0.5s forwards;
}
@keyframes upAnime{
  from {
    opacity: 0;
		transform: translateY(200px);
  }
  to {
    opacity: 1;
		transform: translateY(0);
  }
}

.page__top.down_move{
	animation: downAnime 0.5s forwards;
}
@keyframes downAnime{
  from {
  	opacity: 1;
		transform: translateY(0);
  }
  to {
  	opacity: 1;
		transform: translateY(200px);
  }
}