@charset "UTF-8";
/* ============================================================
   リセットCSS
   https://github.com/mayank99/reset.css/blob/main/package/index.css
   （2024/12 ver 0.11.0） */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: light;
  tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  user-select: none !important;
}

/* ============================================================
   変数設定 */
/* ############################################################
   Mixin
   ############################################################ */
html {
  font-size: 14px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

a {
  text-decoration: none;
}

.link--underline {
  text-decoration: underline;
  color: #0599D9;
  transition: 0.3s;
}
.link--underline:hover, .link--underline:focus {
  transition: 0.3s;
  text-decoration: none;
  color: #035A80;
}
.link--block {
  transition: 0.3s;
  display: block;
}
.link--block:hover, .link--block:focus, .link--block:active {
  transition: 0.3s;
  transform: scale(97%);
}

h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span,
.break-word > span {
  display: inline-block;
}

em {
  font-style: normal;
}

/* ############################################################
   ページ ヘッダー
   ############################################################ */
.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  padding: 1.25em;
  background: #FFF;
}
.layout-header__logo {
  posistion: relative;
  z-index: 30;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  flex: 0 0 calc(122px + 7em);
  justify-content: space-between;
}
.layout-header__logo-text {
  flex: 0 0 6em;
  color: #888;
}
@media screen and (min-width: 769px) {
  .layout-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    height: 80px;
  }
  .layout-header__logo {
    flex: 0 0 calc(227px + 7em);
  }
  .layout-header__logo-figure {
    flex: 0 0 227px;
  }
  .layout-header__logo-image {
    width: 227px;
    height: 42.08px;
  }
}

/* ############################################################
   グローバルナビ
   ############################################################ */
.navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  display: block;
  width: 100%;
  height: 0;
  padding: 0 2.5em;
  background-color: #0599D9;
  color: #FFF;
  overflow: hidden;
  transition: 0.4s;
}
.navigation__icon {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 20;
  display: block;
  padding: 0.25em;
  width: calc(32px + 0.5em);
  height: calc(24px + 0.5em);
}
.navigation__icon__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
}
.navigation__icon-image, .navigation__icon-image_close {
  position: absolute;
  width: 32px;
  height: 24px;
  transition: 0.3s;
}
.navigation__icon:not(.is-open) .navigation__icon-image {
  display: block;
}
.navigation__icon:not(.is-open) .navigation__icon-image_close {
  width: 0;
  height: 0;
  transition: 0.3s;
}
.navigation__icon.is-open .navigation__icon-image {
  width: 0;
  height: 0;
  transition: 0.3s;
}
.navigation__icon.is-open .navigation__icon-image_close {
  display: block;
}
.navigation__menu {
  display: none;
}
.navigation.is-open {
  height: 100vh;
  padding-top: 4.5em;
  padding-bottom: 1.5em;
  transition: 0.4s;
}
.navigation.is-open__menu {
  display: block;
}
.navigation-menu__item {
  margin: 0.25em 0;
  font-size: 1.429em;
}
.navigation-menu__item:not(:last-child) {
  border-top: solid 1px #FFF;
}
.navigation-menu__item--download-link, .navigation-menu__item--contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 0.5em auto;
  padding: 0.2em 1em;
  width: 14em;
  height: 3.5em;
  background-color: #FF5F1F;
  border: 1px solid transparent;
  border-radius: 1.75em;
  font-weight: 500;
  font-size: 1.375em;
  color: #FFF;
}
.navigation-menu__item--download {
  padding-top: 1.5em;
  margin-bottom: 0.5em;
}
.navigation-menu__link {
  position: relative;
  display: block;
  padding: 1em 0 0.75em 0;
}

