@charset "UTF-8";
/**
 * base
 */
:root {
  --base-width: 375;
  --vw: calc(100vw / var(--base-width));
  --duration: 0.3s;
  --blue: #004b9e;
  --blue-dark: hsl(212, 100%, 21%);
  --key-color: #3b82c5;
  --key-color-dark: hsl(209, 54%, 30%);
  --key-color2: #0b1971;
  --key-color2-dark: hsl(232, 82%, 14%);
}

@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]) {
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(a:not([class])) {
  color: currentColor;
  -webkit-text-decoration-skip: ink;
          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-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
}

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

: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] {
  translate: 0 30px;
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity, translate;
}

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

[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 {
  --header-height: 10.66vw;
  box-sizing: border-box;
  display: flex;
  z-index: 100;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding-right: 4.53vw;
  padding-left: 3.2vw;
  background: white;
}

.header-logo {
  width: 39.2vw;
}

@media (min-width: 769px) {
  .header {
    --header-height: calc(97 * var(--vw));
    position: fixed;
    top: 0;
    left: 0;
    padding-inline: calc(30 * var(--vw));
    gap: calc(32 * 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 {
  box-sizing: border-box;
  position: relative;
  padding-right: calc(15 * var(--vw));
  color: var(--blue);
  font-size: calc(11 * var(--vw));
  line-height: 1;
}

@media (min-width: 769px) {
  .header-trigger {
    display: none;
  }
}
.header-trigger svg {
  position: absolute;
  top: calc(50% - 4.5 * var(--vw));
  right: 0;
  width: calc(9 * var(--vw));
  height: calc(9 * var(--vw));
  margin-left: auto;
  transform: rotate(90deg);
}

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

/**
 * nav
 */
@media (max-width: 768px) {
  .nav {
    box-sizing: border-box;
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--blue);
    opacity: 0;
    transition: opacity var(--duration), visibility var(--duration);
  }
  .nav.is-open {
    visibility: visible;
    opacity: 1;
  }
  .nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 5.87vw;
    gap: 3.2vw;
    list-style: none;
  }
  .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: calc(42 * var(--vw));
  }
}
@media (min-width: 769px) {
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    gap: 33px;
    list-style: none;
  }
  .nav-list-item-link img {
    width: auto;
    height: 55px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .nav-list-item-link img {
    height: calc(55 * var(--vw));
  }
}
@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;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    margin-inline: auto;
  }
}
/**
 * content
 */
.content {
  z-index: 2;
  position: relative;
  width: calc(375 * var(--vw));
  overflow: clip;
  background: white;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

@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: -webkit-sticky;
  position: sticky;
  top: calc(50% + 62 * var(--vw));
  padding: 0 calc(131 * var(--vw)) 0 calc(54 * var(--vw));
  translate: 0 -50%;
}

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

.side-product-name {
  width: calc(300 * var(--vw));
  margin: calc(33 * var(--vw)) auto 0;
}

.side-product-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  width: calc(397 * var(--vw));
  height: calc(55 * var(--vw));
  height: calc(62 * var(--vw));
  margin-top: calc(40 * var(--vw));
  padding-right: calc(12 * var(--vw));
  padding-right: 0;
  gap: calc(7 * var(--vw));
  border-radius: calc(28 * var(--vw));
  border-radius: calc(31 * var(--vw));
  background: var(--key-color);
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  font-size: calc(18 * var(--vw));
  letter-spacing: -0.05em;
  transition: background var(--duration), color var(--duration);
}
.side-product-btn::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.side-product-btn::after {
  top: calc(50% - 6 * var(--vw));
  right: calc(21 * var(--vw));
  width: calc(7 * var(--vw));
  height: calc(12 * var(--vw));
  background-image: url(../images/ico_arrow2.svg);
}
@media (any-hover: hover) {
  .side-product-btn:hover {
    background: var(--key-color-dark);
  }
}

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

