@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@layer components, variations;
@layer components {
  a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
  }
  p {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  button {
    border: none;
    font: inherit;
    color: currentColor;
  }
  ol,
ul {
    list-style: none;
  }
}
html {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

html {
  font-size: 100%;
  line-height: 1.5em;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  font-size: 100%;
  width: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: 2.5641vw;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 62.5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a3163;
  font-size: 1.6rem;
  scroll-behavior: smooth;
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}

div[id],
section[id] {
  scroll-margin-top: 6rem;
}
@media screen and (min-width: 1024px) {
  div[id],
section[id] {
    scroll-margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .u-sp {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-pc {
    display: block;
  }
}

.u-robot {
  font-family: "Roboto Condensed", sans-serif;
}

.l-wrap {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-wrap {
    width: 100%;
    background: url(../img/bg_pc.svg) no-repeat center center/cover;
    background-attachment: fixed;
  }
}

.l-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 49, 139, 0.4);
  visibility: hidden;
}
.l-menu-content.is-open {
  visibility: visible;
}
.l-menu-content.is-open .l-menu__inner {
  transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .l-menu-content {
    visibility: visible;
    display: grid;
    align-items: center;
    height: 100vh;
    padding-top: 0;
    background-color: transparent;
    padding: 0 0 0 min(8vw, 14.4rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-menu-content,
.l-aside {
    width: calc((100% - 390px) / 2);
    transform: translateX(0);
    visibility: visible;
  }
}

.l-menu__inner {
  width: 20.3rem;
  background-color: #fff;
  display: block;
  padding: 8rem 2rem 4rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s transform, 0.3s visibility;
}
@media screen and (min-width: 1024px) {
  .l-menu__inner {
    width: 158px;
    transform: translateX(0);
    position: static;
    padding: 0;
    background-color: transparent;
  }
}

.l-aside {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-aside {
    display: grid;
    place-content: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow: auto;
    padding: 4rem 2rem;
  }
}

#l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5.2rem;
  background-color: #fff;
  margin: 0 auto;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  #l-header {
    max-width: 390px;
    position: static;
  }
}

.l-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 1.9rem;
}

.l-header__logo {
  width: 8.2rem;
}
.l-header__logo img {
  width: 100%;
}

.l-hamburger__wrapper {
  width: 5.2rem;
  height: 100%;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .l-hamburger__wrapper {
    display: none;
  }
}
.l-hamburger__wrapper.-nav {
  height: 5.2rem;
  position: absolute;
  top: 0;
  right: 0;
}
.l-hamburger__wrapper.-nav .l-hamburger {
  background-color: #02074d;
}
.l-hamburger__wrapper.-nav .l-hamburger .l-line {
  background-color: #fff;
}
.l-hamburger__wrapper.-nav .l-hamburger .l-line:first-of-type {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.l-hamburger__wrapper.-nav .l-hamburger .l-line:nth-of-type(2) {
  display: none;
}
.l-hamburger__wrapper.-nav .l-hamburger .l-line:last-of-type {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.l-hamburger {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
}
.l-hamburger .l-line {
  position: absolute;
  width: 3.1rem;
  height: 2px;
  background-color: #292a2c;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.l-hamburger .l-line:first-of-type {
  top: calc(50% - 0.8rem - 2px);
}
.l-hamburger .l-line:nth-of-type(2) {
  top: calc(50% - 1px);
}
.l-hamburger .l-line:last-of-type {
  top: calc(50% + 0.8rem);
}

#l-main {
  padding-top: 5.2rem;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  #l-main {
    padding-top: 0;
  }
}

.l-main-content {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-main-content {
    max-width: 390px;
    margin-inline: auto;
  }
}

.p-kv img {
  width: 100%;
}

.l-menu {
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-menu {
    margin-bottom: 3.5rem;
  }
}

.l-menu__item {
  border-bottom: 1px solid #000;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .l-menu__item {
    border-color: #fff;
  }
}
.l-menu__item a {
  display: block;
  padding: 1.5rem 0.5rem;
  text-decoration: none;
  color: currentColor;
  position: relative;
}
@media (any-hover) {
  .l-menu__item a {
    transition: 0.3s;
  }
  .l-menu__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .l-menu__item a {
    color: #fff;
  }
}
.l-menu__item a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.6rem);
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .l-menu__item a::after {
    border-color: #fff;
  }
}

