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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "M PLUS 1p", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #3a3a3a !important;
}

:root {
  --app-font-family: "M PLUS 1p", sans-serif;
  --app-line-height: 2;
}

html,
body {
  font-family: var(--app-font-family) !important;
  overflow-x: hidden;
}

html body *,
html body *::before,
html body *::after {
  font-family: var(--app-font-family) !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4 {
  text-wrap: wrap;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

img,
iframe {
  vertical-align: bottom;
}

b,
strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

.l-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  line-height: var(--app-line-height) !important;
  letter-spacing: 0.03em !important;
}

.l-content *,
.l-content *::before,
.l-content *::after {
  line-height: var(--app-line-height) !important;
  letter-spacing: 0.03em !important;
}

.l-inner {
  padding: 0 20px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

.p-about {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

.p-questions {
  padding: 30px 0;
}
.p-questions__list {
  display: flex;
  flex-direction: column;
  gap: 76px;
}
.p-questions__item {
  position: relative;
  display: none;
}
.p-questions__item.is-active {
  display: block;
}
.p-questions__item + .p-questions__item::after {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 87px;
  height: 12px;
  background-image: url(../img/question-arrow.svg);
  background-size: cover;
}
.p-questions__question {
  margin-bottom: 20px;
  padding: 10px 7px;
  background: #0b1e76;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-questions__question span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.p-questions__answerList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-questions__answer {
  width: 100%;
  padding: 5px 38px;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em !important;
}
.p-questions__answer:hover {
  background: #6b7eb8;
  color: #fff;
  border-color: #6b7eb8;
}
.p-questions__answer.is-selected {
  background: #6b7eb8;
  color: #fff;
  border-color: #6b7eb8;
}

.p-sectionTitle {
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 0 20px;
}
.p-sectionTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  aspect-ratio: 11/91;
  background-image: url(../img/sec-title-left.svg);
}
.p-sectionTitle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  aspect-ratio: 11/91;
  background-image: url(../img/sec-title-right.svg);
}

.p-img__radius {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
.p-img__wide {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}
.p-img__wide--noshadow {
  box-shadow: none;
  margin: -10px 0 -40px 0;
}
.p-img__rotate {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(-4deg);
}

.p-note {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
}
.p-note__item {
  text-indent: -1em;
  padding-left: 1em;
}

.p-bg__ellipse {
  position: relative;
  background: #f6f9ef;
  padding: 20px 0;
}
.p-bg__ellipse + * {
  margin-top: 60px;
}
.p-bg__ellipse::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 375/60;
  background-image: url(../img/bg-ellipse-top.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.p-bg__ellipse::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 375/60;
  background-image: url(../img/bg-ellipse-bottom.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.p-bg__gradient {
  position: relative;
}
.p-bg__gradient::after {
  content: "";
  position: absolute;
  z-index: 0 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(337.54deg, #d9e9f2 20.75%, #ffffff 50%, #edf4f8 79.25%);
}
.p-bg__pattern {
  position: relative;
  padding: 30px 0;
}
.p-bg__pattern::after {
  content: "";
  position: absolute;
  z-index: 1 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/pattern.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.p-bg__pattern-blue {
  position: relative;
  padding: 30px 0 85px;
}
.p-bg__pattern-blue::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/pattern-blue.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.p-bg__yakult {
  width: 100%;
  aspect-ratio: 375/310;
  background-image: url(../img/bg-yakult.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin: 0 0 -10px 0;
}
.p-bg__cross {
  position: relative;
  padding: 30px 0;
  z-index: 1;
}
.p-bg__cross::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/pattern-cross.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.p-bg__blue {
  padding: 30px 0;
  background: linear-gradient(178.45deg, #227ddc 8.45%, #0b1e76 91.55%);
  color: #fff;
}

.lp-footer {
  background-color: #E8E8E8;
  padding: 30px 0;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 60px;
}
.lp-footer ul {
  list-style: none;
}
.lp-footer ul li {
  text-align: center;
}
.lp-footer ul li a {
  color: #000;
  text-decoration: underline;
  font-weight: 400 !important;
  line-height: inherit !important;
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .l-content {
    letter-spacing: 0.03em !important;
  }

  .l-content *,
  .l-content *::before,
  .l-content *::after {
    letter-spacing: 0.03em !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-light {
  font-weight: 400;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-text-sm {
  font-size: 12px !important;
}

.u-text-lg {
  font-size: 24px !important;
  line-height: 1.6;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.u-color-primary {
  color: #063687 !important;
  letter-spacing: 0.02em !important;
}

.u-color-secondary {
  color: #f01b77 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}