@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));
  }
}
/**
 * sp-sticky
 */
@media (min-width: 769px) {
  .sp-sticky {
    display: none;
  }
}
.sp-sticky {
  z-index: 3;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

/**
 * fixed-btn
 */
.fixed-btn {
  display: flex;
  z-index: 3;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(44 * var(--vw));
  gap: calc(10 * var(--vw));
  background: var(--key-color);
  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 {
  z-index: 3;
  position: absolute;
  top: calc(11 * var(--vw));
  right: calc(12 * var(--vw));
  width: calc(50 * var(--vw));
  height: calc(50 * var(--vw));
  border-radius: 50%;
  background: white;
  pointer-events: auto;
  transition: background-color var(--duration);
}

.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(infinity * 1px);
  background: var(--key-color);
  transition: all var(--duration);
}

.hamburger-icon::before,
.hamburger-icon::after {
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: var(--key-color);
  content: "";
  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 {
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: auto;
}

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

.page-nav-list-link::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(8.5 * var(--vw));
  height: calc(14 * var(--vw));
  transform: rotate(90deg);
  translate: 0 -50%;
  background: url(../images/ico_arrow3.svg) no-repeat center;
  background-size: contain;
  content: "";
}

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

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

/**
 * pc-page-nav
 */
@media (max-width: 768px) {
  .pc-page-nav {
    display: none;
  }
}
.pc-page-nav {
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: calc(50% + 62 * var(--vw));
  right: 0;
  width: calc(230 * var(--vw));
  height: calc(365 * var(--vw));
  padding: calc(51 * var(--vw)) calc(28 * var(--vw));
  translate: 0 -50%;
  border-radius: 0px 8px 8px 0px;
  background: white;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

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

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

.pc-page-nav-list-link {
  display: block;
  position: relative;
  margin-right: -1em;
  padding: calc(8 * var(--vw)) 0 calc(8 * var(--vw)) calc(17 * var(--vw));
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(15 * var(--vw));
  text-decoration: none;
}

.pc-page-nav-list-link::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(10 * var(--vw));
  height: calc(10 * var(--vw));
  transform: rotate(90deg);
  translate: 0 -50%;
  background: url(../images/ico_arrow3.svg) no-repeat center;
  background-size: contain;
  content: "";
}

@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 {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

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

/**
 * modal
 */
dialog::backdrop {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(59, 130, 197, 0.75);
}

.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 {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: min(100% - 44 * var(--vw), 758 * var(--vw));
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100dvh - 22 * var(--vw));
  margin: auto;
  inset: 0;
  padding-top: calc(36 * var(--vw));
  padding-bottom: calc(80 * var(--vw));
  overflow: auto;
  overscroll-behavior: contain;
  scale: 1;
  border-radius: 10px;
  background: white;
  transition: scale var(--duration);
}

.modal-container.modal-container--nobg {
  width: min(100% - 20 * var(--vw), 758 * var(--vw));
  background-color: transparent;
}

.modal-inner {
  position: relative;
}

.modal-btn {
  position: absolute;
  right: calc(50% - 25 * var(--vw));
  bottom: calc(65 * var(--vw) * -1);
  width: calc(50 * var(--vw));
  height: calc(50 * var(--vw));
  overflow: clip;
  border-radius: 50%;
}

@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(infinity * 1px);
  background: white;
  background: transparent;
  transition: all var(--duration);
}

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

.modal-btn-icon::before {
  top: 0;
  rotate: 135deg;
  background: var(--key-color);
}

.modal-btn-icon::after {
  top: 0;
  rotate: -135deg;
  background: var(--key-color);
}

.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
 */
/**
 * kv
 */
.kv {
  position: relative;
  padding-bottom: calc(110 * var(--vw));
}

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

.kv-copy {
  position: absolute;
  top: calc(45 * var(--vw));
  left: calc(30 * var(--vw));
  width: calc(211 * var(--vw));
}

