@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
web
---------------------------------------------------------------------------------------------------- */
/* mv
----------------------------------------------------------------------*/
#mv {
  overflow: hidden;
  position: relative;
}
#mv::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 25%, #fff 45%);
}
#mv .mv__hero {
  position: absolute;
  top: -8.25rem;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
  width: 45rem;
  height: 45rem;
}
#mv .mv__hero img {
  width: 100%;
  height: 100%;
}
#mv .mv__contents {
  display: grid;
  row-gap: 2rem;
  position: relative;
  z-index: var(--layer-front);
}
#mv .mv__copies {
  padding-top: 26rem;
  text-align: center;
}
#mv .mv__title {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
}
#mv .mv__copy {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.375rem;
}
#mv .mv__lead {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#mv .mv__btns {
  display: flex;
  justify-content: center;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  padding-block: 0.75rem;
  transition-delay: 0.4s;
}
#mv .mv__btns a {
  display: grid;
  place-items: center;
  width: 10rem;
  height: 2.75rem;
  border-radius: 100vmax;
  font-weight: 500;
  line-height: 1.25rem;
}
#mv .mv__contact {
  border: 2px solid #ffda1b;
  background-color: #ffda1b;
  color: #294048;
  transition: background-color 0.2s;
}
@media (any-hover: hover) {
  #mv .mv__contact:hover {
    background-color: var(--color-white);
  }
}
@media (any-hover: none) {
  #mv .mv__contact:active {
    background-color: var(--color-white);
  }
}
#mv .mv__download {
  border: 2px solid #294048;
  background-color: #294048;
  color: var(--color-white);
  transition: background-color 0.2s, color 0.2s;
}
@media (any-hover: hover) {
  #mv .mv__download:hover {
    background-color: var(--color-white);
    color: #294048;
  }
}
@media (any-hover: none) {
  #mv .mv__download:active {
    background-color: var(--color-white);
    color: #294048;
  }
}
#mv .mv__logos {
  display: flex;
  padding-block: 1.625rem;
  width: 180rem;
  background-color: rgba(255, 255, 255, 0.4);
  transition-delay: 0.8s;
}
#mv .mv__logoList {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  padding-left: 2.5rem;
  animation: mv__logos 10s infinite linear both;
}
#mv .mv__logoList img {
  width: 7.5rem;
  flex-shrink: 0;
}
@keyframes mv__logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 60rem) {
  #mv {
    height: min(48.125rem, 60.15625vw);
  }
  #mv::before {
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 85%);
  }
  #mv .mv__hero {
    top: -21.25rem;
    left: calc(50% - min(18.5rem, 23.125vw));
    translate: 0 0;
    width: 81.375rem;
    height: 88.75rem;
  }
  #mv .mv__contents {
    row-gap: 2.5rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
    width: min(100%, 75rem);
  }
  #mv .mv__copies {
    padding-top: min(11rem, 13.75vw);
    text-align: left;
  }
  #mv .mv__title {
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  #mv .mv__copy {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    line-height: 2.75rem;
  }
  #mv .mv__lead {
    font-size: 0.875rem;
    line-height: em(22);
  }
  #mv .mv__btns {
    justify-content: flex-start;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  #mv .mv__btns a {
    width: 12.5rem;
    height: 3.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  #mv .mv__logos {
    position: absolute;
    bottom: 0;
    padding-block: 1.25rem;
    width: 198rem;
    transition-delay: 1.4s;
  }
  #mv .mv__logoList {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    padding-left: 2.5rem;
    animation: mv__logos 10s infinite linear both;
  }
  #mv .mv__logoList img {
    width: 8.5rem;
  }
}
/* issue
----------------------------------------------------------------------*/
#issue {
  position: relative;
  z-index: var(--layer-backMost);
  margin-bottom: 4rem;
  padding-block: 6.25rem 4rem;
  background-color: #fff;
}

