@charset "UTF-8";
/*
* Start Common CSS
*/
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root {
  --base-color: #231815;
  --primary-color: #FC5885;
  --primary-dark-color: #e83b6a;
  --secondary-color: #FCDC0D;
  --bs-white: #fff;
  --pink01-color: #FC88A3;
  --error-color: #b7180c;
}

html, body {
  height: 100%
}

body {
  position: relative;
  color: var(--base-color);
  font-family: 'Hind', 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: .07em;
  line-height: 1.8;
  word-break: break-all;
}

body::after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgb(252, 88, 133, .7) 20%, rgb(255, 237, 187, .7) 80%);
  background-size: 200% 200%;/*サイズを大きくひきのばす*/
  animation: bggradient 10s ease infinite;
  z-index: -1;
}

@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: 'Hind', 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.4;
  font-weight: 500;
}

a {
  color: var(--base-color);
  transition: all 0.3s ease 0s !important;
}

a:hover {
  color: var(--primary-color);
}

/* Nav ----*/
#mainNav .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

#mainNav .navbar-brand img {
  width: 120px;
}

@media (min-width: 992px) {
  #mainNav .navbar-brand img {
    width: 180px;
  }
}

/* Header -----*/
.masthead {
  position: relative;
  padding: 0;
}

.masthead .container {
  position: absolute;
  top: auto;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
}

.masthead picture {
  display: block;
}

.masthead .masthead-heading {
  line-height: 1.2;
  text-shadow: 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white), 0 0 3px var(--bs-white);
}

.masthead .masthead-heading span.pink {
  display: block;
  color: var(--primary-color);
  font-size: 2.5rem;
}

.masthead .masthead-heading span.pink.pl {
  padding-left: 10vw;
}

.masthead .masthead-heading span.black {
  display: block;
  font-size: 2rem;
}

.masthead .masthead-subheading {
  font-size: 1rem;
  font-weight: 500;
}

.masthead .btn-link-form a {
  background: var(--primary-color);
  border-radius: .25rem;
  color: var(--bs-white);
  text-decoration: none;
  height: 56px;
  width: 300px;
}

.masthead .btn-link-form a:hover {
  background: var(--primary-dark-color);
}

