/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

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

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

:root {
  --color-font: #4d4d4d;
  --color-font-strong: #1a1a1a;
  --color-primary: #508c9b;
  --color-secondary: #86e2df;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
  --font-NotoSerifJP: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, serif;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  line-height: 1;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 751px) {
  body {
    font-size: 28px;
    min-width: 750px;
  }
}

@media (any-hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

b, strong {
  font-weight: bolder;
}

.l-container {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .l-container {
    margin-inline: auto;
    width: 750px;
  }
}

.l-header {
  align-items: center;
  background: rgba(120, 205, 212, 0.7);
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .l-header {
    height: 13.333vw;
    left: 0;
    padding-inline: 4vw;
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .l-header {
    height: 100px;
    left: 50%;
    padding-inline: 30px;
    transform: translateX(-50%);
    width: 750px;
  }
}

@media screen and (max-width: 750px) {
  .l-logo {
    width: 14.933vw;
  }
}
@media screen and (min-width: 750px) {
  .l-logo {
    width: 112px;
  }
}

@media screen and (max-width: 750px) {
  .l-header__btn {
    width: 50.667vw;
  }
}
@media screen and (min-width: 750px) {
  .l-header__btn {
    width: 380px;
  }
}

.l-footer {
  background: var(--color-secondary);
}
@media screen and (max-width: 750px) {
  .l-footer {
    padding-block: 8vw 4.667vw;
  }
}
@media screen and (min-width: 750px) {
  .l-footer {
    padding-block: 60px 35px;
  }
}

.l-nav {
  display: flex;
  justify-content: center;
}

.l-nav__item {
  letter-spacing: 0.05em;
  line-height: 1.28;
  padding-inline: 1em;
}
@media screen and (max-width: 750px) {
  .l-nav__item {
    font-size: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-nav__item {
    font-size: 25px;
  }
}
.l-nav__item:not(:last-child) {
  border-right: 1px solid #fff;
}

.l-nav__link {
  color: #fff;
}
@media (any-hover: hover) {
  .l-nav__link:hover {
    text-decoration: underline;
  }
}

.l-copyright {
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .l-copyright {
    font-size: 2.667vw;
    margin-block-start: 10vw;
  }
}
@media screen and (min-width: 751px) {
  .l-copyright {
    font-size: 20px;
    margin-block-start: 75px;
  }
}

.p-kv {
  overflow: hidden;
  position: relative;
}

.p-kv__video {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-kv__video {
    width: 150vw;
  }
}

.p-kv__content {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-kv__content {
    height: 165.6vw;
    padding-block-start: 27.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__content {
    height: 1242px;
    padding-block-start: 206px;
  }
}

@media screen and (max-width: 750px) {
  .p-kv__detail {
    margin-block-start: 13.333vw;
    margin-inline-start: 60.667vw;
    width: 24.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__detail {
    margin-block-start: 100px;
    margin-inline-start: 455px;
    width: 182px;
  }
}

.p-kv__feature {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-kv__feature {
    left: 5.867vw;
    top: 66.4vw;
    width: 28.533vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__feature {
    left: 44px;
    top: 498px;
    width: 214px;
  }
}

.p-kv__image {
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-kv__image {
    left: 34.933vw;
    top: 64.4vw;
    width: 25.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__image {
    left: 262px;
    top: 483px;
    width: 194px;
  }
}

.p-kv__title {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

@media screen and (min-width: 751px) {
  .p-first-block {
    background: url(../images/first_bg_pc.jpg) 50% 0/auto 100% no-repeat;
  }
}
@media screen and (min-width: 751px) and (max-width: 749px) {
  .p-first-block {
    height: 573.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-first-block {
    height: 4300px;
  }
}

.p-cta {
  background: var(--color-secondary);
}
@media screen and (max-width: 750px) {
  .p-cta {
    padding-block: 10vw 18vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta {
    padding-block: 75px 135px;
  }
}

.p-cta__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-cta__title {
    width: 86.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta__title {
    width: 650px;
  }
}

.p-cta__lead {
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-cta__lead {
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta__lead {
    margin-block-start: 25px;
  }
}

.p-cta__feature {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-cta__feature {
    margin-block-start: 4.667vw;
    width: 85.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta__feature {
    margin-block-start: 35px;
    width: 640px;
  }
}

.p-cta__list {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-cta__list {
    gap: 7.067vw;
    margin-block-start: 10.667vw;
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta__list {
    gap: 53px;
    margin-block-start: 80px;
    width: 630px;
  }
}

.p-cta-item {
  position: relative;
}

.p-cta-item__inner {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-cta-item__inner {
    border-radius: 0.571vw;
    padding-block: 18vw 7.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__inner {
    border-radius: 4px;
    padding-block: 135px 55px;
  }
}

.p-cta-item__title {
  left: 0;
  position: absolute;
}

.p-cta-item__image {
  position: absolute;
}

.p-cta-item__detail {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-cta-item__detail {
    margin-inline-start: 25.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__detail {
    margin-inline-start: 190px;
  }
}

@media screen and (max-width: 750px) {
  .p-cta-item__text01 {
    font-size: 4.533vw;
    margin-inline-start: 0.8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__text01 {
    font-size: 34px;
    margin-inline-start: 6px;
  }
}

@media screen and (max-width: 750px) {
  .p-cta-item__text02 {
    font-size: 5.867vw;
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__text02 {
    font-size: 44px;
    margin-block-start: 15px;
  }
}

.p-cta-item__unit {
  display: inline-block;
  font-weight: 500;
  line-height: 1.579;
  margin-inline-start: 0.5em;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .p-cta-item__unit {
    border: 1px solid #b3b3b3;
    border-radius: 0.573vw;
    font-size: 3.04vw;
    width: 14.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__unit {
    border: 2px solid #b3b3b3;
    border-radius: 4.3px;
    font-size: 23px;
    width: 108px;
  }
}

.p-cta-item__off {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-cta-item__off {
    left: -2.133vw;
    width: 26.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__off {
    left: -16px;
    width: 196px;
  }
}

.p-cta-item__contain {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-cta-item__contain {
    margin-block-start: 2vw;
    margin-inline-start: 1.6vw;
    width: 52.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__contain {
    margin-block-start: 15px;
    margin-inline-start: 12px;
    width: 392px;
  }
}

.p-cta-item__contain-product {
  background: #fff;
  font-weight: 500;
  line-height: 2.16;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-cta-item__contain-product {
    border-radius: 0.667vw;
    font-size: 3.333vw;
    width: 25.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__contain-product {
    border-radius: 5px;
    font-size: 25px;
    width: 190px;
  }
}

.p-cta-item__contain-plus {
  align-items: center;
  aspect-ratio: 1/1;
  background: #fffae6;
  border-radius: 50%;
  display: flex;
  font-weight: 500;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .p-cta-item__contain-plus {
    font-size: 3.467vw;
    width: 4.8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__contain-plus {
    font-size: 26px;
    width: 36px;
  }
}

@media screen and (max-width: 750px) {
  .p-cta-item__price {
    margin-inline-start: 25.333vw;
    width: 53.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__price {
    margin-inline-start: 190px;
    width: 400px;
  }
}

.p-cta-item__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-cta-item__list {
    gap: 1.6vw;
    margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__list {
    gap: 12px;
    margin-block-start: 10px;
  }
}

@media screen and (max-width: 750px) {
  .p-cta-item__item {
    width: 34.933vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__item {
    width: 262px;
  }
}

.p-cta-item__btn {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-cta-item__btn {
    margin-block-start: 4vw;
    width: 72.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__btn {
    margin-block-start: 30px;
    width: 542px;
  }
}

.p-cta-item__link {
  transform: translateZ(0);
}
@media screen and (max-width: 750px) {
  .p-cta-item__link {
    filter: drop-shadow(0.7vw 0.7vw 7.787vw rgba(0, 0, 0, 0.3));
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item__link {
    filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.3));
  }
}

.p-cta-item--single .p-cta-item__inner {
  background: #fff;
}
.p-cta-item--single .p-cta-item__title {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-cta-item--single .p-cta-item__title {
    top: -7.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--single .p-cta-item__title {
    top: -59px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--single .p-cta-item__image {
    left: 1.867vw;
    top: -6vw;
    width: 17.067vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--single .p-cta-item__image {
    left: 14px;
    top: -45px;
    width: 128px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--single .p-cta-item__off {
    top: 51.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--single .p-cta-item__off {
    top: 385px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--single .p-cta-item__price {
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--single .p-cta-item__price {
    margin-block-start: 15px;
  }
}

.p-cta-item--set::after {
  background: url(../images/cta_shadow.png) 0/contain no-repeat;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 750px) {
  .p-cta-item--set::after {
    height: 14.667vw;
    width: 86.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set::after {
    height: 110px;
    width: 648px;
  }
}
.p-cta-item--set .p-cta-item__inner {
  background: #fffae6;
}
@media screen and (max-width: 750px) {
  .p-cta-item--set {
    box-shadow: 0 0 0.667vw rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--set .p-cta-item__title {
    top: -3.333vw;
    width: 85.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set .p-cta-item__title {
    top: -25px;
    width: 644px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--set .p-cta-item__image {
    left: -6.667vw;
    top: -3.333vw;
    width: 30.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set .p-cta-item__image {
    left: -50px;
    top: -25px;
    width: 226px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--set .p-cta-item__off {
    top: 60.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set .p-cta-item__off {
    top: 452px;
  }
}
@media screen and (max-width: 750px) {
  .p-cta-item--set .p-cta-item__price {
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-cta-item--set .p-cta-item__price {
    margin-block-start: 20px;
  }
}

.p-trouble {
  background: url(../images/trouble_bg.jpg) 0 0/100% auto no-repeat #c6baa9;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-trouble {
    padding-block: 40vw 9.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble {
    padding-block: 300px 70px;
  }
}
.p-trouble::after {
  background: #c6baa9;
  bottom: 1px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 750px) {
  .p-trouble::after {
    height: 6.667vw;
    width: 11.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble::after {
    height: 50px;
    width: 86px;
  }
}

.p-trouble__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-trouble__title {
    width: 77.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble__title {
    width: 580px;
  }
}

.p-trouble__text {
  color: #666;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.563;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-trouble__text {
    font-size: 4.267vw;
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble__text {
    font-size: 32px;
    margin-block-start: 25px;
  }
}

.p-trouble__list {
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-trouble__list {
    margin-block-start: 4vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble__list {
    margin-block-start: 30px;
    width: 590px;
  }
}
.p-trouble__list::after {
  background: url(../images/trouble_list_bg.svg) 0/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-trouble__list::after {
    bottom: -2.4vw;
    height: 22.933vw;
    right: -8.267vw;
    width: 25.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble__list::after {
    bottom: -18px;
    height: 172px;
    right: -62px;
    width: 191px;
  }
}

.p-trouble__item {
  background: url(../images/icon_check.svg) no-repeat;
  letter-spacing: 0.05em;
  line-height: 2.333;
}
@media screen and (max-width: 750px) {
  .p-trouble__item {
    background-position: 1.067vw 50%;
    background-size: 4.533vw auto;
    border-bottom: 1px dashed #fff;
    font-size: 4vw;
    padding-inline-start: 7.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-trouble__item {
    background-position: 8px 50%;
    background-size: 34px auto;
    border-bottom: 2px dashed #fff;
    font-size: 30px;
    padding-inline-start: 58px;
  }
}
.p-trouble__item:last-child {
  border-bottom: 0;
}

.p-delicate {
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-delicate {
    margin-block-start: 6.667vw;
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate {
    margin-block-start: 50px;
    width: 630px;
  }
}
.p-delicate::after {
  background: url(../images/delicate_shadow.png) 0/contain no-repeat;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .p-delicate::after {
    bottom: -4.667vw;
    height: 14.667vw;
    width: 86.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate::after {
    bottom: -35px;
    height: 110px;
    width: 648px;
  }
}

.p-delicate__inner {
  background: #fffae6;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-delicate__inner {
    padding-block: 10vw 8.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate__inner {
    padding-block: 75px 65px;
  }
}

.p-delicate__lead {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-delicate__lead {
    left: 5.333vw;
    top: -2.667vw;
    width: 14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate__lead {
    left: 40px;
    top: -20px;
    width: 110px;
  }
}

.p-delicate__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-delicate__title {
    width: 62.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate__title {
    width: 470px;
  }
}

.p-delicate__text {
  letter-spacing: 0.05em;
  line-height: 1.857;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-delicate__text {
    margin-block-start: 3.333vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-delicate__text {
    margin-block-start: 25px;
    width: 500px;
  }
}

.p-delicate__text-em {
  color: var(--color-font-strong);
  text-decoration: underline;
  text-decoration-color: #fffb6c;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.35em;
  text-underline-offset: -0.15em;
}

.p-development {
  background: url(../images/development_bg.jpg) 0 0/100% auto no-repeat #fffae6;
}
@media screen and (max-width: 750px) {
  .p-development {
    padding-block: 13.333vw 10.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-development {
    padding-block: 100px 80px;
  }
}

.p-development__catch {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-development__catch {
    width: 86.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-development__catch {
    width: 650px;
  }
}

@media screen and (max-width: 750px) {
  .p-development__title {
    margin-block-start: -4.267vw;
    margin-inline-start: 64.667vw;
    width: 32.533vw;
  }
}
@media screen and (min-width: 751px) {
  .p-development__title {
    margin-block-start: -32px;
    margin-inline-start: 485px;
    width: 244px;
  }
}

.p-concept {
  align-items: center;
  background: url(../images/concept_bg.png) 0/contain no-repeat;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-concept {
    height: 26.133vw;
    margin-block-start: 8vw;
    padding-block-start: 2.667vw;
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-concept {
    height: 196px;
    margin-block-start: 60px;
    padding-block-start: 20px;
    width: 630px;
  }
}

.p-concept__text {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.444;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-concept__text {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-concept__text {
    font-size: 36px;
  }
}

.p-development__text {
  letter-spacing: 0.05em;
  line-height: 1.714;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-development__text {
    margin-block-start: 3.333vw;
    width: 82.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-development__text {
    margin-block-start: 25px;
    width: 618px;
  }
}

.p-skin-coat {
  background: url(../images/skin-coat_bg_01.jpg) 0 0/100% auto no-repeat, url(../images/skin-coat_bg_02.jpg) 0 100%/100% auto no-repeat #e5eeee;
}
@media screen and (max-width: 750px) {
  .p-skin-coat {
    padding-block: 23.333vw 12vw;
  }
}
@media screen and (min-width: 751px) {
  .p-skin-coat {
    padding-block: 75px 95px;
  }
}

.p-skin-coat__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-skin-coat__title {
    width: 93.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-skin-coat__title {
    width: 702px;
  }
}

.p-skin-coat__catch {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-skin-coat__catch {
    margin-block-start: 4.533vw;
    width: 84.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-skin-coat__catch {
    margin-block-start: 34px;
    width: 632px;
  }
}

.p-skin-coat__text {
  letter-spacing: 0.05em;
  line-height: 1.714;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-skin-coat__text {
    margin-block-start: 6vw;
    width: 96vw;
  }
}
@media screen and (min-width: 751px) {
  .p-skin-coat__text {
    margin-block-start: 45px;
    width: 720px;
  }
}

.p-safety {
  background: url(../images/safety_bg_01.png) 100% 0 no-repeat, url(../images/safety_bg_02.png) 0 100% no-repeat;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-safety {
    background-size: 16.533vw auto;
    margin-block-start: 7.333vw;
    padding-block: 0vw 5.333vw;
    width: 76vw;
  }
}
@media screen and (min-width: 751px) {
  .p-safety {
    background-size: 124px auto;
    margin-block-start: 55px;
    padding-block: 0 40px;
    width: 570px;
  }
}

@media screen and (max-width: 750px) {
  .p-safety__title {
    width: 73.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-safety__title {
    width: 550px;
  }
}

.p-safety__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-safety__list {
    margin-block-start: 2vw;
    width: 71.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-safety__list {
    margin-block-start: 15px;
    width: 536px;
  }
}

.p-safety__text {
  color: var(--color-font-strong);
  letter-spacing: 0.05em;
  line-height: 1.679;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-safety__text {
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-safety__text {
    margin-block-start: 20px;
  }
}

.p-voice {
  background: #78cdd4;
}
@media screen and (max-width: 750px) {
  .p-voice {
    padding-block: 14vw 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice {
    padding-block: 105px 100px;
  }
}

.p-voice__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-voice__title {
    width: 70.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__title {
    width: 528px;
  }
}

.p-voice__list {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-voice__list {
    margin-block-start: 8vw;
    padding-block-start: 4vw;
    padding-bottom: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__list {
    margin-block-start: 60px;
    padding-block-end: 30px;
  }
}
.p-voice__list .slick-track {
  display: flex !important;
}
.p-voice__list .slick-slide {
  height: auto !important;
  display: flex;
}
.p-voice__list .slick-slide > div {
  display: flex;
  width: 100%;
}
.p-voice__list .slick-dots {
  bottom: 0;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.p-voice__list .slick-dots li {
  display: inline-block;
  cursor: pointer;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-voice__list .slick-dots li {
    height: 0.8vw;
    margin-inline: 0.533vw;
    width: 5.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__list .slick-dots li {
    height: 6px;
    margin-inline: 4px;
    width: 42px;
  }
}
.p-voice__list .slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: 0;
  outline: none;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .p-voice__list .slick-dots li button {
    height: 0.8vw;
    width: 5.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__list .slick-dots li button {
    height: 6px;
    width: 42px;
  }
}
.p-voice__list .slick-dots li button:hover,
.p-voice__list .slick-dots li button:focus {
  outline: none;
}
.p-voice__list .slick-dots li button:hover::before,
.p-voice__list .slick-dots li button:focus::before {
  opacity: 1;
}
.p-voice__list .slick-dots li button::before {
  background: #fff;
  content: "";
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
}
@media screen and (max-width: 750px) {
  .p-voice__list .slick-dots li button::before {
    height: 0.8vw;
    width: 5.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__list .slick-dots li button::before {
    height: 6px;
    width: 42px;
  }
}
.p-voice__list .slick-dots li.slick-active button::before {
  background: #fffb6c;
}

.p-voice__item {
  display: flex;
  height: auto;
}
@media screen and (max-width: 750px) {
  .p-voice__item {
    padding-inline: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__item {
    padding-inline: 15px;
  }
}

.p-voice__card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .p-voice__card {
    border-radius: 1.333vw;
    padding-block: 4vw 7.333vw;
    padding-inline: 4vw;
    width: 73.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__card {
    border-radius: 10px;
    padding-block: 30px 55px;
    padding-inline: 30px;
    width: 554px;
  }
}

.p-voice__header {
  align-items: center;
  border-bottom: 1px solid var(--color-font);
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-voice__header {
    gap: 2vw;
    padding-block-end: 2vw;
    padding-inline-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__header {
    gap: 15px;
    padding-block-end: 15px;
    padding-inline-start: 15px;
  }
}

@media screen and (max-width: 750px) {
  .p-voice__avatar {
    width: 12.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__avatar {
    width: 92px;
  }
}

.p-voice__name {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .p-voice__name {
    font-size: 4.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__name {
    font-size: 32px;
  }
}

.p-voice__text {
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-inline: auto;
  flex-grow: 1;
}
@media screen and (max-width: 750px) {
  .p-voice__text {
    margin-block-start: 2.667vw;
    width: 64.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__text {
    margin-block-start: 20px;
    width: 482px;
  }
}

.p-voice__btn {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-voice__btn {
    margin-block-start: 6vw;
    width: 46vw;
  }
}
@media screen and (min-width: 751px) {
  .p-voice__btn {
    margin-block-start: 45px;
    width: 345px;
  }
}

.p-allinone {
  background: url(../images/allinone_bg.jpg) 100% 0/100% auto no-repeat #f5efe8;
  margin-block-start: -1px;
}
@media screen and (max-width: 750px) {
  .p-allinone {
    padding-block: 8vw 11.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-allinone {
    padding-block: 60px 85px;
  }
}

@media screen and (max-width: 750px) {
  .p-allinone__content {
    margin-inline-start: 38.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-allinone__content {
    margin-inline-start: 290px;
  }
}

@media screen and (max-width: 750px) {
  .p-allinone__title {
    margin-inline-start: 2vw;
    width: 55.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-allinone__title {
    margin-inline-start: 15px;
    width: 418px;
  }
}

@media screen and (max-width: 750px) {
  .p-allinone__text {
    margin-block-start: 4.267vw;
    margin-inline-start: 3.733vw;
    width: 51.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-allinone__text {
    margin-block-start: 32px;
    margin-inline-start: 28px;
    width: 388px;
  }
}

@media screen and (max-width: 750px) {
  .p-allinone__list {
    margin-block-start: 3.333vw;
    width: 56vw;
  }
}
@media screen and (min-width: 751px) {
  .p-allinone__list {
    margin-block-start: 25px;
    width: 420px;
  }
}

.p-design__lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-design__lead {
    width: 61.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-design__lead {
    width: 460px;
  }
}

.p-design__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-design__title {
    margin-block-start: 2.4vw;
    width: 76vw;
  }
}
@media screen and (min-width: 751px) {
  .p-design__title {
    margin-block-start: 18px;
    width: 570px;
  }
}

.p-design__text {
  letter-spacing: 0.05em;
  line-height: 1.786;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-design__text {
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-design__text {
    margin-block-start: 15px;
  }
}

.p-design__text-em {
  color: var(--color-font-strong);
  line-height: 2.5;
}

.p-silkymist {
  background: url(../images/silkymist_bg.jpg) 0/cover no-repeat;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-silkymist {
    height: 124vw;
    margin-block-start: 7.333vw;
    padding-block: 10vw 5.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-silkymist {
    height: 930px;
    margin-block-start: 55px;
    padding-block: 75px 40px;
    width: 670px;
  }
}

.p-silkymist__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-silkymist__title {
    width: 66.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-silkymist__title {
    width: 498px;
  }
}

.p-silkymist__text {
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.786;
}
@media screen and (max-width: 750px) {
  .p-silkymist__text {
    margin-block-start: 6.667vw;
    margin-inline-start: 6.667vw;
    width: 52vw;
  }
}
@media screen and (min-width: 751px) {
  .p-silkymist__text {
    margin-block-start: 50px;
    margin-inline-start: 50px;
    width: 390px;
  }
}

.p-video {
  height: 0;
  margin-inline: auto;
  padding-top: 56.25%;
  position: relative;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .p-video {
    margin-block-start: 5.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-video {
    margin-block-start: 40px;
    width: 670px;
  }
}
.p-video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-message {
  background: url(../images/message_bg.jpg) 0 0/100% auto no-repeat;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-message {
    padding-block: 10.667vw 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message {
    padding-block: 80px 50px;
  }
}
.p-message::before {
  background: url(../images/message_deco.png) 0 100%/100% auto no-repeat;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-message::before {
    height: 5.333vw;
    top: -1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message::before {
    height: 40px;
    top: -10px;
  }
}

@media screen and (max-width: 750px) {
  .p-message__title {
    margin-inline-start: 7.867vw;
    width: 17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message__title {
    margin-inline-start: 59px;
    width: 130px;
  }
}

.p-message__text {
  letter-spacing: 0.05em;
  line-height: 2.16;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-message__text {
    font-size: 3.333vw;
    margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message__text {
    font-size: 25px;
    margin-block-start: 40px;
  }
}

.p-message__text-em {
  color: var(--color-primary);
}

.p-ingredient {
  background: #f5efe8;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-ingredient {
    margin-block-start: 13.333vw;
    padding-block: 4.667vw;
    padding-inline: 6.667vw;
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ingredient {
    margin-block-start: 100px;
    padding-block: 35px;
    padding-inline: 50px;
    width: 630px;
  }
}

.p-ingredient__text {
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .p-ingredient__text {
    font-size: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ingredient__text {
    font-size: 20px;
  }
}
.p-ingredient__text + .p-ingredient__text {
  margin-block-start: 1.5em;
}

.p-btn-list {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-btn-list {
    margin-block-start: 4vw;
    width: 79.2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-btn-list {
    margin-block-start: 30px;
    width: 594px;
  }
}/*# sourceMappingURL=style.css.map */