@media screen and (min-width: 769px) {
  .navigation {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 0 0 0 2em;
    height: auto;
    background: none;
    color: #000;
  }
  .navigation__icon {
    display: none;
  }
  .navigation-menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .navigation-menu__link {
    padding: 0.25em 0;
  }
  .navigation-menu__link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    display: block;
    width: 100%;
    height: 0;
    background-color: transparent;
  }
  .navigation-menu__link--active:after, .navigation-menu__link:hover:after, .navigation-menu__link:focus:after, .navigation-menu__link:active:after {
    bottom: 0.1em;
    height: 2px;
    transition: 0.3s;
    background-color: #0599D9;
  }
  .navigation-menu__item {
    margin: 0.1em 0 0.1em 1em;
    padding: 0;
    border: none;
    font-size: 1em;
  }
  .navigation-menu__item--download {
    margin-bottom: 0;
  }
  .navigation-menu__item--contact {
    margin-left: 0.5em;
  }
}
@media screen and (min-width: 1024px) {
  .layout-header .navigation-menu__item {
    margin-left: 1.75em;
  }
  .layout-header .navigation-menu__item--contact {
    margin-left: 0.75em;
  }
  .layout-header .navigation-menu__item .button--small {
    font-size: 0.857em;
  }
}
.layout-main {
  margin: 58px 0 1em 0;
}
@media screen and (min-width: 769px) {
  .layout-main {
    margin-top: 80px;
  }
}