.kv-img {
  position: absolute;
  bottom: calc(239 * var(--vw));
  left: calc(30 * var(--vw));
  width: calc(163 * var(--vw));
}

/**
 * intro
 */
.intro {
  padding: 0 calc(20 * var(--vw)) calc(60 * var(--vw));
}

.intro-box {
  position: relative;
  padding: calc(32 * var(--vw)) calc(25 * var(--vw)) calc(45 * var(--vw)) calc(25 * var(--vw));
  border-radius: 10px;
  background: var(--key-color);
  color: white;
}

.intro-head {
  font-size: calc(21 * var(--vw));
  line-height: 1.7619047619;
  letter-spacing: -0.04em;
}

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

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

.intro-list-item::before {
  position: absolute;
  top: calc(8 * var(--vw));
  left: calc(2 * var(--vw));
  width: calc(7 * var(--vw));
  height: calc(7 * var(--vw));
  border-radius: 50%;
  background: #fff;
  content: "";
}

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

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

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

.intro-btn-link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(55 * var(--vw));
  padding-right: calc(12 * var(--vw));
  gap: calc(7 * var(--vw));
  border-radius: calc(28 * var(--vw));
  background: white;
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  transition: background var(--duration), color var(--duration);
}
.intro-btn-link::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.intro-btn-link::after {
  background-image: url(../images/ico_arrow3.svg);
}

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

.intro-btn-ico svg path {
  fill: var(--key-color);
}

@media (any-hover: hover) {
  .intro-btn-link {
    border: 2px solid white;
  }
  .intro-btn-link:hover {
    background: transparent;
    color: white;
  }
  .intro-btn-link:hover:after {
    background-image: url(../images/ico_arrow2.svg);
  }
  .intro-btn-ico svg path {
    transition: fill var(--duration);
  }
  .intro-btn-link:hover .intro-btn-ico svg path {
    fill: #fff;
  }
}
/**
 * onlineshop
 */
.onlineshop {
  padding: calc(60 * var(--vw)) 0 calc(65 * var(--vw));
}

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

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

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

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

/**
 * problem
 */
.problem {
  padding: calc(60 * var(--vw)) calc(20 * var(--vw)) calc(75 * var(--vw));
  background: url(../images/bg_problem1.jpg) no-repeat center;
  background-size: cover;
}

.problem-head {
  color: var(--key-color2);
  font-size: calc(21 * var(--vw));
  line-height: 1.5;
  text-align: center;
}

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

.problem-list-item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: calc(100 * var(--vw));
  padding: calc(18 * var(--vw)) calc(20 * var(--vw));
  border-radius: calc(10 * var(--vw));
  background: white;
  color: var(--key-color);
  font-size: calc(14 * var(--vw));
  line-height: 2;
  text-align: center;
}

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

.problem-list-item-txt {
  display: block;
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(18 * var(--vw));
  text-align: center;
}

/**
 * product
 */
.product {
  padding: calc(72 * var(--vw)) calc(20 * var(--vw)) 0;
}

.product-head {
  color: var(--key-color2);
  font-size: calc(21 * var(--vw));
  line-height: 1.5;
  text-align: center;
}

.product-logo {
  width: calc(247 * var(--vw));
  margin-top: calc(24 * var(--vw));
  margin-inline: auto;
}

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

.product-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(55 * var(--vw));
  margin-top: calc(33 * var(--vw));
  padding-right: calc(12 * var(--vw));
  gap: calc(7 * var(--vw));
  border-radius: calc(28 * var(--vw));
  background: var(--key-color);
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  transition: background var(--duration), color var(--duration);
}
.product-btn::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.product-btn::after {
  background-image: url(../images/ico_arrow2.svg);
}
@media (any-hover: hover) {
  .product-btn {
    transition: opacity var(--duration);
  }
  .product-btn:hover {
    opacity: 0.5;
  }
}

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

@media (min-width: 769px) {
  .product-btn {
    display: none;
  }
}
/**
 * point
 */