@media screen and (min-width: 60rem) {
  #issue {
    margin-bottom: 5rem;
    padding-block: 5rem 7.5rem;
  }
}
/* point
----------------------------------------------------------------------*/
#point {
  margin-bottom: 4rem;
}
#point .point__heading {
  display: grid;
  row-gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
#point .point__heading p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#point .point__heading h2 {
  display: grid;
  row-gap: 0.25rem;
  justify-items: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
}
#point .point__heading h2 .c-band {
  padding: 0.25rem;
  width: -moz-max-content;
  width: max-content;
  background-color: #ffee21;
}
#point .point__heading .point__br {
  display: grid;
  row-gap: 0.25rem;
  justify-items: center;
}
#point .point__contents {
  display: grid;
  row-gap: 1rem;
}
#point .pointItem {
  padding: 2rem 1.25rem 1.25rem;
  border: 1px solid #d5dbe6;
  border-radius: 1.25rem;
  background-color: #fff;
}
#point .pointItem .pointItem__frame {
  margin-bottom: 1.5rem;
  text-align: center;
}
#point .pointItem .pointItem__frame img {
  height: 7.5rem;
}
#point .pointItem .pointItem__title {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: center;
}
#point .pointItem .pointItem__text {
  line-height: 1.375rem;
}

@media screen and (min-width: 60rem) {
  #point {
    margin-bottom: 7.5rem;
  }
  #point .point__heading {
    margin-bottom: 4rem;
  }
  #point .point__heading p {
    font-size: 4rem;
    line-height: 5rem;
  }
  #point .point__heading h2 {
    font-size: 1.25rem;
    line-height: 1.8125rem;
  }
  #point .point__heading .point__br {
    display: flex;
  }
  #point .point__heading .point__br > span:first-child {
    padding-right: 0;
  }
  #point .point__heading .point__br > span:last-child {
    padding-left: 0;
  }
  #point .point__contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #point .pointItem {
    padding: 3rem 2.5rem 2.5rem;
  }
  #point .pointItem .pointItem__frame {
    margin-bottom: 2rem;
  }
  #point .pointItem .pointItem__title {
    margin-bottom: 1.5rem;
  }
}
/* strength
----------------------------------------------------------------------*/
#strength {
  margin-bottom: 4rem;
}

@media screen and (min-width: 60rem) {
  #strength {
    margin-bottom: 7.5rem;
  }
}
/* reason
----------------------------------------------------------------------*/
#reason {
  margin-bottom: 5rem;
}
#reason::before {
  background: linear-gradient(to bottom, #ffe553 0%, #ffc11a 100%);
}

@media screen and (min-width: 60rem) {
  #reason {
    margin-bottom: 7.5rem;
  }
}
/* works
----------------------------------------------------------------------*/
#works {
  position: relative;
}
#works .works__inner {
  overflow-x: hidden;
  margin-bottom: 2.5rem;
  padding-block: 4rem;
}
#works .works__img {
  position: absolute;
  top: -2.5rem;
  right: 1.25rem;
}
#works .works__img img {
  width: 10.4375rem;
}
#works .works__btn {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 60rem) {
  #works .works__inner {
    margin-bottom: 6.5rem;
    padding-block: 6.5rem;
  }
  #works .works__img {
    top: -3.75rem;
    right: 0;
  }
  #works .works__img img {
    width: 29.5625rem;
  }
  #works .works__btn {
    justify-content: start;
  }
}
@media screen and (min-width: 80rem) {
  #works .works__img {
    right: calc(50% - 6.75rem);
    translate: 100% 0;
  }
}
/* voice
----------------------------------------------------------------------*/
#voice {
  margin-bottom: 4rem;
}

@media screen and (min-width: 60rem) {
  #voice {
    margin-bottom: 8.125rem;
  }
}
/* cta
----------------------------------------------------------------------*/
#cta {
  margin-bottom: 4rem;
}

@media screen and (min-width: 60rem) {
  #cta {
    margin-bottom: 7.5rem;
  }
}
/* flow
----------------------------------------------------------------------*/
#flow {
  margin-bottom: 4rem;
}