#l-footer {
  background: url(../img/bg_footer.svg) no-repeat top center/cover;
  padding-block: 3.5rem 3.8rem;
}

.l-footer__inner {
  text-align: center;
  color: #fff;
}

.l-footer__logo {
  width: 14.5rem;
  margin-inline: auto;
}
.l-footer__logo img {
  width: 100%;
}

.p-footer__nav {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 1.1rem;
}
.p-footer__nav a {
  color: currentColor;
  text-decoration: none;
  display: block;
  padding: 0 1.5em;
}
@media (any-hover) {
  .p-footer__nav a {
    transition: 0.3s;
  }
  .p-footer__nav a:hover {
    opacity: 0.7;
  }
}

.p-footer__nav-item {
  border-left: 1px solid #fff;
}
.p-footer__nav-item:last-of-type {
  border-right: 1px solid #fff;
}

.p-txt-conpamy {
  font-size: 1rem;
  margin-top: 1.7rem;
}

.p-txt-detail {
  font-size: 0.8rem;
  margin-top: 1.1rem;
}

.p-anchor {
  background-color: #fff;
}

.p-anchor__list {
  display: flex;
}

.p-anchor__item {
  flex-grow: 1;
}
.p-anchor__item + .p-anchor__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 63%;
  width: 1px;
  background-color: #010d5d;
  transform: translateY(-50%);
}
.p-anchor__item a {
  color: #010d5d;
  font-weight: 700;
  text-align: center;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 1.8rem 2rem 4.8rem;
  width: 100%;
}
@media (any-hover: hover) {
  .p-anchor__item a:hover::after {
    bottom: 1rem;
  }
}
.p-anchor__item a::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-bottom: 2px solid #010d5d;
  border-right: 2px solid #010d5d;
  transform: rotate(45deg) translateX(-50%);
  left: 50%;
  bottom: 1.4rem;
  transition: 0.3s bottom;
}

.l-content__inner {
  padding-inline: 1.5rem;
}

.p-problem {
  position: relative;
}
.p-problem .c-ill {
  position: absolute;
  display: block;
  width: 10.2rem;
  right: 0.4rem;
  bottom: -8rem;
}
.p-problem .c-ill img {
  width: 100%;
}
.p-problem .c-section__ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a3163;
}

.p-problem__content {
  background-color: #dff6ff;
  padding-top: 4.4rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.p-problem__content::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  height: 5.8rem;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #dff6ff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.p-bgcolor {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(223, 246, 255) 100%);
  padding-bottom: 2.1rem;
}

.p-problem__list {
  margin-top: 2.4rem;
  margin-left: 3.9rem;
}

.p-problem__item {
  position: relative;
  padding-left: 3rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  color: #000;
  font-weight: 500;
}
.p-problem__item + .p-problem__item {
  margin-top: 2rem;
}
.p-problem__item .u-wave {
  position: relative;
}
.p-problem__item .u-wave::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  right: 0;
  width: 100%;
  background: url(../img/line_wave.svg) no-repeat left center/auto 100%;
  height: 0.5rem;
}
.p-problem__item::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icn_check.svg) no-repeat center center/100% 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-solution {
  position: relative;
  z-index: 10;
  padding-top: 6.9rem;
}
.p-solution .p-fukidash {
  display: block;
  width: 34rem;
  margin-left: 3.2rem;
}
.p-solution .p-fukidash img {
  width: 100%;
}

.p-logo-wrapper {
  text-align: center;
  margin-top: 1.2rem;
}
.p-logo-wrapper span {
  font-size: 2rem;
  font-weight: 700;
  color: #02074d;
  line-height: 1.2;
  display: block;
}
.p-logo-wrapper .c-logo {
  display: block;
  width: 18.2rem;
  margin: 1rem auto 0;
}
.p-logo-wrapper .c-logo img {
  width: 100%;
}

.c-catch {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  margin-top: 1rem;
}