.point {
  padding: 0 calc(20 * var(--vw));
}
.point-head {
  margin: 0 calc(-20 * var(--vw));
  padding: calc(42 * var(--vw)) 0 0;
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(26 * var(--vw));
  line-height: 1.3846153846;
  text-align: center;
}
.point-head-img {
  display: block;
  width: calc(60 * var(--vw));
  margin: 0 auto calc(16 * var(--vw));
}
.point-head-color {
  color: var(--key-color2);
}
.point-img {
  margin: calc(28 * var(--vw)) 0 0;
}
.point-txt {
  margin: calc(20 * var(--vw)) 0 0;
  color: var(--key-color2);
  font-size: calc(16 * var(--vw));
  line-height: 2;
}
.point-txt + .point-txt {
  margin-top: calc(34 * var(--vw));
}
.point-img + .point-txt {
  margin-top: calc(34 * var(--vw));
}

/**
 * product-2nd
 */
.product-2nd {
  position: relative;
  margin: calc(64 * var(--vw)) 0 0;
  padding: calc(62 * var(--vw)) calc(45 * var(--vw)) calc(76 * var(--vw));
  background: url(../images/bg_product-2nd1.jpg) no-repeat center;
  background-size: cover;
}

.product-2nd-head {
  color: var(--key-color2);
  font-size: calc(21 * var(--vw));
  text-align: center;
}
.product-2nd-head span {
  display: inline-block;
  margin: 0 0 calc(0 * var(--vw));
  border-bottom: calc(2 * var(--vw)) solid var(--key-color2);
  font-size: calc(15 * var(--vw));
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.product-2nd-head span + br + span {
  margin-bottom: calc(20 * var(--vw));
}
.product-2nd-head img {
  width: calc(247 * var(--vw));
  margin: calc(20 * var(--vw)) auto;
}

.product-2nd-img {
  width: calc(264 * var(--vw));
  margin: calc(24 * var(--vw)) auto 0;
}

.product-2nd-list {
  margin: calc(30 * var(--vw)) 0 0;
  padding: 0;
  color: var(--key-color2);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  line-height: 1.5;
  list-style: none;
}

.product-2nd-item {
  position: relative;
  padding-left: calc(15 * var(--vw));
}
.product-2nd-item:not(:first-child) {
  margin-top: calc(18 * var(--vw));
}

.product-2nd-item::before {
  position: absolute;
  top: calc(8 * var(--vw));
  left: calc(2 * var(--vw));
  width: calc(7 * var(--vw));
  height: calc(7 * var(--vw));
  border-radius: 50%;
  background: var(--key-color2);
  content: "";
}

.product-2nd-btn {
  margin-top: calc(40 * var(--vw));
}

.product-2nd-btn-link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(55 * var(--vw));
  padding-right: calc(12 * var(--vw));
  gap: calc(7 * var(--vw));
  border-radius: calc(28 * var(--vw));
  background: var(--key-color);
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  transition: background var(--duration), color var(--duration);
}
.product-2nd-btn-link::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.product-2nd-btn-link::after {
  background-image: url(../images/ico_arrow2.svg);
}
@media (any-hover: hover) {
  .product-2nd-btn-link:hover {
    background: var(--key-color-dark);
  }
}

/**
 * faq
 */
.faq {
  padding: calc(72 * var(--vw)) calc(22 * var(--vw)) calc(45 * var(--vw));
  background: #ebf2f9;
}

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

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

.faq-details + .faq-details {
  margin-top: 0;
  border-top: 1px solid var(--key-color);
}

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

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

.faq-summary {
  display: grid;
  position: relative;
  grid-template-columns: calc(25 * var(--vw)) auto;
  padding: calc(30 * var(--vw)) calc(20 * var(--vw)) calc(24 * var(--vw)) 0;
  gap: calc(13 * var(--vw));
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(18 * var(--vw));
  line-height: 1.5555555556;
  cursor: pointer;
}