@media screen and (min-width: 60rem) {
  #flow {
    margin-bottom: 7.5rem;
  }
}
/* plan
----------------------------------------------------------------------*/
#plan {
  margin-bottom: 4rem;
}
#plan .plan__heading {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 2.5rem;
}
#plan .plan__contents {
  display: grid;
  gap: 1rem 1.375rem;
}
#plan .planItem {
  overflow: hidden;
  border-radius: 1.25rem;
  background-color: #fff;
}
#plan .planItem .planItem__head {
  padding: 1.25rem 1.25rem 2.875rem;
  text-align: center;
}
#plan .planItem .planItem__hgroup {
  margin-bottom: 0.75rem;
}
#plan .planItem .planItem__shoulder {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
#plan .planItem .planItem__title {
  font-weight: 700;
  line-height: 1.25rem;
}
#plan .planItem .planItem__price {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #d5dbe6;
  font-family: "Quicksand", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
#plan .planItem .planItem__yen {
  font-size: 1.75rem;
}
#plan .planItem .planItem__number {
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 0.04em;
}
#plan .planItem .planItem__heading {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 0.1em;
}
#plan .planItem .planItem__foot {
  position: relative;
  padding: 0 1.25rem 1.25rem 1.25rem;
  background-color: #fff7f2;
}
#plan .planItem .planItem__foot::before {
  content: "";
  position: absolute;
  top: -1.625rem;
  left: 0;
  width: max(100%, 20.5rem);
  height: 1.625rem;
  background-image: url(../img/common/wave_red.png);
  background-size: contain;
}
#plan .planItem .planItem__list {
  display: grid;
  justify-content: center;
  margin-bottom: 0.75rem;
}
#plan .planItem .planItem__list > li {
  position: relative;
  padding-left: 0.875rem;
}
#plan .planItem .planItem__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#plan .planItem .planItem__note {
  font-size: 0.75rem;
  text-align: center;
}
#plan .planItem:nth-of-type(1) {
  border: 0.25rem solid #f5eae4;
}
#plan .planItem:nth-of-type(1) .planItem__shoulder {
  color: #e69c66;
}
#plan .planItem:nth-of-type(1) .planItem__foot {
  background-color: #fff7f2;
}
#plan .planItem:nth-of-type(1) .planItem__foot::before {
  background-image: url(../img/common/wave_red.png);
}
#plan .planItem:nth-of-type(2) {
  border: 0.25rem solid #dfeef3;
}
#plan .planItem:nth-of-type(2) .planItem__shoulder {
  color: #a8c3c9;
}
#plan .planItem:nth-of-type(2) .planItem__foot {
  background-color: #f0fbff;
}
#plan .planItem:nth-of-type(2) .planItem__foot::before {
  background-image: url(../img/common/wave_blue.png);
}
#plan .planItem:nth-of-type(3) {
  border: 0.25rem solid #f5efd3;
}
#plan .planItem:nth-of-type(3) .planItem__shoulder {
  color: #e3bd1d;
}
#plan .planItem:nth-of-type(3) .planItem__foot {
  background-color: #fffceb;
}
#plan .planItem:nth-of-type(3) .planItem__foot::before {
  background-image: url(../img/common/wave_yellow.png);
}