.p-content-block {
  margin-top: 6.2rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-inline: 1.8rem;
  background-color: #fff;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
}
.p-content-block .c-section__ttl {
  background-color: #006ebd;
  padding: 1.3rem 0 1.4rem;
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  box-shadow: 0px 0px 9px -5px rgba(0, 0, 0, 0.8);
}
.p-content-block .c-section__ttl .c-txtsize--small {
  font-size: 1.8rem;
}
.p-content-block .p-btn-wrapper {
  margin-top: 2rem;
}
.p-content-block + .p-content-block {
  margin-top: 3.9rem;
}
.p-content-block .c-bnr {
  margin: 1.1rem auto 1rem;
  max-width: 20rem;
}
.p-content-block .c-bnr img {
  width: 100%;
}
.p-content-block .c-line {
  background-color: #d9d9d9;
  height: 1px;
  width: calc(100% + 2rem);
  display: block;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 2.2rem;
  margin-bottom: 2rem;
}

.c-ttl,
.c-link {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  font-weight: 700;
}
.c-ttl.c-store,
.c-link.c-store {
  background-color: #eb745d;
}
.c-ttl.c-store i,
.c-link.c-store i {
  width: 3.3rem;
}
.c-ttl.c-home,
.c-link.c-home {
  background-color: #55aee3;
}
.c-ttl.c-home i,
.c-link.c-home i {
  width: 2.3rem;
}
.c-ttl i,
.c-link i {
  width: 3.3rem;
  display: block;
  margin-right: 1rem;
}
.c-ttl i img,
.c-link i img {
  width: 100%;
}

.c-link {
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  width: 100%;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
  min-height: 4.5rem;
}
@media (any-hover) {
  .c-link {
    transition: 0.3s;
  }
  .c-link:hover {
    opacity: 0.7;
  }
}

.p-howtobuy {
  margin-top: 2rem;
  border-style: solid;
  border-width: 1px;
}
.p-howtobuy.-home {
  border-color: #55aee3;
}
.p-howtobuy.-store {
  border-color: #eb745d;
}

.p-howtobuy-body {
  padding: 1rem 1rem 1.5rem;
}
.p-howtobuy-body .c-bnr {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.p-content-body {
  padding: 0.5rem 2.4rem 3.2rem;
}
.p-content-body .c-catch {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #006ebd;
  font-weight: 500;
  white-space: nowrap;
}
.p-content-body .c-catch.u-mt {
  margin-top: 3rem;
}
.p-content-body .c-catch .c-txtsize--large {
  font-size: 2.6rem;
}
.p-content-body .c-txt {
  font-size: 1.4rem;
  line-height: 2;
  color: #000;
  text-align: justify;
}
.p-content-body .p-img-products {
  max-width: 23.4rem;
  margin: 1.6rem auto 1.8rem;
}
.p-content-body .p-img-products img {
  width: 100%;
}
.p-content-body .c-step {
  max-width: 25.9rem;
  margin: 1.4rem auto 0;
}
.p-content-body .c-step img {
  width: 100%;
}

.p-flow {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.p-flow__item {
  display: flex;
}
.p-flow__item figure {
  width: 9.2rem;
  flex-shrink: 0;
}
.p-flow__item .c-txt {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  color: #000;
  margin-top: 1rem;
}
.p-flow__item.num1 figure {
  margin-top: 2rem;
}
.p-flow__item.num1 .c-num {
  width: 1.1rem;
}
.p-flow__item.num2 .c-num, .p-flow__item.num3 .c-num {
  width: 1.8rem;
}
.p-flow__item .u-line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 90%, rgb(235, 116, 93) 90%);
}

