/**
 * base
 */
:root {
  --base-width: 375;
  --vw: calc(100vw / var(--base-width));
  --duration: 0.3s;
  --key-color: #dd2b1c;
}
@media (min-width: 769px) {
  :root {
    --base-width: 1200;
  }
}
@media (min-width: 1200px) {
  :root {
    --vw: 1px;
  }
}

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

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

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

:where(body) {
  min-height: 100vh;
}

:where(ul[role="list"], ol[role="list"]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

:where(a[class]) {
  display: block;
  color: inherit;
  text-decoration: none;
}

:where(img, picture) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(input, button, textarea, select) {
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

:where(button) {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
}

:where(address) {
  font-style: normal;
}

:where(dialog) {
  position: static;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
}

body:has(dialog[open]) {
  overflow: hidden;
}

:where(summary) {
  list-style: none;
  cursor: pointer;
}

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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", sans-serif;
}

@media (min-width: 769px) {
  body {
    padding-top: calc(97 * var(--vw));
  }
}

/**
 * scroll animation
 */
[data-anime="fadeIn"] {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}
[data-anime="fadeIn"].is-found {
  opacity: 1;
}

[data-anime="fadeInUp"] {
  opacity: 0;
  translate: 0 30px;
  transition-duration: 0.6s;
  transition-property: opacity, translate;
}

[data-anime="fadeInUp"].is-found {
  opacity: 1;
  translate: 0;
}

[data-anime][data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
[data-anime][data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
[data-anime][data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
[data-anime][data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
[data-anime][data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
[data-anime][data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
[data-anime][data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
[data-anime][data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
[data-anime][data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
[data-anime][data-anime-delay="1.0"] {
  transition-delay: 1s;
}

/**
 * header
 */
.header {
  --blue: #004b9e;
  --header-height: 10.66vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  padding-right: 4.53vw;
  padding-left: 3.2vw;
  box-sizing: border-box;
  background: white;
}

.header-logo {
  width: 39.2vw;
}

@media (min-width: 769px) {
  .header {
    --header-height: calc(97 * var(--vw));
    gap: calc(32 * var(--vw));
    position: fixed;
    top: 0;
    left: 0;
    padding-inline: calc(30 * var(--vw));
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }

  .header-logo {
    width: calc(216 * var(--vw));
  }
}

@media (min-width: 1136px) {
  .header {
    gap: calc(48 * var(--vw));
  }
}

@media (any-hover: hover) {
  .header-logo-link {
    transition: opacity var(--duration);
  }

  .header-logo-link:hover {
    opacity: 0.5;
  }
}

.header-trigger {
  position: relative;
  width: 37.6vw;
  padding-right: 4.27vw;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .header-trigger {
    display: none;
  }
}

.header-trigger::after {
  content: "";
  clip-path: polygon(50% 85%, 0 15%, 100% 15%);
  position: absolute;
  inset: 0;
  width: 2.67vw;
  height: 2.67vw;
  margin-left: auto;
  background: var(--blue);
}

.header-trigger.is-open::after {
  scale: 1 -1;
}

/**
 * nav
 */
@media (max-width: 768px) {
  .nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: var(--header-height);
    left: 0;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    background: var(--blue);
    transition: opacity var(--duration), visibility var(--duration);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2vw;
    list-style: none;
    margin: 0;
    padding: 5.87vw;
  }

  .nav-list-item-link {
    display: grid;
    place-items: center;
    height: 19.2vw;
    overflow: clip;
    border-radius: 1.07vw;
    background: white;
  }

  .nav-list-item-link img {
    width: auto;
    height: 7.47vw;
  }

  .nav-list-item-link.nav-list-item-link-large img {
    height: 13.6vw;
  }

  .nav-btn {
    display: flex;
    gap: calc(24 * var(--vw));
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(44 * var(--vw));
    background: #539ee8;
  }

  .nav-btn-ico {
    width: calc(26 * var(--vw));
  }

  .nav-btn-txt {
    color: white;
    font-weight: bold;
    font-size: calc(16 * var(--vw));
  }
}

@media (min-width: 769px) {
  .nav-list {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-list-item-link img {
    width: auto;
    height: 37px;
  }

  .nav-list-item-link.nav-list-item-link-large img {
    height: 61px;
  }

  .nav-btn {
    display: none;
  }
}

@media (any-hover: hover) {
  .nav-list-item-link {
    transition: opacity var(--duration);
  }

  .nav-list-item-link:hover {
    opacity: 0.5;
  }
}

.nav-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-overlay.is-open {
  visibility: visible;
}

@media (min-width: 769px) {
  .nav-overlay {
    display: none;
  }
}

/**
 * container
 */
@media (max-width: 768px) {
  .container {
    display: grid;
    align-items: start;
  }
}

@media (min-width: 769px) {
  .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-inline: auto;
  }
}

/**
 * content
 */
.content {
  position: relative;
  z-index: 2;
  width: calc(375 * var(--vw));
  overflow: clip;
  box-shadow: 0px 3px 8px rgba(231, 59, 106, 0.18);
  background: white;
}

@media (max-width: 768px) {
  .content {
    grid-area: 1 / 1 / 2 / 2;
  }
}

/* @media (min-width: 769px) and (max-width: 1100px) {
	.content {
	}
} */

/**
 * side-product
 */
@media (max-width: 768px) {
  .side-product {
    display: none;
  }
}

.side-product {
  position: sticky;
  top: calc(50% + calc(62 * var(--vw)));
  translate: 0 -50%;
  padding: 0 calc(131 * var(--vw)) 0 calc(54 * var(--vw));
}

.side-product-img {
  width: calc(208 * var(--vw));
  margin-inline: auto;
}

.side-product-name {
  margin-top: calc(20 * var(--vw));
}

.side-product-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(62 * var(--vw));
  margin-top: calc(40 * var(--vw));
  border-radius: 8px;
  background: var(--key-color);
}

.side-product-btn-ico {
  width: calc(26 * var(--vw));
}

.side-product-btn-txt {
  margin: 0 calc(20 * var(--vw)) 0 calc(16 * var(--vw));
  color: white;
  font-weight: bold;
  font-size: calc(20 * var(--vw));
  letter-spacing: -0.04em;
}

.side-product-btn-arrow {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .side-product {
    padding: 0 calc(35 * var(--vw));
  }

  .side-product-btn-txt {
    margin: 0 calc(16 * var(--vw)) 0 calc(12 * var(--vw));
    font-size: calc(18 * var(--vw));
  }
}

@media (any-hover: hover) {
  .side-product-btn {
    transition: background-color var(--duration);
  }

  .side-product-btn:hover {
    background: #a00e01;
  }
}

/**
 * sp-sticky
 */
@media (min-width: 769px) {
  .sp-sticky {
    display: none;
  }
}

.sp-sticky {
  grid-area: 1 / 1 / 2 / 2;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

/**
 * fixed-btn
 */
.fixed-btn {
  display: flex;
  gap: calc(24 * var(--vw));
  justify-content: center;
  align-items: center;
  z-index: 3;
  width: 100%;
  height: calc(44 * var(--vw));
  background: #539ee8;
  pointer-events: auto;
}

.fixed-btn-ico {
  width: calc(26 * var(--vw));
}

.fixed-btn-txt {
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
}

@media (min-width: 769px) {
  .fixed-btn {
    display: none;
  }
}

/**
 * hamburger
 */
.hamburger {
  position: absolute;
  top: calc(55 * var(--vw));
  /* top: calc(12 * var(--vw));オンライショップバナーが無いとき */
  right: calc(12 * var(--vw));
  z-index: 3;
  width: calc(50 * var(--vw));
  height: calc(50 * var(--vw));
  border-radius: 50%;
  background: white;
  transition: background-color var(--duration);
  pointer-events: auto;
}

.hamburger.is-open {
  background: var(--key-color);
}

.hamburger.is-open .hamburger-icon {
  background: transparent;
}

.hamburger.is-open .hamburger-icon::before {
  top: 0;
  rotate: 135deg;
  background: white;
}

.hamburger.is-open .hamburger-icon::after {
  top: 0;
  rotate: -135deg;
  background: white;
}

.hamburger-icon {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(12 * var(--vw));
  width: calc(26 * var(--vw));
  height: 3px;
  border-radius: calc(1px / 0);
  background: var(--key-color);
  transition: all var(--duration);
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: var(--key-color);
  transition: inherit;
}

.hamburger-icon::before {
  top: calc(-8 * var(--vw));
}

.hamburger-icon::after {
  top: calc(8 * var(--vw));
}

.hamburger-txt {
  clip: rect(0, 0, 0, 0) !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/**
 * page-nav
 */
.page-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.page-nav-list-item + .page-nav-list-item {
  border-top: 1px solid white;
}

.page-nav-list-link {
  display: block;
  position: relative;
  padding: calc(11 * var(--vw)) 0;
  padding-left: calc(20 * var(--vw));
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(18 * var(--vw));
  text-decoration: none;
}

.page-nav-list-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(8 * var(--vw));
  border: 1px solid var(--key-color);
  border-radius: 50%;
}

.page-nav {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: calc(28 * var(--vw)) calc(22 * var(--vw));
  box-sizing: border-box;
  background: #ffdbd8;
  transition: opacity var(--duration), visibility var(--duration);
}

.page-nav.is-open {
  opacity: 1;
  visibility: visible;
}

/**
 * pc-page-nav
 */
@media (max-width: 768px) {
  .pc-page-nav {
    display: none;
  }
}

.pc-page-nav {
  position: sticky;
  top: calc(142 * var(--vw));
  right: 0;
  z-index: 1;
  width: calc(230 * var(--vw));
  height: calc(335 * var(--vw));
  padding: calc(36 * var(--vw)) calc(28 * var(--vw));
  border-radius: 0px 8px 8px 0px;
  box-shadow: 0px 3px 6px rgba(248, 99, 99, 0.16);
  background: white;
}

.pc-page-nav-logo {
  width: calc(110 * var(--vw));
}

.pc-page-nav-list {
  list-style: none;
  margin: calc(8 * var(--vw)) 0 0;
  padding: 0;
}

.pc-page-nav-list-item + .pc-page-nav-list-item {
  border-top: 1px solid #d9d1d1;
}

.pc-page-nav-list-link {
  display: block;
  position: relative;
  margin-right: -1em;
  padding: calc(13 * var(--vw)) 0;
  padding-left: calc(20 * var(--vw));
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  letter-spacing: -0.03em;
  text-decoration: none;
}

.pc-page-nav-list-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(8 * var(--vw));
  border: 1px solid var(--key-color);
  border-radius: 50%;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .pc-page-nav-list-link {
    font-size: calc(15 * var(--vw));
    letter-spacing: -0.04em;
  }
}

@media (any-hover: hover) {
  .pc-page-nav-list-link {
    transition: opacity var(--duration);
  }

  .pc-page-nav-list-link:hover {
    opacity: 0.5;
  }
}

/**
 * page-nav-overlay
 */
.page-nav-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.page-nav-overlay.is-open {
  visibility: visible;
}

@media (min-width: 769px) {
  .page-nav-overlay {
    display: none;
  }
}

/**
 * bg
 */
@media (max-width: 768px) {
  .bg {
    display: none;
  }
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.bg img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

/**
 * modal
 */
dialog::backdrop {
  background: rgb(35 24 21 / 0.7);
  backdrop-filter: blur(8px);
}

.modal {
  position: relative;
  transition: opacity var(--duration);
}

.modal::backdrop {
  transition: opacity var(--duration);
}

.modal.is-open,
.modal.is-close {
  opacity: 0;
}

.modal.is-open .modal-container,
.modal.is-close .modal-container {
  scale: 0.95;
}

.modal.is-open::backdrop,
.modal.is-close::backdrop {
  opacity: 0;
}

.modal-container {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  scale: 1;
  width: min(calc(100% - calc(44 * var(--vw))), calc(758 * var(--vw)));
  height: fit-content;
  max-height: calc(100dvh - calc(22 * var(--vw)));
  margin: auto;
  padding-top: calc(65 * var(--vw));
  overflow: auto;
  border-radius: 4px;
  box-sizing: border-box;
  background: white;
  transition: scale var(--duration);
  overscroll-behavior: contain;
}
.modal-container.modal-container--nobg{
	background-color: transparent;
  width: min(calc(100% - calc(20 * var(--vw))), calc(758 * var(--vw)));
}
.modal-btn {
  position: absolute;
  top: calc(12 * var(--vw));
  right: calc(12 * var(--vw));
  width: calc(50 * var(--vw));
  height: calc(50 * var(--vw));
  overflow: clip;
  border-radius: 50%;
  background: var(--key-color);
}
@media (min-width: 769px) {
	.modal-btn.modal-btn--short{
		right: calc(160 * var(--vw));
	}
}
.modal-btn-icon {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(13 * var(--vw));
  width: calc(26 * var(--vw));
  height: 3px;
  border-radius: calc(1px / 0);
  background: white;
  background: transparent;
  transition: all var(--duration);
}

.modal-btn-icon::before,
.modal-btn-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: white;
  transition: inherit;
}

.modal-btn-icon::before {
  top: 0;
  rotate: 135deg;
  background: white;
}

.modal-btn-icon::after {
  top: 0;
  rotate: -135deg;
  background: white;
}

.modal-btn-txt {
  clip: rect(0, 0, 0, 0) !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 769px) {
  .modal-container {
    padding-top: calc(30 * var(--vw));
    border-radius: 8px;
  }
}

/**
 * main
 */
.main {
  background: #fff1f0;
}

@media (max-width: 768px) {
  .main {
    padding-top: 10.66vw;
  }
}

/**
 * kv
 */
.kv {
  position: relative;
  padding-bottom: calc(50 * var(--vw));
}

.kv-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: calc(280 * var(--vw));
}

.kv-copy {
  position: absolute;
  top: calc(55 * var(--vw));
  left: calc(20 * var(--vw));
  width: calc(200 * var(--vw));
}

.kv-img {
  position: absolute;
  bottom: calc(90 * var(--vw));
  left: calc(15 * var(--vw));
  width: calc(95 * var(--vw));
}

/**
 * intro
 */
.intro {
  margin-top: calc(55 * var(--vw));
  padding-inline: calc(22 * var(--vw));
}

.intro-box {
  position: relative;
  padding: calc(22 * var(--vw)) calc(22 * var(--vw)) calc(30 * var(--vw))
    calc(22 * var(--vw));
  border-radius: 4px;
  background: #e5594e;
  color: white;
}

.intro-head {
  font-size: calc(22 * var(--vw));
  line-height: calc(38 / 22);
}

.intro-img {
  position: absolute;
  top: calc(-40 * var(--vw));
  right: calc(-30 * var(--vw));
  width: calc(115 * var(--vw));
}

.intro-list {
  list-style: none;
  margin: calc(22 * var(--vw)) 0 0;
  padding: 0;
}

.intro-list-item {
  position: relative;
  margin-right: -1em;
  padding-left: calc(25 * var(--vw));
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
  letter-spacing: -0.03em;
}

.intro-list-item::before {
  content: "";
  position: absolute;
  top: calc(8 * var(--vw));
  left: 0;
  width: calc(14 * var(--vw));
  height: calc(14 * var(--vw));
  border-radius: 50%;
  background: radial-gradient(
    rgba(248, 239, 241, 0.1) 0%,
    rgba(248, 239, 241, 0.4) 59.11%,
    #fff 100%
  );
}

.intro-list-item + .intro-list-item {
  margin-top: calc(14 * var(--vw));
}

.intro-btn {
  margin-top: calc(35 * var(--vw));
}

.intro-btn + .intro-btn {
  margin-top: calc(12 * var(--vw));
}

.intro-btn-link {
  display: flex;
  gap: calc(12 * var(--vw));
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(54 * var(--vw));
  border-radius: 8px;
  background: white;
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  letter-spacing: -0.04em;
}

.intro-btn-link::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: var(--key-color);
}

.intro-btn-ico {
  width: calc(24 * var(--vw));
  line-height: 1;
}

@media (any-hover: hover) {
  .intro-btn-link {
    border: 2px solid white;
    transition: background-color var(--duration), color var(--duration);
  }
  .intro-btn-link::after {
    transition: background-color var(--duration);
  }
  .intro-btn-ico svg path {
    transition: fill var(--duration);
  }
  .intro-btn-link:hover {
    background: transparent;
    color: white;
  }
  .intro-btn-link:hover:after {
    background: white;
  }
  .intro-btn-link:hover .intro-btn-ico svg path {
    fill: #fff;
  }
}

/**
 * onlineshop
 */
.onlineshop {
  padding-top: calc(52 * var(--vw));
  padding-bottom: calc(50 * var(--vw));
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #fff 35%,
    #fff 100%
  );
}

.onlineshop-head {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  font-size: calc(22 * var(--vw));
  line-height: calc(36 / 22);
  text-align: center;
}

.onlineshop-head::before,
.onlineshop-head::after {
  content: "";
  position: absolute;
  top: calc(5 * var(--vw));
  width: 2px;
  height: calc(62 * var(--vw));
  background: #231815;
}

.onlineshop-head::before {
  left: calc(-22 * var(--vw));
  rotate: -28deg;
}

.onlineshop-head::after {
  right: calc(-22 * var(--vw));
  rotate: 28deg;
}

.onlineshop-list {
  list-style: none;
  margin: calc(25 * var(--vw)) 0 0;
  padding: 0;
  padding-inline: calc(22 * var(--vw));
}

.onlineshop-list-item + .onlineshop-list-item {
  margin-top: calc(12 * var(--vw));
}

@media (any-hover: hover) {
  .onlineshop-list-link {
    transition: opacity var(--duration);
  }

  .onlineshop-list-link:hover {
    opacity: 0.5;
  }
}

/**
 * problem
 */
.problem-head {
  margin-top: calc(65 * var(--vw));
  color: var(--key-color);
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.problem-list {
  list-style: none;
  margin: 0;
  margin-top: calc(25 * var(--vw));
  padding: 0;
  padding-inline: calc(22 * var(--vw));
}

.problem-list-item {
  padding: calc(18 * var(--vw)) 0;
  background: white;
  font-size: calc(18 * var(--vw));
  text-align: center;
}

.problem-list-item + .problem-list-item {
  margin-top: calc(14 * var(--vw));
}

.problem-img {
  width: calc(240 * var(--vw));
  margin-top: calc(32 * var(--vw));
  margin-inline: auto;
}

.problem-txt {
  margin-top: calc(25 * var(--vw));
  font-weight: bold;
  font-size: calc(26 * var(--vw));
  line-height: calc(42 / 26);
  text-align: center;
}

.problem-txt-marker {
  padding: 0.05em;
  background: var(--key-color);
  color: white;
  font-style: normal;
}

.problem-foot-bg {
  padding-top: calc(48 * var(--vw));
}

/**
 * product
 */

.product {
  padding-top: calc(10 * var(--vw));
  background: white;
}

.product-head {
  color: var(--key-color);
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.product-name {
  width: calc(274 * var(--vw));
  margin-top: calc(40 * var(--vw));
  margin-inline: auto;
}

.product-img {
  width: calc(170 * var(--vw));
  margin-top: calc(40 * var(--vw));
  margin-inline: auto;
}

.product-btn {
  display: flex;
  gap: calc(12 * var(--vw));
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(331 * var(--vw));
  height: calc(54 * var(--vw));
  margin-top: calc(40 * var(--vw));
  margin-inline: auto;
  border-radius: 8px;
  background: var(--key-color);
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  letter-spacing: -0.04em;
}

.product-btn::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

.product-foot-img {
  margin-top: calc(72 * var(--vw));
}

@media (min-width: 769px) {
  .product-btn {
    display: none;
  }
}

@media (any-hover: hover) {
  .product-btn {
    transition: opacity var(--duration);
  }

  .product-btn:hover {
    opacity: 0.5;
  }
}

/**
 * mechanism
 */
.mechanism {
  padding-top: calc(65 * var(--vw));
  padding-bottom: calc(8 * var(--vw));
  background: white;
}

.mechanism-head {
  color: var(--key-color);
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.mechanism-txt {
  margin-top: calc(35 * var(--vw));
  padding-inline: calc(22 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
}

.mechanism-img {
  margin-top: calc(40 * var(--vw));
  padding-inline: calc(22 * var(--vw));
}

.mechanism-img + .mechanism-txt {
  margin-top: calc(40 * var(--vw));
}

.mechanism-notice {
  margin-top: calc(45 * var(--vw));
  padding-inline: calc(22 * var(--vw));
  font-weight: bold;
  font-size: calc(18 * var(--vw));
  line-height: calc(28 / 18);
}

.mechanism-notice-marker {
  padding: 0.05em;
  background: var(--key-color);
  color: white;
  font-style: normal;
}

.mechanism-notice-em {
  color: var(--key-color);
}

/**
 * feature
 */
.feature {
  padding-bottom: calc(65 * var(--vw));
  background: url(../images/bg_feature1.jpg) no-repeat center top / cover;
}

.feature-sec + .feature-sec {
  margin-top: calc(76 * var(--vw));
}

.feature-head {
  margin-top: calc(20 * var(--vw));
  color: var(--key-color);
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  letter-spacing: -0.02em;
  text-align: center;
}

.feature-head.-slim {
  letter-spacing: -0.08em;
}

.feature-head-marker {
  padding: 0.05em;
  background: var(--key-color);
  color: white;
  font-style: normal;
}

.feature-note {
  margin-top: calc(5 * var(--vw));
  font-size: calc(10 * var(--vw));
  text-align: center;
}

.feature-box {
  margin: calc(25 * var(--vw)) calc(22 * var(--vw)) 0;
  padding: calc(22 * var(--vw)) calc(24 * var(--vw));
  border-radius: 16px;
  background: white;
}

.feature-box-head {
  position: relative;
  margin-right: -0.5em;
  padding-left: calc(10 * var(--vw));
  font-size: calc(20 * var(--vw));
  line-height: calc(34 / 20);
}

.feature-box-head.-slim {
  letter-spacing: -0.08em;
}

.feature-box-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  height: 90%;
  border-left: 2px solid var(--key-color);
}

.feature-box-head-em {
  color: var(--key-color);
}

.feature-box-img {
  margin-top: calc(15 * var(--vw));
}

.feature-box-txt {
  margin-top: calc(20 * var(--vw));
  margin-right: -0.5em;
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
}

.feature-box-txt.-bold {
  font-weight: 700;
}

.feature-box-txt-em {
  color: var(--key-color);
  font-style: normal;
}

.feature-box-list {
  list-style: none;
  margin: calc(10 * var(--vw)) 0 0;
  padding: 0;
}

.feature-box-list-item {
  position: relative;
  margin-right: -0.5em;
  padding-left: calc(15 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
}

.feature-box-list-item::before {
  content: "";
  position: absolute;
  top: calc(13 * var(--vw));
  left: calc(5 * var(--vw));
  width: calc(4 * var(--vw));
  height: calc(4 * var(--vw));
  border-radius: 50%;
  background: var(--key-color);
}

.feature-box-list-item + .feature-box-list-item {
  margin-top: calc(12 * var(--vw));
}

.feature-box-list-em {
  color: var(--key-color);
  font-style: normal;
  font-weight: bold;
}

.feature-box-note {
  margin-top: calc(26 * var(--vw));
  font-weight: 700;
  font-size: calc(12 * var(--vw));
}

.feature-box-dl {
  margin-top: calc(8 * var(--vw));
  border: 1px solid var(--key-color);
  font-size: calc(14 * var(--vw));
  line-height: calc(20 / 14);
}

.feature-box-dt {
  padding: calc(2 * var(--vw)) calc(5 * var(--vw));
  background: #e8e8e8;
  font-size: calc(14 * var(--vw));
}

.feature-box-dt.-attention {
  background: var(--key-color);
  color: white;
  font-weight: 700;
}

.feature-box-dd {
  padding: calc(7 * var(--vw)) calc(5 * var(--vw));
}

.feature-box-dd li {
  padding-left: 1em;
  text-indent: -1em;
}

.feature-box-dd li::before {
  content: '\30FB';
}

.feature-box-dd.-attention {
  background: #fff1f0;
  border-bottom: 1px solid var(--key-color);
}

.feature-box-dd dt {
  font-weight: 700;
}

.feature-box-dd dt:first-of-type {
  color: var(--key-color);
}

.feature-box-dd dd:first-of-type {
  color: var(--key-color);
}

.feature-box-dd dd {
  margin-top: calc(2 * var(--vw));
}

.feature-box-dd dd + dt {
  margin-top: calc(6 * var(--vw));
  padding-top: calc(6 * var(--vw));
  border-top: 1px dashed rgb(221 43 28 / 0.4);
}

.feature-box-base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(15 * var(--vw));
  margin-top: calc(24 * var(--vw));
  text-align: center;
}

.feature-box-base > div + div {
  position: relative;
}

.feature-box-base > div + div::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-8 * var(--vw));
  width: 1px;
  height: 100%;
  background: var(--key-color);
}

.feature-box-base-txt {
  margin-top: calc(10 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(24 / 16);
}

.feature-box-base-note {
  margin-top: calc(5 * var(--vw));
  font-size: calc(14 * var(--vw));
  line-height: calc(18 / 14);
}

/**
 * product-2nd
 */
.product-2nd {
  position: relative;
  padding-bottom: calc(40 * var(--vw));
  background: #ffdbd8;
}

.product-2nd-head {
  position: absolute;
  top: calc(56 * var(--vw));
  left: 50%;
  translate: -50%;
  width: calc(294 * var(--vw));
}

.product-2nd-img {
  position: absolute;
  top: calc(235 * var(--vw));
  left: calc(105 * var(--vw));
  width: calc(250 * var(--vw));
}

.product-2nd-list {
  list-style: none;
  margin: calc(40 * var(--vw)) 0 0;
  margin-right: -0.5em;
  padding: 0;
  padding-inline: calc(22 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
  letter-spacing: -0.01em;
}

.product-2nd-item {
  padding-left: 1em;
  text-indent: -1em;
}

.product-2nd-item::before {
  content: "・";
}

.product-2nd-item-marker {
  display: inline-block;
  width: fit-content;
  padding: 0.04em 0.5em 0.01em 0.01em;
  padding-left: 1em;
  background: var(--key-color);
  color: white;
  color: white;
  font-style: normal;
  font-style: normal;
  font-weight: bold;
  line-height: 1.2;
  text-indent: -1em;
}

.product-2nd-item-marker::before {
  content: "・";
}

.product-2nd-btn {
  width: calc(331 * var(--vw));
  margin-top: calc(35 * var(--vw));
  margin-inline: auto;
}

.product-2nd-btn-link {
  display: flex;
  gap: calc(12 * var(--vw));
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(54 * var(--vw));
  border-radius: 8px;
  background: var(--key-color);
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  letter-spacing: -0.04em;
}

.product-2nd-btn-link::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

@media (any-hover: hover) {
  .product-2nd-btn-link {
    transition: background-color var(--duration);
  }
  .product-2nd-btn-link:hover {
    background: #a00e01;
  }
}

/**
 * other
 */
.other {
  padding-top: calc(50 * var(--vw));
  padding-bottom: calc(55 * var(--vw));
  background: url(../images/bg_other1.jpg) no-repeat center top / cover;
}

.other-head {
  color: #e73b6a;
  font-weight: bold;
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.other-logo {
  width: calc(291 * var(--vw));
  margin-top: calc(10 * var(--vw));
  margin-inline: auto;
}

.other-img {
  width: calc(258 * var(--vw));
  margin: calc(40 * var(--vw)) calc(22 * var(--vw)) 0 auto;
}

.other-btn {
  width: calc(331 * var(--vw));
  margin-top: calc(25 * var(--vw));
  margin-inline: auto;
}

.other-btn-link {
  display: flex;
  gap: calc(12 * var(--vw));
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(54 * var(--vw));
  border-radius: 8px;
  background: #e73b6a;
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  letter-spacing: -0.04em;
}

.other-btn-link::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

@media (any-hover: hover) {
  .other-btn-link {
    transition: background-color var(--duration);
  }

  .other-btn-link:hover {
    background: #b91844;
  }
}

/**
 * faq
 */
.faq {
  padding: calc(50 * var(--vw)) calc(22 * var(--vw)) calc(45 * var(--vw));
  background: white;
}

.faq-head {
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.faq-details {
  --duration: 0.15s;
  margin-top: calc(10 * var(--vw));
  overflow: clip;
  cursor: pointer;
}

.faq-details + .faq-details {
  margin-top: 0;
  border-top: 1px solid #d9d1d1;
}

.faq-details[open] .faq-summary::after {
  scale: 1 -1;
}

.faq-details[open] .faq-details-content {
  height: auto;
}

.faq-summary {
  display: grid;
  grid-template-columns: calc(26 * var(--vw)) auto;
  gap: calc(10 * var(--vw));
  position: relative;
  padding: calc(15 * var(--vw)) 0 calc(10 * var(--vw));
  padding-right: calc(20 * var(--vw));
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(18 * var(--vw));
  line-height: calc(28 / 18);
}

.faq-summary::after {
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: calc(26 * var(--vw));
  right: 0;
  width: calc(10 * var(--vw));
  height: calc(8 * var(--vw));
  background: var(--key-color);
  transition: scale var(--duration);
}

.faq-details-ico {
  display: grid;
  place-items: center;
  width: calc(26 * var(--vw));
  height: calc(26 * var(--vw));
  border-radius: 50%;
  background: var(--key-color);
  color: white;
  line-height: 1;
}

.faq-details-content {
  border-radius: 8px;
  background: #fff1f0;
}

.faq-details-content-inner {
  margin-bottom: calc(15 * var(--vw));
  padding: calc(15 * var(--vw)) calc(22 * var(--vw)) calc(18 * var(--vw));
}

.faq-details-content-txt {
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
}

.faq-details-content-img {
  margin-top: calc(15 * var(--vw));
}

/**
 * archive
 */
.archive {
  padding: calc(65 * var(--vw)) calc(22 * var(--vw)) calc(55 * var(--vw));
}

.archive-item + .archive-item {
  margin-top: calc(32 * var(--vw));
}

.archive-item-link {
  position: relative;
  position: relative;
  overflow: clip;
  border-radius: 8px;
}

.archive-item-btn {
  display: grid;
  place-items: center;
  position: absolute;
  bottom: calc(15 * var(--vw));
  left: 50%;
  translate: -50%;
  width: max-content;
  padding: calc(4 * var(--vw)) calc(35 * var(--vw)) calc(4 * var(--vw))
    calc(25 * var(--vw));
  border-radius: calc(1px / 0);
  background: var(--key-color);
  color: white;
  font-weight: bold;
  letter-spacing: -0.04em;
}

.archive-item-btn::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

.archive-item-title {
  margin-top: calc(15 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
  text-align: center;
}

@media (any-hover: hover) {
  .archive-item-link {
    transition: opacity var(--duration);
  }

  .archive-item-link:hover {
    opacity: 0.5;
  }
}

/**
 * brand
 */
.brand {
  padding-top: calc(65 * var(--vw));
  /* border-top: 1px solid #dd2b1c; */
  background: white;
}

.brand-head {
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(28 * var(--vw));
  line-height: calc(42 / 28);
  text-align: center;
}

.brand-head-small {
  font-size: calc(18 * var(--vw));
}

.brand-head-txt {
  margin-top: calc(15 * var(--vw));
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
  text-align: center;
}

.brand-head-img {
  margin-top: calc(30 * var(--vw));
}

.brand-list {
  margin-top: calc(40 * var(--vw));
  padding: calc(32 * var(--vw)) calc(22 * var(--vw));
  background: url(../images/bg_brand1.jpg) no-repeat center top / cover;
}

.brand-list-item {
  overflow: clip;
  border-radius: 8px;
  background: white;
}

.brand-list-item.-first .brand-list-imgs {
  padding: calc(32 * var(--vw)) calc(35 * var(--vw)) calc(20 * var(--vw));
  background: #e2f5ff;
}
.brand-list-item.-second .brand-list-imgs {
  padding: calc(32 * var(--vw)) calc(25 * var(--vw)) calc(20 * var(--vw));
  background: #ffe7dd;
}
.brand-list-item.-third .brand-list-imgs {
  padding: calc(32 * var(--vw)) calc(22 * var(--vw)) calc(20 * var(--vw));
  background: #e4f5d9;
}

.brand-list-item.-first .brand-list-btn-link {
  background: #3b8fd1;
}
.brand-list-item.-second .brand-list-btn-link {
  background: #f27741;
}
.brand-list-item.-third .brand-list-btn-link {
  background: #68a73e;
}

.brand-list-item + .brand-list-item {
  margin-top: calc(32 * var(--vw));
}

.brand-list-txts {
  padding: calc(15 * var(--vw)) calc(22 * var(--vw)) calc(20 * var(--vw));
}

.brand-list-txt {
  font-size: calc(16 * var(--vw));
  line-height: calc(30 / 16);
}

.brand-list-btn {
  width: fit-content;
  margin-top: calc(12 * var(--vw));
  margin-inline: auto;
}

.brand-list-btn-link {
  display: grid;
  place-items: center;
  position: relative;
  width: max-content;
  padding: calc(4 * var(--vw)) calc(35 * var(--vw)) calc(4 * var(--vw))
    calc(25 * var(--vw));
  border-radius: calc(1px / 0);
  background: var(--key-color);
  color: white;
  font-weight: bold;
  letter-spacing: -0.04em;
}

.brand-list-btn-link::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: calc(18 * var(--vw));
  translate: 0 -50%;
  width: calc(8 * var(--vw));
  height: calc(10 * var(--vw));
  background: white;
}

@media (max-width: 768px) {
  .brand-list-txt {
    margin-right: -0.5em;
  }
}

@media (any-hover: hover) {
  .brand-list-btn-link {
    transition: background-color var(--duration);
  }
  .brand-list-item.-first .brand-list-btn-link:hover {
    background: rgb(20, 86, 136);
  }
  .brand-list-item.-second .brand-list-btn-link:hover {
    background: #ba4e1f;
  }
  .brand-list-item.-third .brand-list-btn-link:hover {
    background: #41751f;
  }
}

/**
 * footer
 */
.footer-concept {
  padding: calc(40 * var(--vw)) 0;
  background: #f4f4f4;
}

.footer-concept-btn {
  max-width: calc(300 * var(--vw));
  margin-inline: auto;
}

.footer-concept-link {
  display: grid;
  grid-template-columns: calc(90 * var(--vw)) 1fr calc(12 * var(--vw));
  gap: calc(15 * var(--vw));
  align-items: center;
  padding: calc(10 * var(--vw)) calc(15 * var(--vw));
  border: 1px solid;
  background: white;
  color: #0064b3;
  font-weight: bold;
  font-size: calc(14 * var(--vw));
  line-height: calc(20 / 14);
  text-decoration: none;
}

.footer-pagetop-link {
  display: flex;
  gap: calc(12 * var(--vw));
  justify-content: center;
  align-items: center;
  padding: calc(12 * var(--vw));
  background: #005293;
  color: white;
  font-weight: bold;
  font-size: calc(14 * var(--vw));
  text-decoration: none;
}

.footer-pagetop-ico {
  translate: 0 calc(-1 * var(--vw));
  width: calc(15 * var(--vw));
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list-item {
  border-bottom: 1px solid #ccc;
}

.footer-nav-list-link {
  display: grid;
  grid-template-columns: 1fr calc(10 * var(--vw));
  align-items: center;
  padding: calc(20 * var(--vw));
}

.footer-nav-list-txt {
  display: flex;
  gap: calc(5 * var(--vw));
  align-items: center;
  font-size: calc(14 * var(--vw));
  line-height: 1;
}

.footer-nav-list-ico {
  display: block;
  width: calc(12 * var(--vw));
}

.footer-cr {
  display: block;
  padding: calc(20 * var(--vw)) 0;
  font-size: calc(10 * var(--vw));
  line-height: calc(14 / 10);
  text-align: center;
  text-align: center;
}

@media (any-hover: hover) {
  .footer-concept-link {
    transition: opacity var(--duration);
  }

  .footer-concept-link:hover {
    opacity: 0.5;
  }

  .footer-pagetop-link {
    transition: opacity var(--duration);
  }

  .footer-pagetop-link:hover {
    opacity: 0.5;
  }

  .footer-nav-list-link {
    transition: opacity var(--duration);
  }

  .footer-nav-list-link:hover {
    opacity: 0.5;
  }
}

/**
 * onlineshop-modal
 */

.onlineshop-modal__head {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  font-size: calc(22 * var(--vw));
  line-height: calc(36 / 22);
  text-align: center;
}

.onlineshop-modal__head::before,
.onlineshop-modal__head::after {
  content: "";
  position: absolute;
  top: calc(4 * var(--vw));
  width: 2px;
  height: calc(62 * var(--vw));
  background: #231815;
}

.onlineshop-modal__head::before {
  left: calc(-16 * var(--vw));
  rotate: -28deg;
}

.onlineshop-modal__head::after {
  right: calc(-16 * var(--vw));
  rotate: 28deg;
}

.onlineshop-modal__img {
  width: calc(165 * var(--vw));
  margin-top: calc(10 * var(--vw));
  margin-inline: auto;
  padding-left: calc(20 * var(--vw));
}

.onlineshop-modal__list {
  list-style: none;
  margin-top: calc(24 * var(--vw));
  margin-bottom: 0;
  padding: calc(30 * var(--vw)) calc(22 * var(--vw));
  background: var(--key-color);
}

.onlineshop-modal__list-item + .onlineshop-modal__list-item {
  margin-top: calc(12 * var(--vw));
}

@media (min-width: 769px) {
  .onlineshop-modal__head {
    font-size: calc(26 * var(--vw));
    line-height: calc(42 / 26);
  }

  .onlineshop-modal__head br {
    display: none;
  }

  .onlineshop-modal__head::before,
  .onlineshop-modal__head::after {
    height: calc(38 * var(--vw));
  }

  .onlineshop-modal__head::before {
    left: calc(-24 * var(--vw));
    rotate: -28deg;
  }

  .onlineshop-modal__head::after {
    right: calc(-24 * var(--vw));
    rotate: 28deg;
  }

  .onlineshop-modal__img {
    width: calc(432 * var(--vw));
    margin-top: calc(30 * var(--vw));
    padding-left: calc(110 * var(--vw));
  }

  .onlineshop-modal__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(12 * var(--vw)) calc(16 * var(--vw));
    margin-top: calc(32 * var(--vw));
    padding: calc(20 * var(--vw)) calc(40 * var(--vw));
  }
  .onlineshop-modal__list-item + .onlineshop-modal__list-item {
    margin-top: 0;
  }
}

@media (any-hover: hover) {
  .onlineshop-modal__list-link {
    transition: opacity var(--duration);
  }

  .onlineshop-modal__list-link:hover {
    opacity: 0.5;
  }
}

/**
 * product-modal
 */
.product-modal {
  padding: 0 calc(22 * var(--vw)) calc(30 * var(--vw));
}
.modal-container--nobg .product-modal{
	padding: 0;
}
.product-modal__head {
  padding-bottom: calc(20 * var(--vw));
  border-bottom: 1px solid;
  color: var(--key-color);
  font-size: calc(28 * var(--vw));
  text-align: center;
}

.product-modal__lead {
  margin-top: calc(20 * var(--vw));
  color: var(--key-color);
  font-weight: 700;
  font-size: calc(20 * var(--vw));
}

.product-modal__lead-small {
  font-size: calc(16 * var(--vw));
}

.product-modal__txt {
  margin-top: calc(3 * var(--vw));
  line-height: calc(30 / 16);
}

.product-modal__table {
  width: 100%;
  margin-top: calc(10 * var(--vw));
  border-collapse: collapse;
  th,
  td {
    width: 50%;
    padding: calc(2 * var(--vw)) calc(3 * var(--vw));
    border: 1px solid var(--key-color);
    font-size: calc(14 * var(--vw));
    line-height: calc(18 / 14);
    vertical-align: middle;
  }
  th {
    background: var(--key-color);
    color: white;
  }
  th:first-of-type {
    border-right: 1px solid white;
  }
  td + td {
    text-align: center;
  }
}

.product-modal__note {
  display: grid;
  grid-template-columns: auto auto;
  margin-top: calc(10 * var(--vw));
  font-size: calc(14 * var(--vw));
  line-height: calc(18 / 14);
}

.product-modal__note + .product-modal__txt {
  margin-top: calc(25 * var(--vw));
}

/* モーダルの動画コンテナ */
.product-modal__video {
  padding-top: calc(40 * var(--vw));
}
.product-modal__youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.product-modal__video.product-modal__video--short .product-modal__youtube{
  padding-top: 177.78%;
}
.product-modal__youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .product-modal__video.product-modal__video--short{
    width: 35%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .product-modal__video {
    padding-top: calc(15 * var(--vw));
  }
  .product-modal__table {
    td br {
      display: none;
    }
  }
}

@media (min-width: 769px) {
  .product-modal {
    padding: 0 calc(42 * var(--vw)) calc(42 * var(--vw));
  }
}


/**
 * mv-product
 */
 .mv-product {
	padding-inline: calc(22* var(--vw));
  background: #fff;
  }
  .mv-product-head {
	color: var(--key-color);
	font-size: calc(28 * var(--vw));
	line-height: calc(42 / 28);
	text-align: center;
  }
  .mv-product-thumbnail{
	margin-top: calc(25 * var(--vw));
  }
  /**
   * mv-tvcm
   */
   .mv-tvcm {
	padding-inline: calc(22* var(--vw));
	padding-bottom: calc(55 * var(--vw));
	background-color: #fff;
  }
   .mv-tvcm-head {
	padding-top: calc(48 * var(--vw));
	color: var(--key-color);
	font-size: calc(28 * var(--vw));
	line-height: calc(42 / 28);
	text-align: center;
  }
  .mv-tvcm-thumbnail{
	margin-top: calc(25 * var(--vw));
  }