@font-face {
  font-family: "07NikumaruFont";
  src: url("../fonts/07NikumaruFont.otf") format("opentype"), url("../fonts/07NikumaruFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 56px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #141414;
  line-height: 1.6;
  background-color: #fdfdfd;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.follow-banner {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 100;
}
@media (min-width: 768px) {
  .follow-banner {
    max-width: 390px;
  }
}
.follow-banner img {
  width: 100%;
  height: auto;
}
.follow-banner:hover {
  filter: brightness(85%);
}

.bg-pc-image {
  display: none;
}
@media (min-width: 768px) {
  .bg-pc-image {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../img/bg-pc.png");
    background-size: auto 100vh;
    background-position: top;
    background-repeat: repeat-x;
    z-index: -1;
  }
}

@media (min-width: 768px) {
  main {
    max-width: 390px;
    margin: 0 auto;
  }
}

.vertical-line {
  display: none;
}
@media (min-width: 768px) {
  .vertical-line {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    height: 100vh;
    z-index: -1;
  }
  .vertical-line::before, .vertical-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 24px;
    height: 100%;
    background-image: url("../img/vertical.png");
    background-repeat: repeat-y;
    background-position: top;
    background-size: contain;
    pointer-events: none;
  }
  .vertical-line::before {
    left: -33px;
  }
  .vertical-line::after {
    right: -33px;
  }
}

.hero {
  background-image: url("../img/hero/bg.png");
  background-position: top left;
  background-size: cover;
  padding-bottom: 123px;
  position: relative;
  overflow: hidden;
}
.hero__pr {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero__title {
  margin: 34px auto 0;
  width: 85.6vw;
  height: auto;
}
.hero__title img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .hero__title {
    width: 342px;
  }
}
.hero__content {
  width: 390px;
  margin: 76px auto 0;
  position: relative;
}
.hero__list {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__list--item {
  width: 189px;
  background-color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f58abd;
  padding-left: 18px;
  height: 34px;
  line-height: 34px;
  letter-spacing: 1px;
  position: relative;
}
.hero__list--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background-color: #f58abd;
}
.hero__list--item img {
  width: 14px;
  height: auto;
  position: relative;
  top: -11px;
}
.hero__list--item span {
  font-size: 2.6rem;
  padding: 0 2px;
}
.hero__human {
  position: absolute;
  bottom: -36px;
  right: -52px;
  width: 332px;
  height: auto;
  z-index: 1;
}
.hero__price {
  width: 189px;
  height: auto;
  display: block;
  margin-top: 20px;
}
.hero__review {
  display: block;
  width: 85.6vw;
  height: auto;
  margin: 72px auto 0;
}
@media (min-width: 768px) {
  .hero__review {
    width: 342px;
  }
}