.p-flow__ttl {
  display: flex;
  align-items: flex-end;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-flow__ttl .c-num {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.p-products {
  padding-top: 5rem;
  padding-bottom: 5.2rem;
}
.p-products .c-section__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #010d5d;
}
.p-products .c-section__ttl::after {
  content: "";
  position: absolute;
  background-color: #006ebd;
  height: 2px;
  width: 5.6rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 0;
}

.p-product {
  padding: 2.5rem 2.8rem 3.1rem;
}

.p-product-block {
  margin-top: 2.9rem;
}
.p-product-block.-tweek .p-product-block__ttl-wrapper::before, .p-product-block.-tweek .p-product-block__ttl-wrapper::after {
  border-color: #8fcacc;
}
.p-product-block.-tweek .p-product {
  border-color: #8fcacc;
}
.p-product-block.-tweek .p-product__ttl-wrapper {
  margin-bottom: 1.6rem;
}
.p-product-block + .p-product-block {
  margin-top: 3.4rem;
}

.c-grad-btn {
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.6rem;
  min-height: 7.3rem;
  text-decoration: none;
  display: grid;
  place-content: center;
  border-style: solid;
  border-width: 2px;
  margin-top: 2.1rem;
  font-weight: 700;
  width: 100%;
  line-height: 1.3125;
}
@media (any-hover) {
  .c-grad-btn {
    transition: 0.3s;
  }
  .c-grad-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .c-grad-btn {
    padding-bottom: 1rem;
  }
}
.c-grad-btn .txtsize--small {
  font-size: 1rem;
  border: 1px solid #fff;
  display: block;
  padding: 0.3rem;
  margin-top: 0.7rem;
}
@media screen and (min-width: 1024px) {
  .c-grad-btn .txtsize--small {
    margin-top: 0.2rem;
  }
}
.c-grad-btn.-navy {
  border-color: #1a3163;
  background: linear-gradient(167deg, rgb(72, 90, 130) 0%, rgb(72, 90, 130) 55%, rgb(26, 49, 99) 55%);
}
.c-grad-btn.-aqua {
  border-color: #8fcacc;
  background: linear-gradient(167deg, rgb(165, 213, 214) 0%, rgb(165, 213, 214) 55%, rgb(143, 202, 204) 55%);
}
.c-grad-btn.-enge {
  border-color: #eb745d;
  background: linear-gradient(167deg, rgb(239, 144, 125) 0%, rgb(239, 144, 125) 55%, rgb(235, 116, 93) 55%);
}
.c-grad-btn.-blue {
  border-color: #55c3f1;
  background: linear-gradient(167deg, rgb(119, 207, 244) 0%, rgb(119, 207, 244) 55%, rgb(85, 195, 241) 55%);
}
.c-grad-btn + .c-grad-btn {
  margin-top: 0.9rem;
}

.c-btn {
  background: linear-gradient(270deg, rgb(75, 223, 223) 0%, rgb(14, 49, 139) 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
  display: block;
  border-radius: 0.5rem;
  padding: 1.4rem 1rem 1.4rem 2rem;
  position: relative;
  min-height: 4.5rem;
  text-align: center;
  will-change: transform, filter;
  transition: 0.3s transform, 0.3s filter;
  width: 100%;
}
.c-btn.u-txt-left {
  text-align: left;
}
@media (any-hover: hover) {
  .c-btn:hover {
    transform: translate(2px, 2px);
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.25));
  }
}
.c-btn::after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 2rem;
  top: 45%;
  transform: rotate(45deg);
}

.p-product-block__ttl-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.p-product-block__ttl-wrapper::before, .p-product-block__ttl-wrapper::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #1a3163;
  margin-top: 1rem;
}
.p-product-block__ttl-wrapper::before {
  margin-right: 2rem;
}
.p-product-block__ttl-wrapper::after {
  margin-left: 2rem;
}

.p-product-block__ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #1a3163;
}
.p-product-block__ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.p-product__ttl-wrapper {
  display: grid;
  grid-template-columns: 6.3rem auto 6.3rem;
  align-items: center;
}
.p-product__ttl-wrapper .c-icn {
  grid-row: 1/1;
  grid-column: 1/1;
  width: 5.6rem;
  display: block;
}
.p-product__ttl-wrapper .c-icn img {
  width: 100%;
}
.p-product__ttl-wrapper .c-icn.u-wide {
  width: 6.3rem;
}

.p-product {
  border: 1px solid #1a3163;
}
.p-product.-bgColor {
  background-color: #1a3163;
}
.p-product.-bgColor * {
  color: #fff !important;
}
.p-product.-bgAqua {
  background-color: #dff6ff;
}
.p-product .c-txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  text-align: center;
  color: #010d5d;
}
.p-product .p-list {
  display: flex;
  margin-top: 2.4rem;
  justify-content: space-between;
}
.p-product .p-list li {
  text-align: center;
  min-width: 6.5rem;
}
.p-product .p-list li .c-icn {
  display: block;
  width: 4rem;
  height: 4rem;
  margin-inline: auto;
}
.p-product .p-list li .c-icn img {
  width: 100%;
}
.p-product .p-list li p {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.4;
  white-space: nowrap;
  color: #010d5d;
}
.p-product .p-btn-wrapper {
  margin-top: 2rem;
}

