@charset "UTF-8";
/* 
 * 肌育注射LP - PDFの厳格な再現
 * 完全画像ベースの実装
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li {
  list-style-type: none;
}

body {
  overflow-x: hidden;
}

/* 使用フォント */
.kozuka-l {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
}
.kozuka {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
}
.kozuka-m {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
}
.dnp {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.shippori {
  font-family: "shippori-mincho", sans-serif;
}
.hiragino {
  font-family: "hiragino-mincho-pron", sans-serif;
}

/* --- 改行制御 初期設定 --- */
br.tab,
br.sp {
  display: none;
}
br.pc {
  display: block;
}

/* --- タブレットサイズ（〜766px） --- */
@media screen and (max-width: 766px) {
  br.tab {
    display: block;
  }
  br.sp {
    display: none; /* タブレットではまだ非表示 */
  }
  br.pc {
    display: block;
  }
}

/* --- スマホサイズ（〜550px） --- */
@media screen and (max-width: 550px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}

.lp-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}
@media screen and (max-width: 766px) {
  .lp-container {
    padding: 0 15px;
  }
}
.mv-cont {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

/* ヒーロー画像は小さめに表示 */
.hero-image {
  width: 100%;
  position: static;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
}

/* ヘッダー画像（リジュランなど）も小さめに表示 */
.header-image {
  width: 100%;
  max-width: 700px;
  position: static;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
}

.cards-section {
  width: 100%;
  max-width: 800px;
  padding: 60px 40px 10px 40px;
  margin: 80px auto 0 auto;
  background: #ffffff;
}
@media screen and (max-width: 766px) {
  .cards-section {
    padding: 40px 15px;
    margin: 60px auto 0 auto;
  }
}
@media screen and (max-width: 550px) {
  .cards-section {
    padding: 30px 15px;
    margin: 50px auto 0 auto;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .cards-grid {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 767px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.card-item {
  position: relative;
  overflow: visible;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.card-item:active {
  transform: translateY(0px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.card-item:nth-child(odd) .card-title {
  color: #fff !important;
}
a.card-item {
  text-decoration: none !important;
}

.card-image-wrapper {
  position: static;
  width: 100%;
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.card-bg-image {
  width: 100%;
  position: relative;
  line-height: 0;
}
.card-bg-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cards-grid .card-product-image {
  position: absolute;
  top: 60px;
  bottom: auto;
  right: -30px;
  width: 160px;
}
.cards-grid .card-product-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 550px) {
  .cards-grid .card-product-image {
    width: 120px !important;
    max-width: none !important;
    right: -40px !important;
    top: 40px !important;
  }
}
.cards-grid .card-product-image.card-product-small {
  width: 80px;
  right: 20px;
  top: 75px;
}
@media screen and (max-width: 550px) {
  .cards-grid .card-product-image.card-product-small {
    width: 60px !important;
    max-width: none !important;
    right: -8px !important;
    top: 49px !important;
  }
}
.cards-grid .card-product-image.card-product-medium {
  width: 125px;
  right: -5px;
  top: 90px;
}
@media screen and (max-width: 550px) {
  .cards-grid .card-product-image.card-product-medium {
    width: 90px !important;
    max-width: none !important;
    right: -13px !important;
    top: 69px !important;
  }
}
.cards-grid .card-product-image.card-product-smaller {
  width: 140px;
  right: -20px;
  top: 45px;
}
@media screen and (max-width: 550px) {
  .cards-grid .card-product-image.card-product-smaller {
    width: 90px !important;
    max-width: none !important;
    right: -29px !important;
    top: 35px !important;
  }
}

.card-text {
  background: linear-gradient(
    to left,
    rgb(100, 160, 220) 0%,
    rgba(100, 160, 220, 0.4) 100%
  );
  padding: 5px 5px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  min-height: 57.8px;
}
.card-text .card-title {
  font-size: 16px;
}
@media screen and (max-width: 550px) {
  .card-text {
    padding: 8px 5px 20px 5px;
  }
}
.card-text::after {
  content: "∨";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(2);
  color: white;
  font-size: 14px;
  opacity: 0.8;
}
@media screen and (max-width: 550px) {
  .card-text::after {
    bottom: 3px;
    font-size: 12px;
  }
}
.card-text.card-text-alt {
  background: linear-gradient(
    to left,
    rgb(130, 180, 230) 0%,
    rgba(130, 180, 230, 0.4) 100%
  );
}
.card-text.card-text-alt .card-title {
  color: #1e4d7b;
  /* font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif; */
  font-size: 16px;
}
.card-text.card-text-alt::after {
  color: #1e4d7b;
}
.card-text.card-text-multiline .card-title {
  font-size: 16px;
  line-height: 1.1;
  height: 28.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif; */
}
.card-text.card-text-multiline .card-title br {
  display: block;
}
@media screen and (max-width: 550px) {
  .card-text.card-text-multiline .card-title {
    font-size: 14px;
    line-height: 1.1;
    height: 25.6px;
  }
  .card-text.card-text-multiline .card-title br {
    display: block;
  }
}

.card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .card-title {
    font-size: 16px;
  }
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 350px;
  object-fit: cover;
}

.cta-container {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 550px) {
  .cta-container {
    margin-bottom: 40px;
  }
}
a.cta-button.reservation {
  text-decoration: none !important;
}
.cta-button.reservation {
  width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 70px 12px 60px;
  background: linear-gradient(
    180deg,
    #8fb8e8 0%,
    #73a4db 20%,
    #5890ce 50%,
    #4a7dc1 80%,
    #3c6ab4 100%
  );
  color: white;
  font-size: 17px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border-top: 5px solid #3379cc;
  border-right: 5px solid #3379cc;
  border-left: 5px solid #3379cc;
}
@media screen and (max-width: 550px) {
  .cta-button.reservation {
    width: 80%;
    font-size: 15px;
  }
}

.cta-button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta-button::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #4a7dc1;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  z-index: 1;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.cta-button:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    180deg,
    #73a4db 0%,
    #5890ce 20%,
    #4a7dc1 50%,
    #3c6ab4 80%,
    #2e5aa7 100%
  );
}
@media screen and (max-width: 766px) {
  .cta-button {
    padding: 15px 40px;
    font-size: 16px;
  }
}

.text-box-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-top: 40px;
  background: transparent;
}
@media screen and (max-width: 766px) {
  .text-box-section {
    margin-top: 20px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 550px) {
  .text-box-section {
    margin-top: 40px;
    padding: 0 20px 40px;
  }
}
.text-box-section.top-small {
  margin-top: 0;
}

.text-box-container {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0px 40px 25px;
  box-shadow: none;
}
@media screen and (max-width: 550px) {
  .text-box-container {
    padding: 0;
  }
}

.text-box-header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .text-box-header {
    margin-bottom: 20px;
  }
}

.text-box-title {
  font-size: 35px;
  font-weight: 400;
  color: #244884;
  margin: 0;
  /* padding-bottom: 10px; */
  border-bottom: 10px solid transparent;
  border-image: linear-gradient(
    to right,
    rgba(184, 212, 241, 0.4),
    rgba(184, 212, 241, 0.7),
    rgb(184, 212, 241)
  );
  border-image-slice: 1;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 0.021em;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 766px) {
  .text-box-title {
    font-size: 28px;
    padding-bottom: 8px;
    border-bottom-width: 8px;
  }
}
@media screen and (max-width: 550px) {
  .text-box-title {
    font-size: 24px;
    padding-bottom: 6px;
    border-bottom-width: 6px;
  }
}

.title-main {
  font-size: 1em;
  font-weight: 300;
}

.title-sub {
  font-size: 0.73em;
  font-weight: 300;
  margin-left: 0.1em;
}

.text-box-content {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  line-height: 2;
  color: #000000;
}
.text-box-content p {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.75;
}
.text-box-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 766px) {
  .text-box-content p {
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}

.highlight-text {
  color: #4875b7;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.treatment-intro-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px;
  background: #f8f9fa;
}
@media screen and (max-width: 766px) {
  .treatment-intro-section {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 550px) {
  .treatment-intro-section {
    padding: 20px 15px;
  }
}

.intro-header {
  margin-bottom: 30px;
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c5aa0;
  padding-bottom: 15px;
  border-bottom: 3px solid #5a9bd5;
  display: inline-block;
}
@media screen and (max-width: 766px) {
  .intro-title {
    font-size: 24px;
  }
}

.intro-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}
.intro-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 766px) {
  .intro-content {
    padding: 20px;
  }
  .intro-content p {
    font-size: 14px;
  }
}

.concerns-section {
  width: 100%;
  padding: 50px 40px 40px 40px;
  margin-top: 55px;
  background: linear-gradient(
    to bottom,
    rgba(228, 235, 236, 1),
    rgba(209, 223, 226, 0) 100%
  );
}
@media screen and (max-width: 766px) {
  .concerns-section {
    padding: 40px 30px 30px 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 550px) {
  .concerns-section {
    padding: 35px 15px 25px 15px;
    margin-top: 40px;
  }
}

.concerns-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 766px) {
  .concerns-container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 550px) {
  .concerns-container {
    padding: 0 20px;
  }
}

.concerns-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #000000;
  margin-left: 45px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
  width: fit-content;
  border-bottom: 0.5px solid #000;
}
.concerns-title.concerns-rejuran {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
}
.concerns-title.concerns-rejuran span.title-large {
  font-size: 39px;
}
@media screen and (max-width: 766px) {
  .concerns-title.concerns-rejuran span.title-large {
    font-size: 36px;
  }
}
@media screen and (max-width: 550px) {
  .concerns-title.concerns-rejuran span.title-large {
    font-size: 26px;
  }
}
.concerns-title.concerns-rejuran span.title-small {
  font-size: 32px;
}
@media screen and (max-width: 766px) {
  .concerns-title.concerns-rejuran span.title-small {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .concerns-title.concerns-rejuran span.title-small {
    font-size: 22px;
  }
}
.concerns-title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 80%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #edf2f2;
  rotate: 135deg;
  translate: -50%;
}
.concerns-title::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: calc(75% + 2px);
  width: 20px;
  height: 0.5px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #000;
  box-shadow: 0 0 0 0 #ffffff;
}
@media screen and (max-width: 766px) {
  .concerns-title::after {
    left: calc(75% - 9px);
  }
}
@media screen and (max-width: 550px) {
  .concerns-title::after {
    left: calc(75% - 31px);
    width: 17px;
    top: calc(100% + 6px);
  }
}

@media screen and (max-width: 766px) {
  .concerns-title {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .concerns-title::before {
    left: 77%;
  }
}
@media screen and (max-width: 550px) {
  .concerns-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .concerns-title::before {
    left: 65%;
    bottom: -8px;
  }
}

.title-small {
  font-size: 0.7em;
  font-weight: 400;
}

.title-large {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0 0.15em;
}

.concerns-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
  margin-top: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .concerns-tags {
    gap: 15px;
  }
}
@media screen and (max-width: 550px) {
  .concerns-tags {
    gap: 12px;
  }
}

.concern-tag {
  display: inline-block;
  padding: 10px 28px;
  background: #ffffff;
  border: 1px solid #6699cc;
  border-radius: 0 25px 0 25px;
  font-size: 19px;
  color: #373d77;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  box-shadow: 3px 3px 6px rgba(102, 153, 204, 0.75);
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex: 0 1 auto;
}
.concern-tag:hover {
  box-shadow: 0 6px 16px rgba(72, 117, 183, 0.35);
  transform: translateY(-2px);
}
@media screen and (max-width: 766px) {
  .concern-tag {
    padding: 8px 24px;
    font-size: 15px;
    border-radius: 0 22px 0 22px;
  }
}
@media screen and (max-width: 550px) {
  .concern-tag {
    padding: 7px 20px;
    font-size: 14px;
    border-radius: 0 20px 0 20px;
    text-align: center;
    min-width: 250px;
  }
}

.price-table-section {
  width: 100%;
  padding: 40px 40px 80px 40px;
  background: #ffffff;
}
@media screen and (max-width: 766px) {
  .price-table-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .price-table-section {
    padding: 50px 0;
  }
}

#price-bijin {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 120px;
}

#price-snekos {
  background: #ffffff;
}