@media (min-width: 576px) {
  .masthead .masthead-heading span.pink {
    font-size: 3.5rem;
  }

  .masthead .masthead-heading span.black {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .masthead .container {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .masthead .masthead-heading span.pink {
    font-size: 3rem;
  }

  .masthead .masthead-heading span.pink.pl {
    padding-left: 6vw;
  }

  .masthead .masthead-heading span.black {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .masthead .masthead-heading span.pink {
    font-size: 4rem;
  }

  .masthead .masthead-heading span.pink.pl {
    padding-left: 7vw;
  }

  .masthead .masthead-heading span.black {
    font-size: 3.5rem;
  }

  .masthead .masthead-subheading {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .masthead .masthead-heading span.pink {
    font-size: 4.5rem;
  }

  .masthead .masthead-heading span.pink.pl {
    padding-left: 6.5vw;
  }

  .masthead .masthead-heading span.black {
    font-size: 4rem;
  }

  .masthead .masthead-subheading {
    font-size: 1.375rem;
  }
}

/* Footer -----*/
.footer {
  background-color: var(--primary-color);
  color: var(--bs-white);
}

.footer-logo img {
  width: 200px;
}

.list-footer-sns li.list-item a.list-link i {
  color: var(--bs-white);
  font-size: 2rem;
}

.copyright {
  background: transparent;
  font-size: .875rem;
}

/* ページトップへ戻るボタン -----*/
#btn-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}

#btn-top .updown {
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--bs-white);
  text-decoration: none;
  height: 80px;
  width: 80px;
  animation-name: updown1;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

#btn-top .updown:hover {
  background: var(--primary-dark-color);
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Main -----*/
h3 {
  font-size: 1.125rem;
}

.block-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-section {
  padding: 3rem 0;
}

.group-section-heading {
  margin-bottom: 1.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-heading .indent01 {
  display: block;
}

.section-heading .en {
  font-size: 2.75rem;
}

.section-heading .ja {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

.heading-img img {
  width: 240px;
}

/* Reason */
.item-reason {
  display: inline-block;
  background: rgba(255, 255, 255, .5);
  border-radius: .25rem;
  padding: .5rem 1rem;
}

.group-reason {
  max-width: 600px;
}

.detail-graph {
  background: var(--bs-white);
  border-radius: .5rem;
}

.ttl-graph {
  flex-direction: column;
  background: var(--primary-color);
  border-top-right-radius: .5rem;
  border-top-left-radius: .5rem;
  color: var(--bs-white);
  font-size: 1.125rem;
  line-height: 1.4;
  height: 76px;
  text-align: center;
}

.ttl-graph span {
  display: block;
  font-size: .875rem
}

/* Counter */
.group-counter {
  max-width: 600px;
}

/* Support */
#support {
  position: relative;
  z-index: 5;
}

.txt-support {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.list-support {
  counter-reset: num;
}

.list-support li {
  position: relative;
  counter-increment: num;
}

.list-support li::before {
  position: absolute;
  content: counter(num, decimal-leading-zero);
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.list-support li.list-item {
  background: var(--bs-white);
  border-radius: .5rem;
  margin-top: 4rem;
  padding: 2.5rem 1.25rem 1.25rem;
}

/* Parallax area */
.parallax-area {
  position: relative;
  background: var(--bs-white) url(../assets/img/bg-parallax.webp) no-repeat center center / cover;
  height: 30vh;
  animation: parallax linear both;
  animation-timeline: view();
  z-index: 5;
}

@keyframes parallax {
  from {
    background-position: center center;
  }

  to {
    background-position: center -10vh;
  }
}

/* Voice */
#voice {
  position: relative;
  background: var(--bs-white);
  z-index: 1;
}

#voice::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(60deg, rgb(252, 88, 133, .7) 0%, rgb(255, 237, 187, .7) 40%, rgb(255, 237, 187, .2) 100%);
  z-index: 2;
}

#voice .container {
  position: relative;
  z-index: 4;
}

.detail-voice {
  position: relative;
  background: var(--bs-white);
  border-radius: .5rem;
  padding: 2.5rem 1.25rem 1rem;
}

.detail-voice .item-num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  border-radius: .5rem;
  color: var(--bs-white);
  height: 32px;
  width: 100px;
}

.detail-voice h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.detail-voice .item-voice {}

.detail-voice .item-voice div {
  flex-basis: 20%;
}

.detail-voice .item-voice p {
  flex-basis: 80%;
  padding-left: 1rem;
}

.voice-triangle {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(45deg, #FFEDBC, #FFF0C9 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  height: 110%;
  pointer-events: none;
  width: 55%;
  z-index: 3;
}

/* FAQ */
#faq {
  background-color: var(--bs-white);
}

.detail-faq:not(:last-of-type) {
  margin-bottom: 1rem;
}

.detail-faq summary {
  position: relative;
  list-style: none;
  border: 1px solid var(--primary-color);
  border-radius: .25rem;
  padding: 1rem 2rem 1rem 1rem;
}

.detail-faq summary::before,
.detail-faq summary::after {
  position: absolute;
  content: "";
  top: 1.25rem;
  right: 1rem;
  width: 2px;
  height: .75em;
  background: var(--primary-color);
  transition: all .3s;
}

.detail-faq summary::after {
  transform: rotate(90deg);
}

.detail-faq[open] summary::before {
  transform: rotate(90deg) !important;
}

.detail-faq summary span {
  border-radius: .25rem;
  background: var(--primary-color);
  color: var(--bs-white);
  margin-right: .5rem;
  padding: .125rem .5rem;
}

.detail-faq[open] .answer {
  padding: 1rem;
  animation: fadeIn .5s ease;
}

.detail-faq .list-faq-answer li {
  position: relative;
  padding: .5rem 0 .5rem 1rem;
}

.detail-faq .list-faq-answer li::after {
  position: absolute;
  content: "";
  top: 1.125rem;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.detail-faq .list-faq-answer li ul li {
  position: relative;
  padding: .25rem 0 .25rem .75rem;
}

.detail-faq .list-faq-answer li ul li::after {
  position: absolute;
  content: "";
  top: .875rem;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

/* Form */
#form {
  position: relative;
}

.group-form form {
  margin-bottom: 3rem;
}

.contactform {
  margin: 0 auto 1.5rem;
  max-width: 720px;
}

.item-form {
  margin-bottom: 1.5rem;
}

.item-form dt {
  margin-bottom: .5rem;
}

.item-form dd {
  margin-bottom: 0;
}

.required,
.optional {
  border-radius: .25rem;
  font-size: .75rem;
  margin-left: .5rem;
  padding: .125rem .5rem;
}

.required {
  background: var(--base-color);
  color: var(--bs-white);
}

.optional {
  border: solid 1px var(--base-color);
}

label,
legend {
  display: flex;
  align-items: center;
  font-weight: normal;
}

legend {
  font-size: 1rem;
  font-weight: normal;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  appearance: none;
  height: 38px;
  padding: 6px 10px;
  background-color: var(--bs-white);
  border: 1px solid var(--border-color);
  box-shadow: none;
  border-radius: .25rem;
  width: 100%;
}

input[type="radio"] {
  margin-right: .25rem;
  margin-left: .5rem;
}

input.age {
  width: 80px;
}

input.schedule {
  width: 200px;
}

textarea {
  min-height: 150px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.check {
  gap: 1rem;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: .25rem;
  color: var(--bs-white);
  height: 50px;
  line-height: 50px;
  letter-spacing: .1rem;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
}

input[type="reset"],
input[type="button"] {
  background: var(--bs-white);
  border-color: var(--bs-white);
  color: var(--primary-color);
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
  outline: 0;
}

input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  background: #eee;
  border-color: #eee;
  outline: 0;
}

.item-contact fieldset dd label {
  display: inline-block;
}

.group-error {
  border: solid 1px var(--error-color);
  padding: 1rem;
  max-width: 720px;
}

.item-error {
  color: var(--error-color);
}

.txt-form-finish {
  font-size: 1.25rem;
}

.form-triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, Var(--primary-color), var(--pink01-color) 50%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  height: 80px;
  pointer-events: none;
  width: 80px;
}

/* お問い合わせ確認画面 -----*/
#form-top {
  padding-top: 8vh;
}

#confirm .txt-lead {
  margin-bottom: 3rem;
}
#confirm .txt-error {
  margin-bottom: 3rem;
}