.faq-summary::after {
  position: absolute;
  top: calc(40 * var(--vw));
  right: 0;
  width: calc(10 * var(--vw));
  height: calc(10 * var(--vw));
  transform: rotate(90deg);
  background: url(../images/ico_arrow3.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: scale var(--duration);
}

.faq-details-ico {
  display: block;
  width: calc(25 * var(--vw));
  height: calc(29 * var(--vw));
  overflow: hidden;
  background: url(../images/ico_faq-q.svg) no-repeat center;
  background-size: contain;
  line-height: 1;
  text-indent: 105%;
  white-space: nowrap;
}

.faq-details-ico-a {
  display: block;
  width: calc(20.5 * var(--vw));
  height: calc(24.5 * var(--vw));
  overflow: hidden;
  background: url(../images/ico_faq-a.svg) no-repeat center;
  background-size: contain;
  line-height: 1;
  text-indent: 105%;
  white-space: nowrap;
}

.faq-details-content-inner {
  display: grid;
  grid-template-columns: calc(25 * var(--vw)) auto;
  margin: calc(-4 * var(--vw)) 0 calc(21 * var(--vw));
  gap: calc(13 * var(--vw));
}

.faq-details-content-txt {
  color: var(--key-color2);
  font-size: calc(16 * var(--vw));
  line-height: 2;
}

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

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

.brand-head {
  color: #042275;
  font-weight: bold;
  font-size: calc(26 * var(--vw));
  line-height: 1.4615384615;
  text-align: center;
}

.brand-list {
  padding: calc(36 * var(--vw)) calc(22 * var(--vw)) calc(75 * var(--vw));
}

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

.brand-list-imgs {
  width: calc(264 * var(--vw));
  margin: 0 auto;
  padding: calc(36 * var(--vw)) 0 0;
}

.brand-list-item + .brand-list-item {
  margin-top: calc(22 * var(--vw));
  background: #fbe2dc;
}

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

.brand-list-ttl {
  margin: 0 0 calc(6 * var(--vw));
  color: var(--key-color2);
  font-weight: bold;
  font-size: calc(17 * var(--vw));
  font-feature-settings: "palt";
  letter-spacing: 0;
  text-align: center;
}

.brand-list-txt {
  margin: 0 0 0;
  color: var(--key-color2);
  font-size: calc(14 * var(--vw));
  line-height: 1.5714285714;
  text-align: center;
}

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

.brand-list-btn-link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  width: calc(160 * var(--vw));
  height: calc(55 * var(--vw));
  height: calc(30 * var(--vw));
  padding-right: calc(12 * var(--vw));
  padding-right: 0;
  gap: calc(7 * var(--vw));
  border-radius: calc(28 * var(--vw));
  background: white;
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: none;
  color: var(--key-color2);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  font-size: calc(14 * var(--vw));
  transition: background var(--duration), color var(--duration);
}
.brand-list-btn-link::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.brand-list-btn-link::after {
  top: calc(50% - 3.5 * var(--vw));
  right: calc(10.5 * var(--vw));
  width: calc(4 * var(--vw));
  height: calc(7 * var(--vw));
  background-image: url(../images/ico_arrow4.svg);
  transition: background-image var(--duration);
}
@media (any-hover: hover) {
  .brand-list-btn-link:hover {
    background: var(--blue-dark);
    color: white;
  }
  .brand-list-btn-link:hover::after {
    background-image: url(../images/ico_arrow2.svg);
  }
}

/**
 * brand-2nd
 */
.brand-2nd {
  padding: calc(45 * var(--vw)) calc(20 * var(--vw)) calc(47 * var(--vw));
  background: #fadce2 url(../images/bg_brand-2nd1.png) no-repeat center;
  background-size: auto 100%;
}