.intro__top-content {
  background-image: url("../img/intro/top-bg-1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 89px;
  position: relative;
}
.intro__top-content--title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  text-align: center;
  width: 198px;
  margin: 0 auto;
  position: relative;
}
.intro__top-content--title .small {
  font-size: 1.6rem;
  letter-spacing: -0.75px;
}
.intro__top-content--title .big {
  font-size: 2.4rem;
  font-weight: 700;
}
.intro__top-content--title .middle {
  font-size: 2rem;
}
.intro__top-content--title::before {
  content: "";
  background-image: url("../img/intro/effect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -20px;
  top: -50%;
  width: 25px;
  height: 63px;
  transform: translateY(50%) scaleX(-1);
}
.intro__top-content--title::after {
  content: "";
  background-image: url("../img/intro/effect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -20px;
  top: -52%;
  width: 25px;
  height: 63px;
  transform: translateY(50%);
}
.intro__top-content--list-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
}
.intro__top-content--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-content: center;
  justify-items: center;
  margin: 24px 47px 0;
}
.intro__top-content--list--item {
  background-image: url("../img/intro/top-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 141px;
  border-radius: 4px;
  padding: 4px;
}
.intro__top-content--list--item p {
  border-radius: 4px;
  border: 1px solid rgba(253, 253, 253, 0.7);
  padding: 10px 5px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.3rem;
  color: white;
}
.intro__top-content--list--item:nth-child(2) {
  background-image: url("../img/intro/top-2.png");
}
.intro__top-content--list--item:nth-child(3) {
  background-image: url("../img/intro/top-3.png");
}
.intro__top-content--list--item:nth-child(3) p {
  padding: 5px 5px;
}
.intro__top-content--list--item:nth-child(4) {
  background-image: url("../img/intro/top-4.png");
}
.intro__top-content--list--item:nth-child(4) p {
  padding: 5px 2px;
}
.intro__top-content--list--item:nth-child(5) {
  background-image: url("../img/intro/top-5.png");
}
.intro__top-content--human {
  width: 79px;
  height: 114px;
  position: absolute;
  bottom: -39px;
  right: 81px;
}
.intro__middle-content {
  width: 100%;
  background-color: #f9b9d7;
  position: relative;
  padding-top: 20px;
}
.intro__middle-content::before {
  content: "";
  background-color: #f9b9d7;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: -1;
}
.intro__middle-content::after {
  content: "";
  background-color: #f9b9d7;
  position: absolute;
  bottom: -36px;
  left: 0;
  width: 100%;
  height: 36px;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(85% - 30px), 50% 100%, 0 calc(85% - 30px));
}
.intro__middle-content p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #fdfdfd;
  text-align: center;
  letter-spacing: -1.56px;
}
.intro__middle-content p span {
  font-size: 2rem;
}
.intro__middle-bottom {
  background: linear-gradient(180deg, #ffe5ec 0%, #f58abd 100%);
  width: 100%;
  padding-top: 40px;
  padding-bottom: 48px;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.intro__middle-bottom--bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.intro__middle-bottom--title {
  display: block;
  width: 272px;
  height: auto;
  margin: 32px auto 0;
}
.intro__middle-bottom--item {
  background-color: white;
  padding: 8px;
  margin-top: 30px;
  position: relative;
}
.intro__middle-bottom--item p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
.intro__middle-bottom--item.soudann {
  margin-left: auto;
  width: 330px;
}
.intro__middle-bottom--item.soudann img {
  display: block;
  width: 221px;
  height: auto;
  margin: 0 auto;
}
.intro__middle-bottom--item.soudann p {
  margin-top: 8px;
}
.intro__middle-bottom--item.soudann::before {
  content: "";
  width: 353px;
  height: 127px;
  position: absolute;
  top: 10px;
  left: -10px;
  border: 1px solid #f58abd;
  z-index: -1;
}
.intro__middle-bottom--item.kuchikomi {
  margin-right: auto;
  width: 330px;
}
.intro__middle-bottom--item.kuchikomi img {
  display: block;
  width: 108px;
  height: auto;
  margin: 0 auto;
}
.intro__middle-bottom--item.kuchikomi p {
  margin-top: 9px;
}
.intro__middle-bottom--item.kuchikomi::before {
  content: "";
  width: 353px;
  height: 120px;
  position: absolute;
  top: 10px;
  right: -10px;
  border: 1px solid rgba(198, 138, 218, 0.99);
  z-index: -1;
}
.intro__middle-bottom--item.daikin {
  margin-left: auto;
  width: 330px;
}
.intro__middle-bottom--item.daikin img {
  display: block;
  width: 136px;
  height: auto;
  margin: 0 auto;
}
.intro__middle-bottom--item.daikin ul {
  margin: 10px auto 0;
  width: 255px;
  list-style: none;
}
.intro__middle-bottom--item.daikin ul li {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
.intro__middle-bottom--item.daikin::before {
  content: "";
  width: 353px;
  height: 175px;
  position: absolute;
  top: 10px;
  left: -10px;
  border: 1px solid rgba(128, 221, 215, 0.99);
  z-index: -1;
}

.example {
  background-image: url("../img/example/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 61px;
  position: relative;
  z-index: 0;
}
.example__title {
  display: block;
  width: 194px;
  height: auto;
  margin: 0 auto;
  position: relative;
  left: 8px;
}
.example__title img {
  width: 100%;
  height: auto;
}
.example__slider {
  margin-top: 37px;
  position: relative;
  max-width: 100%;
  z-index: 1;
}
.example__slider::before {
  content: "";
  border: 1px solid #fdfdfd;
  width: 100%;
  height: 1px;
  position: absolute;
  top: -19px;
  left: 0;
  z-index: -1;
}
.example__slider::after {
  content: "";
  border: 1px solid #fdfdfd;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -21px;
  left: 0;
  z-index: -1;
}
.example__slider .swiper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.example__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.example__slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 231px;
  max-height: 289px;
}
.example__slider .swiper-slide img {
  width: auto;
  max-width: 231px;
  max-height: 289px;
  height: auto;
  display: block;
  object-fit: contain;
}
.example__slider .swiper-button-prev,
.example__slider .swiper-button-next {
  width: 31px;
  height: 31px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-image: url("../img/example/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
}
.example__slider .swiper-button-prev::after,
.example__slider .swiper-button-next::after {
  display: none;
}
.example__slider .swiper-button-prev:hover,
.example__slider .swiper-button-next:hover {
  opacity: 0.8;
}
.example__slider .swiper-button-prev {
  left: 26px;
  transform: translateY(-50%) scaleX(-1);
}
.example__slider .swiper-button-next {
  right: 26px;
}

.voice {
  background-image: url("../img/voice/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 27px;
  padding-bottom: 40px;
}
.voice__title {
  display: block;
  width: 195px;
  height: auto;
  margin: 0 auto;
  position: relative;
  left: 2px;
}
.voice__title img {
  width: 100%;
  height: auto;
}
.voice__slider {
  margin-top: 18px;
  position: relative;
  max-width: 100%;
  z-index: 1;
}
.voice__slider .swiper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.voice__slider .swiper-wrapper {
  display: flex;
  align-items: center;
}
.voice__slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.voice__slider .voice__card {
  display: block;
  width: 218px;
  padding: 20px 15px 10px 15px;
  border-radius: 10px;
  background: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.voice__slider .voice__card img {
  width: 177px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.voice__slider .voice__card p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  margin-top: 21px;
  line-height: 1.5;
}
.voice__slider .voice__card.item1 {
  background-image: url("../img/voice/item1-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .voice__card.item2 {
  background-image: url("../img/voice/item2-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .voice__card.item3 {
  background-image: url("../img/voice/item3-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .voice__card.item3 img {
  width: 141px;
}
.voice__slider .voice__card.item4 {
  background-image: url("../img/voice/item1-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .voice__card.item4 img {
  width: 174px;
}
.voice__slider .voice__card.item5 {
  background-image: url("../img/voice/item2-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .voice__card.item5 img {
  width: 141px;
}
.voice__slider .voice__card.item6 {
  background-image: url("../img/voice/item3-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__slider .swiper-button-prev,
.voice__slider .swiper-button-next {
  width: 31px;
  height: 31px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-image: url("../img/example/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
}
.voice__slider .swiper-button-prev::after,
.voice__slider .swiper-button-next::after {
  display: none;
}
.voice__slider .swiper-button-prev:hover,
.voice__slider .swiper-button-next:hover {
  opacity: 0.8;
}
.voice__slider .swiper-button-prev {
  left: 32px;
  transform: translateY(-50%) scaleX(-1);
}
.voice__slider .swiper-button-next {
  right: 32px;
}
.voice__more {
  display: block;
  width: 167px;
  margin: 29px auto 0;
  padding: 5px 28px;
  border-radius: 20px;
  background-color: #fdfdfd;
  color: #696158;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.voice__more img {
  width: 13px;
  height: auto;
  left: 4px;
  bottom: 8px;
  position: relative;
}
.voice__more:hover {
  opacity: 0.8;
}

.flow {
  background-image: url("../img/flow/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 40px;
}
.flow__title {
  display: block;
  width: 249px;
  height: auto;
  margin: 0 auto;
  position: relative;
  left: 2px;
}
.flow__title img {
  width: 100%;
  height: auto;
}
.flow__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 85px;
  margin-top: 26px;
}
.flow__content--item {
  position: relative;
  width: 273px;
  background: #fdfdfd;
  padding: 15px 17px;
}
.flow__content--item.item1:after {
  content: "";
  background-image: url("../img/flow/item1-decoration.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 34px;
  position: absolute;
  bottom: -19px;
  right: -23px;
}
.flow__content--item.item2:after {
  content: "";
  background-image: url("../img/flow/item2-decoration.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 37px;
  position: absolute;
  bottom: -17px;
  left: -20px;
}
.flow__content--item.item3:after {
  content: "";
  background-image: url("../img/flow/item3-decoration.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 25px;
  position: absolute;
  bottom: -13px;
  right: -13px;
}
.flow__content--item--step {
  width: 59px;
  height: auto;
  position: absolute;
  top: -6px;
  left: -2px;
}
.flow__content--item--content--title {
  margin-left: 52px;
}
.flow__content--item--content--title.item1 img {
  width: 188px;
  height: auto;
}
.flow__content--item--content--title.item2 img {
  width: 184px;
  height: auto;
}
.flow__content--item--content--title.item3 img {
  display: block;
  margin: 0 auto;
  width: 64px;
  height: auto;
}
.flow__content--item--content--main {
  width: calc(100% - 59px);
  margin-top: 6px;
  margin-left: 57px;
  height: auto;
}
.flow__content--item--content--main img {
  width: 100%;
  height: auto;
}
.flow__content--item--content--text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  margin-top: 14px;
  line-height: 1.35;
}
.flow__manga-content {
  width: 100%;
  margin-top: 30px;
  padding: 0 20px;
}
.flow__manga-content img {
  width: 100%;
  height: auto;
}
.flow__button {
  display: block;
  width: 270px;
  margin: 34px auto 0;
  padding: 14px 29px;
  border-radius: 35px;
  background-color: #06c755;
  color: #ffffff;
  box-shadow: 0 3px 1px 0 #06b34d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.flow__button img {
  width: 13px;
  height: auto;
  left: 4px;
  bottom: 7px;
  position: relative;
}
.flow__button:hover {
  opacity: 0.8;
}

.qa {
  background-image: url("../img/qa/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 40px;
}
.qa__title {
  display: block;
  width: 222px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.qa__title img {
  width: 100%;
  height: auto;
}
.qa__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 20px;
}
.qa__content--item {
  width: 342px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.27;
}
.qa__content--item.is-open .qa__content--item--answer {
  display: block;
}
.qa__content--item--question {
  position: relative;
  background: #ffe5ec;
  padding: 10px 49px;
  font-size: 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}
.qa__content--item--question[aria-expanded=true] {
  border-radius: 5px 5px 0 0;
}
.qa__content--item--question::after {
  content: "+";
  color: #141414;
  font-size: 2.2rem;
  line-height: 1;
  position: absolute;
  right: 39px;
  top: 50%;
  transform: translateY(-50%);
}
.qa__content--item--question[aria-expanded=true]::after {
  content: "";
  background-image: url("../img/qa/line.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 39px;
  top: 53%;
  transform: translateY(-50%);
}
.qa__content--item--question::before {
  content: "Q";
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #f58abd;
  font-size: 1.8rem;
  width: 13px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.qa__content--item--question:focus-visible {
  outline: 2px solid #f58abd;
  outline-offset: 2px;
}
.qa__content--item--answer {
  font-size: 1.4rem;
  background-color: #fdfdfd;
  padding: 10px 0 10px 49px;
  border-radius: 0 0 5px 5px;
  position: relative;
  display: none;
}
.qa__content--item--answer::before {
  content: "A";
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #80ddd7;
  font-size: 1.8rem;
  width: 13px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.qa__button {
  display: block;
  width: 270px;
  margin: 27px auto 0;
  padding: 14px 0px 14px 42px;
  border-radius: 35px;
  background-color: #06c755;
  color: #ffffff;
  box-shadow: 0 3px 1px 0 #06b34d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.qa__button img {
  width: 13px;
  height: auto;
  left: 9px;
  bottom: 7px;
  position: relative;
}
.qa__button:hover {
  opacity: 0.8;
}

.cta {
  background-image: url("../img/cta/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 46px;
}
.cta__title {
  display: block;
  width: 296px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.cta__title img {
  width: 100%;
  height: auto;
}
.cta__banner {
  width: 337px;
  position: relative;
  left: 4px;
  margin: 0 auto;
  margin-top: 20px;
}
.cta__banner:hover {
  opacity: 0.8;
}
.cta__banner img {
  width: 100%;
  height: auto;
}

.nav {
  background-image: url("../img/nav/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 46px;
  position: relative;
}
.nav__title {
  display: block;
  width: 134px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.nav__title img {
  width: 100%;
  height: auto;
}
.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.nav__list--item {
  width: 66px;
  height: 66px;
}
.nav__list--item img {
  width: 100%;
  height: auto;
}
.nav__list--item:hover {
  opacity: 0.8;
}
.nav__link-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 265px;
  margin: 30px auto 0;
}
.nav__link-list--item a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  color: #141414;
  position: relative;
  padding-left: 29px;
}
.nav__link-list--item a:hover {
  opacity: 0.8;
}
.nav__link-list--item a::before {
  content: "";
  background-image: url("../img/nav/icon.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav__more {
  display: block;
  width: 206px;
  margin: 25px auto 0;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: #fdfdfd;
  color: #696158;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.nav__more img {
  width: 13px;
  height: auto;
  left: 2px;
  bottom: 7px;
  position: relative;
}
.nav__more:hover {
  opacity: 0.8;
}

.footer {
  background-color: #303030;
  padding-top: 14px;
  padding-bottom: 8px;
  margin: 0 auto 27vw;
  position: relative;
}
@media (min-width: 768px) {
  .footer {
    max-width: 390px;
    margin: 0 auto 107px;
  }
}
.footer::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 1;
  background-color: #fdfdfd;
}
.footer__content {
  margin: 0 auto;
  width: 280px;
}
.footer__content p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  color: #fdfdfd;
  font-weight: 500;
}
.footer__content p a {
  color: #fdfdfd;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}
.footer__content--text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  color: #fdfdfd;
  font-weight: 500;
  margin-top: 11px;
  text-align: center;
  display: block;
}
.footer__copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8rem;
  color: #fdfdfd;
  font-weight: 500;
  margin-top: 19px;
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
