/* 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;
  padding: 0 !important;
}

/* 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: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #524D4D;
  letter-spacing: 0.05em;
  paddingtop
}

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;
}

.l-inner {
  padding: 0 15px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

p {
  text-align: left;
}

.p-bg {
  background-color: #fdf6f0;
}

.img-shadow {
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(208, 129, 120, 0.2);
  overflow: clip;
}

.p-text-wave {
  display: inline;
  padding-bottom: 4px;
  background-image: url("../img/wave.svg");
  background-repeat: repeat-x;
  background-size: auto 6px;
  background-position: -4px calc(100% - 1px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-text-wave::after {
  content: none;
}

.img-inner {
  width: calc(100% + 14px);
  margin: 0 -7px;
}

.p-note {
  font-size: 10px;
  text-align: right;
}

.p-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 180px;
  height: 60px;
  border-radius: 30px;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  color: #b95246;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.p-text::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(85% 115% at 50% 50%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.2) 86%, rgba(255, 255, 255, 0) 100%);
  filter: blur(6px);
  z-index: -1;
}

.p-copy {
  color: #b95246;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.p-copy__line {
  display: inline-block;
  white-space: nowrap;
  background-color: #ffffff;
}

.p-mark {
  font-size: 12.9px;
  vertical-align: top;
  line-height: 1.8;
}

.p-history {
  background-image: url("../img/history.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.p-history .p-note {
  margin-top: 7px;
}
.p-history__text {
  max-width: 400px;
  margin: 0 auto;
}
.p-history .u-text-right {
  display: block;
}

.p-cta {
  margin-bottom: 13px;
}

.p-questions {
  padding-bottom: 30px;
}
.p-questions__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-questions__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-questions__question {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}
.p-questions__number {
  color: rgba(47, 44, 44, 0.3);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-questions__title {
  color: #b95246;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 6px;
}
.p-questions__answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-questions__answer {
  background: #fff;
  border: 1px solid #f8c2bc;
  border-radius: 8px;
  color: #b95246;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding: 5px 38px;
  text-align: left;
  transition: all 0.3s ease;
  width: 100%;
}
.p-questions__answer:hover {
  background: #b95246;
  border-color: #b95246;
  color: #fff;
}
.p-questions__answer.is-selected, .p-questions__answer[aria-pressed=true] {
  background: #b95246;
  border-color: #b95246;
  color: #fff;
}
.p-questions__arrow {
  text-align: center;
}

.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;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: 700;
  font-size: 24px;
}

.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: #B95246 !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;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb-30 {
  margin-bottom: -30px !important;
}

#service-guide {
  display: none;
}

header {
  display: none;
}

footer {
  display: none;
}

.lp-footer {
  font-family: Hiragino Sans, Arial, sans-serif !important;
}

.lp-footer a {
  text-decoration: underline;
  color: #4682b4;
}

#fixchatbox {
  display: none;
}