.article {
  overflow: hidden;
  margin-bottom: 5em;
  /* ============================================================
  -- コンテンツ ヘッダ -- */
}
.article-header {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  padding: 3.5em 1em 5em 1em;
}
.article-header > * {
  z-index: 5;
}
.article-header .button--accent {
  border-color: #FFF;
  border-width: 2px;
}
.article-header .button--accent:hover, .article-header .button--accent:focus, .article-header .button--accent:active {
  border-color: #FF5F1F;
}
.article-header__shoulder {
  text-align: center;
  font-size: 5em;
  font-weight: 700;
  color: #FFF;
}
.article-header__title {
  margin: 0 0 1em 0;
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #FFF;
}
.article-header__figure {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-header__figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.article-header:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-image: url("/lp/subscription/assets/img/common/background_wave.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.article-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  clear: both;
  background-color: #0599D9;
  opacity: 0.55;
}
.article-header--column {
  min-height: 300px;
  margin-bottom: 3em;
}
.article-header__shoulder--column {
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: #FFF;
  border-radius: 1em;
  line-height: 1;
  font-size: 1em;
  font-weight: 500;
  color: #0599D9;
}

.list-breadcrumb {
  position: absolute;
  top: 0.75em;
  left: 1em;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.list-breadcrumb__item {
  display: flex;
  align-items: center;
  height: 1.3em;
  font-size: 0.857em;
  color: #FFF;
}
.list-breadcrumb__item:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  margin: 0.75rem;
  background-color: #FFF;
}
.list-breadcrumb__link {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .list-breadcrumb {
    right: 1.5em;
    justify-content: flex-end;
  }
}

/* ############################################################
   Parts
   ############################################################ */
.image-radius--all,
.image-radius--all img,
.image-radius--all source {
  border-radius: 1.5em;
}

.image-radius--top-left,
.image-radius--top-left img,
.image-radius--top-left source {
  border-top-left-radius: 1.5em;
}

.image-radius--top-right,
.image-radius--top-right img,
.image-radius--top-right source {
  border-top-right-radius: 1.5em;
}

.image-radius--bottom-left,
.image-radius--bottom-left img,
.image-radius--bottom-left source {
  border-bottom-left-radius: 1.5em;
}

.image-radius--bottom-right,
.image-radius--bottom-right img,
.image-radius--bottom-right source {
  border-bottom-right-radius: 1.5em;
}

/* ============================================================
-- ボタン -- */
.button--small {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0.2em 1em;
  width: 12em;
  height: 2.5em;
  background-color: #FF5F1F;
  border: 1px solid #FF5F1F;
  border-radius: 1.5em;
  font-weight: 500;
  font-size: 0.938em;
  color: #FFF;
}
.button--small span {
  z-index: 3;
}
.button--small:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.button--small:hover, .button--small:focus, .button--small:active {
  color: #FF5F1F;
}
.button--small:hover:before, .button--small:focus:before, .button--small:active:before {
  transition: 0.3s;
  background-color: #FFF;
}
.button--small:hover:after, .button--small:focus:after, .button--small:active:after {
  background-color: #FF5F1F;
}
.button--large {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
  padding: 0.2em 1.75em 0.2em 1.25em;
  width: 14em;
  height: 3em;
  background-color: #FF5F1F;
  border: 1px solid #FF5F1F;
  border-radius: 1.75em;
  font-weight: 500;
  font-size: 1.375em;
  color: #FFF;
}
.button--large span {
  z-index: 3;
}
.button--large:after {
  position: absolute;
  top: 50%;
  right: 1em;
  z-index: 3;
  transition: 0.3s;
  display: block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  translate: 0 -50%;
  background-color: #FFF;
  mask: url("/lp/subscription/assets/img/common/icon_button_arrow.svg") no-repeat center/contain;
}
.button--large:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.button--large:hover, .button--large:focus, .button--large:active {
  color: #FF5F1F;
}
.button--large:hover:before, .button--large:focus:before, .button--large:active:before {
  transition: 0.3s;
  background-color: #FFF;
}
.button--large:hover:after, .button--large:focus:after, .button--large:active:after {
  background-color: #FF5F1F;
}
.button--larger {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
  padding: 0 2.75em 0 1.5em;
  width: 100%;
  height: auto;
  background-color: #FF5F1F;
  border: 1px solid #FF5F1F;
  border-radius: 3em;
  font-weight: 500;
  font-size: 1.375em;
  color: #FFF;
  min-height: 3em;
  text-align: center;
  border-width: 2px;
}
.button--larger span {
  z-index: 3;
}
.button--larger:after {
  position: absolute;
  top: 50%;
  right: 1.5em;
  z-index: 3;
  transition: 0.3s;
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  translate: 0 -50%;
  background-color: #FFF;
  mask: url("/lp/subscription/assets/img/common/icon_button_arrow.svg") no-repeat center/contain;
}
.button--larger:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.button--larger:hover, .button--larger:focus, .button--larger:active {
  color: #FF5F1F;
}
.button--larger:hover:before, .button--larger:focus:before, .button--larger:active:before {
  transition: 0.3s;
  background-color: #FFF;
}
.button--larger:hover:after, .button--larger:focus:after, .button--larger:active:after {
  background-color: #FF5F1F;
}
@media screen and (min-width: 769px) {
  .button--larger {
    width: 50%;
  }
}
.button--accent {
  background-color: #FF5F1F;
}
.button--inversion {
  background-color: #FFF;
  border-color: #FFF;
  color: #0599D9;
}
.button--inversion:after {
  position: absolute;
  top: 50%;
  right: 1em;
  z-index: 3;
  transition: 0.3s;
  display: block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  translate: 0 -50%;
  background-color: #0599D9;
  mask: url("/lp/subscription/assets/img/common/icon_button_arrow.svg") no-repeat center/contain;
}
.button--inversion:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.button--inversion:hover, .button--inversion:focus, .button--inversion:active {
  color: #FFF;
}
.button--inversion:hover:before, .button--inversion:focus:before, .button--inversion:active:before {
  transition: 0.3s;
  background-color: #FF5F1F;
}
.button--inversion:hover:after, .button--inversion:focus:after, .button--inversion:active:after {
  background-color: #FFF;
}
.button--blue {
  background: #0599D9;
  color: #fff;
  border-color: #0599D9;
}
.button--blue::before {
  content: none;
}
@media (hover: hover) {
  .button--blue:hover {
    color: #0599D9;
    background: #fff;
  }
  .button--blue:hover::after {
    background-color: #0599D9;
  }
}

/* ############################################################
   List Styles
   ############################################################ */
.list {
  /* ============================================================
   問い合わせ */
  /* ============================================================
  「●」リスト */
  /* ============================================================
  コンテンツリスト（ページ内メニュー等） */
  /* ============================================================
  -- CTA -- */
  /* ============================================================
  -- チェック -- */
  /* ============================================================
  グリッドリスト（画像に使用） */
  /* ============================================================
   コラム記事リスト */
  /* ============================================================
   取り扱いブランドリスト */
  /* ============================================================
  -- 取り扱いブランド内の商品リスト -- */
  /* ============================================================
  -- 選ばれる理由 -- */
  /* ============================================================
   -- お客さまの声 -- */
  /* ============================================================
  -- フッター CTA フリーダイヤル -- */
}
.list-contacts {
  display: flex;
  flex-flow: column nowrap;
}
.list-contacts__item {
  margin: 0.25em 0;
  padding: 0 0.5em;
  text-align: center;
}
.list-contacts .button--large {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .list-contacts {
    flex-direction: row;
    margin: 0 auto;
    max-width: 650px;
  }
  .list-contacts li {
    flex-basis: 50%;
  }
}
.list-circle__item {
  position: relative;
  padding-left: 1.5em;
}
.list-circle__item:not(:last-child) {
  margin-bottom: 0.5em;
}
.list-circle__item::before {
  content: "●";
  position: absolute;
  top: calc(50% - 0.75em);
  left: 0;
  color: #0599D9;
}
.list-content {
  display: flex;
  gap: 1em;
  flex-flow: row wrap;
  justify-content: space-between;
}
.list-content__item {
  flex: 0 0 calc(50% - 0.5em);
  width: calc(50% - 0.5em);
}
.list-content__link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 1.5em 2.5em 1.5em 1.5em;
  background-color: #0599D9;
  border: solid 1px #0599D9;
  border-radius: 1em;
  color: #FFF;
}
.list-content__link:after {
  position: absolute;
  top: 50%;
  right: 1em;
  z-index: 3;
  transition: 0.3s;
  display: block;
  content: "";
  width: 1.2em;
  height: 1.2em;
  translate: 0 -50%;
  background-color: #FFF;
  mask: url("/lp/subscription/assets/img/common/icon_button_arrow.svg") no-repeat center/contain;
}
.list-content__link:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.list-content__link:hover, .list-content__link:focus, .list-content__link:active {
  color: #0599D9;
}
.list-content__link:hover:before, .list-content__link:focus:before, .list-content__link:active:before {
  transition: 0.3s;
  background-color: #FFF;
  color: #0599D9;
}
.list-content__link:hover:after, .list-content__link:focus:after, .list-content__link:active:after {
  background-color: #0599D9;
}
.list-content__title {
  position: relative;
  z-index: 3;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
}
.list-content__title span {
  display: inline-block;
}
.list-content__content {
  position: relative;
  z-index: 3;
  margin-top: 0.5em;
  text-align: center;
}
.list-content__content .list-circle {
  text-align: left;
}
.list-content .list-circle__item::before {
  color: #FFF;
}
.list-content-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.list-content-main__content {
  flex: 0 0 calc(50% - 1em);
}
.list-content-main__content a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0599D9;
}
.list-cta {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.list-cta__item {
  flex: 0 0 100%;
}
.list-cta__item .button--large {
  margin: 0.25em auto;
}
@media screen and (min-width: 768px) {
  .list-cta__item {
    flex-basis: auto;
  }
  .list-cta__item .button--large {
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
}
.list-check {
  margin-bottom: 1em;
}
.list-check__item {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0.5em 0;
  padding-left: 45px;
  min-height: 40px;
  font-size: 1.125em;
  font-weight: 700;
  /*color:variable.$colorBrand;*/
}
.list-check__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  width: 36px;
  height: 30px;
  background-image: url("/lp/subscription/assets/img/common/icon_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.list-check__item--after:before {
  background-image: url("/lp/subscription/assets/img/common/icon_check_after.svg");
}
.list-check__item--accent {
  color: #FF5F1F;
}
.list-check__item--accent:before {
  background-image: url("/lp/subscription/assets/img/common/icon_check_accent.svg");
}
.list-check__item--inversion {
  color: #FFF;
}
.list-check__item--inversion:before {
  background-image: url("/lp/subscription/assets/img/common/icon_check_inversion.svg");
}
.list-grid-2, .list-grid-3, .list-grid-4, .list-grid-3 {
  margin: 1.5em 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  place-items: center;
}
.list-grid-2__figure, .list-grid-3__figure, .list-grid-4__figure, .list-grid-3__figure {
  width: 100%;
}
.list-grid-2__image, .list-grid-3__image, .list-grid-4__image, .list-grid-3__image {
  width: 100%;
}
.list-grid-3__title {
  margin-bottom: 0.5em;
  color: #0599D9;
}
@media screen and (min-width: 641px) {
  .list-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-grid-5 {
  margin: 1.5em 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  place-items: center;
}
.list-grid-5__figure {
  width: 100%;
}
.list-grid-5__image {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .list-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.list-column {
  display: flex;
  gap: 2em 1.5em;
  flex-flow: row wrap;
  justify-content: center;
}
.list-column__item {
  flex-basis: calc(50% - 0.75em);
}
.list-column__title {
  margin: 0.5em 0 0 0;
  font-size: 1.214em;
  font-weight: 700;
  color: #0599D9;
}
.list-column__figure img {
  border-radius: 0.5em;
}
.list-column__content {
  margin-top: 0.25em;
}
@media screen and (min-width: 641px) {
  .list-column {
    gap: 2em 1.5em;
  }
  .list-column__item {
    flex-basis: calc(33.3333% - 1em);
  }
}
@media screen and (min-width: 1241px) {
  .list-column {
    gap: 3em 2em;
  }
  .list-column__item {
    flex-basis: calc(25% - 1.5em);
  }
}
.list-brand {
  display: flex;
  gap: 1em;
  flex-flow: row wrap;
  justify-content: center;
}
.list-brand__item {
  border: 1px solid #E1E1E1;
  flex: 0 0 calc(33% - 0.6em);
}
@media screen and (min-width: 600px) {
  .list-brand__item {
    flex-basis: auto;
  }
}
.list-brand-items {
  display: flex;
  gap: 0 1em;
  flex-flow: row wrap;
  justify-content: center;
  margin: 2em auto 0 auto;
  max-width: 70%;
}
.list-brand-items__item01 {
  order: 1;
  flex-basis: calc(50% - 0.5em);
}
.list-brand-items__item02 {
  order: 3;
  flex-basis: 100%;
}
.list-brand-items__item03 {
  order: 2;
  flex-basis: calc(50% - 0.5em);
}
.list-brand-items__item img {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1150px) {
  .list-brand-items__item {
    flex-basis: auto;
  }
  .list-brand-items__item02 {
    order: 2;
  }
  .list-brand-items__item03 {
    order: 3;
  }
}
.list-reason {
  display: flex;
  gap: 1em;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
}
.list-reason__item {
  position: relative;
  display: flex;
  flex: 0 0 calc(50% - 0.5em);
  justify-content: center;
  align-items: center;
  padding: 4em 1.5em 1.5em 1.5em;
  background-color: #eefaff;
}
@media screen and (min-width: 601px) {
  .list-reason__item {
    flex-basis: calc(33.3333% - 0.6666em);
  }
}
@media screen and (min-width: 1280px) {
  .list-reason__item {
    flex-basis: calc(20% - 0.8em);
  }
}
.list-reason__title {
  position: absolute;
  top: 0;
  left: calc(50% - 0.75em);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  background-color: #0599D9;
  line-height: 1;
  font-size: 2em;
  color: #FFF;
}
.list-reason__image {
  margin: 0 auto;
}
.list-case {
  display: flex;
  gap: 1.5em;
  flex-flow: row wrap;
  justify-content: center;
  margin: 1em auto;
}
.list-case__item {
  flex: 0 0 100%;
  display: flex;
  flex-flow: column nowrap;
  align-content: stretch;
  padding: 1.5em;
  background-color: #FFF;
}
.list-case__item img {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 601px) {
  .list-case__item {
    flex-basis: calc(50% - 0.75em);
  }
}
@media screen and (min-width: 1001px) {
  .list-case__item {
    flex-basis: calc(33.333% - 1em);
  }
}
.list-case__title {
  flex: 0 0 auto;
  margin-bottom: 0.5em;
  font-size: 1.143em;
  font-weight: 500;
  color: #0599D9;
}
.list-case__content {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column nowrap;
}
.list-case__figure {
  margin-top: auto;
}
.list-footer-cta-tel {
  margin: 0.5em;
}
@media screen and (min-width: 641px) {
  .list-footer-cta-tel {
    margin-top: 1.5em;
  }
}
.list-footer-cta-tel__item {
  display: flex;
  gap: 1em;
  flex-flow: row nowrap;
  align-items: center;
}
.list-footer-cta-tel__text {
  position: relative;
  margin: 0 auto;
  padding-left: calc(40px + 0.5em);
}
.list-footer-cta-tel__title {
  flex-basis: 3em;
}
.list-footer-cta-tel__logo {
  position: absolute;
  display: block;
  top: calc(50% - 11px);
  left: 0;
}
.list-footer-cta-tel__number {
  font-size: 2.5em;
  font-weight: 700;
}

/* ############################################################
   ▲▲▲ List Styles ここまで ▲▲▲
   ############################################################ */
.section {
  margin: 0 0 0 0;
  padding: 1em 0;
  /*

  h3 { margin:2em 0 1em 0; font-size:1.5em; color:variable.$colorBrand; }

  p { margin:.5em 0 1em 0; }

   */
}
.section__inner {
  margin: 0;
  padding: 0 1.5em;
  /*
  @media screen and (min-width:459px) {
    margin-right:auto; margin-left:auto;
    max-width:1280px;
    }
  */
}
.section__inner > figure {
  margin-bottom: 2em;
}
.section__inner > figure img {
  margin: 0 auto;
}
@media screen and (min-width: 459px) {
  .section__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
  }
}
.section__inner--column, .section__inner--narrow {
  padding-right: 2em;
  padding-left: 2em;
}
@media screen and (min-width: 641px) {
  .section__inner--column, .section__inner--narrow {
    max-width: 900px;
  }
}
.section__text {
  margin: 0.5em 0 1.5em 0;
  line-height: 1.8;
}
.section__text--center {
  margin: 0.5em 0 1.5em 0;
  line-height: 1.8;
  text-align: center;
}
.section__narrow {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.block--center {
  margin-bottom: 1em;
}
@media screen and (min-width: 641px) {
  .block--center {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
}

.block-2_1 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.block-2_1__figure {
  marign: 0 auto;
}
@media screen and (min-width: 641px) {
  .block-2_1__first {
    flex: 0 0 calc(66.666% - 0.5em);
  }
  .block-2_1__second {
    flex: 0 0 calc(33.333% - 0.5em);
  }
}

.block-before-after__inner {
  padding: 1.5em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(51, 51, 51, 0.05) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(51, 51, 51, 0.05) calc(100% - 1px));
  background-size: 1.2rem 1.2rem;
  background-repeat: repeat;
  background-position: center center;
  background-color: #eefaff;
  border-top-left-radius: 1.5em;
  border-top-right-radius: 1.5em;
  border-bottom-right-radius: 1.5em;
}
.block-before-after__inner p {
  line-height: 1.6;
  font-weight: 500;
}
.block-before-after--inversion {
  background-color: #FFF;
}
@media screen and (min-width: 769px) {
  .block-before-after {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .block-before-after:after {
    position: absolute;
    top: calc(50% - 52.5px);
    left: calc(50% - 17.5px);
    content: "";
    width: 35px;
    height: 105px;
    background-image: url("/lp/subscription/assets/img/common/icon_arrow_pc.svg");
  }
  .block-before-after__inner {
    flex: 0 0 calc(50% - 2.25em);
  }
  .block-before-after .separator-arrow {
    display: none;
  }
}

.span--accent {
  font-size: 1.333em;
  color: #FF5F1F;
}

.separator-arrow {
  position: relative;
  width: 100%;
  height: 35px;
  margin: 0.5em 0;
}
.separator-arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 17.5px);
  left: calc(50% - 52.5px);
  display: block;
  width: 105px;
  height: 35px;
  background: no-repeat center/contain;
  background-image: url("/lp/subscription/assets/img/common/icon_arrow.svg");
}

.box-note__text {
  font-size: 1.375em;
  font-weight: 500;
}

/* ============================================================
 見出し・小見出し */
.section__heading--0 {
  margin: 1.5em 0 1.5em 0;
  font-size: 2.5em;
  text-align: center;
  font-weight: 700;
  color: #0599D9;
}
.section__heading--0 span {
  display: inline-block;
}
.section__heading--1 {
  margin: 1em 0 1em 0;
  font-size: 2em;
  text-align: center;
  font-weight: 700;
  color: #0599D9;
}
.section__heading--1 span {
  display: inline-block;
}
.section__heading--2 {
  margin: 1em 0 1em 0;
  font-size: 1.75em;
  text-align: center;
  font-weight: 700;
  color: #0599D9;
}
.section__heading--2:not(.heading-numeric) span {
  display: inline-block;
}
.section__heading--3 {
  margin: 1em 0 1em 0;
  font-size: 1.5em;
  text-align: left;
  font-weight: 700;
  color: #0599D9;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #0599D9;
}
.section__heading--3 span {
  display: inline-block;
}
.section__heading--4 {
  margin: 1.5em 0 1.5em 0;
  font-size: 1.1em;
  text-align: left;
  font-weight: 700;
  color: #0599D9;
}

.column-heading--1 {
  margin: 3em 0 1.5em 0;
  font-size: 2.5em;
  text-align: center;
  font-weight: 700;
  color: #0599D9;
}
.column-heading--2 {
  margin: 2em 0 1.5em 0;
  font-size: 2em;
  text-align: center;
  font-weight: 700;
  color: #0599D9;
}
.column-heading--3 {
  margin: 1em 0 0.5em 0;
  font-size: 1.375em;
  text-align: left;
  font-weight: 700;
  color: #0599D9;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #0599D9;
}

.heading-numeric__small {
  font-size: 0.625em;
}
.heading-numeric__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2em;
  height: 1.2em;
  margin: 0 auto;
  background: #0599D9;
  border-radius: 50%;
  font-size: 3em;
  font-weight: 700;
  color: #FFF;
}
.heading-numeric__text {
  display: block;
  margin-top: 0.5em;
}

.column-heading--2:first-child {
  margin-top: 0;
}

.background-blue {
  background: #eefaff;
}
.background-gray {
  background: #f4f4f4;
}

.table {
  margin: 1.5em auto;
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.5em 0.25em;
  border-bottom: 2px solid #0599D9;
}
@media screen and (min-width: 769px) {
  .table--width800 {
    width: 800px;
    max-width: 100%;
  }
}
.table--font-large tbody td {
  text-align: center;
  font-size: 1.5em;
}

.explanation {
  position: relative;
  margin: 3em 0 1em 0;
  padding: 1em;
  background: #eefaff;
  border: 2px solid #0599D9;
  border-radius: 12px;
}
.explanation__title {
  position: absolute;
  top: -1.5em;
  left: 0;
  display: block;
  width: 4.5em;
  height: 2.5em;
  transform: rotate(-18deg);
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #0599D9;
}
.explanation__title:before {
  content: "";
  position: absolute;
  border-top: 2.5em solid #FF5F1F;
  border-right: 2em solid transparent;
  border-bottom: none;
  border-left: 2.5em solid transparent;
}
.explanation__span {
  position: relative;
  z-index: 10;
  display: block;
  padding-left: 0.2em;
  width: 4.5em;
  text-align: center;
  font-weight: 700;
  color: #FFF;
}

.background-blue .explanation {
  background: #FFF;
}

/* ############################################################
   CTA
   ############################################################ */
.section-cta {
  margin: 0;
  padding: 1em;
  background-color: #0599D9;
}
@media screen and (min-width: 768px) {
  .section-cta {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }
}

.margin-top--0 {
  margin-top: 0;
}
.margin-top--0-5 {
  margin-top: 0.5em;
}
.margin-top--1 {
  margin-top: 1em;
}
.margin-top--1-5 {
  margin-top: 1.5em;
}
.margin-top--2 {
  margin-top: 2em;
}
.margin-top--3 {
  margin-top: 3em;
}
.margin-top--4 {
  margin-top: 4em;
}
.margin-top--5 {
  margin-top: 5em;
}
.margin-top--6 {
  margin-top: 6em;
}
.margin-bottom--0 {
  margin-bottom: 0;
}
.margin-bottom--0-5 {
  margin-bottom: 0.5em;
}
.margin-bottom--1 {
  margin-bottom: 1em;
}
.margin-bottom--1-5 {
  margin-bottom: 1.5em;
}
.margin-bottom--2 {
  margin-bottom: 2em;
}
.margin-bottom--3 {
  margin-bottom: 3em;
}
.margin-bottom--4 {
  margin-bottom: 4em;
}
.margin-bottom--5 {
  margin-bottom: 5em;
}
.margin-bottom--6 {
  margin-bottom: 6em;
}

/* ############################################################
   資料ダウンロード
   ############################################################ */
.block-download {
  margin-bottom: 3em;
}
.block-download__figure {
  margin-bottom: 0.5em;
}
.block-download__image {
  margin: 0 auto;
  border: 1px solid #CCC;
}
.block-download__title {
  margin-bottom: 0.5em;
  color: #0599D9;
}
@media screen and (min-width: 769px) {
  .block-download {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .block-download__figure {
    flex: 0 0 400px;
  }
  .block-download__content {
    flex: 0 0 calc(100% - (2em + 400px));
  }
}

/* ############################################################
   ページ フッター
   ############################################################ */
.layout-footer-header {
  padding: 3em 1em;
  background-color: #0599D9;
  color: #FFF;
}
@media screen and (min-width: 459px) {
  .layout-footer-header__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
  }
}
.layout-footer-header__title {
  margin-bottom: 2em;
  text-align: center;
  font-size: 2em;
  color: #FFF;
}
.layout-footer__logo {
  margin-top: 2em;
}
.layout-footer__logo img {
  margin: 0.5em auto 1em auto;
  width: 180px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .layout-footer__logo img {
    width: 248px;
    height: 60.5px;
  }
}
.layout-footer__copyright {
  padding: 0.5em 1em 2em 1em;
  text-align: center;
  font-size: 0.857em;
  color: #888;
}

/* ============================================================
   フッター CTA */
.footer-cta {
  display: flex;
  flex-flow: row wrap;
  gap: 3em;
  justify-content: center;
}
.footer-cta-content, .footer-cta-tel {
  flex-basis: 100%;
}
@media screen and (min-width: 641px) {
  .footer-cta-content {
    flex-basis: calc(50% - 2em);
  }
}
@media screen and (min-width: 1281px) {
  .footer-cta {
    flex-wrap: nowrap;
  }
  .footer-cta-content, .footer-cta-tel {
    flex-basis: calc(33.33% - 2em);
  }
}
@media screen and (min-width: 1281px) {
  .footer-cta-content__title, .footer-cta-tel__title {
    min-height: 4rem;
  }
}
.footer-cta-content__title {
  position: relative;
  margin-bottom: 0.75em;
}
.footer-cta-content__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: no-repeat center/contain;
  background-image: url("/lp/subscription/assets/img/common/logo_white.svg");
}
.footer-cta-content__title em {
  display: block;
  margin-bottom: 0.25em;
  padding-left: 0.9em;
  font-size: 2.5em;
}
.footer-cta-content__title span {
  display: block;
  padding-left: 2.2em;
}
.footer-cta-content__figure img {
  margin: 0 auto;
  border-radius: 12px;
  max-width: 250px;
}
@media screen and (min-width: 641px) {
  .footer-cta-content__figure img {
    max-width: 100%;
  }
}
.footer-cta-tel__title {
  margin-bottom: 0.75em;
  text-align: center;
  font-size: 1.375em;
  font-weight: 700;
}

.layout-footer-content {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  justify-content: space-between;
  padding: 1em 0;
  line-height: 1.8;
  font-size: 0.875em;
}

.conpany-info__title {
  margin-bottom: 0.5em;
  color: #0599D9;
}
.conpany-info__heading--1 {
  font-size: 1.071em;
}
.conpany-info__heading--2 {
  font-size: 1.071em;
}
.conpany-info__text span {
  display: inline-block;
  margin-right: 1em;
}
.conpany-info__tel--title {
  display: inline-block;
}
.conpany-info__tel--text {
  display: inline-block;
  margin-right: 1em;
}

.freedial__title {
  margin: 2em 0 0.5em 0;
  color: #0599D9;
}
.freedial__content {
  display: flex;
  align-items: center;
}
.freedial__figure {
  flex: 0 0 32px;
}
.freedial__number {
  flex: 1 1 auto;
  padding-left: 0.25em;
  font-size: 2em;
  font-weight: 700;
}

.footer-menu {
  display: flex;
  flex-flow: row wrap;
  gap: 3em;
  flex-basis: 100%;
  width: 100%;
}
.footer-menu__inner {
  flex: 1 1 auto;
}

@media screen and (min-width: 769px) {
  .layout-footer-content {
    flex-wrap: nowrap;
  }
  .conpany-info {
    flex: 0 0 50%;
  }
  .footer-menu {
    padding-top: 1em;
  }
}
.footer-totop {
  position: fixed;
  bottom: 0;
  right: 0.2em;
  z-index: 9;
  rotate: 90deg;
  transform-origin: top right;
}
@media screen and (min-width: 769px) {
  .footer-totop {
    bottom: 1em;
    right: 4em;
  }
}
.footer-totop a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #0599D9;
  font-size: 0.75em;
  font-weight: 700;
  font-family: "Figtree", Yakuhanjp, sans-serif;
  letter-spacing: 0.1em;
}
.footer-totop a:before {
  display: block;
  width: 6em;
  height: 1px;
  content: "";
  background-color: #0599D9;
}

.component-image-link__item {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .component-image-link__item {
    width: 285px;
  }
}

.component-image-link__image {
  height: 20rem;
}
@media screen and (min-width: 769px) {
  .component-image-link__image {
    height: 10rem;
  }
}

.dl-thanks__btn-txt {
  font-size: 1rem;
  height: 5rem;
}
@media screen and (min-width: 769px) {
  .dl-thanks__btn-txt {
    height: auto;
    font-size: 0.75rem;
  }
}
.dl-thanks__btn-txt::before {
  width: 13px;
  height: 11px;
}