.p-product__ttl {
  text-align: center;
  grid-row: 1/1;
  grid-column: 2/3;
  font-weight: 500;
  font-size: 2rem;
  color: #1a3163;
}

.p-product__img {
  margin-top: 1.8rem;
  text-align: center;
}
.p-product__img figcaption {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: #323131;
}
.p-product__img img.pkg {
  display: block;
  margin-inline: auto;
  max-width: 20.3rem;
  width: 100%;
}
.p-product__img img.t-week {
  display: block;
  margin-inline: auto;
  max-width: 16rem;
  width: 100%;
}

.p-caution {
  padding-top: 3.4rem;
  padding-bottom: 3.8rem;
  color: #000;
}
.p-caution .c-section__ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background-color: #02074d;
  text-align: center;
  padding: 0.5rem 0;
}
.p-caution .p-list {
  font-size: 1rem;
  margin-top: 1.2rem;
}
.p-caution .p-list li {
  padding-left: 1em;
  position: relative;
  line-height: 2;
}
.p-caution .p-list li::before {
  top: 0.1em;
  content: "・";
  position: absolute;
  left: 0;
  color: #02074d;
}
.p-caution .p-note {
  font-size: 0.8rem;
  margin-top: 0.2em;
}
.p-caution .p-note li {
  line-height: 2;
  text-align: justify;
}

.p-present {
  position: relative;
  color: #eb745d;
  margin-top: 1.8rem;
}
.p-present img {
  width: 100%;
}
.p-present .p-img {
  position: absolute;
  z-index: 1;
  width: 6rem;
  left: 0;
}
.p-present .u-has-line {
  font-size: 1.2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 8rem;
}
.p-present .u-has-line::before, .p-present .u-has-line::after {
  content: "";
  width: 1px;
  background-color: #eb745d;
  position: absolute;
  height: 1em;
}
.p-present .u-has-line::before {
  left: -1em;
  transform: rotate(-30deg);
}
.p-present .u-has-line::after {
  right: -1em;
  transform: rotate(30deg);
}

.p-present__inner {
  border-radius: 100px;
  border: 3px solid #eb745d;
  margin-left: 2rem;
  min-height: 8rem;
  font-size: 1.7rem;
  font-weight: 700;
  padding-top: 0.1rem;
  padding-left: 6rem;
}
.p-present__inner p {
  line-height: 1.2941176471;
}
.p-present__inner .u-txt {
  position: relative;
  top: -2em;
  width: 6.1rem;
  display: inline-block;
}
.p-present__inner .u-roboto {
  font-size: 4.4rem;
  line-height: 1;
  transform: scale(0.8, 1);
  display: inline-block;
}

.p-pay {
  margin-top: 1.5rem;
}
.p-pay img {
  width: 100%;
}
.p-pay .c-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #655d5b;
}

.l-modal {
  position: fixed;
  width: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10002;
  margin-inline: auto;
  display: none;
}
.l-modal.is-show {
  display: block;
}