@media screen and (min-width: 60rem) {
  #plan {
    margin-bottom: 8.75rem;
  }
  #plan .plan__heading {
    margin-bottom: 4rem;
  }
  #plan .plan__contents {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
  #plan .planItem {
    display: grid;
    grid-template-rows: subgrid;
    grid-area: span 2;
  }
  #plan .planItem .planItem__head {
    padding-block: 1.5rem 3.125rem;
  }
  #plan .planItem .planItem__foot {
    padding-bottom: 2.25rem;
  }
  #plan .planItem .planItem__foot::before {
    top: -1.875rem;
    height: 1.875rem;
  }
}
/* member
----------------------------------------------------------------------*/
#member {
  margin-bottom: 4rem;
}
#member .member__heading {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 2.5rem;
}
#member .member__contents {
  display: grid;
  row-gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background-color: #fff;
}
#member .memberItem:not(:last-of-type) {
  position: relative;
  padding-bottom: 1.25rem;
}
#member .memberItem:not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: calc(100% + 1.25rem);
  height: 1px;
  background-color: #d5dbe6;
}
#member .memberItem .memberItem__manager {
  position: relative;
  margin-bottom: 1.25rem;
  text-align: center;
}
#member .memberItem .memberItem__manager img {
  border-radius: 100%;
  box-shadow: 4px 4px 0 #ffaf9d;
}
#member .memberItem .memberItem__manager figcaption {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50% 0;
  z-index: var(--layer-front);
  padding: 0.125rem 0.375rem;
  width: -moz-max-content;
  width: max-content;
  height: 1.5rem;
  background-color: #f88064;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25rem;
}
#member .memberItem .memberItem__message {
  display: grid;
  justify-items: center;
  row-gap: 0.25rem;
  position: relative;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
}
#member .memberItem .memberItem__message::before, #member .memberItem .memberItem__message::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 0.875rem;
  background: url(../img/common/kakko.png) no-repeat top/contain;
}
#member .memberItem .memberItem__message::before {
  top: 0;
  left: -0.75rem;
  translate: -100% 0;
}
#member .memberItem .memberItem__message::after {
  bottom: 0;
  right: -0.75rem;
  translate: 100% 0;
  rotate: 180deg;
}
#member .memberItem .memberItem__message > span:not(:has(> span)) {
  padding-bottom: 0.25rem;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid #f88064;
}
#member .memberItem .memberItem__message > span:has(> span) {
  display: grid;
  justify-items: center;
  row-gap: 0.25rem;
}
#member .memberItem .memberItem__message > span > span {
  padding-bottom: 0.25rem;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid #f88064;
}
#member .memberItem .memberItem__sentence {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 60rem) {
  #member {
    margin-bottom: 5rem;
  }
  #member .member__heading {
    margin-bottom: 1rem;
  }
  #member .member__contents {
    row-gap: 1.875rem;
    padding: 1.875rem;
    border-radius: 2.5rem;
  }
  #member .memberItem {
    display: grid;
    grid-template-columns: 7.75rem 1fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  #member .memberItem:not(:last-of-type) {
    padding-bottom: 1.875rem;
  }
  #member .memberItem .memberItem__manager {
    margin-bottom: 0;
  }
  #member .memberItem .memberItem__manager img {
    width: 7.5rem;
    height: 7.5rem;
  }
  #member .memberItem .memberItem__manager figcaption {
    top: 6.5rem;
  }
  #member .memberItem .memberItem__message {
    justify-items: initial;
    margin-inline: initial;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #member .memberItem .memberItem__message > span:not(:has(> span)) {
    padding-bottom: 0.125rem;
  }
  #member .memberItem .memberItem__message > span:has(> span) {
    display: flex;
    justify-items: initial;
    row-gap: initial;
  }
  #member .memberItem .memberItem__message > span > span {
    padding-bottom: 0.125rem;
  }
}
/* things
----------------------------------------------------------------------*/
#things {
  margin-bottom: 4rem;
}

/* youtube
----------------------------------------------------------------------*/
#youtube {
  margin-bottom: 5rem;
}

@media screen and (min-width: 60rem) {
  #youtube {
    margin-bottom: 7.5rem;
  }
}
/* faq
----------------------------------------------------------------------*/
#faq {
  padding-block: 1.5rem 5rem;
}

@media screen and (min-width: 60rem) {
  #faq {
    padding-block: 3.375rem 7.5rem;
  }
}
/* column
----------------------------------------------------------------------*/
#column {
  padding-bottom: 5rem;
  background-color: #fff;
}

@media screen and (min-width: 60rem) {
  #column {
    padding-bottom: 7.5rem;
  }
}/*# sourceMappingURL=web.css.map */