*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  font-size: 4.2666666667vw;
}
@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
body.fixed {
  height: 100%;
  overflow: hidden;
}

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

input,
textarea,
select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.7;
  color: inherit;
}

a,
button,
input[type=submit] {
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}

strong {
  font-weight: 400;
}

.is-sp {
  display: block !important;
}
@media (min-width: 992px) {
  .is-sp {
    display: none !important;
  }
}

.is-pc {
  display: none !important;
}
@media (min-width: 992px) {
  .is-pc {
    display: block !important;
  }
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
}
.btn--contact {
  display: block;
  color: #333333;
  border: 1px solid #000;
  border-radius: 5px;
  font-weight: 700;
  padding: 2.6666666667vw;
  background: #fff;
}
@media (min-width: 992px) {
  .btn--contact {
    padding: 10px;
  }
}
.btn--cta {
  background: #005224;
  border-radius: 5px;
  color: #fff !important;
  padding: 2.9333333333vw;
}
@media (min-width: 992px) {
  .btn--cta {
    padding: 11px;
  }
}

.main {
  flex-grow: 1;
  padding: 23.7333333333vw 0 22.4vw;
}
@media (min-width: 992px) {
  .main {
    padding: 148px 0 90px;
  }
}

.wrap {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.inner {
  width: 100%;
  margin: 0 auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media (min-width: 992px) {
  .inner {
    max-width: 1040px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header {
  width: 100%;
  z-index: 1;
  position: absolute;
}
.header__inner {
  position: relative;
  padding: 4vw 2.9333333333vw;
}
@media (min-width: 992px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
    padding: 17px 20px;
  }
}
.header__logo {
  position: absolute;
  top: 4.8vw;
  width: 23.4666666667vw;
}
@media (min-width: 992px) {
  .header__logo {
    position: relative;
    top: 2px;
    left: auto;
    width: 183px;
  }
}
.header__company {
  font-weight: 700;
  position: absolute;
  top: 3.2vw;
  left: 54%;
  transform: translate(-50%, 0);
}
@media (min-width: 992px) {
  .header__company {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 24px;
  }
}
.header__btn {
  display: none;
}
@media (min-width: 992px) {
  .header__btn {
    display: block;
    color: #333333;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    padding: 8px;
    max-width: 175px;
    white-space: nowrap;
  }
}

.toggle {
  display: block;
  position: absolute;
  top: 2.4vw;
  right: 4vw;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  border: 1px solid #000;
  z-index: 40;
  cursor: pointer;
}
@media (min-width: 992px) {
  .toggle {
    display: none;
  }
}
.toggle__line {
  position: absolute;
  top: 48%;
  left: 50%;
  display: block;
  width: 5.0666666667vw;
  height: 0.5333333333vw;
  background: #000;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.toggle__line--1 {
  transform: translate(-50%, -1.8666666667vw);
}
.toggle__line--2 {
  transform: translate(-50%, 0px);
}
.toggle__line--3 {
  transform: translate(-50%, 1.8666666667vw);
}
.toggle.open .toggle__line--1 {
  transform: translate(-50%, 0) rotate(-45deg);
}
.toggle.open .toggle__line--2 {
  opacity: 0;
}
.toggle.open .toggle__line--3 {
  transform: translate(-50%, 0) rotate(45deg);
}

.overlay {
  display: none;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.header__nav {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  overflow-y: auto;
  z-index: 30;
  padding: 9.6vw 0 16vw;
}
@media (min-width: 992px) {
  .header__nav__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.header__nav__item__link.btn--contact {
  max-width: 80vw;
  margin: 0 auto;
}

.footer {
  background: #000;
  width: 100%;
  color: #fff;
  margin-top: auto;
}
.footer__inner {
  padding-top: 18.6666666667vw;
  padding-bottom: 18.6666666667vw;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.footer__company {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: 700;
}
@media (min-width: 992px) {
  .footer__company {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.footer__address {
  font-size: 3.6vw;
}
@media (min-width: 992px) {
  .footer__address {
    font-size: 14px;
  }
}
.footer__btm {
  padding: 8vw 0;
  border-top: 1px solid #fff;
  font-size: 3.2vw;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__btm {
    padding: 20px 0;
    font-size: 12px;
  }
}
.footer__btm a {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 3.2vw;
}
@media (min-width: 992px) {
  .footer__btm a {
    margin-bottom: 12px;
  }
}

.footer__sns{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	margin-top: 15px;
}

.main--not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found__text {
  text-align: center;
}

.mv {
  background: url("../img/99salt/bg_mv_sp.jpg") no-repeat center/cover;
}
@media (min-width: 992px) {
  .mv {
    background: url("../img/99salt/bg_mv_pc.jpg") no-repeat center/cover;
  }
}
.mv__inner {
  display: flex;
  flex-direction: column;
  gap: 8.8vw 0;
  padding-right: 4.2666666667vw;
  padding-left: 4.2666666667vw;
}
@media (min-width: 992px) {
  .mv__inner {
    flex-direction: row;
    align-items: center;
    gap: 0 35px;
    max-width: 1240px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.mv__inner--pure {
  gap: 5.3333333333vw 0;
}
@media (min-width: 992px) {
  .mv__inner--pure {
    gap: 0 20px;
  }
}
@media (min-width: 992px) {
  .mv__description {
    max-width: 688px;
    width: 100%;
  }
}
.mv__text {
  margin-bottom: 2.6666666667vw;
  font-size: 3.4666666667vw;
  text-align: center;
}
@media (min-width: 992px) {
  .mv__text {
    margin-bottom: 16px;
    font-size: 21px;
  }
}
.mv__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.0666666667vw;
  margin-bottom: 4vw;
  font-size: 11.4666666667vw;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 992px) {
  .mv__title {
    gap: 0 1px;
    margin-bottom: 15px;
    font-size: 88px;
  }
}
.mv__title--pure {
  display: block;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 8vw;
  font-size: 11.2vw;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .mv__title--pure {
    font-size: 55px;
    margin-bottom: 40px;
    line-height: 1.8;
  }
}
@media (min-width: 1040px) {
  .mv__title--pure br.is-sp {
    display: block !important;
  }
}
@media (min-width: 1240px) {
  .mv__title--pure br.is-sp {
    display: none !important;
  }
}
.mv__title--pure small {
  font-size: 8.5333333333vw;
}
@media (min-width: 992px) {
  .mv__title--pure small {
    font-size: 40px;
  }
}
.mv__title__label {
  min-width: 16vw;
  max-width: 16vw;
}
@media (min-width: 992px) {
  .mv__title__label {
    min-width: 99px;
    max-width: 99px;
  }
}
.mv__title__main {
  white-space: nowrap;
}
.mv__title__main small {
  font-size: 9.0666666667vw;
}
@media (min-width: 992px) {
  .mv__title__main small {
    font-size: 69px;
  }
}
.mv__copy {
  position: relative;
  text-align: center;
}
.mv__copy--pure:before, .mv__copy--pure:after {
  display: none;
}
@media (min-width: 992px) {
  .mv__copy--pure {
    font-size: 18px;
  }
}
.mv__copy:before, .mv__copy:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 11.7333333333vw;
  height: 0.2666666667vw;
  background: #000;
}
@media (min-width: 992px) {
  .mv__copy:before, .mv__copy:after {
    width: 90px;
    height: 1px;
  }
}
.mv__copy:before {
  left: 0;
}
.mv__copy:after {
  right: 0;
}
.mv__copy span {
  display: inline-block;
  font-size: 4.8vw;
  line-height: 1.4;
  color: #606060;
  text-shadow: 2px 0 24px rgba(255, 255, 255, 0.25);
}
@media (min-width: 992px) {
  .mv__copy span {
    font-size: 37px;
  }
}
.mv__pure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.6666666667vw;
}
@media (min-width: 992px) {
  .mv__pure {
    margin-top: 10px;
    gap: 0 20px;
  }
}
.mv__pure__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36.2666666667vw;
  height: 40.8vw;
  background: url("../img/99salt/bg_drop.png") no-repeat center/contain;
  font-size: 3.4666666667vw;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .mv__pure__item {
    width: 136px;
    height: 153px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .mv__img {
    max-width: 553px;
    width: 100%;
    /*min-width: 553px;
    max-width: 553px;
    position: relative;
    right: -40px;*/
  }
}
.mv__img img {
  width: 100%;
}

.cta {
  padding: 10.6666666667vw 0;
}
@media (min-width: 992px) {
  .cta {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .cta__inner {
    max-width: 1040px;
  }
}
@media (min-width: 992px) {
  .cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
  }
}
@media (min-width: 992px) {
  .cta__box__img {
    max-width: 450px;
    width: 100%;
  }
}
.cta__box__img img {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cta__box__description {
    max-width: 467px;
    width: 100%;
  }
}
.cta__box__copy {
  font-size: 4.8vw;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 3.7333333333vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cta__box__copy {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.cta__box__title {
  margin-bottom: 2.6666666667vw;
  font-size: 6.4vw;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .cta__box__title {
    font-size: 32px;
    margin-bottom: 6px;
  }
}
.cta__box__title small {
  display: block;
  font-size: 4.8vw;
}
@media (min-width: 992px) {
  .cta__box__title small {
    font-size: 24px;
  }
}
.cta__box__content {
  width: max-content;
  border-bottom: 1px solid #333333;
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 992px) {
  .cta__box__content {
    margin-left: 10px;
    margin-bottom: 35px;
  }
}
.cta__box__discount {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  line-height: 1;
  margin-bottom: 6.4vw;
}
@media (min-width: 992px) {
  .cta__box__discount {
    margin-bottom: 26px;
  }
}
.cta__box__discount:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6.4vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.6vw 1.8666666667vw 1.6vw;
  border-color: transparent transparent #005224 transparent;
  transform: translate(-50%, 0) rotate(180deg);
}
@media (min-width: 992px) {
  .cta__box__discount:before {
    bottom: -24px;
    border-width: 0 6px 7px 6px;
  }
}
.cta__box__discount__rate {
  margin-right: 4vw;
  font-size: 8.5333333333vw;
  color: #005224;
  font-weight: 700;
}
@media (min-width: 992px) {
  .cta__box__discount__rate {
    margin-right: 18px;
    font-size: 32px;
  }
}
.cta__box__discount__rate small {
  font-size: 6.4vw;
}
@media (min-width: 992px) {
  .cta__box__discount__rate small {
    font-size: 24px;
  }
}
.cta__box__normal {
  font-size: 4.8vw;
  color: #005224;
  margin-right: 1.3333333333vw;
}
@media (min-width: 992px) {
  .cta__box__normal {
    font-size: 18px;
    margin-right: 7px;
  }
}
.cta__box__normal-price {
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .cta__box__normal-price {
    font-size: 14px;
  }
}
.cta__box__normal-price s {
  font-size: 6.4vw;
}
@media (min-width: 992px) {
  .cta__box__normal-price s {
    font-size: 24px;
  }
}
.cta__box__discount-price {
  margin-bottom: 4vw;
  font-size: 5.3333333333vw;
  text-align: center;
}
@media (min-width: 992px) {
  .cta__box__discount-price {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
.cta__box__discount-price strong {
  font-size: 9.6vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .cta__box__discount-price strong {
    font-size: 36px;
  }
}
.cta__box .btn {
  max-width: 80vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cta__box .btn {
    max-width: 300px;
  }
}
.cta__detail {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 8vw 0;
  margin-top: 10.6666666667vw;
}
@media (min-width: 992px) {
  .cta__detail {
    flex-direction: row;
    margin-top: 72px;
    gap: 0 63px;
  }
}
.cta__detail__description {
  max-width: 490px;
  width: 100%;
}
.cta__detail__title {
  letter-spacing: 0.1em;
  margin-bottom: 8vw;
  padding-bottom: 8vw;
  border-bottom: 1px solid #333333;
}
@media (min-width: 992px) {
  .cta__detail__title {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.cta__detail__title span {
  font-size: 5.8666666667vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .cta__detail__title span {
    display: block;
    width: 77%;
    font-size: 24px;
  }
}
.cta__detail__box {
  font-size: 3.2vw;
  padding: 4.2666666667vw;
  border: 1px solid #333333;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .cta__detail__box {
    flex-grow: 1;
    font-size: 12px;
    padding: 14px 20px;
  }
}

.about {
  position: relative;
  padding: 17.6vw 0 16vw;
  background: url("../img/99salt/bg_about-99salt.jpg") no-repeat center/cover;
}
@media (min-width: 992px) {
  .about {
    padding: 62px 0 100px;
  }
}
.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 69.3333333333vw;
  height: 103.4666666667vw;
  background: url("../img/99salt/bg_salt.png") no-repeat center/contain;
}
@media (min-width: 992px) {
  .about:before {
    width: 460px;
    height: 642px;
  }
}
.about__main {
  position: relative;
  width: 54.4vw;
  margin: 0 auto 18.6666666667vw;
}
@media (min-width: 992px) {
  .about__main {
    width: 412px;
    margin: 0 auto 70px;
  }
}
.about__main__img {
  width: 100%;
}
.about__main__title {
  writing-mode: vertical-rl;
}
.about__main__title span {
  position: absolute;
  top: -1.0666666667vw;
  left: 4.2666666667vw;
  font-size: 4.8vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .about__main__title span {
    font-size: 32px;
    top: 47px;
    left: 55px;
  }
}
.about__main__title small {
  position: absolute;
  top: 27.2vw;
  left: 0.2666666667vw;
  font-size: 2.4vw;
  font-weight: 400;
  letter-spacing: 0.5em;
  line-height: 1;
}
@media (min-width: 992px) {
  .about__main__title small {
    top: 203px;
    left: 28px;
    font-size: 16px;
    letter-spacing: 0.5em;
  }
}
.about__main__text {
  writing-mode: vertical-rl;
  line-height: 1.2;
}
.about__main__text p {
  position: absolute;
  font-weight: 400;
  white-space: nowrap;
}
.about__main__text p:first-child {
  top: -4.8vw;
  right: -1.6vw;
  font-size: 2.9333333333vw;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .about__main__text p:first-child {
    font-size: 20px;
    top: 20px;
    right: 23px;
    letter-spacing: 0.15em;
  }
}
.about__main__text p:first-child span {
  writing-mode: horizontal-tb;
  letter-spacing: 0;
}
.about__main__text p:last-child {
  top: 21.3333333333vw;
  right: 4.8vw;
  font-size: 4.8vw;
  letter-spacing: 0.2em;
}
@media (min-width: 992px) {
  .about__main__text p:last-child {
    font-size: 32px;
    top: 210px;
    right: 70px;
  }
}
.about__box {
  margin-bottom: 8vw;
}
@media (min-width: 992px) {
  .about__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 104px;
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .about__box--reverse {
    flex-direction: row-reverse;
  }
}
.about__box:last-child {
  margin-bottom: 0;
}
.about__box__img {
  margin-bottom: 5.3333333333vw;
  margin-right: -5.3333333333vw;
  margin-left: -5.3333333333vw;
}
@media (min-width: 992px) {
  .about__box__img {
    min-width: 440px;
    max-width: 440px;
    margin: 0;
  }
}
.about__box__img img {
  border-radius: 5px;
}
@media (min-width: 992px) {
  .about__box__description {
    flex-grow: 1;
  }
}
.about__box__title {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .about__box__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.beauty-inside {
  padding: 45.3333333333vw 0 62.6666666667vw;
  background: url("../img/99salt/bg_beauty-inside_sp.jpg") no-repeat center/cover;
}
@media (min-width: 992px) {
  .beauty-inside {
    padding: 90px 0;
    background: url("../img/99salt/bg_beauty-inside_pc.jpg") no-repeat center/cover;
  }
}
.beauty-inside__inner {
  padding: 0;
}
@media (min-width: 992px) {
  .beauty-inside__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.beauty-inside__text {
  font-size: 4.5333333333vw;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .beauty-inside__text {
    font-size: 20px;
  }
}
.beauty-inside__text strong {
  font-size: 8.2666666667vw;
  white-space: nowrap;
  font-weight: 400;
}
@media (min-width: 992px) {
  .beauty-inside__text strong {
    font-size: 32px;
  }
}

.postid-54 .trial{
	padding-top: 20px;
}
@media (min-width: 992px){
	.postid-54 .trial{
		padding-top: 0px;
	}
}
.trial {
  padding: 16vw 0 10.6666666667vw;
}
@media (min-width: 992px) {
  .trial {
    padding: 80px 0 52px;
  }
}
.trial .inner {
  padding: 0;
}
@media (min-width: 992px) {
  .trial .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.trial__label {
  width: calc(100% - 10.6666666667vw);
  margin: 0 auto;
  padding-bottom: 6.4vw;
  text-align: center;
  font-size: 6.4vw;
  background: url("../img/99salt/line_black_pc.svg") no-repeat center bottom/contain;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .trial__label {
    width: 550px;
    padding-bottom: 38px;
    font-size: 32px;
  }
}
.trial .stick-salt-box {
  padding-top: 5.3333333333vw;
}
@media (min-width: 992px) {
  .trial .stick-salt-box {
    padding-top: 40px;
  }
}

.impurity {
  padding: 16vw 0;
  position: relative;
  background: url("../img/99salt/bg_impurity_sp.jpg") no-repeat center top/cover;
  color: #fff;
}
@media (min-width: 992px) {
  .impurity {
    padding: 95px 0 52px;
    background: url("../img/99salt/bg_impurity_pc.jpg") no-repeat center top/cover;
  }
}
.impurity:after {
  content: "";
  position: absolute;
  bottom: -10.4vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 17.3333333333vw;
  height: 10.4vw;
  background: url("../img/99salt/arrow_impurity.png") no-repeat center/contain;
}
@media (min-width: 992px) {
  .impurity:after {
    bottom: -39px;
    width: 65px;
    height: 39px;
  }
}
.impurity__label {
  width: max-content;
  margin: 0 auto 4vw;
  padding-bottom: 7.4666666667vw;
  font-size: 6.4vw;
  background: url("../img/99salt/line_white.svg") no-repeat center bottom/contain;
}
@media (min-width: 992px) {
  .impurity__label {
    margin-bottom: 16px;
    padding-bottom: 33px;
    font-size: 32px;
  }
}
.impurity__title {
  margin-bottom: 8.5333333333vw;
  font-size: 6.4vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .impurity__title {
    margin-bottom: 47px;
    font-size: 24px;
  }
}
.impurity__title strong {
  font-size: 10.6666666667vw;
  font-weight: 400;
  text-shadow: 0.5333333333vw -0.5333333333vw 1.0666666667vw #c0c0c0;
}
@media (min-width: 992px) {
  .impurity__title strong {
    font-size: 40px;
    text-shadow: 2px -2px 4px #c0c0c0;
  }
}
.impurity__box {
  display: flex;
  flex-direction: column;
  margin-bottom: 8vw;
}
@media (min-width: 992px) {
  .impurity__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 120px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .impurity__box--reverse {
    flex-direction: row-reverse;
  }
}
.impurity__box:last-child {
  margin-bottom: 0;
}
.impurity__box__img {
  margin-bottom: 5.3333333333vw;
  margin-right: -5.3333333333vw;
  margin-left: -5.3333333333vw;
}
@media (min-width: 992px) {
  .impurity__box__img {
    min-width: 440px;
    max-width: 440px;
    margin: 0;
  }
}
.impurity__box__img img {
  width: 100%;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .impurity__box__text {
    flex-grow: 1;
  }
}

.pure-feature {
  padding: 21.3333333333vw 0 16vw;
  background: url("../img/99salt/bg_pure-feature_sp.png") no-repeat center top/cover;
}
@media (min-width: 992px) {
  .pure-feature {
    padding: 129px 0 100px;
    background: url("../img/99salt/bg_pure-feature_pc.png") no-repeat center top/cover;
  }
}
.pure-feature__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw 0;
  font-weight: 400;
  margin-bottom: 3.2vw;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .pure-feature__title {
    margin-bottom: 35px;
    gap: 12px 0;
  }
}
.pure-feature__title__sub {
  font-size: 4.2666666667vw;
}
@media (min-width: 992px) {
  .pure-feature__title__sub {
    font-size: 24px;
  }
}
.pure-feature__title__main {
  padding-bottom: 10.1333333333vw;
  font-size: 6.4vw;
  background: url("../img/99salt/line_black_sp.svg") no-repeat center bottom/contain;
  text-align: center;
}
@media (min-width: 992px) {
  .pure-feature__title__main {
    padding-bottom: 38px;
    background: url("../img/99salt/line_black_pc.svg") no-repeat center bottom/100% 33px;
    font-size: 32px;
  }
}
.pure-feature__tendency {
  margin-bottom: 12.8vw;
  border: 1px solid #333333;
  border-radius: 5px;
  background: #fff;
  padding: 5.3333333333vw 4vw;
}
@media (min-width: 992px) {
  .pure-feature__tendency {
    padding: 33px;
    margin-bottom: 32px;
  }
}
.pure-feature__tendency__list {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333vw 0;
}
@media (min-width: 992px) {
  .pure-feature__tendency__list {
    gap: 10px 0;
    width: max-content;
    margin: 0 auto;
  }
}
.pure-feature__tendency__item {
  position: relative;
  font-size: 5.3333333333vw;
  padding-left: 9.6vw;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .pure-feature__tendency__item {
    padding-left: 36px;
    font-size: 20px;
  }
}
.pure-feature__tendency__item:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 6.9333333333vw;
  height: 6.9333333333vw;
  background: #8DADBA;
  border-radius: 9999px;
}
@media (min-width: 992px) {
  .pure-feature__tendency__item:before {
    width: 26px;
    height: 26px;
  }
}
.pure-feature__tendency__item:after {
  content: "";
  position: absolute;
  top: 2.6666666667vw;
  left: 2.6666666667vw;
  width: 1.8666666667vw;
  height: 3.2vw;
  border-right: 0.5333333333vw solid #fff;
  border-bottom: 0.5333333333vw solid #fff;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .pure-feature__tendency__item:after {
    top: 10px;
    left: 10px;
    width: 7px;
    height: 12px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}
.pure-feature__note {
  position: relative;
  padding: 14.4vw 6.1333333333vw 8vw;
  border-radius: 5px;
  color: #fff;
  background: #8DADBA;
}
@media (min-width: 992px) {
  .pure-feature__note {
    width: 656px;
    margin: 0 auto;
    padding: 20px 32px 20px 80px;
  }
}
.pure-feature__note:before {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8vw;
  left: 0;
  width: 16.2666666667vw;
  height: 16.2666666667vw;
  font-size: 12.8vw;
  font-weight: 900;
  line-height: 1;
  background: #fff;
  border-radius: 5px;
  color: #8DADBA;
}
@media (min-width: 992px) {
  .pure-feature__note:before {
    top: -15px;
    left: -13px;
    width: 61px;
    height: 61px;
    font-size: 48px;
  }
}
.pure-feature__note:after {
  content: "";
  position: absolute;
  bottom: -25.3333333333vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 2.9333333333vw;
  height: 19.7333333333vw;
  background: url("../img/99salt/arrow_pure-feature.svg") no-repeat center/contain;
}
@media (min-width: 992px) {
  .pure-feature__note:after {
    width: 11px;
    height: 74px;
    bottom: -88px;
  }
}
.pure-feature__necessary {
  position: relative;
  padding-top: 29.3333333333vw;
}
@media (min-width: 992px) {
  .pure-feature__necessary {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .pure-feature__necessary:before, .pure-feature__necessary:after {
    content: "";
    position: absolute;
    bottom: 32px;
    width: 42px;
    height: 271px;
  }
}
.pure-feature__necessary:before {
  left: 53px;
  background: url("../img/99salt/curly-braces_left.svg") no-repeat center/contain;
}
.pure-feature__necessary:after {
  right: 53px;
  background: url("../img/99salt/curly-braces_right.svg") no-repeat center/contain;
}
.pure-feature__necessary__text {
  margin-bottom: 8vw;
  font-size: 6.4vw;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .pure-feature__necessary__text {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.pure-feature__necessary__text strong {
  font-size: 8.5333333333vw;
  color: #8DADBA;
}
@media (min-width: 992px) {
  .pure-feature__necessary__text strong {
    font-size: 32px;
  }
}
.pure-feature__necessary__box {
  margin-bottom: 8vw;
  padding: 4.2666666667vw 5.8666666667vw 15.4666666667vw;
  background: url("../img/99salt/bg_pop_sp.svg") no-repeat center top/contain;
  text-align: center;
}
@media (min-width: 992px) {
  .pure-feature__necessary__box {
    width: 528px;
    margin: 0 auto 13px;
    padding: 28px 36px 68px;
    background: url("../img/99salt/bg_pop_pc.svg") no-repeat center top/contain;
  }
}
.pure-feature__necessary__box strong {
  font-size: 6.4vw;
  color: #8DADBA;
}
@media (min-width: 992px) {
  .pure-feature__necessary__box strong {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .pure-feature__product {
    position: relative;
    width: max-content;
    margin: 0 auto;
  }
}
.pure-feature__product__text {
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 992px) {
  .pure-feature__product__text {
    margin-bottom: 0;
    position: absolute;
    top: 37px;
    left: 0;
    width: 100%;
  }
}
.pure-feature__product__detail {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .pure-feature__product__detail {
    align-items: end;
  }
}
.pure-feature__product__detail__text {
  font-size: 9.6vw;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .pure-feature__product__detail__text {
    font-size: 36px;
    padding-bottom: 15px;
  }
}
.pure-feature__product__detail__img {
  min-width: 24.8vw;
  max-width: 24.8vw;
}
@media (min-width: 992px) {
  .pure-feature__product__detail__img {
    min-width: 165px;
    max-width: 165px;
  }
}
.pure-feature__product__detail__img img {
  width: 100%;
}

.purity {
  padding: 20.8vw 0 7.2vw;
  background: url("../img/99salt/bg_purity_sp.jpg") no-repeat center top/cover;
}
@media (min-width: 992px) {
  .purity {
    padding: 65px 0 39px;
    background: url("../img/99salt/bg_purity_pc.jpg") no-repeat center top/cover;
  }
}
.purity__inner {
  display: flex;
  flex-direction: column;
  gap: 9.6vw 0;
}
@media (min-width: 992px) {
  .purity__inner {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 0 24px;
  }
}
.purity__title {
  margin-bottom: 7.4666666667vw;
  font-size: 5.8666666667vw;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 992px) {
  .purity__title {
    margin-bottom: 34px;
    font-size: 24px;
  }
}
.purity__title strong {
  display: block;
  font-size: 9.0666666667vw;
  font-weight: 500;
  color: #8FB0B9;
  border-bottom: 1px solid #8FB0B9;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .purity__title strong {
    font-size: 40px;
  }
}
.purity__title strong small {
  font-size: 6.4vw;
}
@media (min-width: 992px) {
  .purity__title strong small {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .purity__img {
    min-width: 388px;
    max-width: 388px;
  }
}
.purity__img img {
  width: 100%;
}

.traditional-method {
  padding: 16vw 0;
}
@media (min-width: 992px) {
  .traditional-method {
    position: relative;
    padding: 100px 0;
  }
}
.traditional-method__bg {
  display: none;
}
@media (min-width: 1040px) {
  .traditional-method__bg {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
  }
}
@media (min-width: 1040px) {
  .traditional-method__bg__img--1 {
    width: 198.2352941176px;
    height: 215.2941176471px;
  }
}
@media (min-width: 1240px) {
  .traditional-method__bg__img--1 {
    width: 337px;
    height: 366px;
  }
}
@media (min-width: 1040px) {
  .traditional-method__bg__img--2 {
    margin-top: 74px;
    width: 222.9411764706px;
    height: 169.4117647059px;
  }
}
@media (min-width: 1240px) {
  .traditional-method__bg__img--2 {
    width: 379px;
    height: 288px;
  }
}
.traditional-method__title {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333vw 0;
  align-items: center;
  font-weight: 400;
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 992px) {
  .traditional-method__title {
    gap: 5px;
    margin-bottom: 46px;
  }
}
.traditional-method__title__label {
  padding: 0.5333333333vw 2.1333333333vw;
  background: #91B3B5;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.4;
  width: max-content;
}
@media (min-width: 992px) {
  .traditional-method__title__label {
    padding: 2px 8px;
    font-size: 16px;
  }
}
.traditional-method__title__label strong {
  font-size: 6.9333333333vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .traditional-method__title__label strong {
    font-size: 26px;
  }
}
.traditional-method__title__main {
  font-size: 5.3333333333vw;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .traditional-method__title__main {
    font-size: 24px;
  }
}
.traditional-method__title__main strong {
  font-size: 9.6vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .traditional-method__title__main strong {
    font-size: 40px;
  }
}
.traditional-method__text {
  margin-bottom: 22.9333333333vw;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .traditional-method__text {
    margin-bottom: 50px;
    text-align: center;
  }
}
.traditional-method__box {
  position: relative;
  margin-bottom: 16vw;
  padding: 8vw 5.3333333333vw;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .traditional-method__box {
    background: #fff;
    width: 515px;
    margin: 0 auto 38px;
    padding: 24px 40px;
  }
}
.traditional-method__box__title {
  margin-bottom: 4vw;
  font-size: 5.3333333333vw;
  font-weight: 400;
  text-align: center;
  color: #8DADBA;
}
@media (min-width: 992px) {
  .traditional-method__box__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.traditional-method__box__picture {
  position: absolute;
  z-index: -1;
}
.traditional-method__box__picture--1 {
  top: -17.6vw;
  left: -5.3333333333vw;
  width: 35.2vw;
}
@media (min-width: 992px) {
  .traditional-method__box__picture--1 {
    display: none;
  }
}
.traditional-method__box__picture--2 {
  bottom: -24.5333333333vw;
  right: -5.3333333333vw;
  width: 40.5333333333vw;
}
@media (min-width: 992px) {
  .traditional-method__box__picture--2 {
    display: none;
  }
}
.traditional-method__box__picture img {
  width: 100%;
}
.traditional-method__point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6vw 0;
  font-size: 3.7333333333vw;
  color: #fff;
  margin-bottom: 19.2vw;
}
@media (min-width: 992px) {
  .traditional-method__point {
    gap: 7px 0;
    font-size: 18px;
    margin-bottom: 96px;
  }
}
.traditional-method__point span {
  background: #8DADBA;
  padding: 0.5333333333vw 2.1333333333vw;
}
@media (min-width: 992px) {
  .traditional-method__point span {
    padding: 2px 8px;
  }
}
.traditional-method__point:after {
  content: "";
  position: absolute;
  bottom: -5.3333333333vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 4.5333333333vw;
  height: 2.4vw;
  background: url("../img/99salt/icon_arrow.svg") no-repeat center/contain;
}
@media (min-width: 992px) {
  .traditional-method__point:after {
    bottom: -27px;
    width: 17px;
    height: 9px;
  }
}
.traditional-method__compare {
  position: relative;
}
.traditional-method__compare__title {
  margin-bottom: 2.6666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .traditional-method__compare__title {
    font-size: 20px;
    margin-left: 103px;
    margin-bottom: 15px;
  }
}
.traditional-method__compare__table {
  width: 100%;
  font-size: 2.8vw;
  border-spacing: 0;
}
@media (min-width: 992px) {
  .traditional-method__compare__table {
    font-size: 16px;
  }
}
.traditional-method__compare__table tr:last-child td:first-child {
  padding: 4.4vw 1.3333333333vw;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr:last-child td:first-child {
    padding: 20.5px 5px;
  }
}
.traditional-method__compare__table tr:last-child td:nth-child(3) {
  border-bottom: 4px solid #8DADBA;
}
.traditional-method__compare__table tr th {
  background: #DDE6EA;
  text-align: center;
  padding: 2.6666666667vw 1.3333333333vw;
  font-weight: 400;
  white-space: nowrap;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  font-size: 3.2vw;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr th {
    padding: 10px 5px;
    font-size: 18px;
  }
}
.traditional-method__compare__table tr th:first-child {
  border-left: 1px solid #333333;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr th:first-child {
    width: 304px;
  }
}
.traditional-method__compare__table tr th:nth-child(2) {
  border-right: none;
}
.traditional-method__compare__table tr th:nth-child(3) {
  border-top: 4px solid #8DADBA;
  border-right: 4px solid #8DADBA;
  border-left: 4px solid #8DADBA;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr th:nth-child(3) {
    width: 236px;
  }
}
.traditional-method__compare__table tr th:last-child {
  border-left: none;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr th:last-child {
    width: 216px;
  }
}
.traditional-method__compare__table tr td {
  text-align: center;
  padding: 2.1333333333vw 1.3333333333vw;
  white-space: nowrap;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr td {
    padding: 8px 5px;
  }
}
.traditional-method__compare__table tr td small {
  display: block;
  font-size: 2.5333333333vw;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr td small {
    font-size: 14px;
  }
}
.traditional-method__compare__table tr td:first-child {
  background: #F4F7F8;
  border-left: 1px solid #333333;
}
.traditional-method__compare__table tr td:nth-child(2) {
  border-right: none;
}
.traditional-method__compare__table tr td:nth-child(3) {
  font-size: 3.2vw;
  font-weight: 600;
  border-right: 4px solid #8DADBA;
  border-left: 4px solid #8DADBA;
}
@media (min-width: 992px) {
  .traditional-method__compare__table tr td:nth-child(3) {
    font-size: 18px;
  }
}
.traditional-method__compare__table tr td:last-child {
  border-left: none;
}
.traditional-method__compare__label {
  position: absolute;
  top: -11.2vw;
  right: 4.8vw;
  width: 22.6666666667vw;
  height: 22.6666666667vw;
}
@media (min-width: 992px) {
  .traditional-method__compare__label {
    top: -60px;
    right: 156px;
    width: 124px;
    height: 124px;
  }
}

.pla-removal {
  padding: 16vw 0;
  background: url("../img/99salt/bg_pla-removal_sp.jpg") no-repeat center top/cover;
}
@media (min-width: 992px) {
  .pla-removal {
    padding: 100px 0;
    background: url("../img/99salt/bg_pla-removal_pc.jpg") no-repeat center top/cover;
  }
}
.pla-removal__title {
  margin-bottom: 8vw;
  font-size: 8vw;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 992px) {
  .pla-removal__title {
    margin-bottom: 76px;
    font-size: 32px;
  }
}
.pla-removal__title span {
  position: relative;
}
.pla-removal__title span:before {
  content: "";
  position: absolute;
  top: -1.0666666667vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 28.2666666667vw;
  height: 1.3333333333vw;
  background: url("../img/99salt/point.svg") no-repeat center/100%;
}
@media (min-width: 992px) {
  .pla-removal__title span:before {
    width: 110px;
    height: 5px;
    top: -3px;
  }
}
.pla-removal__title small {
  font-size: 6.1333333333vw;
}
@media (min-width: 992px) {
  .pla-removal__title small {
    font-size: 24px;
  }
}
.pla-removal__box {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
  margin-bottom: 8vw;
}
@media (min-width: 992px) {
  .pla-removal__box {
    flex-direction: row;
    gap: 0 40px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .pla-removal__box__img {
    min-width: 408px;
    max-width: 408px;
  }
}
.pla-removal__box__img img {
  border-radius: 5px;
}
@media (min-width: 992px) {
  .pla-removal__box__text {
    flex-grow: 1;
  }
}
.pla-removal__pollution {
  margin-bottom: 16vw;
}
@media (min-width: 992px) {
  .pla-removal__pollution {
    margin-bottom: 60px;
  }
}
.pla-removal__pollution img {
  width: 100%;
}
.pla-removal__point__title {
  margin-bottom: 5.3333333333vw;
  font-size: 10.6666666667vw;
  font-weight: 500;
  color: #8DADBA;
  text-align: center;
}
@media (min-width: 992px) {
  .pla-removal__point__title {
    margin-bottom: 30px;
    font-size: 40px;
  }
}
.pla-removal__point__box {
  display: flex;
  flex-direction: column;
  gap: 14.4vw 0;
  padding: 14.4vw 5.3333333333vw 8vw;
  background: #fff;
}
@media (min-width: 992px) {
  .pla-removal__point__box {
    gap: 52px 0;
    padding: 50px 84px 78px;
  }
}
.pla-removal__point__item {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
}
@media (min-width: 992px) {
  .pla-removal__point__item {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 50px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:first-child .pla-removal__point__item__img {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:nth-child(2) .pla-removal__point__item__img {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:nth-child(2) .pla-removal__point__item__img img {
    width: 360px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:nth-child(3) {
    width: 818px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:nth-child(3) .pla-removal__point__item__img img {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item:nth-child(odd) .pla-removal__point__item__text {
    padding-left: 57px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item--reverse {
    flex-direction: row-reverse;
  }
}
.pla-removal__point__item__description {
  flex-grow: 1;
}
.pla-removal__point__item__title {
  display: flex;
  align-items: center;
  margin-bottom: 5.3333333333vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .pla-removal__point__item__title {
    margin-bottom: 30px;
  }
}
.pla-removal__point__item__title__label {
  display: inline-block;
  font-size: 20.2666666667vw;
  color: #8DADBA;
  line-height: 1;
  background: -webkit-linear-gradient(0deg, #8DADBA, #e4ebee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 992px) {
  .pla-removal__point__item__title__label {
    font-size: 110px;
  }
}
.pla-removal__point__item__title__main {
  font-size: 4.8vw;
  margin-top: 1.6vw;
  white-space: nowrap;
  line-height: 1.5;
  margin-left: -2.6666666667vw;
}
@media (min-width: 992px) {
  .pla-removal__point__item__title__main {
    margin-left: -10px;
    margin-top: 10px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point__item__img {
    min-width: 394px;
    max-width: 394px;
  }
}
.pla-removal__point__item__img img {
  width: 100%;
  border-radius: 5px;
  margin: 0 auto;
}
.pla-removal__point__item__img--radius0 img{
	border-radius: 0px;
}
@media (min-width: 992px) {
  .pla-removal__point .mineral {
    margin-top: -40px;
    padding-left: 57px;
    width: 778px;
  }
}
.pla-removal__point .mineral__item {
  margin-top: 5.3333333333vw;
}
@media (min-width: 992px) {
  .pla-removal__point .mineral__item {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .pla-removal__point .mineral__item:first-child {
    margin-top: 0;
  }
}
.pla-removal__point .mineral__item__title {
  width: max-content;
  margin-bottom: 2.6666666667vw;
  padding: 0.5333333333vw 1.8666666667vw;
  border: 1px solid #333333;
  border-radius: 5px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .pla-removal__point .mineral__item__title {
    padding: 2px 7px;
    margin-bottom: 14px;
  }
}

.appeal {
  padding: 16vw 0;
}
@media (min-width: 992px) {
  .appeal--1 {
    padding: 47px 0 37px;
  }
}
@media (min-width: 992px) {
  .appeal--2 {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .appeal--2 .appeal__title {
    margin-bottom: -110px;
  }
}
.appeal__inner {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .appeal__inner {
    max-width: 1440px;
  }
}
.appeal__title {
  margin-bottom: 5.3333333333vw;
  font-size: 5.8666666667vw;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .appeal__title {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
.appeal__text {
  position: relative;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media (min-width: 992px) {
  .appeal__text {
    margin-bottom: -124px;
    padding: 0;
    font-size: 16px;
    text-align: center;
  }
}
.appeal__picture img {
  width: 100%;
}

.healthy-habit {
  padding: 36.8vw 0 14.6666666667vw;
  background: url("../img/99salt/bg_healthy-habit_sp.jpg") no-repeat center/cover;
}
@media (min-width: 992px) {
  .healthy-habit {
    padding: 60px 0;
    background: url("../img/99salt/bg_healthy-habit_pc.jpg") no-repeat center/cover;
  }
}
.healthy-habit__title {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
  margin-bottom: 8vw;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .healthy-habit__title {
    gap: 20px 0;
    margin-bottom: 40px;
  }
}
.healthy-habit__title__copy {
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .healthy-habit__title__copy {
    font-size: 16px;
  }
}
.healthy-habit__title__main {
  font-size: 5.3333333333vw;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .healthy-habit__title__main {
    font-size: 32px;
  }
}
.healthy-habit__title__main small {
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .healthy-habit__title__main small {
    font-size: 20px;
  }
}
.healthy-habit__title__main strong {
  color: #8DADBA;
  font-weight: 400;
}
.healthy-habit__text {
  letter-spacing: 0.1em;
  text-align: center;
}

.pure-cta {
  padding: 11.4666666667vw 0 16vw;
  background: url("../img/99salt/bg_pure_sp.jpg") no-repeat center/cover;
}
@media (min-width: 992px) {
  .pure-cta {
    padding: 50px 0 97px;
    background: url("../img/99salt/bg_pure_pc.jpg") no-repeat center/cover;
  }
}
.pure-cta__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 8vw;
  text-align: center;
  font-weight: 500;
  gap: 2.6666666667vw 0;
}
@media (min-width: 992px) {
  .pure-cta__title {
    margin-bottom: 40px;
    gap: 0;
  }
}
.pure-cta__title__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5333333333vw 0;
}
@media (min-width: 992px) {
  .pure-cta__title__sub {
    flex-direction: row;
    gap: 0 9px;
  }
}
.pure-cta__title__sub__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24.2666666667vw;
  height: 24.2666666667vw;
  border: 1px solid #8DADBA;
  color: #8DADBA;
  border-radius: 9999px;
  font-size: 3.7333333333vw;
  font-weight: 400;
  white-space: nowrap;
  transform: rotate(-5deg);
}
@media (min-width: 992px) {
  .pure-cta__title__sub__label {
    flex-direction: row;
    width: 91px;
    height: 91px;
    font-size: 14px;
  }
}
.pure-cta__title__sub__label strong {
  font-size: 4.2666666667vw;
}
@media (min-width: 992px) {
  .pure-cta__title__sub__label strong {
    font-size: 16px;
  }
}
.pure-cta__title__sub__text {
  font-size: 6.4vw;
  padding-bottom: 1.3333333333vw;
  border-bottom: 1px solid #8DADBA;
}
@media (min-width: 992px) {
  .pure-cta__title__sub__text {
    font-size: 32px;
    padding-bottom: 5px;
  }
}
.pure-cta__title__sub__text small {
  font-size: 4.2666666667vw;
}
@media (min-width: 992px) {
  .pure-cta__title__sub__text small {
    font-size: 24px;
  }
}
.pure-cta__title__main {
  font-size: 7.4666666667vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 992px) {
  .pure-cta__title__main {
    font-size: 32px;
  }
}
.pure-cta__box {
  background: #fff;
  border-radius: 5px;
  padding: 5.3333333333vw 5.3333333333vw 9.3333333333vw;
}
@media (min-width: 992px) {
  .pure-cta__box {
    gap: 0 93px;
    justify-content: center;
    padding: 50px 50px 32px;
  }
}
.pure-cta__box .cta__box__content {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .pure-cta__box__img {
    min-width: 292px;
    max-width: 292px;
  }
}
@media (min-width: 992px) {
  .pure-cta__box__description {
    max-width: 300px;
  }
}

.product-intro {
  padding: 16vw 0 5.3333333333vw;
}
@media (min-width: 992px) {
  .product-intro {
    padding: 100px 0 29px;
    position: relative;
  }
}
@media (min-width: 1240px) {
  .product-intro:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    background: url("../img/99salt/bg_series_pc.png") no-repeat center/contain;
    max-width: 1440px;
    width: 100%;
    height: 800px;
    z-index: -1;
  }
}
.product-intro__title {
  margin-bottom: 10.6666666667vw;
  padding-bottom: 8vw;
  font-size: 6.4vw;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #333333;
}
@media (min-width: 992px) {
  .product-intro__title {
    margin-bottom: 37px;
    padding-bottom: 30px;
    font-size: 24px;
  }
}
.product-intro__text {
  margin-bottom: 9.3333333333vw;
}
@media (min-width: 992px) {
  .product-intro__text {
    text-align: center;
    margin-bottom: 70px;
  }
}
.product-intro__box {
  display: flex;
  flex-direction: column;
  gap: 8vw 0;
}
@media (min-width: 992px) {
  .product-intro__box {
    flex-direction: row;
    gap: 0 104px;
  }
}
.product-intro__box__description {
  flex-grow: 1;
}
.product-intro__box__label {
  width: max-content;
  margin-bottom: 5.3333333333vw;
  padding: 1.0666666667vw 3.4666666667vw;
  color: #8DADBA;
  border: 1px solid #8DADBA;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .product-intro__box__label {
    margin-bottom: 15px;
    padding: 4px 13px;
    font-size: 20px;
  }
}
.product-intro__box__title {
  margin-bottom: 8vw;
  font-size: 5.3333333333vw;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .product-intro__box__title {
    margin-bottom: 25px;
    font-size: 24px;
  }
}
.product-intro__box__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10.1333333333vw;
}
@media (min-width: 992px) {
  .product-intro__box__list {
    gap: 0 40px;
    justify-content: start;
  }
}
.product-intro__box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 34.4vw;
  height: 34.4vw;
  background: #8DADBA;
  border-radius: 9999px;
  font-size: 3.7333333333vw;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .product-intro__box__item {
    width: 129px;
    height: 129px;
    font-size: 14px;
  }
}
.product-intro__box__text {
  margin-top: 8vw;
  padding-top: 8vw;
  border-top: 1px solid #333333;
  font-size: 3.7333333333vw;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .product-intro__box__text {
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .product-intro__box__img {
    max-width: 508px;
  }
}
.product-intro__box__img img {
  border-radius: 5px;
}
.product-intro__series {
  margin-bottom: -13.3333333333vw;
}
@media (min-width: 992px) {
  .product-intro__series {
    margin-bottom: -50px;
  }
}
.product-intro__series__text {
  padding: 19.7333333333vw 0 11.2vw;
  font-size: 4.8vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 2;
  background: url("../img/99salt/bg_series_sp.png") no-repeat center/cover;
}
@media (min-width: 992px) {
  .product-intro__series__text {
    padding: 100px 0 67px;
    font-size: 32px;
    background: none;
  }
}
.product-intro .cta__box__copy {
  display: none;
}
.product-intro .cta__detail {
  display: flex;
}

.example {
  padding: 11.7333333333vw 0 16vw;
  background: #F4F7F8;
}
@media (min-width: 992px) {
  .example {
    padding: 52px 0 109px;
  }
}
.example__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 8vw;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 992px) {
  .example__title {
    margin-bottom: 50px;
  }
}
.example__title__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.1333333333vw;
}
@media (min-width: 992px) {
  .example__title__sub {
    gap: 0 9px;
  }
}
.example__title__sub__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.5333333333vw;
  height: 20.5333333333vw;
  border: 1px solid #8DADBA;
  color: #8DADBA;
  border-radius: 9999px;
  font-size: 4.2666666667vw;
  font-weight: 400;
  white-space: nowrap;
  transform: rotate(-5deg);
}
@media (min-width: 992px) {
  .example__title__sub__label {
    width: 77px;
    height: 77px;
    font-size: 16px;
  }
}
.example__title__sub__text {
  display: block;
  font-size: 5.3333333333vw;
  padding-bottom: 1.3333333333vw;
  border-bottom: 1px solid #8DADBA;
}
@media (min-width: 992px) {
  .example__title__sub__text {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 5px;
  }
}
.example__title__main {
  font-size: 6.4vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .example__title__main {
    font-size: 32px;
  }
}
.example__title__main small {
  font-size: 5.3333333333vw;
}
@media (min-width: 992px) {
  .example__title__main small {
    font-size: 20px;
  }
}
.example__arrange {
  padding-top: 10.6666666667vw;
}
@media (min-width: 992px) {
  .example__arrange {
    padding-top: 100px;
  }
}
.example__arrange__title {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 4.8vw;
}
@media (min-width: 992px) {
  .example__arrange__title {
    margin-bottom: 30px;
  }
}
.example__arrange__title__label {
  display: block;
  width: max-content;
  margin: 0 auto;
  font-size: 5.3333333333vw;
  background: -webkit-linear-gradient(0deg, #88A7B4, #425157);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 992px) {
  .example__arrange__title__label {
    font-size: 22px;
  }
}
.example__arrange__title__main {
  display: block;
  font-size: 7.4666666667vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .example__arrange__title__main {
    font-size: 32px;
    line-height: 1.5;
  }
}
.example__arrange__title__main strong {
  font-size: 8.5333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__title__main strong {
    font-size: 52px;
  }
}
.example__arrange__title__main small {
  font-size: 5.3333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__title__main small {
    font-size: 20px;
  }
}
.example__arrange__title__example {
  display: block;
  position: relative;
}
@media (min-width: 992px) {
  .example__arrange__title__example {
    width: 340px;
    margin: 0 auto;
  }
}
.example__arrange__title__example:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333333;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0.2666666667vw;
}
@media (min-width: 992px) {
  .example__arrange__title__example:before {
    height: 1px;
  }
}
.example__arrange__title__example span {
  display: inline-block;
  position: relative;
  background: #F4F7F8;
  padding: 2.1333333333vw;
  font-size: 5.3333333333vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .example__arrange__title__example span {
    padding: 8px;
    font-size: 20px;
  }
}
.example__arrange__list {
  display: flex;
  flex-direction: column;
  gap: 8vw 0;
}
@media (min-width: 992px) {
  .example__arrange__list {
    gap: 74px 0;
  }
}
@media (min-width: 992px) {
  .example__arrange__item:not(:first-child) .example__arrange__box__title__main {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .example__arrange__item:not(:first-child) .example__arrange__box__description:before {
    top: 26%;
    height: 74%;
  }
}
@media (min-width: 992px) {
  .example__arrange__item:last-child .example__arrange__box__text {
    padding-bottom: 20px;
    border-bottom: 1px solid #8DADBA;
  }
}
.example__arrange__item .example__arrange__box:not(:first-child) {
  margin-top: 13.3333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__item .example__arrange__box:not(:first-child) {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .example__arrange__item .example__arrange__box:not(:first-child) .example__arrange__box__description:before {
    display: none !important;
  }
}
.example__arrange__box {
  display: flex;
  flex-direction: column;
  gap: 9.3333333333vw 0;
}
@media (min-width: 992px) {
  .example__arrange__box {
    flex-direction: row;
    gap: 0 47px;
  }
}
@media (min-width: 992px) {
  .example__arrange__box__description {
    position: relative;
    padding-left: 89px;
    min-width: 520px;
    max-width: 520px;
  }
}
@media (min-width: 992px) {
  .example__arrange__box__description:before {
    content: "";
    position: absolute;
    top: 16%;
    left: 41px;
    width: 1px;
    height: 84%;
    background: #8DADBA;
  }
}
.example__arrange__box__title {
  display: flex;
  align-items: center;
  gap: 0 3.2vw;
  margin-bottom: 7.2vw;
  font-weight: 500;
}
@media (min-width: 992px) {
  .example__arrange__box__title {
    gap: 0 10px;
    margin-bottom: 28px;
    margin-left: -89px;
  }
}
.example__arrange__box__title__label {
  display: inline-block;
  font-size: 17.0666666667vw;
  color: #8DADBA;
  line-height: 1;
}
@media (min-width: 992px) {
  .example__arrange__box__title__label {
    font-size: 76px;
  }
}
.example__arrange__box__title__main {
  font-size: 5.3333333333vw;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .example__arrange__box__title__main {
    font-size: 32px;
  }
}
.example__arrange__box__text {
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__box__text {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .example__arrange__box__picture {
    flex-grow: 1;
  }
}
.example__arrange__box__picture img {
  border-radius: 5px;
}
.example__arrange__box .instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.3333333333vw;
  width: max-content;
  margin: 0 auto 16vw;
  background: #fff;
  color: #8DADBA;
  padding: 1.8666666667vw 4vw;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .example__arrange__box .instagram {
    gap: 0 10px;
    margin: 0 0 30px;
    padding: 7px 15px;
  }
}
.example__arrange__box .instagram img {
  width: 8vw;
  height: 8vw;
}
@media (min-width: 992px) {
  .example__arrange__box .instagram img {
    width: 30px;
    height: 30px;
  }
}
.example__arrange__menu__title {
  margin-top: 0;
  margin-bottom: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-bottom: 1px solid #ACC3CD;
  font-size: 5.3333333333vw;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .example__arrange__menu__title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.example__arrange__menu__text {
  margin-bottom: 6.4vw;
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__menu__text {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
.example__arrange__menu__box {
  position: relative;
}
.example__arrange__menu__box__title {
  position: absolute;
  top: -2.6666666667vw;
  left: 0;
  width: max-content;
  padding: 0.5333333333vw 2.1333333333vw;
  background: #fff;
  color: #8DADBA;
  border-radius: 5px;
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__menu__box__title {
    top: -9px;
    padding: 2px 8px;
    font-size: 14px;
  }
}
.example__arrange__menu__box__text {
  color: #fff;
  background: #8DADBA;
  border-radius: 10px;
  padding: 5.3333333333vw;
  width: calc(100% - 1.6vw);
  margin-left: auto;
}
@media (min-width: 992px) {
  .example__arrange__menu__box__text {
    width: calc(100% - 6px);
    padding: 30px 20px;
  }
}
.example__arrange__recommend {
  display: flex;
  flex-direction: column;
  gap: 6.6666666667vw 0;
  position: relative;
  margin-top: 13.3333333333vw;
  padding: 13.3333333333vw 5.3333333333vw 10.1333333333vw;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .example__arrange__recommend {
    flex-direction: row-reverse;
    gap: 0 57px;
    margin-top: 62px;
    padding: 44px 50px 40px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recommend--noni {
    padding-left: 115px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recommend--sweet {
    padding-left: 139px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recommend--aronia {
    padding-left: 146px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recommend--pure {
    padding-left: 143px;
  }
}
.example__arrange__recommend__label {
  position: absolute;
  width: 100%;
  top: -5.3333333333vw;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 6.4vw;
  color: #8DADBA;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .example__arrange__recommend__label {
    top: -23px;
    font-size: 24px;
  }
}
.example__arrange__recommend__label small {
  font-size: 4.2666666667vw;
}
@media (min-width: 992px) {
  .example__arrange__recommend__label small {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recommend__description {
    min-width: 503px;
    max-width: 503px;
  }
}
.example__arrange__recommend__title {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 992px) {
  .example__arrange__recommend__title {
    text-align: left;
    margin-bottom: 50px;
    font-size: 32px;
  }
}
.example__arrange__recommend__title small {
  font-size: 4.2666666667vw;
  margin-left: 1.3333333333vw;
}
@media (min-width: 992px) {
  .example__arrange__recommend__title small {
    font-size: 20px;
  }
}
.example__arrange__recommend__img {
  width: 73.3333333333vw;
  margin: 0 auto;
}
.example__arrange__recommend__img img {
  width: 100%;
}
.example__arrange__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 17.3333333333vw;
  position: relative;
}
@media (min-width: 992px) {
  .example__arrange__figure {
    justify-content: start;
    width: max-content;
    /*padding-top: 20px;
    border-top: 1px solid mixin.$color-pale-blue-2;*/
    gap: 0 79px;
  }
}
.example__arrange__figure:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.5333333333vw;
  height: 0.2666666667vw;
  background: #333333;
}
@media (min-width: 992px) {
  .example__arrange__figure:before {
    width: 39px;
    height: 1px;
  }
}
.example__arrange__figure:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.2666666667vw;
  height: 8.5333333333vw;
  background: #333333;
}
@media (min-width: 992px) {
  .example__arrange__figure:after {
    width: 1px;
    height: 39px;
  }
}
.example__arrange__figure__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28.2666666667vw;
  height: 28.2666666667vw;
  background: #8DADBA;
  border-radius: 9999px;
  font-size: 3.4666666667vw;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .example__arrange__figure__item {
    width: 129px;
    height: 129px;
    font-size: 16px;
  }
}
.example__arrange__recipe {
  margin-top: 8vw;
  padding: 8vw 5.3333333333vw;
  border: 1px solid #333333;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .example__arrange__recipe {
    margin-top: 40px;
    padding: 40px 120px;
  }
}
.example__arrange__recipe__title {
  margin-top: 0;
  margin-bottom: 5.3333333333vw;
  font-weight: 400;
  text-align: center;
  font-size: 6.4vw;
  color: #8DADBA;
}
@media (min-width: 992px) {
  .example__arrange__recipe__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.example__arrange__recipe__title small {
  display: block;
  font-size: 4.2666666667vw;
  color: #333333;
}
@media (min-width: 992px) {
  .example__arrange__recipe__title small {
    display: inline-block;
    font-size: 16px;
  }
}
.example__arrange__recipe__text {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 992px) {
  .example__arrange__recipe__text {
    margin-bottom: 30px;
    text-align: center;
  }
}
.example__arrange__recipe__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.3333333333vw 0;
  position: relative;
}
@media (min-width: 992px) {
  .example__arrange__recipe__list {
    flex-direction: row;
    justify-content: center;
    gap: 0 98px;
  }
}
.example__arrange__recipe__list:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.4vw;
  height: 0.2666666667vw;
  background: #333333;
}
@media (min-width: 992px) {
  .example__arrange__recipe__list:before {
    width: 39px;
    height: 1px;
  }
}
.example__arrange__recipe__list:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.2666666667vw;
  height: 10.4vw;
  background: #333333;
}
@media (min-width: 992px) {
  .example__arrange__recipe__list:after {
    width: 1px;
    height: 39px;
  }
}
@media (min-width: 992px) {
  .example__arrange__recipe__item {
    width: 324px;
  }
}
.example__arrange__recipe__item img {
  width: 100%;
  border-radius: 5px;
}

.stick-salt-box {
  padding: 8vw 5.3333333333vw;
  border-radius: 5px;
  background: #fff;
}
@media (min-width: 992px) {
  .stick-salt-box {
    padding: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 0 50px;
  }
}
@media (min-width: 992px) {
  .stick-salt-box__description {
    flex-grow: 1;
  }
}
.stick-salt-box__title {
  margin-bottom: 2.6vw;
  font-size: 6.4vw;
  font-weight: 500;
  text-align: center;
}
.stick-salt-box__title__span{
	font-size: 0.5em;
	display: inline-block;
	padding-right: 0.5em;
	font-weight: bold;
	color: #005224;
}
@media (min-width: 992px) {
  .stick-salt-box__title {
    margin-bottom: 7px;
    font-size: min(3vw,31px);
  }
}
.stick-salt-box__text {
  margin-bottom: 5.3333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 992px) {
  .stick-salt-box__text {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.stick-salt-box__img {
  margin-bottom: 4.8vw;
}
@media (min-width: 992px) {
  .stick-salt-box__img {
    margin-bottom: 0;
    min-width: 424px;
    max-width: 424px;
  }
}
.stick-salt-box__img img {
  border-radius: 5px;
}
.stick-salt-box__discount {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  line-height: 1;
  margin-bottom: 6.4vw;
}
@media (min-width: 992px) {
  .stick-salt-box__discount {
    margin-bottom: 26px;
  }
}
.stick-salt-box__discount:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6.4vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.6vw 1.8666666667vw 1.6vw;
  border-color: transparent transparent #005224 transparent;
  transform: translate(-50%, 0) rotate(180deg);
}
@media (min-width: 992px) {
  .stick-salt-box__discount:before {
    bottom: -24px;
    border-width: 0 6px 7px 6px;
  }
}
.stick-salt-box__discount__rate {
  margin-right: 4vw;
  font-size: 8.5333333333vw;
  color: #005224;
  font-weight: 700;
}
@media (min-width: 992px) {
  .stick-salt-box__discount__rate {
    margin-right: 18px;
    font-size: 32px;
  }
}
.stick-salt-box__discount__rate small {
  font-size: 6.4vw;
}
@media (min-width: 992px) {
  .stick-salt-box__discount__rate small {
    font-size: 24px;
  }
}
.stick-salt-box__normal {
  font-size: 4.8vw;
  color: #005224;
  margin-right: 1.3333333333vw;
}
@media (min-width: 992px) {
  .stick-salt-box__normal {
    font-size: 18px;
    margin-right: 7px;
  }
}
.stick-salt-box__normal-price {
  font-size: 3.7333333333vw;
}
@media (min-width: 992px) {
  .stick-salt-box__normal-price {
    font-size: 14px;
  }
}
.stick-salt-box__normal-price s {
  font-size: 6.4vw;
}
@media (min-width: 992px) {
  .stick-salt-box__normal-price s {
    font-size: 24px;
  }
}
.stick-salt-box__discount-price {
  margin-bottom: 4vw;
  font-size: 5.3333333333vw;
  text-align: center;
}
@media (min-width: 992px) {
  .stick-salt-box__discount-price {
    margin-bottom: 8px;
    font-size: 20px;
  }
}
.stick-salt-box__discount-price strong {
  font-size: 9.6vw;
  font-weight: 400;
}
@media (min-width: 992px) {
  .stick-salt-box__discount-price strong {
    font-size: 36px;
  }
}
.stick-salt-box .btn {
  max-width: 80vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .stick-salt-box .btn {
    max-width: none;
    font-size: 20px;
  }
}

.supervisor {
  padding: 16vw 0;
}
@media (min-width: 992px) {
  .supervisor {
    padding: 90px 0 80px;
  }
}
.supervisor .stick-salt-box {
  border: 1px solid #333333;
}
.supervisor__box {
  margin: 8.8vw 0 5.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
}
@media (min-width: 992px) {
  .supervisor__box {
    flex-direction: row;
    align-items: end;
    gap: 0 56px;
    margin: 89px 0 40px;
  }
}
.supervisor__box__img {
  width: 53.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .supervisor__box__img {
    width: 228px;
  }
}
.supervisor__box__img img {
  width: 100%;
}
@media (min-width: 992px) {
  .supervisor__box__profile {
    flex-grow: 1;
    padding-bottom: 10px;
  }
}
.supervisor__box__profile__title {
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8vw;
  padding-bottom: 5.3333333333vw;
  border-bottom: 1px solid #AFC6CF;
  font-size: 5.3333333333vw;
  text-align: center;
}
@media (min-width: 992px) {
  .supervisor__box__profile__title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    text-align: left;
  }
}
.supervisor__box__profile__title small {
  font-size: 3.7333333333vw;
  display: block;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .supervisor__box__profile__title small {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
  }
}
.supervisor__comment {
  margin-bottom: 8vw;
}
@media (min-width: 992px) {
  .supervisor__comment {
    margin-bottom: 27px;
  }
}
.supervisor__sub-comment {
  margin-bottom: 8vw;
  padding: 5.3333333333vw 4.8vw;
  background: #F4F7F8;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .supervisor__sub-comment {
    margin-bottom: 50px;
    padding: 50px;
  }
}
.supervisor__usage {
  display: flex;
  flex-direction: column;
  gap: 8vw 0;
}
@media (min-width: 992px) {
  .supervisor__usage {
    flex-direction: row-reverse;
    align-items: start;
    gap: 0 34px;
  }
}
@media (min-width: 992px) {
  .supervisor__usage__img {
    flex-grow: 1;
  }
}
.supervisor__usage__text {
  padding: 5.3333333333vw;
  border: 1px solid #333333;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .supervisor__usage__text {
    min-width: 476px;
    max-width: 476px;
    margin-top: 21px;
    padding: 50px;
  }
}

.necessary {
  padding: 40vw 0 36.2666666667vw;
  background: url("../img/99salt/bg_necessary_sp.jpg") no-repeat center/cover;
  text-align: center;
}
@media (min-width: 992px) {
  .necessary {
    padding: 40px 0;
    background: url("../img/99salt/bg_necessary_pc.jpg") no-repeat center/cover;
  }
}
.necessary__title {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .necessary__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

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