.l-modal__bg {
  background-color: rgba(14, 49, 106, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.l-modal__inner {
  background-color: #fff;
  padding-bottom: 6rem;
  max-width: 37rem;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  overflow: auto;
  height: 100dvh;
  -webkit-overflow-scrolling: touch;
}

.l-modal__ttl {
  background-color: #55c3f1;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 1rem 0 1.5rem;
  position: relative;
}
.l-modal__ttl .u-txt-line {
  background: url(../img/line.svg) no-repeat bottom 0.2rem center/16.5rem auto;
  display: block;
  font-size: 1.8rem;
  padding-bottom: 2.4rem;
}
.l-modal__ttl .u-txtsize--small {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.l-modal__body {
  padding: 2rem 2.1rem;
  color: #000;
}
.l-modal__body .c-txt {
  font-size: 1rem;
  line-height: 2.5;
  color: #000;
  text-align: justify;
}

.u-txtcolor--red {
  color: red;
}

.l-modal-caution-block {
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 2.5;
}
.l-modal-caution-block ol {
  margin-top: 0.8rem;
}
.l-modal-caution-block li {
  padding-left: 1em;
  text-indent: -1em;
}

.l-modal-caution-block__ttl {
  text-align: center;
  background-color: #55c3f1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.3rem 0 0.4rem;
  line-height: 1;
}

.p-btn-unit {
  display: flex;
  margin-top: 2.9rem;
  gap: 0 1.2rem;
  justify-content: center;
}
.p-btn-unit .c-grad-btn {
  max-width: 50%;
  margin-top: 0 !important;
}

.c-btn-vertical {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.c-btn-vertical span {
  margin-top: auto;
}
.c-btn-vertical.-store {
  padding-top: 1.3rem;
}
.c-btn-vertical.-store i {
  margin-bottom: 1rem;
}
.c-btn-vertical.-home {
  padding-top: 0.9rem;
}
.c-btn-vertical.-home i {
  margin-bottom: 0.5rem;
}

.l-modal-close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 100px;
  border: 1px solid #fff;
  font-size: 2rem;
  display: grid;
  place-content: center;
  top: 0.7rem;
  right: 0.7rem;
  background-color: transparent;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.2rem;
  cursor: pointer;
}

.l-aside__inner {
  max-width: 322px;
}
.l-aside__inner .p-bnr {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 6.6rem;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
}
@media (any-hover) {
  .l-aside__inner .p-bnr a {
    transition: 0.3s;
  }
  .l-aside__inner .p-bnr a:hover {
    opacity: 0.7;
  }
}

.p-drugstore {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.2rem;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.25));
}
.p-drugstore .p-btn-wrapper {
  margin-top: 1rem;
}

.p-drugstore__ttl {
  text-align: center;
  font-weight: 700;
  color: #006ebd;
  font-size: 2rem;
  line-height: 1.5;
}
.p-drugstore__ttl span {
  font-size: 2.6rem;
}

.p-voice {
  background-color: #02074d;
  padding: 3rem 1.5rem;
}

.p-voice__inner {
  padding: 3rem 1.5rem 0;
  background-color: #fff;
}

.p-voice__ttl {
  text-align: center;
  color: #646464;
  font-size: 2rem;
  margin-bottom: 2rem;
}

#api-voice-rating .product-rating__label {
  color: #646464;
}

#api-voice-rating .product-rating__desc {
  border-left: 2px solid #646464;
}

.product-rating__inner {
  flex-direction: column;
}

#api-voice-rating .product-rating-box {
  display: block;
}

#api-voice-rating.l-section__body {
  padding: 0;
}

#api-customer-voice.l-section-wide__body {
  padding: 0;
}

#api-customer-voice .voices__list {
  display: block;
  background-color: #fff;
  margin: 0;
  padding: 2rem 1.5rem 0;
}

#api-customer-voice .voices__item {
  width: 100%;
  margin-inline: 0;
}
#api-customer-voice .voices__item:first-of-type {
  margin-top: 0;
}

#api-customer-voice .voices__more {
  margin-top: 2rem;
}
#api-customer-voice .voices__more .c-btn {
  padding: 0;
  background-image: none !important;
}
#api-customer-voice .voices__more .c-btn::after {
  display: none;
}
#api-customer-voice .voices__more .c-btn a {
  text-decoration: none;
  background-color: #fff;
  color: #02074d;
  display: block;
  width: 100%;
  max-width: inherit;
}
#api-customer-voice .voices__more .c-btn a::after {
  border-color: #02074d;
}

.product-rating__btn {
  text-decoration: none;
}

