@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 651px) and (max-width:1090px) {
  .inner {
    width: 600px;
  }
}
@media screen and (max-width: 650px) {
  .inner {
    width: 330px;
  }
}

.section__title {
  font-size: 45px;
  text-align: center;
  letter-spacing: 0.25rem;
}
@media (min-width: 651px) and (max-width:1090px) {
  .section__title {
    font-size: 34px;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 650px) {
  .section__title {
    font-size: 26px;
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
}

.section__nav {
  display: flex;
  writing-mode: vertical-rl;
  font-size: 25px;
  font-family: "Alata", serif;
  font-weight: 400;
  position: absolute;
  top: 100px;
  left: 0;
}
@media (min-width: 651px) and (max-width:1090px) {
  .section__nav {
    font-size: 22px;
  }
}
@media screen and (max-width: 650px) {
  .section__nav {
    font-size: 16px;
    top: 40px;
    font-weight: 600;
    left: -10px;
  }
}
.section__nav p {
  white-space: nowrap;
  display: block;
}
.section__nav img {
  display: inline-block;
  width: 40px;
  margin-bottom: 10px;
  margin-right: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .section__nav img {
    width: 20px;
  }
}
@media screen and (max-width: 650px) {
  .section__nav img {
    width: 30px;
  }
}

@media screen and (max-width: 650px) {
  .section__nav-can {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 650px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 650px) {
  .pc-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 651px) and (max-width:1090px) {
  .tab-none {
    display: none;
  }
}

.scroll-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 0; /* 初期状態では幅 0 */
  height: 4px;
  background-color: #000; /* 直線の色 */
  display: flex;
  align-items: center;
  z-index: 2;
  transform-origin: left;
}

.scroll-line__circle {
  width: 34px;
  height: 34px;
  border: 5px solid #000000;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  bottom: -17px;
  transform: translateY(-50%);
}
@media screen and (max-width: 650px) {
  .scroll-line__circle {
    width: 28px;
    height: 28px;
    bottom: -14px;
    left: -16px;
  }
}

.header {
  padding-top: 40px;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header {
    padding-top: 30px;
  }
}

.header__inner {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header__inner {
    padding: 0 30px;
    max-width: 900px;
  }
}

.header__logo {
  width: 210px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header__logo {
    width: 27%;
  }
}
@media screen and (max-width: 650px) {
  .header__logo {
    display: none;
  }
}

.header__nav {
  display: flex;
}
@media screen and (max-width: 650px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item {
  padding-left: 40px;
  padding-top: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header__nav-item {
    padding-left: 0.9rem;
  }
}
.header__nav-item a {
  color: #000000;
  font-weight: 600;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header__nav-item a {
    font-size: 14px;
  }
}
.header__nav-item img {
  width: 15px;
  margin-right: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
@media (min-width: 651px) and (max-width:1090px) {
  .header__nav-item img {
    width: 10px;
    margin-right: 5px;
  }
}
.header__nav-item:hover img {
  opacity: 1;
  transform: translateY(0);
}

.drawer-icon {
  display: none;
  transition: transform 0.5s ease 0s;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 300;
}
@media screen and (max-width: 650px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #000000;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #000000;
}

.drawer-icon-bars {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  margin: 0 auto;
}

.drawer-icon-bar1,
.drawer-icon-bar3 {
  position: absolute;
  width: 26px;
  height: 4px;
  border-radius: 5px;
  background: #000000;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.drawer-icon-bar1 {
  top: 0px;
}

.drawer-icon-bar3 {
  top: 12px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  background: #ffffff;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-menu {
  padding: 25px 0 25px 60px;
  color: #000000;
  font-size: 18px;
  transition: all 0.8s;
}

.drawer-content-items {
  margin: 100px auto 0 auto;
  width: 330px;
}

.drawer-content-item {
  padding: 25px 0 25px 60px;
}
.drawer-content-item a {
  display: block;
  color: #000000;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.8s;
}

.drawer__contact-btn {
  margin: 20px auto 20px auto;
  text-align: center;
}
.drawer__contact-btn a {
  padding: 10px 15px;
  color: #ffffff;
  border-radius: 40px;
  transition: all 0.8s ease;
}
.drawer__contact-btn a img {
  width: 10px;
  margin-bottom: 6px;
  margin-left: 10px;
}
.drawer__contact-btn a:hover {
  opacity: 0.6;
}

.sp-tel__btn {
  display: inline-block;
  background-color: #00FF00;
  box-shadow: 4px 4px 8px #B8B8B8;
  border-radius: 29px;
  text-align: center;
  position: absolute;
  width: 330px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
}
@media screen and (max-width: 650px) {
  .sp-tel__btn {
    padding: 5px 10px;
    margin: 0 auto;
  }
}

.sp-tel__btn-wrap {
  display: flex;
  align-items: center;
}
.sp-tel__reserve__wrap {
  display: flex;
}
@media screen and (max-width: 650px) {
  .sp-tel__reserve__wrap {
    display: block;
    padding-left: 5px;
  }
}

.sp-tel__circle {
  font-size: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
  width: 44px;
  height: 44px;
  letter-spacing: 0.2rem;
  padding-top: 15px;
}

.sp-tel__reserve {
  padding-left: 5px;
  padding-right: 5px;
}
@media screen and (max-width: 650px) {
  .sp-tel__reserve {
    display: flex;
  }
}
.sp-tel__reserve p {
  font-weight: 900;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 650px) {
  .sp-tel__reserve p {
    font-size: 14px;
  }
}
.sp-tel__reserve span {
  font-size: 14px;
  letter-spacing: 0.06rem;
}
.sp-tel__number {
  font-family: "Alata", serif;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 650px) {
  .sp-tel__number {
    font-size: 35px;
  }
}

.hero {
  padding-top: 100px;
  padding-bottom: 130px;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 650px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 50px;
    position: relative;
  }
}

.hero__inner {
  width: 862px;
  margin: 0 auto;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero__inner {
    width: 600px;
  }
}
@media screen and (max-width: 650px) {
  .hero__inner {
    width: 330px;
  }
}

.hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero__wrap {
    display: block;
  }
}
@media screen and (max-width: 650px) {
  .hero__wrap {
    display: flex;
    justify-content: center;
  }
}

.hero__img {
  width: 300px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero__img {
    width: 200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 650px) {
  .hero__img {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .hero__text {
    writing-mode: vertical-rl;
  }
}

.hero__title {
  font-size: 72px;
  line-height: 1.25;
  letter-spacing: 0.25rem;
  font-weight: 900;
  padding-bottom: 15px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero__title {
    text-align: center;
    font-size: 60px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 650px) {
  .hero__title {
    font-size: 55px;
  }
}

.hero__subtitle {
  font-size: 27px;
  letter-spacing: 0.25rem;
  font-weight: 900;
}
@media (min-width: 651px) and (max-width:1090px) {
  .hero__subtitle {
    font-size: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .hero__subtitle {
    font-size: 18px;
    padding-right: 15px;
  }
}

.sp__hero-logo {
  display: none;
  width: 270px;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 650px) {
  .sp__hero-logo {
    display: block;
  }
}

.tel {
  background-color: #000000;
  width: 100%;
}
@media (min-width: 651px) and (max-width:1090px) {
  .tel {
    padding: 13px 0 20px 0;
  }
}
@media screen and (max-width: 650px) {
  .tel {
    padding: 10px 0 15px 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
  }
}

.tel__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:1090px) {
  .tel__wrap {
    justify-content: center;
  }
}

.tel__text {
  color: #ffffff;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 20px;
  letter-spacing: 0.25rem;
}
@media (min-width: 651px) and (max-width:1090px) {
  .tel__text {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .tel__text {
    display: none;
  }
}
.tel__text p {
  font-size: 25px;
  padding-bottom: 10px;
}
.tel__text span {
  font-size: 16px;
  line-height: 1.6;
}

.tel__btn {
  padding: 10px 20px 10px 5px;
  background-color: #FFFFFF;
  display: inline-block;
  border-radius: 29px;
  border-bottom: 4px solid #B8B8B8;
  border-right: 4px solid #B8B8B8;
  color: #000000;
}
@media screen and (max-width: 650px) {
  .tel__btn {
    padding: 5px 10px;
  }
}

.tel__btn-wrap {
  display: flex;
  align-items: center;
}
.tel__reserve__wrap {
  display: flex;
}
@media screen and (max-width: 650px) {
  .tel__reserve__wrap {
    display: block;
    padding-left: 5px;
  }
}

.tel__circle {
  font-size: 15px;
  background-color: #00FF00;
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
  width: 44px;
  height: 44px;
  letter-spacing: 0.2rem;
  padding-top: 15px;
}

.tel__reserve {
  padding-left: 5px;
  padding-right: 5px;
}
@media screen and (max-width: 650px) {
  .tel__reserve {
    display: flex;
  }
}
.tel__reserve p {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08rem;
  line-height: 1.3;
}
@media screen and (max-width: 650px) {
  .tel__reserve p {
    font-size: 14px;
  }
}
.tel__reserve span {
  font-size: 14px;
  letter-spacing: 0.06rem;
  line-height: 1;
}
.tel__number {
  font-size: 40px;
  font-family: "Alata", serif;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 650px) {
  .tel__number {
    font-size: 35px;
  }
}

.campaign {
  padding-top: 100px;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign {
    padding-top: 60px;
  }
}
@media screen and (max-width: 650px) {
  .campaign {
    padding-top: 30px;
  }
}

.campaign__wrap {
  width: 100%;
  background-color: #ffffff;
  border-radius: 0 20px 0 20px;
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__wrap {
    padding: 30px 20px;
  }
}

.campaign__title {
  font-weight: 900;
  letter-spacing: 0.5rem;
  font-size: 38px;
  line-height: 1.4;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__title {
    font-size: 30px;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 650px) {
  .campaign__title {
    font-size: 26px;
    letter-spacing: 0.1rem;
    line-height: 1.2;
  }
}
.campaign__title img {
  width: 800px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__title img {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .campaign__title img {
    width: 100%;
  }
}

.campaign__content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
@media screen and (max-width: 650px) {
  .campaign__content-wrap {
    display: block;
    margin-top: 10px;
  }
}

.campaign__content-left {
  display: flex;
}
@media screen and (max-width: 650px) {
  .campaign__content-left {
    display: block;
  }
}

.campaign__price {
  font-size: 23px;
  font-weight: 900;
  writing-mode: vertical-rl;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__price {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__price {
    writing-mode: horizontal-tb;
  }
}

.campaign__up {
  font-size: 110px;
  font-family: "Alata", serif;
  font-weight: 400;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__up {
    font-size: 70px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__up {
    font-size: 70px;
    margin-top: -30px;
  }
}
.campaign__up span {
  font-size: 135px;
  color: #FF3200;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__up span {
    font-size: 100px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__up span {
    font-size: 110px;
  }
}

.campaign__content-right {
  padding-top: 15px;
  margin-left: 10px;
}
.campaign__content-right p {
  font-size: 35px;
  padding-bottom: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__content-right p {
    font-size: 26px;
    letter-spacing: 0.02rem;
  }
}
@media screen and (max-width: 650px) {
  .campaign__content-right p {
    font-size: 26px;
    padding-top: 0;
    padding-left: 0;
    margin-top: -10px;
  }
}
.campaign__content-right span {
  font-size: 17px;
  line-height: 1.3;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__content-right span {
    font-size: 14px;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 650px) {
  .campaign__content-right span {
    font-size: 14px;
  }
}

.campaign__message {
  font-size: 26px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 15px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__message {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__message {
    font-size: 14px;
    text-align: left;
    padding: 10px;
    background-color: #EEEEEE;
    margin-top: 15px;
    line-height: 1.4;
  }
}

.campaign__twice {
  font-size: 18px;
  text-align: center;
  color: #FF3200;
  display: block;
  padding-top: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .campaign__twice {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .campaign__twice {
    font-size: 14px;
    text-align: left;
    display: inline;
  }
}

.can {
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .can {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .can {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.can__wrap {
  display: flex;
  padding: 80px 40px 0 30px;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:1090px) {
  .can__wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 0 0 0;
    gap: 0 20px;
  }
}
@media screen and (max-width: 650px) {
  .can__wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0 0 0;
    gap: 0 10px;
  }
}

.can__item {
  position: relative;
  text-align: center;
  width: 275px;
  height: 275px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 上下中央揃え */
  align-items: center; /* 水平方向の中央揃え */
}
@media screen and (max-width: 650px) {
  .can__item {
    width: 150px;
    height: 150px;
  }
}

.can__item-number {
  font-size: 70px;
  font-family: "Alata", serif;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
}
@media screen and (max-width: 650px) {
  .can__item-number {
    font-size: 42px;
    top: -20px;
  }
}

.can__item-text {
  font-size: 28px;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 650px) {
  .can__item-text {
    font-size: 16px;
    letter-spacing: 0.02rem;
  }
}
.can__item-text .can__item-green {
  display: block;
  font-size: 36px;
  margin-bottom: 5px;
  position: relative;
  z-index: 3;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 650px) {
  .can__item-text .can__item-green {
    font-size: 20px;
  }
}
.can__item-text .can__item-green::after {
  position: absolute;
  content: "";
  height: 19px;
  width: 100%;
  background-color: #00FF00;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .can__item-text .can__item-green::after {
    height: 13px;
  }
}
.can__item-text .can__item-star {
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 650px) {
  .can__item-text .can__item-star {
    font-size: 8px;
  }
}

.flow {
  position: relative;
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .flow {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.flow__wrap {
  display: flex;
  align-items: end;
  padding: 80px 40px 20px 30px;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__wrap {
    padding: 40px 0 0 0;
  }
}
@media screen and (max-width: 650px) {
  .flow__wrap {
    display: block;
    padding: 20px 0 0 0;
  }
}

.flow__item {
  text-align: center;
  width: calc((100% - 100px) / 3);
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 650px) {
  .flow__item {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background-color: #EEEEEE;
    border-radius: 0 15px 0 15px;
    padding: 0 10px 20px 10px;
  }
}

.flow__item-arrow {
  width: 35px;
  display: block;
  padding-bottom: 120px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-arrow {
    width: 30px;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-arrow {
    width: 20px;
    padding-bottom: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 650px) {
  .flow__item-content {
    width: 180px;
  }
}

.flow__item-img {
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 650px) {
  .flow__item-img {
    margin-right: 10px;
  }
}

.flow__item-img--1 {
  width: 210px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-img--1 {
    width: 120px;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-img--1 {
    width: calc(100% - 190px);
  }
}

.flow__item-img--2 {
  width: 140px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-img--2 {
    width: 90px;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-img--2 {
    width: 80px;
    margin: 0 auto;
  }
}

.flow__item-img--3 {
  width: 120px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-img--3 {
    width: 80px;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-img--3 {
    width: 70px;
    margin: 0 auto;
  }
}

.flow__item-title {
  font-size: 32px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-title {
    font-size: 22px;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-title {
    font-size: 22px;
    padding-bottom: 10px;
  }
}

.flow__item-text {
  letter-spacing: 0.01rem;
  line-height: 1.6;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__item-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .flow__item-text {
    text-align: left;
  }
}

.flow__bottom {
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.1;
  font-size: 45px;
  display: inline-block;
  position: relative;
  z-index: 3;
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__bottom {
    font-size: 38px;
  }
}
@media screen and (max-width: 650px) {
  .flow__bottom {
    font-size: 26px;
  }
}
.flow__bottom::after {
  position: absolute;
  content: "";
  height: 25px;
  width: 100%;
  background-color: #00FF00;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .flow__bottom::after {
    height: 18px;
  }
}
.flow__bottom span {
  font-size: 110px;
  font-family: "Alata", serif;
  color: #FF3200;
  position: relative;
  top: 7px; /* 10px 下げる */
}
@media (min-width: 651px) and (max-width:1090px) {
  .flow__bottom span {
    font-size: 90px;
  }
}
@media screen and (max-width: 650px) {
  .flow__bottom span {
    font-size: 70px;
  }
}

.list {
  position: relative;
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 120px;
  z-index: 1;
}
@media (min-width: 651px) and (max-width:1090px) {
  .list {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .list {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.list__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.list__background img {
  position: absolute;
  opacity: 0.5; /* 透明度を少し調整 */
  transform-origin: center;
}

.list__text {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .list__text {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .list__text {
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.list__brand {
  width: 100%;
  border-radius: 0 25px 0 25px;
  background-color: #00FF00;
  padding: 40px;
  margin-top: -40px;
  position: relative;
}
@media (min-width: 651px) and (max-width:1090px) {
  .list__brand {
    padding: 25px;
  }
}
@media screen and (max-width: 650px) {
  .list__brand {
    padding: 20px;
    margin-top: -10px;
  }
}

.list__brand-text {
  line-height: 1.8;
  font-size: 20px;
  letter-spacing: 0.05rem;
}
@media (min-width: 651px) and (max-width:1090px) {
  .list__brand-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .list__brand-text {
    font-size: 14px;
    letter-spacing: 0.01rem;
  }
}

.categories {
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .categories {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.categories__text {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories__text {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .categories__text {
    padding-top: 20px;
    line-height: 1.5;
    padding-bottom: 10px;
  }
}

.categories__wrap {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 30px 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories__wrap {
    gap: 20px 20px;
  }
}
@media screen and (max-width: 650px) {
  .categories__wrap {
    gap: 20px 10px;
  }
}

.categories__item {
  flex: 1 1 calc(20% - 10px); /* 5分割（gapの分を調整） */
  max-width: calc(20% - 16px); /* アイテム幅の上限を指定 */
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories__item {
    flex: 1 1 calc(33.333% - 14px); /* 5分割（gapの分を調整） */
    max-width: calc(33.333% - 14px); /* アイテム幅の上限を指定 */
  }
}
@media screen and (max-width: 650px) {
  .categories__item {
    flex: 1 1 calc(33.333% - 10px); /* 3分割に変更 */
    max-width: calc(33.333% - 10px); /* 幅の上限も調整 */
  }
}

.categories__item-img {
  position: relative;
  z-index: 3;
}
.categories__item-img::after {
  position: absolute;
  content: "";
  background-color: #00FF00;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .categories__item-img::after {
    width: 100px;
    height: 100px;
  }
}

.categories__item-name {
  text-align: center;
  padding-top: 10px;
  font-size: 19px;
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  .categories__item-name {
    font-size: 13px;
    letter-spacing: 0.01rem;
  }
}

.categories__item--5 {
  width: 170px;
}
@media screen and (max-width: 650px) {
  .categories__item--5 {
    width: 95px;
  }
}

.categories__item--7 {
  width: 170px;
}
@media screen and (max-width: 650px) {
  .categories__item--7 {
    width: 95px;
  }
}

.categories__item--11 {
  margin-bottom: 20px;
}
.categories__item--11::after {
  bottom: -20px;
}

.categories__item--12 {
  width: 170px;
}
@media screen and (max-width: 650px) {
  .categories__item--12 {
    width: 100px;
  }
}

.categories__item--13 {
  padding-right: 10px;
}

.categories__item--14 {
  padding-left: 10px;
}

.categories__item--15 {
  width: 170px;
  margin-bottom: 30px;
  padding-left: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories__item--15 {
    width: 150px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 650px) {
  .categories__item--15 {
    width: 85px;
    margin-bottom: 20px;
  }
}
.categories__item--15::after {
  bottom: -30px;
  left: 95px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .categories__item--15::after {
    bottom: -20px;
  }
}
@media screen and (max-width: 650px) {
  .categories__item--15::after {
    bottom: -20px;
    left: 52px;
  }
}

.works {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .works {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.works__wrap {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 650px) {
  .works__wrap {
    margin-top: 30px;
    display: block;
    gap: 0;
  }
}

.works__item {
  flex: 1 1 calc(50% - 20px); /* 2列にする（gapの分を考慮） */
  max-width: calc(50% - 20px); /* 最大幅を指定 */
  border: 8px solid #00FF00;
  border-radius: 0 25px 0 25px;
  position: relative;
  padding: 40px 25px 30px 25px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item {
    flex: 1 1 calc(50% - 10px); /* 2列にする（gapの分を考慮） */
    max-width: calc(50% - 10px); /* 最大幅を指定 */
    border: 5px solid #00FF00;
    padding: 30px 6px 15px 6px;
  }
}
@media screen and (max-width: 650px) {
  .works__item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border: 5px solid #00FF00;
    padding: 30px 18px 15px 18px;
  }
}

.works__rank {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 15px 12px 15px;
  background-color: #00FF00;
  border-radius: 0 0 20px 0;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__rank {
    padding: 5px 12px 10px 6px;
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .works__rank {
    font-size: 16px;
    padding: 5px 12px 10px 6px;
  }
}

.works__item-title {
  text-align: center;
  letter-spacing: 0.01rem;
  font-size: 28px;
  position: relative;
  line-height: 2;
  font-weight: 900;
  margin-bottom: 15px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .works__item-title {
    font-size: 19px;
  }
}
.works__item-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000000;
  bottom: 0;
  left: 0;
}
.works__item-title span {
  display: block;
  font-size: 15px;
  line-height: 1;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .works__item-title span {
    font-size: 13px;
  }
}

.works__item-content {
  display: flex;
  justify-content: space-between;
}

.works__item-other {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-other {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .works__item-other {
    font-size: 16px;
  }
}

.works__other-price {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__other-price {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .works__other-price {
    font-size: 20px;
  }
}

.works__item-right {
  width: 170px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-right {
    width: 120px;
  }
}
@media screen and (max-width: 650px) {
  .works__item-right {
    width: 120px;
  }
}

.works__item-arrow {
  width: 20px;
  margin: 15px 70px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-arrow {
    margin: 7px 50px;
    width: 14px;
  }
}
@media screen and (max-width: 650px) {
  .works__item-arrow {
    width: 14px;
    margin: 10px 50px;
  }
}

.works__item-main {
  font-size: 24px;
  color: #FF3200;
  margin-bottom: 5px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__item-main {
    font-size: 18px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 650px) {
  .works__item-main {
    font-size: 16px;
  }
}

.works__main-price {
  font-size: 66px;
  color: #FF3200;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__main-price {
    font-size: 46px;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 650px) {
  .works__main-price {
    font-size: 43px;
    letter-spacing: 0.01rem;
  }
}
.works__main-price span {
  font-size: 26px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .works__main-price span {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .works__main-price span {
    font-size: 18px;
  }
}

.instagram {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 650px) {
  .instagram {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.instagram__wrap {
  background-color: #ffffff;
  padding: 40px 100px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__wrap {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__wrap {
    padding: 20px 30px;
  }
}

.instagram__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.instagram__company-logo {
  width: 180px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__company-logo {
    display: block;
    width: 140px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__company-logo {
    display: none;
  }
}

.instagram__message {
  font-size: 30px;
  letter-spacing: 0.2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__message {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__message {
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.01rem;
    margin-bottom: 0;
    margin-top: 10px;
  }
}

.instagram__check {
  display: flex;
  align-items: center;
}

.instagram__arrow-left {
  width: 14px;
  opacity: 0; /* 最初は非表示 */
  transition: opacity 0.3s;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__arrow-left {
    width: 10px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__arrow-left {
    display: none;
  }
}

.instagram__arrow-right {
  width: 14px;
  opacity: 0; /* 最初は非表示 */
  transition: opacity 0.1s;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__arrow-right {
    width: 10px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__arrow-right {
    display: none;
  }
}

.instagram__icon-sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .instagram__icon-sp {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  .instagram__icon-sp .shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 100%);
    transform: rotate(30deg);
    opacity: 0.8;
  }
}

.instagram__icon-pc {
  display: block;
}
.instagram__icon-pc a {
  transition: all 1s;
}
.instagram__icon-pc a:hover {
  opacity: 0.6;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__icon-pc {
    display: block;
  }
}
@media screen and (max-width: 650px) {
  .instagram__icon-pc {
    display: none;
  }
}

.instagram__icon {
  width: 300px;
  margin: 0 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .instagram__icon {
    width: 250px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 650px) {
  .instagram__icon {
    width: 100%;
    margin: 0;
  }
}

.instagram__logo-sp {
  width: 80%;
  margin: 10px auto 0 auto;
  display: none;
}
@media screen and (max-width: 650px) {
  .instagram__logo-sp {
    display: block;
  }
}

.area {
  position: relative;
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .area {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

.area__inner {
  padding: 0 100px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__inner {
    padding: 0;
  }
}
@media screen and (max-width: 650px) {
  .area__inner {
    padding: 0;
  }
}

.area__text {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__text {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 650px) {
  .area__text {
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 1.5;
  }
}

.area__map {
  margin-bottom: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__map {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .area__map {
    margin-bottom: 0;
  }
}

.area__point {
  padding-top: 30px;
  line-height: 1.8;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__point {
    padding-top: 20px;
  }
}
@media screen and (max-width: 650px) {
  .area__point {
    padding-top: 15px;
    line-height: 1.5;
  }
}

.area__title {
  font-size: 26px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .area__title {
    font-size: 18px;
  }
}

.area__city {
  font-weight: 400;
  letter-spacing: 0.05rem;
}
@media (min-width: 651px) and (max-width:1090px) {
  .area__city {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .area__city {
    font-size: 12px;
    padding-top: 3px;
  }
}

.faqs {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .faqs {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.faqs__text {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs__text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .faqs__text {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.faqs__item {
  padding: 30px 0 30px 100px;
  border-top: 1px solid #000000;
  position: relative;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs__item {
    padding: 20px 0 20px 70px;
  }
}
@media screen and (max-width: 650px) {
  .faqs__item {
    padding: 20px 0 20px 0;
  }
}

.faqs__icon {
  position: absolute;
  left: 30px;
  top: 20px;
  background-color: #00FF00;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding-top: 9px;
  font-family: "Alata", serif;
  font-weight: 400;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs__icon {
    left: 0;
    top: 10px;
    width: 45px;
    height: 45px;
    font-size: 28px;
    padding-top: 7px;
  }
}
@media screen and (max-width: 650px) {
  .faqs__icon {
    left: 0;
    top: 30px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    padding-top: 7px;
  }
}

.faqs__q {
  font-size: 28px;
  letter-spacing: 0.2rem;
  padding-bottom: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs__q {
    font-size: 22px;
  }
}
@media screen and (max-width: 650px) {
  .faqs__q {
    font-size: 22px;
    letter-spacing: 0.01rem;
    line-height: 1.4;
    margin-left: 60px;
  }
}

.faqs__a {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 651px) and (max-width:1090px) {
  .faqs__a {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .faqs__a {
    font-size: 16px;
  }
}

.message {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.message__inner {
  padding: 100px 40px 60px 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 651px) and (max-width:1090px) {
  .message__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .message__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

.message__title {
  font-size: 45px;
  letter-spacing: 0.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .message__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 650px) {
  .message__title {
    font-size: 30px;
  }
}

.message__text {
  line-height: 2.6;
  font-weight: 400;
}
@media (min-width: 651px) and (max-width:1090px) {
  .message__text {
    line-height: 2;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 650px) {
  .message__text {
    line-height: 2;
  }
}

.message__sign {
  width: 200px;
  margin-left: auto;
  margin-top: 20px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .message__sign {
    width: 180px;
  }
}
@media screen and (max-width: 650px) {
  .message__sign {
    width: 150px;
  }
}

.circle__small {
  position: absolute;
  background-color: #00FF00;
  border-radius: 50%;
  overflow: hidden;
  width: 94px;
  height: 94px;
  right: 450px;
  bottom: 60px;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .circle__small {
    right: 120px;
    width: 62px;
    height: 62px;
  }
}

.circle__middle {
  position: absolute;
  background-color: #00FF00;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: 30px;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .circle__middle {
    width: 200px;
    height: 200px;
  }
}

.circle__large {
  position: absolute;
  background-color: #00FF00;
  border-radius: 50%;
  width: 510px;
  height: 510px;
  right: -200px;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .circle__large {
    width: 280px;
    height: 280px;
  }
}

.footer {
  padding: 60px 0;
  background-color: #00FF00;
}
@media (min-width: 651px) and (max-width:1090px) {
  .footer {
    padding: 30px 0;
  }
}
@media screen and (max-width: 650px) {
  .footer {
    padding: 20px 0;
    position: relative;
    margin-bottom: 80px;
  }
}

.footer__inner {
  padding: 0 60px;
  display: flex;
  align-items: center;
}
@media (min-width: 651px) and (max-width:1090px) {
  .footer__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 650px) {
  .footer__inner {
    padding: 0 20px;
    display: block;
  }
}

.footer__logo {
  width: 320px;
}
@media (min-width: 651px) and (max-width:1090px) {
  .footer__logo {
    width: 300px;
  }
}
@media screen and (max-width: 650px) {
  .footer__logo {
    width: 240px;
  }
}

.footer__nav {
  padding-left: 40px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 651px) and (max-width:1090px) {
  .footer__nav {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .footer__nav {
    margin-top: 20px;
    padding-left: 0;
    font-size: 12px;
    letter-spacing: 0.01rem;
  }
}

.page-top {
  width: 80px;
  margin-left: auto;
  transition: all 1s;
}
.page-top:hover {
  opacity: 0.6;
}
@media screen and (max-width: 650px) {
  .page-top {
    width: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
  }
}/*# sourceMappingURL=main.css.map */