.text-box-container.bijin-box {
  padding-bottom: 60px;
  padding-top: 38px;
}
@media screen and (max-width: 766px) {
  .text-box-container.bijin-box {
    padding: 0 40px;
  }
}
@media screen and (max-width: 550px) {
  .text-box-container.bijin-box {
    padding: 0;
  }
}
.pluryal-intro-section {
  padding: 60px 40px 10px 40px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .pluryal-intro-section {
    padding: 50px 30px 10px 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-intro-section {
    padding: 40px 20px 10px 20px;
  }
}

.pluryal-intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.pluryal-intro-subtitle {
  font-size: 18px;
  color: #000000;
  margin: 0 0 5px 0;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "HG明朝B",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝",
    serif;
  font-weight: 400;
}
@media screen and (max-width: 550px) {
  .pluryal-intro-subtitle {
    font-size: 14px;
  }
}

.pluryal-intro-subtitle-large {
  font-size: 24px;
}
@media screen and (max-width: 550px) {
  .pluryal-intro-subtitle-large {
    font-size: 18px;
  }
}

.pluryal-intro-title {
  font-size: 42px;
  color: #244884;
  font-weight: 400;
  margin: 20px 0 0 0;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "HG明朝B",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝",
    serif;
}
@media screen and (max-width: 766px) {
  .pluryal-intro-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-intro-title {
    font-size: 28px;
  }
}

.pluryal-intro-badge {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a6fa5 100%);
  color: white;
  display: inline-block;
  padding: 2px 80px;
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0 2px 0;
  border-radius: 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .pluryal-intro-badge {
    font-size: 14px;
    padding: 2px 50px;
    margin: 4px 0 2px 0;
  }
}

.pluryal-intro-clinics {
  font-size: 15px;
  color: #000000;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 550px) {
  .pluryal-intro-clinics {
    font-size: 12px;
  }
}