#confirm .table-form {
  margin: 0 auto 3rem;
  max-width: 720px;
}

#confirm .table-form th,
#confirm .table-form td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--base-color);
}

#confirm .table-form th {
  white-space: nowrap;
}

@media (min-width: 576px) {
  @keyframes parallax {
    to {
      background-position: center -15vh;
    }
  }
}

@media (min-width: 768px) {
  @keyframes parallax {
    to {
      background-position: center -20vh;
    }
  }
}

@media (min-width: 992px) {
  .block-lg-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-section {
    padding: 5rem 0;
  }

  .detail-heading.switch {
    flex-direction: row-reverse;
  }

  .detail-heading .section-heading {
    flex-basis: 60%;
    font-size: 2.625rem;
    margin-bottom: 0;
    text-align: left;
  }

  .detail-heading .section-heading .indent01 {
    padding-left: 3rem;
  }

  .detail-heading .section-heading .indent02 {
    padding-left: 6rem;
  }

  .heading-img {
    flex-basis: 40%;
    padding-left: 1.5rem;
  }

  .heading-img img {
    width: 100%;
  }

  .section-heading.normal {
    margin-bottom: 3rem;
  }

  .detail-heading.switch .heading-img {
    padding-right: 1.5rem;
    padding-left: 0;
  }

  .list-support li::before {
    left: 3rem;
    transform: none;
  }

  .list-support li.list-item {
    margin-top: 5rem;
    padding: 2rem;
  }

  @keyframes parallax {
    to {
      background-position: center -25vh;
    }
  }

  .detail-voice {
    margin-top: 0;
  }

  .detail-faq:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }

  .detail-faq summary {
    padding: 1.5rem 3rem 1.5rem 1.5rem;
  }

  .detail-faq summary::before,
  .detail-faq summary::after {
    top: 1.75rem;
    right: 2rem;
    height: 1.2em;
  }

  .detail-faq[open] .answer {
    padding: 1.5rem;
  }

  .group-form {
    margin-bottom: 5rem;
  }

  .item-form {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }

  .item-form dt {
    flex-basis: 35%;
    margin-bottom: 0;
  }

  .item-form dd {
    flex-basis: 65%;
  }

  .item-contact {
    display: block;
  }

  .item-contact fieldset {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }

  .txt-note-form {
    text-align: center;
  }

  .form-triangle {
    height: 160px;
    width: 160px;
  }
}

@media (min-width: 1200px) {
  .detail-heading .section-heading {
    font-size: 3.125rem;
  }

  .parallax-area {
    height: 40vh;
  }

  @keyframes parallax {
    to {
      background-position: center -30vh;
    }
  }
}

@media (min-width: 1400px) {
  @keyframes parallax {
    to {
      background-position: center -40vh;
    }
  }
}