.brand-2nd-box {
  position: relative;
  padding: calc(49 * var(--vw)) calc(25 * var(--vw)) calc(49 * var(--vw)) calc(25 * var(--vw));
  border-radius: 10px;
  background: white;
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  color: var(--key-color2);
}

.brand-2nd-ttl {
  width: calc(285 * var(--vw));
  margin: 0 auto;
}

.brand-2nd-txt {
  margin: calc(24 * var(--vw)) 0 0;
  color: var(--key-color2);
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  line-height: 1.8125;
  text-align: center;
}

.brand-2nd-notes {
  margin: calc(12 * var(--vw)) calc(-12 * var(--vw)) 0;
  font-size: calc(11 * var(--vw));
  line-height: 1.6363636364;
  text-align: center;
}

.brand-2nd-btn {
  margin-top: calc(24 * var(--vw));
}

.brand-2nd-btn-link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(55 * var(--vw));
  padding-right: calc(12 * var(--vw));
  padding-right: 0;
  gap: calc(7 * var(--vw));
  border: calc(2 * var(--vw)) solid rgba(4, 34, 117, 0.15);
  border-radius: calc(28 * var(--vw));
  background: white;
  box-shadow: 0px calc(2 * var(--vw)) 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: none;
  font-weight: bold;
  font-size: calc(16 * var(--vw));
  transition: background var(--duration), color var(--duration);
}
.brand-2nd-btn-link::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(19 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow1.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.brand-2nd-btn-link::after {
  background-image: url(../images/ico_arrow4.svg);
}
@media (any-hover: hover) {
  .brand-2nd-btn-link:hover {
    background: var(--key-color2);
    color: white;
  }
  .brand-2nd-btn-link:hover::after {
    background-image: url(../images/ico_arrow2.svg);
  }
}

/**
 * column
 */
.column {
  padding: calc(60 * var(--vw)) calc(20 * var(--vw)) calc(70 * var(--vw));
  background: #fce9ef;
}

.column-head {
  margin: 0 0 calc(32 * var(--vw));
  color: #042275;
  font-weight: bold;
  font-size: calc(26 * var(--vw));
  line-height: 1.4615384615;
  text-align: center;
}

.column-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: calc(22 * var(--vw)) 0;
  list-style: none;
}

.column-list-item {
  width: 100%;
  font-weight: bold;
  font-size: calc(17 * var(--vw));
  line-height: 1.4117647059;
}
.column-list-item a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0 calc(40 * var(--vw)) 0 0;
  overflow: hidden;
  gap: 0 calc(17 * var(--vw));
  border: calc(1 * var(--vw)) solid #b3bcd5;
  border-radius: calc(10 * var(--vw));
  background: white;
  color: var(--key-color2);
  text-decoration: none;
  transition: opacity var(--duration);
}
.column-list-item a::after {
  position: absolute;
  top: calc(50% - 5 * var(--vw));
  right: calc(16 * var(--vw));
  width: calc(6 * var(--vw));
  height: calc(10 * var(--vw));
  background: url(../images/ico_arrow4.svg) no-repeat center;
  background-size: contain;
  content: "";
  transition: background var(--duration);
}
.column-list-item a img {
  flex: 0 0 auto;
  width: calc(100 * var(--vw));
}
.column-list-item a:hover {
  opacity: 0.5;
}

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

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

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

.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;
  align-items: center;
  gap: calc(5 * var(--vw));
  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: 1.4;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  font-size: calc(21 * var(--vw));
  line-height: 1.5;
  text-align: center;
}

.onlineshop-modal__img {
  width: calc(264 * var(--vw));
  margin-top: calc(32 * var(--vw));
  margin-inline: auto;
}

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

.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: 1.6153846154;
  }
  .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(264 * var(--vw));
    margin-top: calc(30 * var(--vw));
  }
  .onlineshop-modal__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: calc(32 * var(--vw));
    padding: calc(20 * var(--vw)) calc(40 * var(--vw)) 0;
    gap: calc(12 * var(--vw)) calc(16 * 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;
  }
}