@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

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

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #645d5b;
  display: flex;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  flex-direction: column;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  min-height: 100vh;
  position: relative;
}
@media screen and (min-width:1301px) {
  body {
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width:1000px) {
  body {
    font-size: 1.4rem;
  }
}
body::after {
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  inset: 0;
  position: fixed;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width:1000px) {
  body::after {
    background-image: url("../images/bg_sp.jpg");
  }
}

.main__wrapper {
  width: min(1000px, 100% - 20px);
  margin: 120px auto 100px;
  background-color: #fffdf2;
  border-radius: 100px;
  position: relative;
}
@media screen and (max-width:1000px) {
  .main__wrapper {
    border-radius: 64px;
    margin: 120px auto 80px;
  }
}

.main__inner {
  width: min(800px, 100% - 48px);
  margin: 0 auto;
  padding: 164px 0 64px;
}
@media screen and (max-width:1000px) {
  .main__inner {
    padding: 100px 0 48px;
  }
}

footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a,
button {
  display: inline-block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

button {
  background-color: transparent;
}

img {
  display: inline-block;
  height: auto;
}

span {
  margin: 0;
  padding: 0;
}

ol,
ul,
li {
  list-style: none;
}

.pc {
  display: block !important;
}

.pc-flex {
  display: flex !important;
}

.md {
  display: none !important;
}

.sp {
  display: none !important;
}

.sp-flex {
  display: none !important;
}

@media screen and (min-width:1001px) and (max-width:1300px) {
  .md {
    display: block !important;
  }
}
@media screen and (max-width:1000px) {
  .pc {
    display: none !important;
  }
  .pc-flex {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-flex {
    display: flex !important;
  }
}
.font-bold {
  font-weight: bold !important;
}

.font-medium {
  font-weight: 400 !important;
}

.text-center {
  text-align: center !important;
}

.page_heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  color: #43b746;
  margin: 0 0 56px;
  text-align: center;
}
@media screen and (max-width:1000px) {
  .page_heading {
    font-size: 2.4rem;
    margin: 0 0 40px;
  }
}

.block_heading {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 24px;
}
@media screen and (max-width:1000px) {
  .block_heading {
    font-size: 1.6rem;
    margin: 0 0 20px;
  }
}

.mainButton__wrapper .mainButton + p {
  margin: 8px 0 0;
  font-size: 1.4rem;
}

.mainButton {
  border-radius: 48px;
  background: #43b746;
  box-shadow: 0 3px 6px rgba(163, 221, 146, 0.7019607843);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding: 12px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  line-height: 1.4;
  width: min(314px, 100%);
}
.mainButton span {
  display: block;
  font-size: 1.6rem;
}
@media (hover: hover) {
  .mainButton:hover {
    box-shadow: 0px 6px 14px rgba(163, 221, 146, 0.7019607843);
  }
}
@media screen and (max-width:1000px) {
  .mainButton {
    font-size: 2rem;
  }
  .mainButton span {
    font-size: 1.4rem;
  }
}
.mainButton-orange {
  background: linear-gradient(97deg, #ffc65c 0, #f86c6c 100%);
  box-shadow: 0 3px 6px rgba(255, 198, 92, 0.7019607843);
}
@media (hover: hover) {
  .mainButton-orange:hover {
    box-shadow: 0px 6px 14px rgba(255, 198, 92, 0.7019607843);
  }
}
.mainButton-blank {
  padding-right: 44px;
}
.mainButton-blank::after {
  content: "";
  background-image: url("../images/icon/icon_blank.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

.caution {
  font-size: 1.2rem;
}
.caution li {
  margin: 0 0 4px;
  text-align: center;
}
@media screen and (max-width:1000px) {
  .caution li {
    display: flex;
    text-align: left;
  }
}
.caution li::before {
  content: "※";
}

.logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(184px, 33vw);
}

.footer {
  width: 100%;
  background-color: #fffdf2;
}
.footer__inner {
  margin: 0 auto;
  padding: 24px 0 32px;
  max-width: min(1000px, 100% - 20px);
  text-align: center;
  font-size: 1.4rem;
}
.footer__inner a:hover {
  color: #43b746;
}
.footer__logo {
  font-size: 2.4rem;
  margin: 0 auto;
}
.footer__logo img {
  width: 80px;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__nav {
  margin: 24px 0 14px;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width:1000px) {
  .footer__nav ul {
    gap: 16px;
  }
}
.footer__contact {
  margin: 0 0 32px;
}
@media screen and (max-width:1000px) {
  .footer__contact {
    margin: 0 0 48px;
  }
}
.footer small {
  font-size: 1.2rem;
}

.top__inner {
  padding: 125px 0 64px;
  text-align: center;
}
@media screen and (max-width:1000px) {
  .top__inner {
    padding: 80px 0 48px;
  }
}

.top__title {
  display: flex;
  flex-direction: column;
  margin: 0 auto 56px;
}
@media screen and (max-width:1000px) {
  .top__title {
    margin: 0 auto 40px;
  }
}
.top__title-en {
  display: flex;
  font-size: 2rem;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 auto 12px;
  padding: 0 0 10px;
  position: relative;
}
@media screen and (max-width:1000px) {
  .top__title-en {
    font-size: 1.6rem;
  }
}
.top__title-en p::first-letter {
  color: #f86c6c;
}
.top__title-en::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  background: #DFEADB;
  bottom: 0;
  width: 100%;
}
.top__title-sub {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width:1000px) {
  .top__title-sub {
    font-size: 1.2rem;
  }
}

.top__heading {
  font-size: 4rem;
  line-height: 1.5;
  color: #43b746;
  font-weight: 900;
}
@media screen and (max-width:1000px) {
  .top__heading {
    font-size: 3.2rem;
  }
}

.massageWrapper__block {
  background-image: url("../images/bg_text.jpg");
  background-size: 100% 46.7px;
  background-repeat: repeat-y;
  background-position: center top;
  text-align: center;
  margin: 0 0 40px;
  font-size: 1.8rem;
  line-height: 2.6 !important;
  padding-bottom: 0.5em;
}
@media screen and (max-width:1000px) {
  .massageWrapper__block {
    background-size: 100% 46px;
  }
}
.massageWrapper span {
  display: block;
  line-height: inherit;
}
.massageWrapper .ruby-parent {
  display: inline-block;
  position: relative;
}
.massageWrapper .ruby-child {
  display: inline-block;
  font-size: 0.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  top: 0;
}

.top__section-first {
  margin: 56px auto 80px;
}
@media screen and (max-width:1000px) {
  .top__section-first {
    margin: 48px auto 64px;
  }
}
.top__section-first .massageWrapper {
  margin: 0 0 40px;
}
.top__section-first .caution {
  margin: 16px 0 0;
}

.top__section-second .caution {
  margin: 14px 0 0;
}

.introBlock {
  margin: 0 0 48px;
}
@media screen and (max-width:1000px) {
  .introBlock {
    margin: 0 0 24px;
  }
}

.policyBlock {
  margin: 0 0 32px;
}
@media screen and (max-width:1000px) {
  .policyBlock {
    margin: 0 0 24px;
  }
}
.policyBlock a:not([class]) {
  display: inline;
  text-decoration: underline;
}
.policyBlock a:not([class]):hover {
  text-decoration: none;
}
.policyBlock > ol {
  list-style: none;
  counter-reset: custom-counter;
}
.policyBlock > ol > li {
  counter-increment: custom-counter;
  display: flex;
  gap: 6px;
  margin: 0 0 14px;
}
.policyBlock > ol > li::before {
  content: counter(custom-counter) ".";
}
.policyBlock ol > ol {
  list-style: none;
  counter-reset: custom-counter;
  margin: 0 0 24px 2rem;
}
.policyBlock ol > ol > li {
  counter-increment: custom-counter;
}
.policyBlock ol > ol > li::before {
  content: "(" counter(custom-counter) ")";
}
.policyBlock ol > ul {
  margin: 0 0 0 2rem;
  list-style: none;
}
.policyBlock ol > ul > li::before {
  content: "・";
  display: inline-block;
  margin: 0 1.5rem 0 1rem;
}
.policyBlock .policyBlock__List-caution {
  font-size: 1.2rem;
}
.policyBlock .policyBlock__List-caution > li::before {
  content: "注：";
  display: inline-block;
  margin: 0 1.5rem 0 1rem;
}