@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700;900&display=swap");
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  word-break: break-word;
  padding: 0;
  margin: 0;
}

.clear {
  clear: both;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

a:hover {
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
a {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

img {
  max-width: 100%;
  border: none;
  height: auto;
}

main {
  display: block;
}

.height100 {
  height: 100%;
}

.image-fit {
  display: block;
  overflow: hidden;
}
.image-fit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  line-height: 100%;
}

.list-inline {
  letter-spacing: -0.3em;
}
.list-inline .item-inline {
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
}

.inline-middle .item-inline {
  vertical-align: middle;
}

.relative-section {
  position: relative;
}

.section-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.font900 {
  font-weight: 900;
}

.font800 {
  font-weight: 800;
}

.font700 {
  font-weight: 700;
}

.font600 {
  font-weight: 600;
}

.font500 {
  font-weight: 500;
}

.font400 {
  font-weight: 400;
}

.font300 {
  font-weight: 300;
}

.animated-delay2 {
  -webkit-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animated-delay3 {
  -webkit-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animated-delay4 {
  -webkit-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.animated-delay5 {
  -webkit-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.animated-delay6 {
  -webkit-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.list-flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.flex-end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.flex-three .item-flex {
  width: 33.33%;
}

.flex-two .item-flex {
  width: 50%;
}

.flex-middle {
  align-items: center;
  -webkit-align-items: center;
}

:focus {
  outline: none !important;
}

.toogle-menu {
  border: 0 none;
  display: none;
  height: 23px;
  width: 28px;
  z-index: 999;
  cursor: pointer;
  outline: 0;
  float: right;
  background: none;
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 0;
}
.toogle-menu span {
  font-size: 0;
  height: 3px;
  width: 100%;
  background: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.toogle-menu span::after, .toogle-menu span::before {
  font-size: 0;
  height: 3px;
  width: 100%;
  background: #000;
  position: absolute;
  left: 0;
  content: "";
}
.toogle-menu span::after {
  transform: translateY(310%);
}
.toogle-menu span::before {
  transform: translateY(-310%);
}
.toogle-menu.exit span {
  background: transparent;
}
.toogle-menu.exit span::before {
  transform: translateY(0px) rotate(45deg);
}
.toogle-menu.exit span::after {
  transform: translateY(0px) rotate(-45deg);
}

.on-sp {
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.translate-animation {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  opacity: 1;
}

.animated {
  opacity: 0;
  transition: all 0.8s ease-in-out 0s;
  -webkit-transition: all 0.8s ease-in-out 0s;
}
.animated.fade-in-up {
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
}
.animated.fade-in-up.run-animated {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.animated.fade-in-right {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
}
.animated.fade-in-right.run-animated {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.animated.fade-in-left {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
}
.animated.fade-in-left.run-animated {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.animated.zoom-in {
  transition: all 0.8s ease-in-out 0s;
  -webkit-transition: all 0.8s ease-in-out 0s;
  opacity: 0;
  transform: scale(0.7, 0.7) translate(0%, 0%);
  -webkit-transform: scale(0.7, 0.7) translate(0%, 0%);
}
.animated.zoom-in.run-animated {
  opacity: 1;
  transform: scale(1, 1) translate(0%, 0%);
  -webkit-transform: scale(1, 1) translate(0%, 0%);
}
.animated.animated-delay2 {
  transition: all 0.8s ease-in-out 0.4s;
  -webkit-transition: all 0.8s ease-in-out 0.4s;
}
.animated.animated-delay3 {
  transition: all 0.8s ease-in-out 0.8s;
  -webkit-transition: all 0.8s ease-in-out 0.8s;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 16px;
  background-color: #fff;
  z-index: 111;
  top: 0;
}
.header__logo {
  width: 120px;
  flex-shrink: 0;
  line-height: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-emishia img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-emishia .container {
  max-width: 750px;
  margin: 0 auto;
}
.lp-emishia .ed-hero {
  overflow: hidden;
  background: #111d27;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.lp-emishia .ed-hero__visual {
  position: relative;
  height: min(80vw, 600px);
  background-image: linear-gradient(90deg, rgba(9, 15, 20, 0.2) 0%, rgba(9, 15, 20, 0) 58%), url("../images/section1.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.lp-emishia .ed-hero__content {
  position: relative;
  z-index: 1;
  width: 64%;
  padding: 6.2% 0 16% 4.4%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.lp-emishia .ed-hero__logo {
  width: 56%;
  max-width: 190px;
  margin-bottom: 12%;
}
.lp-emishia .ed-hero__lead {
  display: block;
  width: fit-content;
  padding-bottom: 3.6%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.lp-emishia .ed-hero__title {
  display: block;
  margin-top: 13%;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.06em;
}
.lp-emishia .ed-hero__title span {
  display: block;
  white-space: nowrap;
}
.lp-emishia .ed-hero__price {
  position: relative;
  margin-top: -1px;
  padding: 2.5% 0 2.6%;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #9b773c 0%, #c6a36a 25%, #a37b3d 51%, #d7bd80 76%, #8f6a32 100%);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.45);
  text-shadow: 0 2px 5px rgba(45, 33, 10, 0.65);
}
.lp-emishia .ed-hero__price-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.lp-emishia .ed-hero__price-catch::before, .lp-emishia .ed-hero__price-catch::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
}
.lp-emishia .ed-hero__price-main {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: 1%;
  margin-bottom: 12px;
  line-height: 1;
  white-space: nowrap;
}
.lp-emishia .ed-hero__price-label {
  margin-right: 1%;
  font-size: clamp(30px, 7.7vw, 72px);
  font-weight: 700;
}
.lp-emishia .ed-hero__price-amount {
  font-size: clamp(54px, 13.9vw, 132px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.lp-emishia .ed-hero__price-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.lp-emishia .ed-hero__price-tax {
  font-size: clamp(13px, 3vw, 28px);
  font-weight: 700;
}
.lp-emishia .ed-hero__price-yen {
  font-size: clamp(30px, 7.4vw, 70px);
  font-weight: 700;
}
.lp-emishia .ed-hero__price-note {
  margin-top: 1.2%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lp-emishia .ed-hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2%;
  padding: 5.4% 4.1% 9.2%;
  margin: 0;
  background: linear-gradient(180deg, #101d29 0%, #122131 100%);
  font-family: "Noto Serif JP", serif;
}
.lp-emishia .ed-hero__point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 110px;
  height: 110px;
  min-height: 0;
  padding: 5% 3%;
  text-align: center;
  color: #1b2230;
  background: #fff;
  box-shadow: 0 0 3.8px #1c2532;
}
.lp-emishia .ed-hero__point p {
  font-size: clamp(19px, 5.8vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.lp-emishia .ed-hero__point small {
  display: block;
  margin-top: 5%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10px, 1.6vw, 15px);
  font-weight: 500;
  line-height: 1.4;
}
.lp-emishia .ed-hero__point-num {
  font-size: 1.75em;
  line-height: 0.9;
}
.lp-emishia .ed-hero__point-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.lp-emishia .ed-hero__point-duration-line {
  display: flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
}
.lp-emishia .ed-hero__point-duration-num {
  font-size: 24.622px;
  font-weight: 500;
  line-height: 1;
}
.lp-emishia .ed-hero__point-duration-unit {
  font-size: 16.481px;
  font-weight: 700;
  line-height: 1;
}
.lp-emishia .ed-hero__point-duration-painless {
  position: relative;
  display: inline-block;
  padding-top: 8px;
  font-size: 19.569px;
  line-height: 1;
}
.lp-emishia .ed-hero__point-duration-painless::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 76px;
  height: 4px;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, currentColor 0.904px, transparent 0.904px);
  background-size: 19px 4px;
  background-repeat: repeat-x;
}
.lp-emishia .ed-hero__point-effect {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lp-emishia .ed-hero__point-effect-text {
  font-size: 20px;
  line-height: 1;
}
.lp-emishia .ed-hero__point-effect-particle {
  font-size: 16px;
}
.lp-emishia .ed-hero__point-effect-num {
  font-size: 30px;
  line-height: 1;
}
.lp-emishia .ed-hero__point-effect-note {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 8px;
  white-space: nowrap;
}
.lp-emishia .ed-hero__point-record {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lp-emishia .ed-hero__point-record-label {
  font-size: 12px;
  line-height: 1.3;
}
.lp-emishia .ed-hero__point-record-num {
  font-size: 32px;
  line-height: 1;
}
.lp-emishia .ed-hero__point-record-unit {
  font-size: 20px;
  line-height: 1;
}
.lp-emishia .ed-hero__point-record-note {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 8px;
  white-space: nowrap;
}
.lp-emishia .ed-hero__point-small {
  display: block;
  font-size: 0.56em;
  line-height: 1.28;
}
@media screen and (min-width: 768px) {
  .lp-emishia .ed-hero__point p {
    font-size: 20px;
  }
  .lp-emishia .ed-hero__point small {
    font-size: 8px;
  }
}
.lp-emishia .ed-trial {
  position: relative;
  height: 667px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image: url("../images/section7-1.png"), url("../images/section7.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center center;
  background-size: 64% auto, 100% 100%;
  font-family: "Noto Serif JP", serif;
}
.lp-emishia .ed-trial__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
}
.lp-emishia .ed-trial__heading {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 272px;
  height: 65px;
  transform: translateX(-50%);
  color: #eecd98;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0;
  text-shadow: none;
}
.lp-emishia .ed-trial__heading::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #eecd98;
  box-shadow: 27px 0 0 #eecd98, 75px 0 0 #eecd98, 104px 0 0 #eecd98;
}
.lp-emishia .ed-trial__heading-top {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 0;
}
.lp-emishia .ed-trial__heading-comma {
  font-size: 16px;
}
.lp-emishia .ed-trial__heading-main {
  position: absolute;
  top: 29px;
  left: 50%;
  display: block;
  width: max-content;
  margin-top: 0;
  padding-top: 0;
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 1.8;
}
.lp-emishia .ed-trial__heading-em {
  display: inline-block;
  font-size: 28px;
  line-height: 1.8;
}
.lp-emishia .ed-trial__standard-price {
  display: none;
  margin-top: min(5.2vw, 39px);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.lp-emishia .ed-trial__standard-main {
  display: inline-block;
  padding: 0 min(2vw, 15px) min(0.8vw, 6px);
  border-bottom: min(0.9vw, 7px) solid rgba(180, 161, 116, 0.95);
  font-size: clamp(28px, 6.1vw, 46px);
  line-height: 1;
}
.lp-emishia .ed-trial__standard-amount {
  font-size: 48px;
  letter-spacing: 0.04em;
}
.lp-emishia .ed-trial__standard-comma {
  font-size: 34px;
}
.lp-emishia .ed-trial__standard-yen {
  font-size: 26px;
}
.lp-emishia .ed-trial__standard-per {
  font-size: 20px;
}
.lp-emishia .ed-trial__standard-note {
  margin-top: min(1.7vw, 13px);
  font-size: 14px;
  line-height: 1;
}
.lp-emishia .ed-trial__card {
  position: absolute;
  top: 139px;
  left: 16px;
  right: 16px;
  overflow: hidden;
  height: 162px;
  margin-top: 0;
  border: 2px solid #997a49;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}
.lp-emishia .ed-trial__card-head {
  position: relative;
  height: 67px;
  padding: 10px 0 0;
  color: #fff;
  background: linear-gradient(123deg, #997a49 12.185%, #d0b180 86.34%);
  text-shadow: 0 2px 5px rgba(70, 49, 16, 0.55);
}
.lp-emishia .ed-trial__card-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-inline: -2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.lp-emishia .ed-trial__card-catch::before, .lp-emishia .ed-trial__card-catch::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}
.lp-emishia .ed-trial__card-title {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
.lp-emishia .ed-trial__card-body {
  position: relative;
  height: 95px;
  padding: 0 15px;
  color: #99753c;
  background: #fff;
}
.lp-emishia .ed-trial__card-price {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 241px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(48px, 10.5vw, 79px);
}
.lp-emishia .ed-trial__card-price-amount {
  font-size: 66px;
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0.03em;
}
.lp-emishia .ed-trial__card-price-comma {
  font-size: 48px;
}
.lp-emishia .ed-trial__card-price-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2px;
  font-size: clamp(48px, 10.5vw, 79px);
  line-height: 1;
}
.lp-emishia .ed-trial__card-price-unit small {
  font-size: 13px;
}
.lp-emishia .ed-trial__card-price-unit span {
  font-size: 37px;
}
.lp-emishia .ed-trial__card-note {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #99753c;
  letter-spacing: 0.05em;
}
.lp-emishia .ed-trial__price-table {
  position: absolute;
  top: 325px;
  left: 50%;
  transform: translateX(-50%);
  width: 298px;
  margin: 0;
  color: #fff;
  border: 0.9px solid #fff;
  border-radius: 4px;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
}
.lp-emishia .ed-trial__price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60.3px;
  padding: 12px;
  box-sizing: border-box;
}
.lp-emishia .ed-trial__price-row:not(:first-child) {
  height: 59.4px;
  border-top: 0.9px solid #fff;
}
.lp-emishia .ed-trial__price-label {
  position: relative;
  flex: 0 0 44.1px;
  width: 44.1px;
  height: 20.7px;
  margin: 0;
  padding-right: 0;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.lp-emishia .ed-trial__price-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 0.9px;
  height: 100%;
  background: #fff;
}
.lp-emishia .ed-trial__price-label-prefix, .lp-emishia .ed-trial__price-label-unit {
  position: absolute;
  top: 4.5px;
  font-size: 14.079px;
}
.lp-emishia .ed-trial__price-label-prefix {
  left: calc(50% - 22.05px);
}
.lp-emishia .ed-trial__price-label-unit {
  left: 50%;
}
.lp-emishia .ed-trial__price-label-num {
  position: absolute;
  top: -3.6px;
  left: calc(50% - 14.4px);
  font-size: 23.858px;
}
.lp-emishia .ed-trial__price-label--six .ed-trial__price-label-num {
  left: calc(50% - 6.75px);
}
.lp-emishia .ed-trial__price-label--six .ed-trial__price-label-unit {
  left: calc(50% + 7.65px);
}
.lp-emishia .ed-trial__price-value {
  position: relative;
  flex: 0 0 206.1px;
  height: 35.1px;
  margin: 0;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}
.lp-emishia .ed-trial__price-value::after {
  content: "";
  position: absolute;
  top: 30.6px;
  left: 50%;
  width: 162px;
  height: 4.5px;
  transform: translateX(-50%);
  background: rgba(238, 205, 152, 0.4);
}
.lp-emishia .ed-trial__price-value--six::after {
  width: 206.1px;
}
.lp-emishia .ed-trial__price-value--six .ed-trial__price-amount {
  left: calc(50% - 98.75px);
  letter-spacing: -0.035em;
}
.lp-emishia .ed-trial__price-value--six .ed-trial__price-comma {
  letter-spacing: -0.09em;
}
.lp-emishia .ed-trial__price-value--six .ed-trial__price-unit {
  left: calc(50% + 22.05px);
}
.lp-emishia .ed-trial__price-value--six .ed-trial__price-per {
  position: absolute;
  top: 14.35px;
  left: calc(50% + 61.87px);
  margin-left: 0;
}
.lp-emishia .ed-trial__price-amount {
  position: absolute;
  top: -7.61px;
  left: calc(50% - 76.25px);
  z-index: 1;
  font-size: 42.434px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}
.lp-emishia .ed-trial__price-comma {
  font-size: 30.807px;
  letter-spacing: -0.06em;
}
.lp-emishia .ed-trial__price-unit {
  position: absolute;
  top: 0;
  left: calc(50% + 44.55px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.lp-emishia .ed-trial__price-unit small {
  font-size: 9.103px;
}
.lp-emishia .ed-trial__price-unit span {
  font-size: 23.858px;
}
.lp-emishia .ed-trial__price-per {
  position: absolute;
  top: 14.35px;
  left: calc(50% + 61.87px);
  z-index: 1;
  font-size: 17.304px;
  line-height: 1;
}
.lp-emishia .ed-trial__message {
  position: absolute;
  top: 475px;
  left: 50%;
  width: 272px;
  margin-top: 0;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.lp-emishia .ed-trial__message span {
  display: block;
}
.lp-emishia .ed-trial__recommend {
  position: absolute;
  top: 542px;
  left: 50%;
  width: 320px;
  margin-top: 0;
  transform: translateX(-50%);
  color: #e7c28c;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.lp-emishia__cta {
  position: relative;
}
.lp-emishia .link {
  display: block;
  position: absolute;
  top: 528px;
  left: 68px;
  width: 136.4285714286%;
}
.lp-emishia .link img {
  width: auto;
}
.lp-emishia__qa {
  background-color: #ecf1f5;
  padding-bottom: 50px;
}
.lp-emishia__qa .qa-list {
  padding: 0 33px;
  margin-top: 40px;
}
.lp-emishia__qa .qa-list__item {
  border-radius: 10px;
  border: 2px solid #00255a;
  overflow: hidden;
}
.lp-emishia__qa .qa-list__item:not(:first-child) {
  margin-top: 35px;
}
.lp-emishia__qa .qa-list .item-title {
  padding: 48px 30px;
  background-color: #00255a;
  color: #fff;
  display: flex;
  align-items: center;
}
.lp-emishia__qa .qa-list .item-title:hover {
  cursor: pointer;
}
.lp-emishia__qa .qa-list .item-title .title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  flex: 1;
  letter-spacing: 1px;
  padding-right: 20px;
}
.lp-emishia__qa .qa-list .item-title .icon {
  font-size: 34px;
  display: inline-block;
  flex-shrink: 0;
  max-width: 30px;
}
.lp-emishia__qa .qa-list .item-title .icon img {
  width: 100%;
}
.lp-emishia__qa .qa-list .item-bottom {
  padding: 40px 30px;
  font-size: 28px;
  line-height: 2;
  color: #00255a;
  font-weight: 400;
  letter-spacing: 2px;
  background-color: #fff;
  display: none;
}
.lp-emishia .link-fixed {
  width: 100%;
  position: fixed;
  max-width: 764px;
  bottom: 0;
  left: 50%;
  z-index: 111111;
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.lp-emishia .link-fixed.active {
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
}
.lp-emishia .link-fixed .link {
  width: 100%;
  position: unset;
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
}
.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  z-index: 9999;
  height: 98px;
  padding: 8px 30px 12px;
  background: rgba(225, 225, 225, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.cta-fixed__counter {
  margin: 0 0 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #1C2532;
  letter-spacing: 0.84px;
}
.cta-fixed__counter-num {
  display: inline-block;
  margin: 0 6px;
  font-size: 18px;
  color: #9b773c;
  letter-spacing: 1.26px;
}
.cta-fixed__button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 315px;
  height: 56px;
  margin: 0 auto;
  text-decoration: none;
  animation-name: scale3dImg;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.cta-fixed__button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}
.cta-fixed__button-arrow {
  position: absolute;
  top: 45%;
  right: 14px;
  width: 12px;
  height: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-fixed__button-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17.736px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.cta-fixed__button-text p {
  margin: 0;
  line-height: 1;
}
.cta-fixed__button-text span {
  line-height: 1;
  vertical-align: baseline;
}
.cta-fixed__button-text-free {
  font-size: 23.026px;
}

@keyframes scale3dImg {
  0% {
    transform: scale3d(1, 1, 1);
  }
  5% {
    transform: scale3d(0.96, 0.94, 0.95);
  }
  10% {
    transform: scale3d(0.93, 0.96, 0.94);
  }
  26% {
    transform: scale3d(1.04, 1.07, 1.08);
  }
  80% {
    transform: scale3d(1.07, 1.09, 1.1);
  }
  100% {
    transform: scale3d(1.09, 1.1, 1.09);
  }
}
.p-price {
  background: #faf4ea;
  padding: 41px 19px 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #4c4c4c;
}
.p-price__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -6px 16px;
}
.p-price__heading-deco {
  flex-shrink: 0;
  position: relative;
  width: 12.5px;
  height: 33px;
  font-size: 0;
}
.p-price__heading-deco::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 36px;
  background: #1C2532;
}
.p-price__heading-deco--left::before {
  transform: translate(-50%, -50%) rotate(-20deg);
}
.p-price__heading-deco--right::before {
  transform: translate(-50%, -50%) rotate(20deg);
}
.p-price__heading-text {
  flex: 0 1 auto;
  color: #1C2532;
  text-align: center;
}
.p-price__heading-sub, .p-price__heading-main {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}
.p-price__heading-main-em {
  font-size: 28px;
}
.p-price__card {
  position: relative;
  width: 100%;
  margin: 28px auto 0;
  padding: 28px 16px 16px;
  background: #fffcfa;
  border: 1px solid #1C2532;
  border-radius: 8px;
  box-sizing: border-box;
}
.p-price__card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0 14px;
  background: #1C2532;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1.12px;
  border-radius: 5px;
}
.p-price__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-price__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed #b0a89a;
}
.p-price__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.p-price__row-term {
  margin: 0;
  color: #4c4c4c;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.p-price__row-num {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -1px;
}
.p-price__row-desc {
  margin: 0;
  display: flex;
  align-items: center;
  color: #a18a74;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.p-price__row-monthly {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.84px;
}
.p-price__row-amount {
  font-size: 24px;
  line-height: 1;
}
.p-price__row-yen {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.12px;
}
.p-price__row-yen small {
  font-size: 5px;
  line-height: 1;
  margin: 0;
}
.p-price__compare-title {
  margin: 36px 0 14px;
  color: #1C2532;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.p-price__compare {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 14px 0;
}
.p-price__compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 60px 96px 1fr;
  background: #fffcfa;
  border: 1.118px solid #1C2532;
  border-radius: 4.471px;
}
.p-price__compare-grid::before {
  content: "";
  position: absolute;
  top: -14px;
  bottom: -14px;
  right: -1.118px;
  width: calc(100% - 156px);
  background: #fffcfa;
  border: 2.235px solid #a18a74;
  border-radius: 8.941px;
  pointer-events: none;
  z-index: 0;
}
.p-price__compare-cell {
  position: relative;
  z-index: 1;
  padding: 11px 4px;
  text-align: center;
  color: #304754;
  font-weight: 700;
  font-size: 17.882px;
  letter-spacing: 0.5365px;
  line-height: 1.2;
  border-bottom: 1.118px solid #1C2532;
  box-sizing: border-box;
}
.p-price__compare-cell--label {
  font-weight: 500;
  font-size: 13.412px;
  letter-spacing: 0.4024px;
  line-height: 1.5;
  border-right: 1.118px solid #1C2532;
}
.p-price__compare-cell--other {
  border-right: 1.118px solid #1C2532;
}
.p-price__compare-cell--other .big {
  font-size: 15.647px;
}
.p-price__compare-cell--us {
  color: #a18a74;
  font-size: 33.529px;
  letter-spacing: 1.0059px;
  border-bottom: 0;
}
.p-price__compare-grid > .p-price__compare-cell:nth-last-child(-n+3) {
  border-bottom: 0;
}
.p-price__compare-cell--us-head {
  padding: 14px 0;
}
.p-price__compare-logo {
  width: 84px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.p-price__compare-king {
  position: absolute;
  top: 4px;
  right: 12px;
  font-size: 22px;
  transform: rotate(12deg);
  line-height: 1;
}
.p-price__cta {
  margin: 36px -19px 0;
  padding: 24px 16px;
  background: linear-gradient(258.141deg, #378bbc 0%, #1C2532 100%);
  text-align: center;
  color: #fff;
}
.p-price__cta-text {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-weight: 900;
  font-size: 16.49px;
  line-height: 1.5;
}
.p-price__cta-num {
  font-size: 20.49px;
}
.p-price__note {
  margin: 0 -19px;
  padding: 8px 16px 12px;
  text-align: center;
  color: #4c4c4c;
  font-size: 10px;
  line-height: 1.5;
  background: #faf4ea;
}

.cta_top.faq {
  background: #f8f8f8;
  padding: 40px 16px 64px;
  font-family: "Noto Sans JP", sans-serif;
}
.cta_top.faq .faq__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 194px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.cta_top.faq .faq__heading::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 194px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(153, 122, 73, 0) 0%, #997a49 50%, rgba(153, 122, 73, 0) 100%);
}
.cta_top.faq .faq__heading-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.6;
  color: #997a49;
}
.cta_top.faq .menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 343px;
}
.cta_top.faq .menu__item {
  list-style: none;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #a18a74;
}
.cta_top.faq .menu__item__link {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  background: #a18a74;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  outline: none;
}
.cta_top.faq .menu__item__link:focus, .cta_top.faq .menu__item__link:focus-visible, .cta_top.faq .menu__item__link:active, .cta_top.faq .menu__item__link:visited, .cta_top.faq .menu__item__link:hover {
  outline: none;
  border: 0;
  color: #fff;
  text-decoration: none;
}
.cta_top.faq .faq__q-letter {
  flex: 0 0 auto;
  width: 16px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
}
.cta_top.faq .faq__q-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.cta_top.faq .faq__icon {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta_top.faq .faq__icon::before {
  content: "＋";
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.cta_top.faq .menu__item__link.on .faq__icon::before {
  content: "−";
}
.cta_top.faq .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 0 0 4px 4px;
  display: none;
}
.cta_top.faq .submenu__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  list-style: none;
}
.cta_top.faq .faq__a-letter {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  color: #1c2532;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  padding-bottom: 2px;
}
.cta_top.faq .faq__a-text {
  flex: 1;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #1c2532;
  text-align: left;
}
.cta_top.faq .faq__a-text p {
  margin: 0;
}
.cta_top.faq .faq__a-text p + p {
  margin-top: 8px;
}
.cta_top.faq .faq__a-note {
  font-size: 10px;
}

.p-access {
  background: #faf4ea;
  padding: 33px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #1C2532;
}
.p-access .logo {
  margin: 0 auto 1.5em;
  text-align: center;
  max-width: 300px;
}
.p-access dl.table {
  display: table;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #1C2532;
  margin: 0 0 6px;
}
.p-access dl.table dt {
  width: 35%;
  background: #1C2532;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.p-access dl.table dd,
.p-access dl.table dt {
  display: table-cell;
  padding: 1em 16px;
  vertical-align: middle;
}
.p-access dl.table dd {
  width: 65%;
  color: #1C2532;
  text-align: left;
  word-break: break-all;
}
.p-access dl.table a {
  color: #1C2532;
  text-decoration: none;
}
.p-access dl.table a:hover {
  text-decoration: underline;
}
.p-access dl.table:first-child {
  border-top: 1px solid #1C2532;
}
.p-access iframe {
  width: 100%;
  height: 432px;
  margin: 34px auto 0;
  vertical-align: bottom;
}

#footer {
  background: #1C2532 !important;
  padding: 50px 33px 200px 33px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11.786px;
  line-height: 22.5px;
}

@media all and (max-width: 899px) {
  .lp-emishia .link {
    top: 58.667vw;
    left: 7.556vw;
  }
  .lp-emishia__qa {
    padding-bottom: 6vw;
  }
  .lp-emishia__qa .qa-list {
    padding: 0 3.667vw;
    margin-top: 4.444vw;
  }
  .lp-emishia__qa .qa-list__item:not(:first-child) {
    margin-top: 3.889vw;
  }
  .lp-emishia__qa .qa-list .item-title {
    padding: 5.333vw 3.333vw;
  }
  .lp-emishia__qa .qa-list .item-title .title {
    font-size: 3.778vw;
    padding-right: 2.222vw;
    letter-spacing: 0.111vw;
  }
  .lp-emishia__qa .qa-list .item-title .icon {
    max-width: 3.333vw;
  }
  .lp-emishia__qa .qa-list .item-bottom {
    padding: 4.444vw 3.333vw;
    font-size: 3.111vw;
    letter-spacing: 0.222vw;
  }
  .lp-emishia .link-fixed {
    max-width: 84.889vw;
  }
  .header {
    padding: 3.733vw 4.267vw;
  }
  .header__logo {
    width: 32vw;
  }
  .cta-fixed {
    height: 18.133vw;
    padding: 2.133vw 8vw 3.2vw;
  }
  .cta-fixed__counter {
    margin-bottom: 1.067vw;
    font-size: 3.2vw;
  }
  .cta-fixed__counter-num {
    margin: 0 1.6vw;
    font-size: 4.8vw;
  }
  .cta-fixed__button {
    max-width: 84vw;
    height: 14.933vw;
  }
  .cta-fixed__button-text {
    left: 50%;
    font-size: 4.729vw;
  }
  .cta-fixed__button-text-free {
    font-size: 6.14vw;
  }
  .cta-fixed__button-arrow {
    right: 3.733vw;
    width: 3.2vw;
    height: 5.333vw;
  }
  .p-price {
    padding: 10.933vw 5.067vw 0;
  }
  .p-price__heading {
    margin: 0 -1.6vw 4.267vw;
  }
  .p-price__heading-deco {
    width: 3.333vw;
    height: 8.8vw;
  }
  .p-price__heading-deco::before {
    width: 0.4vw;
    height: 9.6vw;
  }
  .p-price__heading-sub, .p-price__heading-main {
    font-size: 4.267vw;
  }
  .p-price__heading-main-em {
    font-size: 7.467vw;
  }
  .p-price__card {
    max-width: 89.867vw;
    margin-top: 7.467vw;
    padding: 7.467vw 4.267vw 4.267vw;
  }
  .p-price__card-badge {
    padding: 0 3.733vw;
    font-size: 4.267vw;
    letter-spacing: 0.299vw;
    border-radius: 1.333vw;
  }
  .p-price__list {
    gap: 2.133vw;
  }
  .p-price__row {
    padding-bottom: 2.133vw;
  }
  .p-price__row-term {
    font-size: 3.733vw;
  }
  .p-price__row-num {
    font-size: 5.333vw;
  }
  .p-price__row-monthly {
    font-size: 3.2vw;
  }
  .p-price__row-amount {
    font-size: 6.4vw;
  }
  .p-price__row-yen {
    font-size: 4.267vw;
  }
  .p-price__row-yen small {
    font-size: 1.333vw;
  }
  .p-price__compare-title {
    margin: 9.6vw 0 3.733vw;
    font-size: 4.267vw;
  }
  .p-price__compare {
    max-width: 91.2vw;
    padding: 3.733vw 0;
  }
  .p-price__compare-grid {
    grid-template-columns: 16vw 25.6vw 1fr;
  }
  .p-price__compare-grid::before {
    top: -3.733vw;
    bottom: -3.733vw;
    width: calc(100% - 41.6vw);
  }
  .p-price__compare-cell {
    padding: 2.933vw 1.067vw;
    font-size: 4.768vw;
  }
  .p-price__compare-cell--label {
    font-size: 3.576vw;
  }
  .p-price__compare-cell--other .big {
    font-size: 4.171vw;
  }
  .p-price__compare-cell--us {
    font-size: 8.941vw;
  }
  .p-price__compare-cell--us-head {
    padding: 3.733vw 0;
  }
  .p-price__compare-logo {
    width: 22.4vw;
  }
  .p-price__compare-king {
    top: 1.067vw;
    right: 3.2vw;
    font-size: 5.867vw;
  }
  .p-price__cta {
    margin: 9.6vw -5.067vw 0;
    padding: 6.4vw 3.067vw;
  }
  .p-price__cta-text {
    font-size: 4.397vw;
  }
  .p-price__cta-num {
    font-size: 5.464vw;
  }
  .p-price__note {
    margin: 0 -5.067vw;
    padding: 2.133vw 4.267vw 3.2vw;
    font-size: 2.667vw;
    text-align: left;
  }
  .cta_top.faq {
    padding: 10.667vw 4.267vw 17.067vw;
  }
  .cta_top.faq .faq__heading {
    gap: 4.267vw;
    width: 51.733vw;
    height: 12vw;
    margin-bottom: 8.533vw;
  }
  .cta_top.faq .faq__heading::after {
    width: 51.733vw;
  }
  .cta_top.faq .faq__heading-title {
    font-size: 7.467vw;
  }
  .cta_top.faq .menu {
    margin: 0 auto;
    max-width: 91.467vw;
  }
  .cta_top.faq .menu__item {
    border-radius: 1.067vw;
  }
  .cta_top.faq .menu__item__link {
    gap: 20px;
    padding: 2.667vw 4.267vw;
  }
  .cta_top.faq .faq__q-letter {
    width: 4.267vw;
    font-size: 4.8vw;
  }
  .cta_top.faq .faq__q-text {
    font-size: 4.267vw;
  }
  .cta_top.faq .faq__icon {
    width: 3.467vw;
    height: 3.467vw;
  }
  .cta_top.faq .faq__icon::before {
    font-size: 4.267vw;
  }
  .cta_top.faq .submenu__item {
    gap: 6.4vw;
    padding: 4.267vw;
  }
  .cta_top.faq .faq__a-letter {
    width: 4.267vw;
    font-size: 4.8vw;
    padding-bottom: 0.533vw;
  }
  .cta_top.faq .faq__a-text {
    font-size: 3.733vw;
    line-height: 1.8;
    text-align: left;
  }
  .cta_top.faq .faq__a-text p + p {
    margin-top: 2.133vw;
  }
  .cta_top.faq .faq__a-note {
    font-size: 2.667vw;
  }
  .p-access {
    padding: 8vw 7.467vw;
    font-size: 4vw;
  }
  .p-access dl.table {
    margin: 0 0 1.6vw;
  }
  .p-access dl.table dt {
    width: 30vw;
  }
  .p-access dl.table dd,
  .p-access dl.table dt {
    padding: 1em 4.267vw;
  }
  .p-access iframe {
    height: 115.43vw;
    margin-top: 9.067vw;
  }
  #footer {
    padding: 8vw 3.667vw 28vw;
    font-size: 3.143vw;
    line-height: 6vw;
  }
}

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