.pluryal-intro-description {
  background: transparent;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.pluryal-intro-description p {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 550px) {
  .pluryal-intro-description p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.pluryal-ingredients-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  padding: 40px 0 20px;
}
@media screen and (max-width: 766px) {
  .pluryal-ingredients-section {
    padding: 0 30px 20px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-section {
    padding: 0 0 20px;
  }
}

.pluryal-ingredients-subtitle {
  display: inline-block;
  background: linear-gradient(to right, #b8d4f1 0%, #7ba8d8 100%);
  color: white;
  padding: 8px 20px;
  font-size: 25px;
  margin-bottom: 0;
  vertical-align: middle;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "HG明朝B",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝",
    serif;
  font-weight: 400;
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-subtitle {
    font-size: 20px;
    padding: 6px 15px;
  }
}

.pluryal-ingredients-title {
  display: inline-block;
  font-size: 52px;
  color: #244884;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  vertical-align: baseline;
  padding-left: 20px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "HG明朝B",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝",
    serif;
  transform: translateY(12px);
}
.pluryal-ingredients-title .number-large {
  font-size: 2em;
  font-weight: 600;
}
@media screen and (max-width: 766px) {
  .pluryal-ingredients-title {
    font-size: 44px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-title {
    font-size: 36px;
  }
}

.pluryal-ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-grid {
    gap: 20px;
    margin-bottom: 30px;
  }
}

.ingredient-box {
  background: rgba(60, 100, 150, 0.85);
  padding: 20px 80px;
  border-radius: 10px;
  color: white;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .ingredient-box {
    padding: 20px 30px;
  }
}

.ingredient-title {
  background: white;
  color: #1e4d7b;
  display: inline-block;
  padding: 3px 40px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 550px) {
  .ingredient-title {
    font-size: 18px;
    padding: 3px 30px;
  }
}

.ingredient-description {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  color: white;
  text-align: left;
  padding: 0;
}
@media screen and (max-width: 550px) {
  .ingredient-description {
    font-size: 14px;
    line-height: 1.8;
    padding: 0;
  }
}

.pluryal-ingredients-arrow {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pluryal-ingredients-arrow .arrow-icon {
  font-size: 40px;
  color: #5a8ec4;
  transform: scaleX(2);
  line-height: 0.8;
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-arrow .arrow-icon {
    font-size: 30px;
  }
}
.pluryal-ingredients-arrow .arrow-icon.arrow-light {
  opacity: 0.3;
}
.pluryal-ingredients-arrow .arrow-icon.arrow-medium {
  opacity: 0.6;
  margin-top: -10px;
}

.pluryal-details-section {
  padding: 20px 40px 80px 40px;
  background: white;
}
@media screen and (max-width: 766px) {
  .pluryal-details-section {
    padding: 20px 30px 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-details-section {
    padding: 20px 20px 50px 20px;
  }
}

.pluryal-details-container {
  max-width: 700px;
  margin: 0 auto;
}

.pluryal-details-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  margin: 0 auto 40px auto;
  text-align: left;
  max-width: 700px;
}
@media screen and (max-width: 550px) {
  .pluryal-details-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}

.ingredient-detail {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}
.ingredient-detail:last-child {
  margin-bottom: 0;
}
.ingredient-detail.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 550px) {
  .ingredient-detail {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 50px;
  }
}

.ingredient-detail-image {
  flex-shrink: 0;
  width: 300px;
}
.ingredient-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 766px) {
  .ingredient-detail-image {
    width: 250px;
  }
}
@media screen and (max-width: 550px) {
  .ingredient-detail-image {
    width: 200px;
  }
}

.ingredient-detail-content {
  flex: 1;
}

.ingredient-detail-title {
  font-size: 26px;
  color: #244884;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #244884;
  font-weight: 500;
}
@media screen and (max-width: 550px) {
  .ingredient-detail-title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

.ingredient-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ingredient-detail-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 12px;
}
.ingredient-detail-list li:before {
  content: "・";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.ingredient-detail-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .ingredient-detail-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.price-container {
  max-width: 900px;
  margin: 0 auto;
}

.price-title {
  font-size: 23px;
  color: #244884;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
}
.price-title:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 766px) {
  .price-title:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 550px) {
  .price-title:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 766px) {
  .price-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 550px) {
  .price-title {
    font-size: 22px;
  }
}

.price-table {
  overflow: hidden;
}

.price-table-header,
.price-table-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .price-table-header,
  .price-table-row {
    grid-template-columns: 1fr 1.2fr 1.2fr;
  }
}
@media screen and (max-width: 550px) {
  .price-table-header,
  .price-table-row {
    grid-template-columns: 1fr 1.2fr 1.2fr;
  }
}

.price-table-header {
  background: linear-gradient(
    to right,
    rgba(129, 153, 205, 1) 0%,
    rgba(134, 191, 226, 1) 100%
  );
  color: white;
  font-weight: 300;
  font-size: 17px;
}
.price-table-header .price-col {
  padding: 10px 6px;
  white-space: nowrap;
  border-right: none;
  background: transparent;
  color: white !important;
  font-size: 17px;
}
.price-table-header .price-col.campaign {
  color: white !important;
  font-size: 17px;
}
@media screen and (max-width: 766px) {
  .price-table-header .price-col,
  .price-table-header .price-col.campaign {
    font-size: 15px;
  }
}

.price-table-row {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 766px) {
  .price-table-row {
    border-bottom: none;
  }
}
.price-table-row:last-child {
  border-bottom: none;
}
.price-table-row:hover {
  background-color: #f8f9fa;
}
.price-table-row:nth-child(2) .price-col,
.price-table-row:nth-child(3) .price-col,
.price-table-row:nth-last-child(1) .price-col,
.price-table-row:nth-last-child(2) .price-col {
  padding-top: 6px;
  padding-bottom: 6px;
}

.price-col {
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #a2bcd9;
  border-right: 1px solid #a2bcd9;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
}

.price-col.menu-name {
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(
    to right,
    rgba(129, 153, 205, 1) 0%,
    rgba(134, 191, 226, 1) 100%
  );
  font-size: 17px;
  flex-direction: column;
  line-height: 1.5;
}
@media screen and (max-width: 766px) {
  .price-col.menu-name {
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .price-col.menu-name {
    font-size: 15px;
  }
}

.price-col.regular,
.price-col.campaign-regular {
  font-size: 22px;
  color: #333;
  flex-wrap: wrap;
  gap: 0;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 550px) {
  .price-col.regular,
  .price-col.campaign-regular {
    font-size: 15px;
  }
}

.price-col.campaign-regular,
.price-col.campaign-regular span.tax-inline {
  color: #434dff;
}
.price-col.campaign {
  font-size: 28px;
  color: #4875b7;
  background-color: transparent;
  flex-wrap: wrap;
  gap: 0;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
}

.volume-text {
  font-size: 13px;
  color: #777;
  font-weight: 400;
  margin-top: 5px;
}

.price-main {
  font-size: inherit;
  font-weight: inherit;
  display: block;
}

.tax {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  display: block;
  margin-top: 3px;
}

/* --- ベース価格表示 --- */
.price-wrapper {
  display: inline-flex;
  align-items: baseline; /* ← baseline の方が自然に揃う */
}
@media screen and (max-width: 766px) {
  .price-wrapper {
    display: block;
  }
}
/* --- 数値部分 --- */
.price-num {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.05em;
  margin-left: 3px;
}
@media screen and (max-width: 550px) {
  .price-num {
    font-size: 20px;
    margin-left: 0;
  }
}

.price-num.narrow-cell {
  letter-spacing: 0;
}
.price-num.tax-small.narrow-cell {
  letter-spacing: 0;
}

/* --- 税込部分（括弧内） --- */
.tax-inline {
  margin-left: 0;
  font-family: "kozuka-mincho-pr6n", serif;
  font-weight: 700;
  font-size: 13px;
  color: #3d3d3d;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 550px) {
  .tax-inline {
    font-size: 12px;
  }
}

/* 税込内の数字 */
.tax-inline .price-num {
  font-family: "shippori-mincho", sans-serif;
  font-size: 1.5em;
}

/* 小さい数字（例: ¥95,700） */
.tax-inline .price-num.tax-small {
  font-size: 18px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 550px) {
  .tax-inline .price-num.tax-small {
    font-size: 13px;
    margin-left: -3px;
  }
}

/* 英字（例: ¥ の小さい表記） */
.en-small {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  font-size: 13px;
}
@media screen and (max-width: 550px) {
  .en-small {
    font-size: 11px;
  }
}

/* キャンペーン時の色変更 */
.price-col.campaign .tax-inline {
  color: #4875b7;
}

.treatment-details-table {
  max-width: 900px;
  margin: 40px auto 0 auto;
  border: 2px solid #e0e0e0;
  overflow: hidden;
}
@media screen and (max-width: 766px) {
  .treatment-details-table {
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .treatment-details-table {
    margin-top: 25px;
  }
}

.details-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid #e0e0e0;
}
.details-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 550px) {
  .details-row {
    grid-template-columns: 1fr;
  }
}

.details-label {
  background: linear-gradient(
    to right,
    #7a9fd9 0%,
    #8ba8d1 30%,
    #9db9da 60%,
    #aec9e3 100%
  );
  color: white;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}
@media screen and (max-width: 766px) {
  .details-label {
    font-size: 15px;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 550px) {
  .details-label {
    font-size: 14px;
    padding: 10px 12px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

.details-value {
  background: white;
  padding: 15px 20px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1.8;
}
@media screen and (max-width: 766px) {
  .details-value {
    font-size: 14px;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 550px) {
  .details-value {
    font-size: 13px;
    padding: 10px 12px;
  }
}

.clinic-note {
  max-width: 900px;
  margin: 20px auto 0 auto;
  text-align: right;
}
.clinic-note p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766px) {
  .clinic-note p {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 550px) {
  .clinic-note p {
    text-align: left;
  }
}

.info-table {
  margin-top: 60px;
  overflow: hidden;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.info-row {
  display: grid;
  grid-template-columns: 1.4fr 2.5fr;
}
@media screen and (max-width: 550px) {
  .info-row {
    grid-template-columns: 1fr;
  }
}

.info-label {
  background: linear-gradient(
    to right,
    rgba(129, 153, 205, 1) 0%,
    rgba(134, 191, 226, 1) 100%
  );
  font-size: 16px;
  color: #fff;
  padding: 8px 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 766px) {
  .info-label {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}
@media screen and (max-width: 550px) {
  .info-label,
  .info-value {
    border-left: 1px solid #8199cd;
  }
}
.info-row:first-child .info-label {
  border-top: 1px solid #8199cd;
}
.info-row:last-child .info-label {
  border-bottom: 1px solid #8199cd;
}
.info-row:first-child .info-label {
  border-top: 1px solid #8199cd;
}
.info-value {
  padding: 8px 80px 8px 40px;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
  display: flex;
  align-items: center;
  background: white;
  position: relative;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #8199cd;
  border-right: 1px solid #8199cd;
}
@media screen and (max-width: 550px) {
  .info-value {
    padding: 8px 10px 8px 20px;
  }
}
.info-row:first-child .info-value {
  border-top: 1px solid #8199cd;
}
@media screen and (max-width: 550px) {
  .info-row:first-child .info-value {
    border-top: none;
  }
}
.info-row:last-child .info-value {
  border-bottom: 1px solid #8199cd;
}
.pickup-photo-section {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 10px;
  position: relative;
  background: #e8f2f9;
}
@media screen and (max-width: 766px) {
  .pickup-photo-section {
    margin: 60px auto 0;
    padding: 10px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-photo-section {
    margin: 20px auto;
    padding: 10px;
  }
}

.pickup-container {
  width: 100%;
  margin: 0 auto;
  padding: 10px 80px 40px;
  border: 1px solid #5a8ec4;
  background: transparent;
  position: relative;
}
@media screen and (max-width: 766px) {
  .pickup-container {
    padding: 10px 60px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-container {
    padding: 10px 30px;
  }
}

.pickup-header {
  position: absolute;
  top: -32px;
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #e8f2f9 50%,
    #e8f2f9 100%
  );
  padding: 0 15px;
  z-index: 1;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  .pickup-header {
    top: -28px;
    left: 0;
    padding: 0 12px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-header {
    top: -24px;
    left: 0;
    padding: 0 10px;
  }
}

.pickup-title {
  font-size: 42px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  color: #86bfe2;
  margin: 0;
  padding: 0;
  border: none;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  .pickup-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-title {
    font-size: 30px;
  }
}

.pickup-case-title {
  font-size: 29px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  color: #2a5a8a;
  text-align: center;
  margin: 0 120px;
  padding-top: 25px;
  padding-bottom: 5px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .pickup-case-title {
    font-size: 24px;
    margin: 0 80px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-case-title {
    font-size: 18px;
    margin: 0 40px;
    letter-spacing: 0;
  }
}

.pickup-doctor {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 13px;
  background-color: rgb(134 191 226 / 0.45);
  color: #244884;
  text-align: center;
  padding: 2px 20px;
  margin: 0 120px 30px 120px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .pickup-doctor {
    margin: 0 80px 20px 80px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-doctor {
    font-size: 12px;
    padding: 2px 15px;
    margin: 0 40px 20px 40px;
  }
}

.pickup-content-wrapper {
  display: flex;
  gap: 10px;
  margin: 0 40px 0 40px;
}
@media screen and (max-width: 766px) {
  .pickup-content-wrapper {
    gap: 20px;
    margin: 0 20px 0 20px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-content-wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 0 10px 0 10px;
  }
}

.pickup-photos {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  flex: 1;
}
@media screen and (max-width: 766px) {
  .pickup-photos {
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-photos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.photo-item {
  text-align: center;
}

.pickup-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.photo-caption {
  font-size: 21px;
  color: #000;
  margin: 0;
  text-align: left;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .photo-caption {
    font-size: 14px;
  }
}

.pickup-info {
  max-width: 720px;
  background: #d3d3d3;
  margin: 30px auto 10px;
  padding: 15px 15px;
  flex: 1;
}
@media screen and (max-width: 766px) {
  .pickup-info {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 550px) {
  .pickup-info {
    padding: 15px 20px;
  }
}

.info-item {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 2px;
  letter-spacing: 0.2em;
}
.info-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .info-item {
    font-size: 13px;
    line-height: 1.5;
  }
}

.info-label-inline {
  color: #000;
}

.pickup-note {
  max-width: 720px;
  text-align: right;
  display: block;
  margin: 15px auto;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .pickup-note {
    font-size: 11px;
    text-align: left;
  }
}
.pickup-content-wrapper.side {
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .pickup-content-wrapper.side {
    flex-direction: column;
    width: 85%;
    padding-bottom: 20px;
  }
}
.pickup-photos.side-left {
  width: 55%;
  flex: 1.5;
  gap: 15px;
}

.pickup-info.side-right {
  width: 40%;
  height: 340px;
}
@media screen and (max-width: 766px) {
  .pickup-photos.side-left,
  .pickup-info.side-right {
    width: 100%;
  }
}
.pickup-info.side-right .info-item {
  margin-bottom: 15px;
}
.pickup-note.side-bottom {
  width: 100%;
  text-align: left;
}
.info-label-inline.side-description {
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  .pickup-photo-profhilo .pickup-photos {
    flex: 1;
  }
}
.pickup-photo-profhilo .pickup-info {
  /* height: 297px; */
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 550px) {
  .pickup-photo-profhilo .pickup-info {
    flex: 1;
  }
}
.snekos-effects-section {
  width: 100%;
  background: #ffffff;
  padding: 20px 80px 80px 80px;
}
@media screen and (max-width: 766px) {
  .snekos-effects-section {
    padding: 20px 40px 60px 40px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-section {
    padding: 20px 20px 40px 20px;
  }
}

.snekos-effects-container {
  margin: 0 auto;
}

.snekos-explanation {
  margin-bottom: 60px;
}
@media screen and (max-width: 550px) {
  .snekos-explanation {
    margin-bottom: 40px;
  }
}

.explanation-content {
  display: flex;
  gap: 76px;
  align-items: center;
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .explanation-content {
    flex-direction: column;
    gap: 30px;
  }
}

.explanation-left {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .explanation-left {
    width: 100%;
    text-align: center;
  }
}

.explanation-image {
  width: 335px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .explanation-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.explanation-image-text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
@media screen and (max-width: 766px) {
  .explanation-image-text {
    gap: 50px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 550px) {
  .explanation-image-text {
    gap: 55px;
    margin-top: 12px;
  }
}

.explanation-image-left,
.explanation-image-right {
  flex: 1;
  text-align: center;
  max-width: 190px;
}
@media screen and (max-width: 766px) {
  .explanation-image-left,
  .explanation-image-right {
    max-width: 200px;
  }
}

.explanation-image-label {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 766px) {
  .explanation-image-label {
    font-size: 12px;
  }
}
@media screen and (max-width: 550px) {
  .explanation-image-label {
    font-size: 11px;
  }
}

.explanation-right {
  flex: 1;
}
@media screen and (max-width: 766px) {
  .explanation-right {
    padding: 0 40px;
  }
}
@media screen and (max-width: 550px) {
  .explanation-right {
    padding: 0;
  }
}

.explanation-paragraph {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 3.06;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 15px;
  text-align: left;
}
.explanation-paragraph:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 776px) {
  .explanation-paragraph {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}

.snekos-effects-section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .snekos-effects-section-inner {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-section-inner {
    margin: 40px auto 0;
  }
}

.snekos-effects-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  color: #244884;
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 1px solid #93b2d1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}
.snekos-effects-title .title-main {
  font-size: 23px;
  display: inline-block;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .snekos-effects-title .title-main {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-title .title-main {
    font-size: 16px;
  }
}
.snekos-effects-title .title-sub {
  font-size: 29px;
  display: inline-block;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .snekos-effects-title .title-sub {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-title .title-sub {
    font-size: 24px;
  }
}
.snekos-effects-title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 82%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #fff;
  rotate: 135deg;
  translate: -50%;
}

.snekos-effects-title::after {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: calc(75% + 14px);
  width: 25px;
  height: 0.5px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #244884;
  box-shadow: 0 0 0 0 #ffffff;
}
@media screen and (max-width: 766px) {
  .snekos-effects-title::after {
    top: calc(100% + 8px);
    left: calc(75% + 4px);
    width: 20px;
  }
}
@media screen and (max-width: 766px) {
  .snekos-effects-title::after {
    top: calc(100% + 7px);
    left: calc(75% + 3px);
    width: 17px;
  }
}

@media screen and (max-width: 766px) {
  .snekos-effects-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-title {
    margin-bottom: 15px;
  }
}

.snekos-effects-image-container {
  margin-top: 3px;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .snekos-effects-image-container {
    margin-top: 3px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-image-container {
    margin-top: 3px;
  }
}

.snekos-effects-image {
  max-width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .snekos-effects-image {
    max-width: 100%;
  }
}

.usage-section {
  width: 100%;
  background: #ffffff;
  padding: 10px 40px 0 40px;
}
@media screen and (max-width: 766px) {
  .usage-section {
    padding: 10px 30px 0 30px;
  }
}
@media screen and (max-width: 550px) {
  .usage-section {
    padding: 10px 0;
  }
}

.usage-container {
  max-width: 1000px;
  margin: 0 auto;
}

.usage-content {
  background: white;
  padding: 40px;
  border-radius: 4px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .usage-content {
    padding: 20px 0;
  }
}

.treatment-list {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #21457e;
  width: 920px;
  margin: 0 auto;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .treatment-list {
    gap: 30px;
    width: 100%;
  }
}
.treatment-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 550px) {
  .treatment-item {
    gap: 30px;
  }
}
.treatment-name {
  min-width: 137px;
  text-align: center;
  border: 1px solid #21457e;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .treatment-name {
    min-width: 100px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.treatment-name::after {
  content: "....";
  position: absolute;
  top: 35%;
  right: -55px;
  transform: translateY(-50%);
  font-size: 30px;
  color: #8199cd;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 550px) {
  .treatment-name::after {
    right: -30px;
    font-size: 15px;
  }
}

.treatment-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.treatment-areas {
  display: flex;
  gap: 10px;
}
.treatment-areas span {
  min-width: 85px;
  text-align: center;
  font-size: 17px;
  background: linear-gradient(
    to right,
    rgba(134, 191, 226, 1),
    rgba(129, 153, 205, 1)
  );
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .treatment-areas span {
    min-width: 67px;

    padding: 10px 10px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.treatment-desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .treatment-desc {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}

.qa-section {
  background: linear-gradient(135deg, #3e5f8d 0%, #4a6fa5 100%);
  padding: 80px 40px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .qa-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .qa-section {
    padding: 40px 20px;
  }
}

.qa-container {
  max-width: 1000px;
  margin: 0 auto;
}

.qa-header {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 550px) {
  .qa-header {
    margin-bottom: 40px;
  }
}

.qa-main-title {
  font-size: 100px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.05em;
}
.qa-main-title::before {
  content: "Q";
  font-size: 180px;
  position: absolute;
  left: -20px;
  top: -30px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
  z-index: 0;
}
@media screen and (max-width: 550px) {
  .qa-main-title::before {
    font-size: 120px;
    left: -10px;
    top: -20px;
  }
}
@media screen and (max-width: 550px) {
  .qa-main-title {
    font-size: 60px;
  }
}

.qa-item {
  margin-bottom: 50px;
}
.qa-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .qa-item {
    margin-bottom: 40px;
  }
}

.qa-question {
  background: white;
  color: #244884;
  padding: 20px 40px;
  font-size: 22px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.qa-question::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: white transparent transparent transparent;
}
@media screen and (max-width: 550px) {
  .qa-question {
    font-size: 18px;
    padding: 15px 25px;
    margin-bottom: 25px;
  }
  .qa-question::after {
    bottom: -12px;
    border-width: 12px 12px 0 12px;
  }
}

.qa-answer {
  color: white;
  font-size: 16px;
  line-height: 1.9;
  padding: 0 20px;
}
.qa-answer p {
  margin: 0 0 15px 0;
}
.qa-answer p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .qa-answer {
    font-size: 14px;
    padding: 0 10px;
  }
  .qa-answer p {
    margin-bottom: 12px;
  }
}

.skin-treatment-section {
  background-image: url("../img/top/2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 40px 80px;
  margin: 0 auto;
  width: 100%;
  background-color: white;
}
@media screen and (max-width: 766px) {
  .skin-treatment-section {
    padding: 0 30px 60px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-section {
    padding: 0 0 40px;
  }
}

.skin-treatment-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 766px) {
  .skin-treatment-content {
    padding: 0;
  }
}

.skin-treatment-header {
  margin-bottom: 97px;
  margin-left: -80px;
  margin-right: -80px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .skin-treatment-header {
    margin-bottom: 60px;
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-header {
    margin-bottom: 40px;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.skin-treatment-title-wrapper {
  position: relative;
  text-align: center;
}

.skin-treatment-title-content {
  position: relative;
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 550px) {
  .skin-treatment-title-content {
    text-align: center;
  }
}

.skin-treatment-title {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.skin-treatment-title .title-highlight {
  color: #244884;
  font-size: 54px;
  font-weight: 500;
  margin-left: 5px;
  letter-spacing: 0.2em;
}
.skin-treatment-title .mobile-only {
  display: none;
}
@media screen and (max-width: 766px) {
  .skin-treatment-title {
    font-size: 28px;
  }
  .skin-treatment-title .title-highlight {
    font-size: 40px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-title {
    font-size: 24px;
  }
  .skin-treatment-title .title-highlight {
    font-size: 34px;
  }
  .skin-treatment-title .mobile-only {
    display: inline;
  }
}

.skin-treatment-underline {
  width: calc(100% + 200px);
  height: 4px;
  background: linear-gradient(to right, #244884 0%, rgba(36, 72, 132, 0) 100%);
  margin: 0 -100px 0 -100px;
}
@media screen and (max-width: 766px) {
  .skin-treatment-underline {
    width: calc(100% + 120px);
    margin: 0 -60px 0 -60px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-underline {
    height: 3px;
    width: calc(100% + 80px);
    margin: 0 -40px 0 -40px;
  }
}

.skin-treatment-subtitle {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: flex;
  align-items: flex-end;
}
.skin-treatment-subtitle img {
  width: auto;
  height: 40px;
  display: block;
}
@media screen and (max-width: 550px) {
  .skin-treatment-subtitle img {
    height: 28px;
  }
}

.skin-treatment-body {
  display: flex;
  gap: 35px;
  align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 766px) {
  .skin-treatment-body {
    gap: 30px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-body {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
}

.skin-treatment-text {
  flex: 1;
}

.treatment-paragraph {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1.9;
  color: #000000;
  margin: 0 0 20px 0;
}
.treatment-paragraph:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 766px) {
  .treatment-paragraph {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .treatment-paragraph {
    font-size: 14px;
    line-height: 1.8;
  }
}

.skin-treatment-image {
  flex-shrink: 0;
  width: 270px;
}
.skin-treatment-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .skin-treatment-image {
    width: 235px;
  }
}
@media screen and (max-width: 550px) {
  .skin-treatment-image {
    width: 100%;
    max-width: 190px;
  }
}

.rejuran-regeneration-section {
  background: #f5f5f5;
  padding: 40px 60px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .rejuran-regeneration-section {
    padding: 35px 50px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-regeneration-section {
    padding: 30px 20px;
    border-radius: 12px;
  }
}

.rejuran-regeneration-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.regeneration-subtitle {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #000000;
  margin: 0 0 15px 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .regeneration-subtitle {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.regeneration-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 31px;
  color: #244884;
  margin: 0 0 25px 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .regeneration-title {
    font-size: 28px;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 550px) {
  .regeneration-title {
    font-size: 22px;
    margin: 0 0 15px 0;
  }
}

.regeneration-box {
  background: white;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .regeneration-box {
    padding: 25px 30px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 550px) {
  .regeneration-box {
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
  }
}

.regeneration-image {
  max-width: 100%;
  margin: 0 auto 20px auto;
}
.regeneration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 550px) {
  .regeneration-image {
    margin: 0 auto 15px auto;
  }
}

.regeneration-descriptions {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 130px;
}
@media screen and (max-width: 550px) {
  .regeneration-descriptions {
    flex-direction: row;
    gap: 40px;
  }
}

.regeneration-desc-left,
.regeneration-desc-right {
  flex: 1;
  text-align: center;
}
.regeneration-desc-left p,
.regeneration-desc-right p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 550px) {
  .regeneration-desc-left p,
  .regeneration-desc-right p {
    font-size: 11px;
  }
}

.rejuran-top-section {
  max-width: 1260px;
  background-image: url(../img/s1/1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 140px 40px 280px 40px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .rejuran-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-top-section {
    background-image: url(../img/s1/sp-rejuran.png);
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.rejuran-top-title-box {
  width: 367px;
  position: absolute;
  top: 80px;
  right: 14%;
  background: white;
  padding: 5px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .rejuran-top-title-box {
    width: 210px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-top-title-box {
    top: 39px;
    right: 5%;
    padding: 3px 0;
    max-width: 170px;
  }
}

.rejuran-title-main {
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .rejuran-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-title-main {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.rejuran-top-product {
  position: absolute;
  left: 53%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 311px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.rejuran-top-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .rejuran-top-product {
    width: 220px;
    bottom: 0;
    left: 51%;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-top-product {
    width: 100%;
    max-width: 200px;
    top: calc(50% + 30px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.rejuran-decoration-image {
  position: absolute;
  top: -18px;
  left: -13%;
  width: 143px;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.rejuran-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .rejuran-decoration-image {
    width: 130px;
    top: -15px;
    left: -21%;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-decoration-image {
    width: 74px;
    max-width: none;
    left: -14%;
    top: -10px;
  }
}

.rejuran-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 52%;
  width: 443px;
  z-index: 1;
}
@media screen and (max-width: 766px) {
  .rejuran-top-benefits {
    width: 300px;
    bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.rejuran-benefit-texts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .rejuran-benefit-texts {
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .rejuran-benefit-texts {
    gap: 10px;
  }
}

.benefit-text {
  margin: 0;
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #6bb6d6;
  white-space: nowrap;
  letter-spacing: 0.1em;
  background: white;
  padding: 5px 120px 5px 26%;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 766px) {
  .benefit-text {
    font-size: 13px;
    padding: 4px 100px 4px 19%;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 550px) {
  .benefit-text {
    font-size: 14px;
    padding: 4px 80px 4px 18%;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
  }
}

.bijin-top-section {
  max-width: 1260px;
  background-image: url("../img/s2/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 140px 40px 280px 40px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .bijin-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .bijin-top-section {
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.bijin-decoration-image {
  position: absolute;
  top: -40px;
  left: -16%;
  width: 272px;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.bijin-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .bijin-decoration-image {
    width: 210px;
    top: -30px;
    left: -22%;
  }
}
@media screen and (max-width: 550px) {
  .bijin-decoration-image {
    width: 124px;
    left: -16%;
    top: -17px;
  }
}

.bijin-top-title-box {
  width: 367px;
  position: absolute;
  top: 80px;
  right: 14%;
  background: white;
  padding: 5px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .bijin-top-title-box {
    width: 210px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .bijin-top-title-box {
    top: 39px;
    right: 5%;
    padding: 3px 0;
    max-width: 170px;
  }
}

.bijin-title-main {
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #6bb6d6;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .bijin-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .bijin-title-main {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.bijin-top-product-left {
  position: absolute;
  left: 46%;
  bottom: 35px;
  transform: translateX(-50%);
  width: 107px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.bijin-top-product-left img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .bijin-top-product-left {
    width: 100px;
    top: 190px;
    left: 38%;
  }
}
@media screen and (max-width: 550px) {
  .bijin-top-product-left {
    position: absolute;
    width: 100%;
    max-width: 100px;
    top: calc(50% + 15px);
    left: calc(50% - 60px);
    transform: translate(-50%, -50%);
  }
}

.bijin-top-product-right {
  position: absolute;
  right: 21%;
  bottom: 0;
  transform: translateX(-50%);
  width: 288px;
  z-index: 6;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.bijin-top-product-right img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .bijin-top-product-right {
    width: 220px;
    top: 150px;
    left: calc(63% - 80px);
  }
}
@media screen and (max-width: 550px) {
  .bijin-top-product-right {
    position: absolute;
    width: 100%;
    max-width: 200px;
    top: calc(50% + 10px);
    left: calc(50% + 50px);
    transform: translate(-50%, -50%);
  }
}

.bijin-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 52%;
  width: 443px;
  z-index: 2;
}
@media screen and (max-width: 766px) {
  .bijin-top-benefits {
    width: 300px;
    bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .bijin-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.bijin-benefit-texts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  letter-spacing: 0.18em;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .bijin-benefit-texts {
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .bijin-benefit-texts {
    gap: 10px;
  }
}

.bijin-top-section .benefit-text {
  color: #244884;
}

.bijin-benefit-texts .benefit-text {
  padding: 6px 65px 6px 28%;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 766px) {
  .bijin-benefit-texts .benefit-text {
    padding: 5px 60px 5px 20%;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 550px) {
  .bijin-benefit-texts .benefit-text {
    padding: 5px 50px 5px 18%;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }
}

.bijin-explanation-section {
  width: 100%;
  margin: 0 auto;
  padding: 60px 120px 0px 120px;
  background: white;
  position: relative;
}
@media screen and (max-width: 766px) {
  .bijin-explanation-section {
    padding: 50px 80px 70px 80px;
  }
}
@media screen and (max-width: 550px) {
  .bijin-explanation-section {
    padding: 40px 0;
  }
}

.bijin-explanation-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 550px) {
  .bijin-explanation-container {
    min-height: auto;
  }
}

.bubble-decoration {
  position: absolute;
  z-index: 0;
  opacity: 10;
}
.bubble-decoration img {
  width: 100%;
  height: auto;
  display: block;
}
.bubble-decoration.bubble-1 {
  bottom: 130px;
  left: 24%;
  width: 30px;
}
.bubble-decoration.bubble-2 {
  bottom: 70px;
  left: 32%;
  width: 70px;
}
.bubble-decoration.bubble-3 {
  bottom: 120px;
  left: 60%;
  width: 100px;
}
.bubble-decoration.bubble-4 {
  bottom: 100px;
  left: 70%;
  width: 60px;
}
@media screen and (max-width: 550px) {
  .bubble-decoration {
    display: none;
  }
}

.explanation-cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.explanation-cards::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 22%;
  right: 22%;
  height: 4px;
  background: #244884;
}
@media screen and (max-width: 766px) {
  .explanation-cards {
    gap: 30px;
    margin-bottom: 60px;
  }
  .explanation-cards::after {
    left: 24%;
    right: 24%;
  }
}
@media screen and (max-width: 550px) {
  .explanation-cards {
    flex-direction: row;
    gap: 5px;
    align-items: flex-start;
    margin-bottom: 40px;
    max-width: 100%;
  }
  .explanation-cards::after {
    bottom: -50px;
    left: 15%;
    right: 15%;
    height: 3px;
  }
}

.explanation-card {
  flex: 1;
  max-width: 420px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
}
.explanation-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 4px;
  background: #244884;
}
@media screen and (max-width: 550px) {
  .explanation-card {
    max-width: 50%;
    width: 100%;
    flex: 1;
  }
  .explanation-card::after {
    display: none;
  }
}

.card-header {
  background: white;
  padding: 20px 24px 16px 24px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(107, 182, 214, 0.3);
  min-height: 109px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 550px) {
  .card-header {
    padding: 15px 10px;
    min-height: 80px;
    justify-content: center;
    align-items: center;
  }
}

.card-title {
  /* font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif; */
  font-size: 28px;
  font-weight: 500;
  color: #244884;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 550px) {
  .card-title {
    font-size: 17px;
  }
}

.card-subtitle {
  font-size: 14px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  color: #244884;
  margin: 6px 0 0 0;
  opacity: 0.85;
}
@media screen and (max-width: 550px) {
  .card-subtitle {
    font-size: 11px;
  }
}

.card-content {
  background: rgb(213 235 247 / 0.59);
  padding: 20px 24px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 550px) {
  .card-content {
    padding: 10px 10px 10px 10px;
  }
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefits-list li {
  position: relative;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 19px;
  color: #244884;
  padding-left: 50px;
  line-height: 2.2;
  margin-bottom: 8px;
}
@media screen and (max-width: 766px) {
  .benefits-list li {
    font-size: 16px;
    padding-left: 35px;
  }
}
.benefits-list li:last-child {
  margin-bottom: 0;
}
/* .benefits-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 24px;
  height: 24px;
  border: 2px solid #244884;
  border-radius: 3px;
  background: white;
} */
.benefits-list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 34px;
  height: 28px;
  background-image: url(../img/card/check-blue.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 766px) {
  .benefits-list li::after {
    width: 24px;
    height: 20px;
  }
}
@media screen and (max-width: 550px) {
  .benefits-list li {
    font-size: 11px;
    padding-left: 27px;
    margin-bottom: 6px;
  }
  .benefits-list li::before {
    width: 22px;
    height: 22px;
    top: 2px;
  }
  .benefits-list li::after {
    width: 20px;
    height: 17px;
    left: 0;
    top: 12px;
    font-size: 24px;
  }
}

.card-product-image {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 100px;
  z-index: 10;
  filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.3));
}
.card-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 550px) {
  .card-product-image {
    position: static;
    transform: none;
    width: 100%;
    max-width: 85px;
    margin: 10px auto 10px;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.25));
  }
}

.card-botox .card-product-image {
  width: 110px;
  top: -10px;
}
@media screen and (max-width: 766px) {
  .card-botox .card-product-image {
    width: 90px;
    top: -10px;
    right: 0;
  }
}
@media screen and (max-width: 550px) {
  .card-botox .card-product-image {
    max-width: 90px;
  }
}

.card-rejuran .card-product-image {
  width: 238px;
  right: -50px;
  top: -35px;
}
@media screen and (max-width: 766px) {
  .card-rejuran .card-product-image {
    width: 180px;
    right: -50px;
    top: -25px;
  }
}
@media screen and (max-width: 550px) {
  .card-rejuran .card-product-image {
    max-width: 129px;
  }
}

.center-multiply {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: 700;
  color: #373d77;
  z-index: 5;
}
@media screen and (max-width: 766px) {
  .center-multiply {
    font-size: 70px;
  }
}
@media screen and (max-width: 550px) {
  .center-multiply {
    position: static;
    transform: none;
    text-align: center;
    font-size: 30px;
    margin: 120px 0;
  }
}

.explanation-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -50px;
}

@media screen and (max-width: 550px) {
  .explanation-footer {
    margin-top: -30px;
  }
}

.combination-box {
  display: inline-block;
  border: none;
  padding: 0 20px;
  background: white;
  margin-bottom: 10px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 766px) {
  .combination-box {
    margin-top: 10px;
  }
}

.combination-box p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.12em;
  margin: 0;
}
@media screen and (max-width: 766px) {
  .combination-box p {
    font-size: 13px;
  }
}
@media screen and (max-width: 550px) {
  .combination-box {
    padding: 0 15px;
    margin-top: 10px;
  }
  .combination-box p {
    font-size: 15px;
  }
}

.vertical-line {
  width: 4px;
  height: 50px;
  background: #244884;
  margin: -8px auto 10px auto;
}
@media screen and (max-width: 766px) {
  .vertical-line {
    width: 4px;
    height: 26px;
    background: #244884;
    margin: 8px auto 10px auto;
  }
}
@media screen and (max-width: 550px) {
  .vertical-line {
    height: 25px;
    width: 3px;
    margin: -5px auto 15px auto;
  }
}

.treatment-title h2 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #6bb6d6;
  letter-spacing: 0.08em;
  margin: 0 auto;
  width: 300px;
}
/* @media screen and (max-width: 766px) {
  .treatment-title h2 {
    font-size: 42px;
  }
} */
@media screen and (max-width: 550px) {
  .treatment-title h2 {
    font-size: 36px;
  }
}
.treatment-title .ruby-text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  display: inline-block;
  background: #6bb6d6;
  color: white;
  padding: 6px 24px;
  border-radius: 0px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .treatment-title .ruby-text {
    font-size: 11px;
    padding: 5px 20px;
    border-radius: 22px;
  }
}

.card-botox::after {
  width: 4px;
  height: 60px;
  bottom: -60px;
}

.card-rejuran::after {
  width: 4px;
  height: 60px;
  bottom: -60px;
}

.snekos-top-section {
  max-width: 1260px;
  background-image: url("../img/s3/1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 140px 40px 280px 40px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .snekos-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .snekos-top-section {
    background-image: url(../img/s3/sp-snekos.png);
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.snekos-top-title-box {
  width: 367px;
  position: absolute;
  top: 80px;
  right: 14%;
  background: white;
  padding: 5px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .snekos-top-title-box {
    width: 210px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .snekos-top-title-box {
    top: 39px;
    right: 5%;
    padding: 3px 0;
    max-width: 170px;
  }
}

.snekos-title-main {
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .snekos-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-title-main {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.snekos-top-product {
  position: absolute;
  left: 51%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 202px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.snekos-top-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .snekos-top-product {
    width: 160px;
    top: 160px;
    left: 49%;
  }
}
@media screen and (max-width: 550px) {
  .snekos-top-product {
    width: 100%;
    max-width: 170px;
    top: calc(50% + 20px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.snekos-decoration-image {
  position: absolute;
  top: -28px;
  left: -10%;
  width: 139px;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.snekos-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .snekos-decoration-image {
    width: 156px;
    top: -28px;
    left: -21%;
  }
}
@media screen and (max-width: 550px) {
  .snekos-decoration-image {
    width: 64px;
    max-width: none;
    left: -10%;
    top: -13px;
  }
}

.snekos-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 52%;
  width: 443px;
  z-index: 1;
}
@media screen and (max-width: 766px) {
  .snekos-top-benefits {
    width: 300px;
    bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.snekos-benefit-texts {
  letter-spacing: 0.18em;
  display: flex;
  flex-direction: column;
  gap: 17px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .snekos-benefit-texts {
    gap: 12px;
  }
}

.snekos-explanation-section {
  background-image: url("../img/s3/5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .snekos-explanation-section {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-explanation-section {
    padding: 40px 20px 10px;
  }
}

.snekos-explanation-container {
  position: relative;
  margin: 0 auto;
  min-height: 350px;
}
@media screen and (max-width: 766px) {
  .snekos-explanation-container {
    min-height: 250px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-explanation-container {
    min-height: 200px;
  }
}

.snekos-explanation-bg {
  display: none;
}

.snekos-injection-image {
  display: none;
}

.snekos-explanation-content {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 900px;
}
.snekos-explanation-content::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 20%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background-image: url("../img/s3/3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.3));
  z-index: 100;
}
.snekos-explanation-content::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 30%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../img/s3/12.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.3));
  z-index: 10;
}
@media screen and (max-width: 766px) {
  .snekos-explanation-content {
    max-width: 500px;
  }
  .snekos-explanation-content::before {
    left: -20px;
    top: 35%;
    width: 80px;
    height: 80px;
  }
  .snekos-explanation-content::after {
    right: 15px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-explanation-content {
    top: 30%;
    max-width: 300px;
  }
  .snekos-explanation-content::before {
    left: -20px;
    width: 50px;
    height: 50px;
  }
  .snekos-explanation-content::after {
    right: 6px;
    width: 20px;
    height: 20px;
  }
}

.snekos-bubble {
  position: relative;
  background: #244884;
  padding: 20px 80px 20px 80px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snekos-bubble::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid #244884;
}
@media screen and (max-width: 550px) {
  .snekos-bubble::after {
    bottom: -15px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }
}

.snekos-bubble .explanation-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .snekos-bubble .explanation-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 766px) {
  .snekos-bubble {
    width: 500px;
    margin: 0 auto;
    padding: 15px 25px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-bubble {
    padding: 10px;
    width: 300px;
  }
}

.snekos-subtitle {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.snekos-subtitle p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 766px) {
  .snekos-subtitle {
    top: 15px;
  }
  .snekos-subtitle p {
    font-size: 13px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-subtitle {
    top: 10px;
  }
  .snekos-subtitle p {
    font-size: 12px;
  }
}

.snekos-wrinkle-image {
  display: none;
}

.snekos-explanation-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  padding: 30px 5px 5px;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(173, 216, 230, 0.6) 70%,
    rgba(173, 216, 230, 0.6) 70%
  );
  width: 320px;
  max-width: 400px;
}
.snekos-explanation-text .snekos-subtitle-text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #244884;
  margin: 0 0 0px 0;
  letter-spacing: 0.05em;
}
.snekos-explanation-text .snekos-title-text {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 48px;
  color: #244884;
  margin-top: -10px;
  letter-spacing: 0.175em;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8), -2px 2px 4px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 766px) {
  .snekos-explanation-text {
    top: 65%;
    padding: 0 30px;
  }
  .snekos-explanation-text .snekos-subtitle-text {
    font-size: 13px;
  }
  .snekos-explanation-text .snekos-title-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-explanation-text {
    top: 50%;
    padding: 0 30px;
    width: 80%;
  }

  .snekos-explanation-text .snekos-title-text {
    margin-top: 0;
    font-size: 26px;
  }
}

.snekos-effects-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .snekos-effects-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effects-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.snekos-effect-card {
  background: linear-gradient(to bottom, #d3dfec 0%, #93b2d1 100%);
  border-radius: 8px;
  padding: 30px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  border: 5px solid #93b2d1;
}
@media screen and (max-width: 766px) {
  .snekos-effect-card {
    padding: 25px;
    min-height: auto;
    border: 4px solid #93b2d1;
  }
  .snekos-effect-card:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-card {
    padding: 20px;
    border: 3px solid #93b2d1;
  }
}

.snekos-effect-number img {
  width: 90px;
  position: absolute;
  top: -30px;
  left: 0px;
  padding: 0 10px;
  z-index: 10;
}
@media screen and (max-width: 550px) {
  .snekos-effect-number img {
    width: 80px;
  }
}
@media screen and (max-width: 766px) {
  .snekos-effect-number {
    top: -12px;
    left: 25px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-number {
    top: -10px;
    left: 20px;
  }
}

.snekos-effect-image {
  text-align: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}
.snekos-effect-image img {
  width: 139px;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 766px) {
  .snekos-effect-image img {
    width: 100px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-image img {
    width: 80px;
  }
}

.snekos-effect-labels {
  display: flex;
  width: 185px;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  align-items: center;
}
@media screen and (max-width: 776px) {
  .snekos-effect-labels {
    top: 40%;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-labels {
    gap: 6px;
    top: 28%;
  }
}

.snekos-effect-label {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  /* color: #244884; */
  padding: 6px 8px;
  /* border-radius: 8px; */
  width: fit-content;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .snekos-effect-label {
    font-size: 13px;
    padding: 7px 14px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-label {
    font-size: 13px;
    padding: 6px 12px;
  }
}

.snekos-effect-description {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-align: left;
  line-height: 2;
  color: #ffffff;
  margin: 0;
  flex-grow: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .snekos-effect-description {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 550px) {
  .snekos-effect-description {
    font-size: 13px;
    line-height: 1.6;
  }
}

.snekos-qa-section {
  background: #244884;
  padding: 80px 40px;
  width: 100%;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 766px) {
  .snekos-qa-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-qa-section {
    padding: 40px 20px 0;
  }
}

.snekos-qa-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 766px) {
  .snekos-qa-container {
    gap: 30px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-qa-container {
    gap: 20px;
  }
}

.snekos-qa-header {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  flex: 0 1 600px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .snekos-qa-header {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}
@media screen and (max-width: 550px) {
  .snekos-qa-header {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}

.common-qa-title {
  margin: 0;
  position: absolute;
  top: -60px;
  left: -80px;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  .common-qa-title {
    top: -65px;
    left: -85px;
  }
}
@media screen and (max-width: 766px) {
  .common-qa-title {
    top: -72px;
    left: -34px;
  }
}
@media screen and (max-width: 766px) {
  .snekos-qa-title {
    top: -10px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-qa-title {
    top: -50px;
    left: -30px;
  }
}

.qa-q {
  position: absolute;
  top: 10px;
  left: 85px;
  display: inline-block;
}
@media screen and (max-width: 766px) {
  .qa-q {
    top: 22px;
    left: 85px;
  }
}
@media screen and (max-width: 550px) {
  .qa-q {
    top: 30px;
    left: 70px;
  }
}

.qa-q-large {
  display: inline-block;
  margin-right: -10px;
}
@media screen and (max-width: 766px) {
  .qa-q-large {
    margin-right: -8px;
  }
}
@media screen and (max-width: 550px) {
  .qa-q-large {
    margin-right: -6px;
  }
}
.qa-q-large img {
  width: 100px;
}
@media screen and (max-width: 766px) {
  .qa-q-large img {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  .qa-q-large img {
    width: 65%;
  }
}
.qa-q img {
  width: 197px;
}
@media screen and (max-width: 766px) {
  .qa-q img {
    width: 170px;
  }
}
@media screen and (max-width: 550px) {
  .qa-q img {
    width: 160px;
  }
}

.common-qa-text {
  min-width: 575px;
  background: white;
  padding: 15px 20px;
  border-radius: 0px;
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-qa-text::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}
@media screen and (max-width: 766px) {
  .common-qa-text {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 550px) {
  .common-qa-text {
    min-width: 300px;
    padding: 10px;
    text-align: center;
  }
}

.common-qa-question {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  color: #244884;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .common-qa-question {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .common-qa-question {
    font-size: 14px;
  }
}

.profhilo-top-section {
  max-width: 1260px;
  background-image: url("../img/s5/1.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 40px 280px 40px;
  background-size: contain;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 766px) {
  .profhilo-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-top-section {
    background-image: url(../img/s5/sp-profhilo.png);
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.profhilo-top-title-box {
  width: 367px;
  text-align: center;
  position: absolute;
  top: 80px;
  right: 14%;
  background: white;
  padding: 5px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .profhilo-top-title-box {
    width: 220px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-top-title-box {
    top: 39px;
    right: 5%;
    padding: 3px 0;
    max-width: 170px;
  }
}
@media screen and (max-width: 766px) {
  .profhilo-benefit-texts .benefit-text {
    font-size: 14px;
    padding: 4px 100px 4px 20%;
  }
}
.profhilo-title-main {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #6bb6d6;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .profhilo-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-title-main {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.profhilo-water-splash {
  position: absolute;
  left: 75%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  z-index: 0;
  opacity: 0.8;
}
.profhilo-water-splash img {
  width: 80%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .profhilo-water-splash {
    max-width: 900px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-water-splash {
    display: none;
  }
}

.profhilo-top-product {
  position: absolute;
  left: 53.5%;
  bottom: 45px;
  transform: translateX(-50%);
  width: 237px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.profhilo-top-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .profhilo-top-product {
    width: 190px;
    bottom: 15px;
    left: 48%;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-top-product {
    width: 100%;
    max-width: 200px;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.profhilo-decoration-image {
  position: absolute;
  top: -33px;
  left: -20%;
  width: 200px;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.profhilo-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .profhilo-decoration-image {
    width: 130px;
    top: -21px;
    left: -21%;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-decoration-image {
    width: 74px;
    max-width: none;
    left: -16%;
    top: -13px;
  }
}

.profhilo-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 52%;
  width: 443px;
  z-index: 1;
}
@media screen and (max-width: 766px) {
  .profhilo-top-benefits {
    width: 300px;
    bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.profhilo-benefit-texts {
  letter-spacing: 0.18em;
  display: flex;
  flex-direction: column;
  gap: 17px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .profhilo-benefit-texts {
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-benefit-texts {
    gap: 10px;
  }
}
.profhilo-benefit-texts .benefit-text {
  color: #244884;
}

.profhilo-explanation-section {
  background: linear-gradient(
    to bottom,
    rgba(173, 216, 230, 0.3) 0%,
    rgba(173, 216, 230, 0) 100%
  );
  padding: 60px 40px 20px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .profhilo-explanation-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-explanation-section {
    padding: 40px 20px;
  }
}

.profhilo-explanation-container {
  max-width: 712px;
  margin: 0 auto;
}

.profhilo-explanation-header {
  text-align: right;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .profhilo-explanation-header {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-explanation-header {
    margin-bottom: 30px;
    text-align: center;
  }
}

.profhilo-header-text {
  display: inline-block;
  text-align: right;
  margin-right: 40px;
}
@media screen and (max-width: 550px) {
  .profhilo-header-text {
    text-align: center;
    margin-right: 0;
  }
}

.profhilo-subtitle {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  margin: 0 0 2px 0;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 550px) {
  .profhilo-subtitle {
    font-size: 14px;
  }
}

.profhilo-main-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 21px;
  color: #000;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766px) {
  .profhilo-main-title {
    margin: 0 0 18px 0;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-main-title {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
}

.profhilo-product-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  text-align: right;
  color: #244884;
  margin: 0 0 5px 0;
  letter-spacing: 0.15em;
  border-bottom: 3px solid;
  border-image: linear-gradient(to left, #244884 0%, rgba(36, 72, 132, 0) 100%)
    1;
  display: inline-block;
  padding: 0px 0px 2px 100px;
}
@media screen and (max-width: 766px) {
  .profhilo-product-title {
    font-size: 42px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-product-title {
    font-size: 25px;
    padding: 0;
    letter-spacing: 0.1em;
  }
}

.profhilo-decoration-text {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 200px;
}
.profhilo-decoration-text img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .profhilo-decoration-text {
    width: 180px;
    bottom: -18px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-decoration-text {
    position: absolute;
    width: 100px;
    top: 95px;
  }
}

.profhilo-explanation-content {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1.58fr 1fr;
  align-items: center;
}
@media screen and (max-width: 766px) {
  .profhilo-explanation-content {
    gap: 40px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-explanation-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.profhilo-text-content p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  line-height: 2;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
}
.profhilo-text-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 766px) {
  .profhilo-text-content p {
    font-size: 14px;
    margin: 0 0 18px 0;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-text-content p {
    font-size: 13px;
    margin: 0 0 15px 0;
  }
}

.profhilo-image-content {
  text-align: center;
}
.profhilo-image-content img {
  width: 90%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 766px) {
  .profhilo-image-content img {
    max-width: 400px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-image-content img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.profhilo-comparison-section {
  background: white;
  padding: 80px 40px 40px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .profhilo-comparison-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-comparison-section {
    padding: 40px 20px;
  }
}

.profhilo-comparison-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media screen and (max-width: 550px) {
  .profhilo-comparison-container {
    gap: 40px;
  }
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 550px) {
  .comparison-item {
    gap: 15px;
  }
}

.comparison-item-profhilo .comparison-image {
  background: #f0f0f0;
  padding: 40px;
}
@media screen and (max-width: 766px) {
  .comparison-item-profhilo .comparison-image {
    padding: 30px;
  }
}
@media screen and (max-width: 550px) {
  .comparison-item-profhilo .comparison-image {
    padding: 20px 10px;
  }
}
.comparison-item-profhilo .comparison-header {
  margin-bottom: 30px;
}
@media screen and (max-width: 550px) {
  .comparison-item-profhilo .comparison-header {
    margin-bottom: 15px;
  }
}

.comparison-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .comparison-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.comparison-header.case-profhilo {
  justify-content: flex-start;
}
.comparison-header.case-profhilo h3.comparison-title {
  background-color: #fff;
  padding: 5px;
}

.comparison-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width: 766px) {
  .comparison-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 550px) {
  .comparison-title {
    font-size: 20px;
  }
}

.comparison-description {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  margin: 0;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

@media screen and (max-width: 550px) {
  .comparison-description {
    font-size: 13px;
  }
}
.comparison-header.case-profhilo p.comparison-description {
  text-align: left;
}
.comparison-image {
  text-align: center;
}
.comparison-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .comparison-image img {
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .comparison-image img {
    max-width: 100%;
  }
}

.comparison-item:not(.comparison-item-profhilo) .comparison-image img {
  width: 80%;
}
@media screen and (max-width: 550px) {
  .comparison-item:not(.comparison-item-profhilo) .comparison-image img {
    width: 90%;
  }
}

.comparison-item-profhilo .comparison-image img {
  width: 90%;
}
@media screen and (max-width: 550px) {
  .comparison-item-profhilo .comparison-image img {
    width: 110%;
  }
}

.profhilo-effects-section {
  width: 100%;
  max-width: 1000px;
  background-image: url("../img/s5/12.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 80px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .profhilo-effects-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .profhilo-effects-section {
    padding: 40px 20px;
  }
}

.profhilo-effects-container {
  width: 100%;
  margin: 0 auto;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 10px;
}
@media screen and (max-width: 766px) {
  .effects-grid {
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media screen and (max-width: 550px) {
  .effects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
}

.effect-item {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
@media screen and (max-width: 550px) {
  .effect-item {
    gap: 12px;
  }
}

.effect-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .effect-item-title {
    margin-bottom: 30px;
  }
}

.effects-main-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 27px;
  color: #244884;
  text-align: center;
  margin: 0;
  letter-spacing: 0.15em;
  border-bottom: 0.5px solid #244884;
  padding-bottom: 10px;
  position: relative;
}
.effects-main-title span {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 36px;
}
@media screen and (max-width: 550px) {
  .effects-main-title span {
    font-size: 26px;
  }
}
.effects-main-title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 82%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #fff;
  rotate: 135deg;
  translate: -50%;
}

.effects-main-title::after {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: calc(75% + 14px);
  width: 25px;
  height: 0.5px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #244884;
  box-shadow: 0 0 0 0#ffffff;
}
@media screen and (max-width: 550px) {
  .effects-main-title::after {
    top: calc(100% + 7px);
    left: calc(75% + -2px);
    width: 20px;
  }
}

@media screen and (max-width: 766px) {
  .effects-main-title {
    font-size: 28px;
    padding-bottom: 8px;
  }
  /* .effects-main-title::after {
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #244884; 
  }*/
}
@media screen and (max-width: 550px) {
  .effects-main-title {
    font-size: 20px;
    padding-bottom: 6px;
  }
  /* .effects-main-title::after {
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #244884;
  } */
}

.effect-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #244884;
  margin: 0 0 -5px 0;
  padding: 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .effect-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .effect-title {
    font-size: 16px;
  }
}

.effect-description {
  background: rgba(107, 182, 214, 0.8);
  padding: 20px 10px;
  border-radius: 0px;
}
.effect-description p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 766px) {
  .effect-description p {
    font-size: 13px;
    padding: 18px;
  }
}
@media screen and (max-width: 550px) {
  .effect-description p {
    font-size: 12px;
    padding: 15px;
  }
}
@media screen and (max-width: 766px) {
  .effect-description {
    padding: 0 18px;
    min-height: 170px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 550px) {
  .effect-description {
    margin-top: -7px;
    padding: 15px;
    min-height: 130px;
  }
}

.effect-item-1 .effect-description {
  background: linear-gradient(to left, #8199cd 0%, #8fc4e4 100%);
}
.effect-item-1 .effect-description p {
  color: #ffffff;
}

.effect-item-2 .effect-description {
  background: linear-gradient(to left, #8199cd 0%, #8fc4e4 100%);
}
.effect-item-2 .effect-description p {
  color: #ffffff;
}

.effect-item-3 .effect-description {
  background: #c8e2f2;
}
.effect-item-3 .effect-description p {
  color: #000;
}

.effect-item-4 .effect-description {
  background: #c8e2f2;
}
.effect-item-4 .effect-description p {
  color: #000;
}

.effect-item-5 .effect-description {
  background: linear-gradient(to left, #8199cd 0%, #8fc4e4 100%);
}
.effect-item-5 .effect-description p {
  color: #ffffff;
}

.pickup-container.pickup-profhiro {
  padding-right: 10px;
  padding-left: 10px;
}

.pickup-profhiro.pickup-info {
  /* line-height: 2; */
  background: #d3d3d3;
  margin: 0;
  padding: 20px 15px;
  height: 297px;
  flex: 1;
}

.pluryal-qa-section {
  background: #244884;
  padding: 100px 40px 40px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-section {
    padding: 80px 20px;
  }
}

.pluryal-qa-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-container {
    gap: 50px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-container {
    gap: 40px;
  }
}

.pluryal-qa-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-item {
    gap: 25px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-item {
    gap: 20px;
  }
}
.pluryal-qa-item:nth-child(2) {
  margin-top: 20px;
}

.pluryal-qa-header {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-header {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-header {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.pluryal-qa-title {
  margin: 0;
  font-size: 40px;
  color: #afbcd2;
  font-weight: 300;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: absolute;
  top: -90px;
  left: -80px;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-title {
    font-size: 60px;
    top: -10px;
    left: 0;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-title {
    font-size: 48px;
    top: -50px;
    left: -30px;
  }
}

/* .pluryal-qa-text {
  max-width: 700px;
  background: white;
  padding: 15px 100px;
  border-radius: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pluryal-qa-text::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid white;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-text {
    padding: 20px 30px;
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-text {
    padding: 15px 25px;
    max-width: 100%;
  }
} */

.pluryal-qa-question {
  margin: 0;
  font-size: 18px;
  color: #244884;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-question {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-question {
    font-size: 14px;
  }
}

.pluryal-qa-answer {
  background: transparent;
  padding: 0 20px;
  max-width: 760px;
  margin: 0 auto;
}
.pluryal-qa-answer p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 14px;
  color: white;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: left;
}
@media screen and (max-width: 766px) {
  .pluryal-qa-answer p {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-qa-answer p {
    font-size: 14px;
    padding: 0 10px;
  }
}

.pluryal-top-section {
  max-width: 1260px;
  background-image: url("../img/s4/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 140px 40px 280px 40px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .pluryal-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-top-section {
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.pluryal-top-title-box {
  width: 528px;
  text-align: center;
  position: absolute;
  top: 60px;
  right: 11%;
  background: white;
  padding: 13px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .pluryal-top-title-box {
    width: 350px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-top-title-box {
    top: 39px;
    right: 8%;
    padding: 3px 0;
    max-width: 210px;
  }
}

.pluryal-title-main {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 766px) {
  .pluryal-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-title-main {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.1;
  }
}

.pluryal-top-product {
  position: absolute;
  left: 54%;
  bottom: 0;
  transform: translateX(-50%);
  width: 220px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.pluryal-top-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .pluryal-top-product {
    width: 170px;
    top: 120px;
    left: 53%;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-top-product {
    width: 100%;
    max-width: 150px;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.pluryal-decoration-image {
  width: 285px;
  position: absolute;
  top: -40px;
  left: -15%;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.pluryal-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .pluryal-decoration-image {
    width: 240px;
    top: -32px;
    left: -11%;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-decoration-image {
    width: 130px;
    max-width: none;
    left: -16%;
    top: -18px;
  }
}

.pluryal-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 53%;
  width: 443px;
  z-index: 1;
}
@media screen and (max-width: 766px) {
  .pluryal-top-benefits {
    width: 300px;
    bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pluryal-benefit-texts {
  letter-spacing: 0.18em;
  display: flex;
  flex-direction: column;
  gap: 17px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .pluryal-benefit-texts {
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-benefit-texts {
    gap: 10px;
  }
}

.pluryal-top-section .benefit-text {
  margin: 0 0 0 20px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 21px;
  text-align: center;
  color: #6bb6d6;
  white-space: nowrap;
  letter-spacing: 0.2em;
  background: white;
  padding: 3px 30px 3px 12%;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 766px) {
  .pluryal-top-section .benefit-text {
    font-size: 16px;
    padding: 4px 100px 4px 20%;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-top-section .benefit-text {
    font-size: 14px;
    padding: 4px 80px 4px 15%;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }
}

.pluryal-background-wrapper {
  background: linear-gradient(
      to bottom,
      rgba(90, 142, 196, 0.1) 0%,
      rgba(90, 142, 196, 0) 100%
    ),
    url(../img/s4/4.png);
  background-size: 100% 100%, 66% auto;
  background-position: top, calc(50% + 250px) calc(50% - 220px);
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 766px) {
  .pluryal-background-wrapper {
    background-position: top, calc(50% + 250px) calc(50% - 310px);
    background-size: 100% 100%, 100% auto;
  }
}

.pluryal-explanation-section {
  background: transparent;
  padding: 80px 40px 20px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .pluryal-explanation-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-explanation-section {
    padding: 40px 20px;
  }
}

.pluryal-explanation-container {
  max-width: 800px;
  margin: 0 auto;
}

.pluryal-explanation-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 766px) {
  .pluryal-explanation-header {
    margin-bottom: 0;
  }
}

.pluryal-header-subtitle {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #000;
  margin: 0 0 0 0;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
@media screen and (max-width: 766px) {
  .pluryal-header-subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-header-subtitle {
    font-size: 14px;
    margin: 0 0 5px 0;
    letter-spacing: 0.1em;
  }
}

.pluryal-header-subtitle-large {
  font-size: 22px;
}
@media screen and (max-width: 766px) {
  .pluryal-header-subtitle-large {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-header-subtitle-large {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.pluryal-header-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 20px 0 0 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .pluryal-header-title {
    font-size: 36px;
    margin: 15px 0;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-header-title {
    font-size: 25px;
    margin: 0 0 10px;
    letter-spacing: 0.1em;
  }
}

.pluryal-header-badge {
  display: inline-block;
  background: #244884;
  padding: 5px 120px 5px 120px;
  margin: 5px 0 0 0;
}
.pluryal-header-badge p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766px) {
  .pluryal-header-badge {
    padding: 7px 50px;
    margin: 15px 0;
  }
  .pluryal-header-badge p {
    font-size: 15px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-header-badge {
    padding: 6px 40px;
    margin: 10px 0;
  }
  .pluryal-header-badge p {
    font-size: 13px;
  }
}

.pluryal-header-note {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 10px 0 0 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 766px) {
  .pluryal-header-note {
    font-size: 11px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-header-note {
    font-size: 10px;
    margin: 10px 0 0 0;
  }
}

.pluryal-explanation-content {
  padding: 10px 40px 30px;
}
@media screen and (max-width: 766px) {
  .pluryal-explanation-content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-explanation-content {
    padding: 0 20px;
    border-radius: 6px;
  }
}

.pluryal-content-text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: #000;
  margin: 0;
  letter-spacing: 0.2em;
  text-shadow: #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px,
    #fff 0 0 10px;
}

@media screen and (max-width: 766px) {
  .pluryal-content-text {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-content-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

.pluryal-ingredients-container {
  margin: 0 auto;
}

.pluryal-ingredients-header {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin-top: -20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 766px) {
  .pluryal-ingredients-header {
    margin-bottom: 15px;
    margin-top: 10px;
    gap: 15px;
    display: block;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
}

.ingredients-title-box {
  display: inline-block;
  background: linear-gradient(to left, #8199cd, #86bfe2);
  padding: 8px 20px;
  margin: 15px 0 0 0;
}
@media screen and (max-width: 766px) {
  .ingredients-title-box {
    padding: 7px 35px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  .ingredients-title-box {
    padding: 6px 30px;
  }
}

.ingredients-title-text {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: white;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .ingredients-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .ingredients-title-text {
    font-size: 14px;
  }
}

.ingredients-main-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 43px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8), -2px 2px 4px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 766px) {
  .ingredients-main-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 550px) {
  .ingredients-main-title {
    font-size: 30px;
  }
}

.ingredients-number {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 86px;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 766px) {
  .ingredients-number {
    font-size: 50px;
  }
}
@media screen and (max-width: 550px) {
  .ingredients-number {
    vertical-align: bottom;
  }
}

.pluryal-ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .pluryal-ingredients-list {
    padding: 0 30px;
    gap: 18px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-ingredients-list {
    gap: 15px;
    padding: 0 15px;
  }
}

.ingredient-card {
  width: 100%;
  margin: 0 auto;
  background: rgb(36 72 132 / 71%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 766px) {
  .ingredient-card {
    border-radius: 18px;
  }
}
@media screen and (max-width: 550px) {
  .ingredient-card {
    margin: 0 0px 0 0px;
    border-radius: 15px;
  }
}

.ingredient-card-header {
  background: white;
  padding: 5px 70px;
  text-align: center;
  display: inline-block;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.ingredient-card-header h3 {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 766px) {
  .ingredient-card-header {
    padding: 10px 35px;
    margin: 25px auto 0 auto;
    border-radius: 22px;
  }
  .ingredient-card-header h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .ingredient-card-header {
    padding: 8px 30px;
    margin: 20px auto 0 auto;
    border-radius: 8px;
  }
  .ingredient-card-header h3 {
    font-size: 16px;
  }
}

.ingredient-card-body {
  padding: 20px 65px;
  text-align: center;
}
.ingredient-card-body p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: white;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .ingredient-card-body {
    padding: 22px 40px 30px 40px;
  }
  .ingredient-card-body p {
    font-size: 13px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 550px) {
  .ingredient-card-body {
    padding: 18px 25px 25px 25px;
  }
  .ingredient-card-body p {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}

.pluryal-arrow-section {
  text-align: center;
  margin: 20px 0 20px 0;
}
@media screen and (max-width: 766px) {
  .pluryal-arrow-section {
    margin: 35px 0 25px 0;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-arrow-section {
    margin: 30px 0 20px 0;
  }
}

.arrow-icon {
  display: inline-block;
  position: relative;
}

.arrow-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 25px solid rgba(107, 145, 196, 0.6);
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .arrow-triangle {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid rgba(107, 145, 196, 0.6);
  }
}
@media screen and (max-width: 550px) {
  .arrow-triangle {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 16px solid rgba(107, 145, 196, 0.6);
  }
}

.arrow-triangle-1 {
  margin-bottom: -5px;
  border-top-color: rgba(107, 145, 196, 0.3) !important;
}
@media screen and (max-width: 550px) {
  .arrow-triangle-1 {
    margin-bottom: 4px;
  }
}

.arrow-triangle-2 {
  border-top-color: rgba(107, 145, 196, 0.9);
}

.pluryal-effect-description {
  background: white;
  padding: 10px 90px 30px;
  margin: 0 60px auto;
}
.pluryal-effect-description p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: #000;
  margin: 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .pluryal-effect-description {
    padding: 10px 40px 30px;
  }
  .pluryal-effect-description p {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-effect-description {
    margin: 0 10px 0 10px;
    padding: 25px 20px;
    border-radius: 6px;
  }
  .pluryal-effect-description p {
    font-size: 13px;
    line-height: 1.8;
  }
}

.pluryal-details-section {
  background: white;
  padding: 10px 40px 20px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .pluryal-details-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .pluryal-details-section {
    padding: 20px 0;
  }
}

.pluryal-details-container {
  max-width: 800px;
  margin: 0 auto;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 0px;
}
.detail-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 766px) {
  .detail-item {
    gap: 40px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 550px) {
  .detail-item {
    flex-direction: row;
    gap: 0px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 550px) {
  .detail-item-right {
    flex-direction: row;
  }
}

.detail-icon {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
}
.detail-icon img {
  width: 80%;
  height: 80%;
  display: block;
  object-fit: contain;
}
@media screen and (max-width: 766px) {
  .detail-icon {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 550px) {
  .detail-icon {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 550px) {
  .detail-item-left .detail-icon img,
  .detail-item-right .detail-icon img {
    object-position: right center;
    margin-left: auto;
  }

  .detail-item-left .detail-icon img {
    margin: 0 auto;
  }
}
.detail-item-right .detail-icon img {
  object-position: left center;
  margin-right: auto;
}

.detail-content {
  flex: 1;
}

.detail-item-right .detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.detail-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #244884;
  margin: 0 0 10px 0;
  padding: 0 50px 5px 20px;
  border-bottom: 2px solid #244884;
  letter-spacing: 0.2em;
  width: fit-content;
}
@media screen and (max-width: 766px) {
  .detail-title {
    font-size: 22px;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  .detail-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 0 2px 5px 2px;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.detail-item:nth-child(1) .detail-title {
  padding: 0 160px 5px 30px;
}
@media screen and (max-width: 766px) {
  .detail-item:nth-child(1) .detail-title {
    padding: 0 40px 5px 30px;
  }
}
@media screen and (max-width: 550px) {
  .detail-item:nth-child(1) .detail-title {
    padding: 0 5px 5px 0px;
  }
}

.detail-item:nth-child(2) .detail-title {
  padding: 0 30px 5px 250px;
}
@media screen and (max-width: 766px) {
  .detail-item:nth-child(2) .detail-title {
    padding: 0 30px 5px 110px;
  }
}
@media screen and (max-width: 550px) {
  .detail-item:nth-child(2) .detail-title {
    padding: 0 10px 5px 0px;
  }
}

.detail-item:nth-child(3) .detail-title {
  padding: 0 80px 5px 20px;
}
@media screen and (max-width: 550px) {
  .detail-item:nth-child(3) .detail-title {
    padding: 0 10px 5px 0px;
  }
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 10px;
  width: 100%;
}
.detail-list:nth-child(2) {
  margin: 0 -40px 0 0;
}
@media screen and (max-width: 550px) {
  .detail-list:nth-child(2) {
    margin: 0;
  }
}

.detail-list li {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  line-height: 2;
  margin-bottom: 0px;
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.2em;
}
.detail-list li:last-child {
  margin-bottom: 0;
}
.detail-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #244884;
  font-weight: bold;
}
@media screen and (max-width: 766px) {
  .detail-list li {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 550px) {
  .detail-list li {
    font-size: 11px;
    margin-bottom: 8px;
    padding-left: 18px;
  }
}

.jalupro-top-section {
  max-width: 1260px;
  padding: 140px 40px 280px 40px;
  background-image: url("../img/s6/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .jalupro-top-section {
    padding: 60px 30px 260px 30px;
    background-size: cover;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-top-section {
    padding: 40px 20px 40px 20px;
    min-height: 448px;
  }
}

.jalupro-top-title-box {
  width: 591px;
  position: absolute;
  top: 80px;
  right: 13%;
  background: white;
  padding: 5px 0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media screen and (max-width: 766px) {
  .jalupro-top-title-box {
    width: 210px;
    top: 60px;
    right: 8%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-top-title-box {
    top: 39px;
    right: 5%;
    padding: 3px 0;
    max-width: 310px;
  }
}

.jalupro-title-main {
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 766px) {
  .jalupro-title-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-title-main {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.1;
  }
}

.jalupro-top-product {
  position: absolute;
  left: 50%;
  bottom: 71px;
  transform: translateX(-50%);
  width: 222px;
  z-index: 5;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.jalupro-top-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .jalupro-top-product {
    width: 180px;
    top: 150px;
    left: 47%;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-top-product {
    width: 100%;
    max-width: 170px;
    top: calc(50% + 30px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.jalupro-decoration-image {
  position: absolute;
  top: -37px;
  left: -10%;
  width: 144px;
  z-index: 20;
  filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5));
}
.jalupro-decoration-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .jalupro-decoration-image {
    width: 130px;
    left: -8%;
    top: -33px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-decoration-image {
    width: 66px;
    max-width: none;
    left: -12%;
    top: -17px;
  }
}

.jalupro-top-benefits {
  position: absolute;
  bottom: 52px;
  left: 52%;
  width: 443px;
  z-index: 1;
}
@media screen and (max-width: 766px) {
  .jalupro-top-benefits {
    width: 300px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-top-benefits {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.jalupro-benefit-texts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  letter-spacing: 0.18em;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 766px) {
  .jalupro-benefit-texts {
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-benefit-texts {
    gap: 10px;
  }
}

.jalupro-concerns-section {
  background-image: url("../img/s6/4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 40px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 766px) {
  .jalupro-concerns-section {
    height: 450px;
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-concerns-section {
    padding: 40px 20px;
  }
}

.jalupro-concerns-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 50%;
}
@media screen and (max-width: 766px) {
  .jalupro-concerns-container {
    gap: 18px;
    padding-left: 45%;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-concerns-container {
    gap: 15px;
    align-items: center;
    padding-left: 0;
  }
}

.jalupro-concerns-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  margin: 0;
  letter-spacing: 0.2em;
  text-align: left;
}
@media screen and (max-width: 766px) {
  .jalupro-concerns-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-concerns-title {
    text-align: center;
  }
}

.jalupro-concerns-highlight {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #6bb6d6;
}

.jalupro-concerns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 550px;
}
@media screen and (max-width: 766px) {
  .jalupro-concerns-list {
    gap: 12px;
    max-width: 500px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-concerns-list {
    gap: 10px;
    max-width: 100%;
  }
}

.concern-item {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  position: relative;
  font-size: 16px;
  color: #244884;
  padding-left: 50px;
  line-height: 2.2;
  border-bottom: 0.75px solid #244884;
  letter-spacing: 0.2em;
}
.concern-item:last-child {
  margin-bottom: 0;
}
.concern-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5%;
  width: 22px;
  height: 18px;
  background-image: url(../img/card/check-lightblue.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 550px) {
  .concern-item::after {
    left: 2%;
  }
}

@media screen and (max-width: 766px) {
  .concern-item {
    font-size: 15px;
    padding-left: 45px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 550px) {
  .concern-item {
    font-size: 14px;
    padding-left: 36px;
    margin-bottom: 6px;
  }
}

.jalupro-description-section {
  background: white;
  padding: 40px 40px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .jalupro-description-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-description-section {
    padding: 40px 20px;
  }
}

.jalupro-description-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.jalupro-description-subtitle {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin: 0 0 5px 0;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.jalupro-description-subtitle .large-text {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 23px;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .jalupro-description-subtitle {
    font-size: 16px;
  }
  .jalupro-description-subtitle .large-text {
    font-size: 28px;
  }
}

.jalupro-description-subtitle2 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 21px;
  color: #000;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .jalupro-description-subtitle2 {
    font-size: 16px;
  }
}

.jalupro-description-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-size: 42px;
  color: #244884;
  margin: 0 0 15px 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 766px) {
  .jalupro-description-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-description-title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
}

.jalupro-description-badge {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  display: inline-block;
  background: #244884;
  color: white;
  padding: 8px 80px;
  font-size: 15px;
  letter-spacing: 0.2em;
  margin: 0;
}
@media screen and (max-width: 766px) {
  .jalupro-description-badge {
    padding: 7px 60px;
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-description-badge {
    padding: 6px 40px;
    font-size: 14px;
  }
}

.jalupro-description-note {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 40px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .jalupro-description-note {
    font-size: 11px;
    margin: 0 0 30px 0;
  }
}

.jalupro-description-content {
  max-width: 800px;
  text-align: left;
  padding: 60px 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .jalupro-description-content {
    padding: 30px 0 10px;
  }
}
.jalupro-description-content p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 3;
  color: #000;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766px) {
  .jalupro-description-content p {
    line-height: 2;
  }
}

.jalupro-description-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .jalupro-description-content p {
    font-size: 13px;
    line-height: 2;
  }
}

.jalupro-image-section {
  max-width: 720px;
  background: rgba(139, 196, 228, 0.15);
  padding: 40px;
}
@media screen and (max-width: 766px) {
  .jalupro-image-section {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-image-section {
    padding: 10px 0px;
  }
}

.jalupro-image-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .jalupro-image-container {
    padding: 15px;
  }
}

.jalupro-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.jalupro-effects-section {
  background: #f5f5f5;
  padding: 80px 40px;
  margin: 80px calc(-50vw + 50%) 0 calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
@media screen and (max-width: 766px) {
  .jalupro-effects-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-effects-section {
    padding: 40px 20px;
  }
}

.jalupro-effects-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.jalupro-effects-title {
  font-size: 16px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0 0 50px 0;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
.jalupro-effects-title .title-highlight {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 36px;
  color: #244884;
  display: inline-block;
  border-bottom: 1px solid #8bc4e4;
  padding: 0 100px 5px 100px;
  position: relative;
}
.jalupro-effects-title .title-highlight::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 79%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  rotate: 135deg;
  translate: -50%;
}

.jalupro-effects-title .title-highlight::after {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: calc(75% + 0px);
  width: 25px;
  height: 1px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #8bc4e4;
  box-shadow: 0 0 0 0#ffffff;
}
@media screen and (max-width: 550px) {
  .jalupro-effects-title .title-highlight::after {
    top: calc(100% + 7px);
    left: calc(75% + -1px);
    width: 20px;
  }
}

@media screen and (max-width: 766px) {
  .jalupro-effects-title {
    font-size: 22px;
    margin: 0 0 50px 0;
  }
  .jalupro-effects-title .title-highlight {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-effects-title {
    font-size: 18px;
    margin: 0 0 40px 0;
    letter-spacing: 0.1em;
  }
  .jalupro-effects-title .title-highlight {
    font-size: 24px;
  }
}

.jalupro-effects-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}

.jalupro-effect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}
@media screen and (max-width: 766px) {
  .jalupro-effects-cards {
    gap: 20px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 766px) {
  .jalupro-effects-cards {
    gap: 10px;
    padding: 0;
  }
}
@media screen and (max-width: 766px) {
  .jalupro-effect-card:nth-child(n + 3) {
    flex: 0 0 calc(33.333% - 13.4px);
  }
}
@media screen and (max-width: 766px) {
  .jalupro-effect-card:nth-child(-n + 2) {
    flex: 0 0 calc(50% - 10px);
  }
}

.jalupro-effect-image {
  width: 180px;
  height: auto;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jalupro-effect-image img {
  width: 75%;
  height: auto;
  display: block;
}
@media screen and (max-width: 766px) {
  .jalupro-effect-image {
    width: 150px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-effect-image {
    width: 110px;
  }
}

.jalupro-effect-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
  z-index: 10;
  width: fit-content;
  white-space: nowrap;
}
.jalupro-effect-label.label-under {
  top: 70%;
}
@media screen and (max-width: 766px) {
  .jalupro-effect-label {
    font-size: 13px;
    padding: 7px 14px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-effect-label {
    font-size: 11px;
    padding: 6px;
  }
}

.jalupro-qa-section {
  background: #244884;
  padding: 80px 40px;
  width: 100%;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-section {
    padding: 40px 20px 0;
  }
}

.jalupro-qa-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-container {
    gap: 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-container {
    gap: 20px;
  }
}

.jalupro-qa-header {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  flex: 0 1 600px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-header {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-header {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}

.jalupro-qa-title {
  margin: 0;
  font-size: 40px;
  color: #afbcd2;
  font-weight: 300;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: absolute;
  top: -90px;
  left: -80px;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-title {
    font-size: 60px;
    top: -10px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-title {
    font-size: 48px;
    top: -50px;
    left: -30px;
  }
}

/* .jalupro-qa-text {
  background: white;
  padding: 10px 120px;
  border-radius: 0px;
  flex: 1;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.jalupro-qa-text::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-text {
    padding: 20px 30px;
  }
  .jalupro-qa-text::after {
    bottom: -15px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-text {
    padding: 15px 20px;
  }
  .jalupro-qa-text::after {
    bottom: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
  }
} */

.jalupro-qa-question {
  margin: 0;
  font-size: 18px;
  color: #244884;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .jalupro-qa-question {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-qa-question {
    font-size: 14px;
  }
}

.jalupro-answer-section {
  background: #ffffff;
  padding: 60px 40px;
}
@media screen and (max-width: 766px) {
  .jalupro-answer-section {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-answer-section {
    padding: 40px 20px;
  }
}

.jalupro-answer-container {
  max-width: 700px;
  margin: 0 auto;
}

.jalupro-answer-text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .jalupro-answer-text {
    letter-spacing: 0.1em;
  }
}

.comparison-table-section {
  background: #ffffff;
  padding: 40px 0px;
}
@media screen and (max-width: 766px) {
  .comparison-table-section {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 550px) {
  .comparison-table-section {
    width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
  }
}

.comparison-table-container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .comparison-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
@media screen and (max-width: 550px) {
  .comparison-table {
    min-width: 600px;
  }
}

.comparison-table-header-empty {
  background: #ffffff;
  border: none;
  border-right: 0.8px solid #000;
}

.comparison-table-header {
  padding: 20px;
  text-align: center;
  vertical-align: top;
  border: none;
  background: #ffffff;
}
@media screen and (max-width: 550px) {
  .comparison-table-header {
    padding: 15px 10px;
    vertical-align: top;
  }
}
.comparison-table-header.snekos-header {
  border-right: 0.8px solid #000;
}

.comparison-table-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 10px 20px;
  white-space: nowrap;
}
.snekos-header .comparison-table-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 17px;
  padding: 10px 97px;
  color: #244884;
  background: rgb(69 176 229 / 0.29);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766px) {
  .snekos-header .comparison-table-title {
    padding: 22px 53px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-header .comparison-table-title {
    padding: 22px 53px;
  }
}
.jalupro-header .comparison-table-title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  font-size: 16px;
  padding: 10px 20px;
  color: #ffffff;
  background: #3e5f8d;
}
@media screen and (max-width: 766px) {
  .comparison-table-title {
    font-size: 18px;
    margin: 0 0 12px 0;
    padding: 4px 16px;
  }
}
@media screen and (max-width: 550px) {
  .comparison-table-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 3px 12px;
  }
}

.comparison-table-product-image {
  height: auto;
  display: block;
  margin: 0 auto;
}

.snekos-header .comparison-table-product-image {
  margin-top: -17px;
  width: 180px;
}
@media screen and (max-width: 766px) {
  .snekos-header .comparison-table-product-image {
    width: 130px;
  }
}
@media screen and (max-width: 550px) {
  .snekos-header .comparison-table-product-image {
    width: 100px;
  }
}

.jalupro-header .comparison-table-product-image {
  margin-top: -22px;
  width: 195px;
}
@media screen and (max-width: 766px) {
  .jalupro-header .comparison-table-product-image {
    width: 130px;
  }
}
@media screen and (max-width: 550px) {
  .jalupro-header .comparison-table-product-image {
    width: 100px;
  }
}

.comparison-table tbody tr:nth-child(1) {
  background: #e8f4fa;
}
.comparison-table tbody tr:nth-child(2) {
  background: #ffffff;
}
.comparison-table tbody tr:nth-child(3) {
  background: #e8f4fa;
}
.comparison-table tbody tr:nth-child(4) {
  background: #e8f4fa;
}
.comparison-table tbody tr:nth-child(5) {
  background: #ffffff;
}

.comparison-label {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 20%;
  padding: 10px 20px;
  text-align: center;
  font-size: 15px;
  color: #000;
  border: none;
  border-right: 0.8px solid #000;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (max-width: 766px) {
  .comparison-label {
    font-size: 14px;
    padding: 15px 10px;
    white-space: normal;
  }
}
@media screen and (max-width: 550px) {
  .comparison-label {
    font-size: 12px;
    padding: 10px 5px;
  }
}

.comparison-content {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  width: 40%;
  padding: 10px 20px;
  text-align: center;
  font-size: 15px;
  color: #000;
  border: none;
  vertical-align: middle;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 766px) {
  .comparison-content {
    font-size: 14px;
    padding: 15px;
    white-space: normal;
  }
}
@media screen and (max-width: 550px) {
  .comparison-content {
    font-size: 11px;
    padding: 10px 8px;
  }
}
.comparison-content:nth-child(2) {
  border-right: 0.8px solid #000;
}

.comparison-image-cell {
  width: 40%;
  padding: 20px;
  text-align: center;
  border: none;
}
@media screen and (max-width: 550px) {
  .comparison-image-cell {
    padding: 10px;
  }
}
.comparison-image-cell:nth-child(2) {
  border-right: 0.8px solid #000;
}

.comparison-face-image {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .comparison-face-image {
    width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .comparison-face-image {
    width: 120px;
  }
}

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