/* 追従CTAボタンのスタイル */
.fixed-cta-banner {
  /* 画面下部に固定 */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素より手前に表示 */

  /* デザイン */
  background: linear-gradient(270deg, #4bdfdf 0%, #0e318b 100%);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  box-sizing: border-box;
  text-decoration: none; /* リンクの下線を消す */
  cursor: pointer;
  transition: opacity 0.3s; /* ホバー時のアニメーション */
}

.fixed-cta-banner:hover {
  opacity: 0.8; /* マウスを乗せたときに少し透明にする */
}

/* 上部の小さいテキスト（マイクロコピー） */
.cta-sub-text {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-bottom: 2px;
  opacity: 0.9;
}

/* メインのテキスト */
.cta-main-text {
  display: block;
  font-size: 16px; /* 文字サイズを少し大きくして目立たせる */
  font-weight: bold;
}
/* C案：バナー風デザインのスタイル */
.proposal-banner-c {
  background: linear-gradient(135deg, #fff8e1, #ffeec1); /* 背景グラデーション */
  border-radius: 8px; /* 角を丸くする */
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden; /* はみ出した要素を隠す */
  margin-top: 15px; /* 上のボタンとの間隔 */
  font-family: sans-serif; /* フォントを指定 */
}

/* アイコンのスタイル */
.proposal-banner-c__icon {
  font-size: 24px;
  background-color: #ffc107; /* アイコンの背景色 */
  color: #fff;
  border-radius: 50%; /* 円形にする */
  width: 40px;
  height: 40px;
  line-height: 40px; /* アイコンを上下中央に配置 */
  margin: 0 auto 10px auto; /* 中央寄せ */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 影をつける */
}

/* テキストのスタイル */
.proposal-banner-c__text {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}

/* 強調したいテキストのスタイル */
.proposal-banner-c__highlight {
  color: #e65100; /* 強調色 */
}

/* 詳細リンクのスタイル */
.proposal-banner-c__link {
  color: #0e318b; /* リンクの色 */
  font-size: 13px;
  text-decoration: underline;
  margin-top: 5px;
  display: inline-block;
}

#wireframe-e-6g5f7e {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    padding: 20px;
    background-color: #f0f8ff;
    border: 1px solid #bde0ff;
    border-radius: 8px;
    overflow: hidden;
}
#wireframe-e-6g5f7e h2 {
    text-align: center;
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}
#wireframe-e-6g5f7e p.description {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
#wireframe-e-6g5f7e .swipe-wrapper {
    position: relative;
}
#wireframe-e-6g5f7e .swipe-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 5px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* スクロールスナップを有効化 */
}
#wireframe-e-6g5f7e .swipe-container::-webkit-scrollbar {
    display: none;
}
#wireframe-e-6g5f7e .plan-card {
    position: relative;
    display: inline-block;
    width: 85%;
    max-width: 300px;
    margin-right: 15px;
    vertical-align: top;
    white-space: normal;
    background-color: #fff;
    border: 2px solid #EB745D;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    scroll-snap-align: start; /* スクロール停止位置をカードの先頭に */
}
#wireframe-e-6g5f7e .plan-card.home {
    border-color: #55AEE3;
}
#wireframe-e-6g5f7e .plan-badge {
    position: absolute;
    top: 15px;
    left: -25px;
    background-color: #dc3545;
    color: white;
    padding: 3px 25px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(-45deg);
    z-index: 2;
}
#wireframe-e-6g5f7e .image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#wireframe-e-6g5f7e .plan-image {
    width: 75%;
    height: 75%;
    object-fit: contain;
    border-radius: 4px;
}
#wireframe-e-6g5f7e .plan-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding: 0 10px;
}
#wireframe-e-6g5f7e .plan-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    min-height: 40px;
    padding: 0 15px;
}
#wireframe-e-6g5f7e .cta-button {
    display: inline-block;
    width: 85%;
    padding: 12px;
    background-color: #EB745D;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
    margin-bottom: 20px;
}
#wireframe-e-6g5f7e .plan-card.home .cta-button {
    background-color: #55AEE3;
}
#wireframe-e-6g5f7e .swipe-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
    user-select: none;
    cursor: pointer;
    text-decoration: none; /* aタグの下線を消す */
}
#wireframe-e-6g5f7e .swipe-arrow.prev {
    left: -10px;
}
#wireframe-e-6g5f7e .swipe-arrow.next {
    right: -10px;
}

@media (min-width: 768px) {
    #wireframe-e-6g5f7e .swipe-wrapper {
        position: static;
    }
    #wireframe-e-6g5f7e .swipe-container {
        display: flex;
        justify-content: space-around;
        overflow-x: visible;
        margin: 0;
        padding: 0;
        scroll-snap-type: none; /* PCではスナップを無効化 */
    }
    #wireframe-e-6g5f7e .plan-card {
        width: 48%;
        margin-right: 0;
    }
    #wireframe-e-6g5f7e .swipe-arrow {
        display: none;
    }
}
/*# sourceMappingURL=style.css.map */