@charset "UTF-8";

/* fadein effect */
html:not(.loaded) #wrapper {
  opacity: 0;
}
html.loaded #wrapper {
  transition: 0.8s opacity ease-out;
}
html:not(.loaded) #fv .text h1 {
  translate: 0 8rem;
  opacity: 0;
}
html:not(.loaded) #fv .text .desc {
  translate: 0 8rem;
  opacity: 0;
}
#fv .illust svg {
  transform-origin: left bottom;
}
html:not(.loaded) #fv .illust svg {
  translate: -50% -25%;
  rotate: -45deg;
  opacity: 0;
}
html.loaded #fv .text h1 {
  transition: 0.4s translate ease-out 1.6s, 0.4s opacity ease-in-out 1.6s;
}
html.loaded #fv .text .desc {
  transition: 0.4s translate ease-out 1.8s, 0.4s opacity ease-in-out 1.8s;
}
html.loaded #fv .illust svg {
  transition: 0.8s rotate ease-out 0.8s, 0.8s translate ease-out 0.2s, 0.8s opacity ease-in-out 0.8s;
}
html.loaded #fv .illust svg .lupe {
  scale: 1.2;
  transform-origin: 50% 50%;
  transition: 1.2s scale ease-in-out 1.6s;
}

/* wrapper */
#wrapper {
  max-width: 120rem;
}
#wrapper > footer {
  padding-left: calc(50vw - 50% + 5rem);
  padding-right: calc(50vw - 50% + 5rem);
}
#wrapper > main {
  padding: 0 calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  position: relative;
  background-color: rgb(193, 220, 182);
  background-image: url(../images/bg_special_sp.svg), linear-gradient(to bottom, rgb(245, 241, 236) 13%, rgb(171, 221, 248) 93%);
  background-repeat: no-repeat, no-repeat;
  background-position: 50% calc(100% - 6.2rem), 50% 0;
  background-size: 39.3rem auto, 100% calc(100% - 52rem);
}
@media screen and (min-width: 768px) {
  #wrapper > main {
    background-image: url(../images/bg_special.svg), linear-gradient(to bottom, rgb(245, 241, 236) 13%, rgb(171, 221, 248) 80%);
    background-position: 50% 100%, 50% 0;
    background-size: 192rem auto, 100% calc(100% - 58.8rem);
  }
}
#wrapper > main::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: -10;
  height: 50px;
  background-color: inherit;
}

/* fv */
#fv {
  padding-top: 5.8rem;
  min-height: calc(100svh - 7rem);
}
@media screen and (min-width: 768px) {
  #fv {
    padding: 0 calc(50vw - 50%);
    margin: 0 calc(50% - 50vw);
    display: flex;
    align-items: center;
    min-height: calc(100svh - 9rem);
    overflow: hidden;
  }
  #fv > .text {
    padding-left: 7.3rem;
    flex-basis: 58.4rem;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  #fv > .illust {
    flex-basis: 61.6rem;
    flex-shrink: 0;
    box-sizing: border-box;
    order: -10;
  }
}
#fv h1 {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--Outfit);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: calc(1.2 / 30 * 1em);
  text-indent: calc(1.2 / 30 * 1em);
  color: rgb(232, 56, 40);
  text-align: center;
}
@media screen and (min-width: 768px) {
  #fv h1 {
    font-size: 3rem;
  }
}
#fv h1 .image {
  margin-top: 1.9rem;
  margin-bottom: 1.9rem;
  display: block;
  width: 32.9rem;
}
@media screen and (min-width: 768px) {
  #fv h1 .image {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem;
    width: 47.8rem;
  }
}
#fv h1 .image img {
  width: 100%;
}
#fv .desc {
  padding: 0.565em 0;
  margin: 1.435em 0;
  font-size: 1.6rem;
  line-height: 2.13;
}
@media screen and (min-width: 768px) {
  #fv .desc {
    padding: 0.5em 0 0 0;
    margin: 3em 0 0 0;
    font-size: 1.8rem;
    line-height: 2;
  }
}
#fv .desc p {
  margin: 0;
  font-family: var(--ZenKakuGothicNew);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgb(0, 73, 126);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #fv .desc p {
    text-align: start;
    white-space: normal;
  }
}
#fv .illust {
  padding-top: 1.6rem;
  direction: rtl;
}
@media screen and (min-width: 768px) {
  #fv .illust {
    padding-top: 4rem;
  }
}
#fv .illust .image {
  width: 43.9rem;
  height: 38.7rem;
}
@media screen and (min-width: 768px) {
  #fv .illust .image {
    margin-left: calc(58.4rem - 80.4rem);
    width: 80.4rem;
    height: 65.2rem;
  }
}
#fv .illust .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right top;
  object-position: right top;
}
@media screen and (min-width: 768px) {
  #fv .illust .image img {
    height: auto;
  }
}

/* feature */
#feature {
  position: relative;
  z-index: 0;
}
#feature .fadein.outside {
  opacity: 0;
}
#feature .fadein.outside {
  translate: 0 50vw;
}
@media screen and (min-width: 768px) {
  #feature .fadein.outside + .fadein,
  #feature .fadein.outside {
    opacity: 0;
  }
  #feature .fadein.outside + .fadein.totop,
  #feature .fadein.totop.outside {
    translate: 0 28rem;
  }
  #feature .fadein.outside + .fadein.tobottom,
  #feature .fadein.tobottom.outside {
    translate: 0 -28rem;
  }
  #feature .fadein.outside + .fadein.toleft,
  #feature .fadein.toleft.outside {
    translate: 28rem 0;
  }
  #feature .fadein.outside + .fadein.toright,
  #feature .fadein.toright.outside {
    translate: -28rem 0;
  }
}
#feature > section:first-of-type.fadein:not(.outside),
#feature .fadein:not(.outside) + .fadein:not(.outside) {
  transition: 0.4s translate ease-out 0.4s, 0.4s opacity ease-in-out 0.4s;
}
@media screen and (min-width: 768px) {
  #wrapper #feature > section:last-of-type.fadein:not(.outside) {
    transition-delay: 0.8s;
  }
}
#feature section:nth-of-type(1) {
  background-color: rgb(232, 56, 40);
}
#feature section:nth-of-type(2) {
  background-color: rgb(0, 73, 126);
}
#feature section:nth-of-type(3) {
  background-color: rgb(232, 56, 40);
}
#feature section:nth-of-type(4) {
  background-color: rgb(0, 161, 128);
}
#feature section:nth-of-type(5) {
  background-color: rgb(0, 73, 126);
}
#feature section:nth-of-type(6) {
  background-color: rgb(0, 161, 128);
}
#feature section:nth-of-type(7) {
  background-color: rgb(232, 56, 40);
}
@media screen and (max-width: 767px) {
  /* sp only */
  #feature section {
    padding: calc(50vw - 50%);
    margin: 0 calc(50% - 50vw);
  }
  #feature section:nth-of-type(1) {
    border-radius: 0 0 calc(39.3rem / 2) calc(39.3rem / 2);
  }
  #feature section:nth-of-type(2) {
    padding-top: calc((50vw - 50%) + 18.8rem);
    padding-bottom: calc((50vw - 50%) + 22.1rem);
    margin-top: -18.8rem;
    border-radius: 0 31.5rem 0 31.5rem;
    position: relative;
    z-index: -10;
  }
  #feature section:nth-of-type(2) .fig {
    margin-right: calc(50% - 50vw);
  }
  #feature section:nth-of-type(2) .fig .image {
    margin-left: auto;
  }
  #feature section:nth-of-type(3) {
    padding-bottom: calc((50vw - 50%) + 31.5rem);
    margin-top: -22.1rem;
    display: flex;
    flex-direction: column;
    border-radius: calc(39.3rem / 2) calc(39.3rem / 2) 0 0;
  }
  #feature section:nth-of-type(3) h2 {
    padding-top: 0;
  }
  #feature section:nth-of-type(3) h2::before {
    margin-top: -5rem;
  }
  #feature section:nth-of-type(3) .fig {
    order: -10;
  }
  #feature section:nth-of-type(4) {
    padding-bottom: calc((50vw - 50%) + 8.3rem);
    margin-top: -31.5rem;
    border-radius: 0 31.5rem 0 31.5rem;
  }
  #feature section:nth-of-type(4) .fig {
    padding-right: 2.1rem;
    margin-right: calc(50% - 50vw);
  }
  #feature section:nth-of-type(4) .fig .image {
    margin-left: auto;
  }
  #feature section:nth-of-type(5) {
    padding-top: calc((50vw - 50%) + 31.5rem);
    margin-top: -31.5rem;
    border-radius: 0 0 calc(39.3rem / 2) calc(39.3rem / 2);
    position: relative;
    z-index: -10;
  }
  #feature section:nth-of-type(6) {
    padding-top: calc((50vw - 50%) + 23.5rem);
    margin-top: -23.5rem;
    border-radius: 0 31.5rem 0 31.5rem;
    position: relative;
    z-index: -20;
  }
  #feature section:nth-of-type(6) h2::before {
    margin-left: auto;
  }
  #feature section:nth-of-type(6) .fig {
    margin-right: calc(50% - 50vw);
  }
  #feature section:nth-of-type(6) .fig .image {
    margin-left: auto;
  }
  #feature section:nth-of-type(7) {
    padding-top: calc((50vw - 50%) + 31.5rem);
    margin-top: -31.5rem;
    border-radius: 0 0 31.5rem 31.5rem;
    position: relative;
    z-index: -30;
  }
  #feature section .text {
    padding: 0 1.8rem;
  }
  #feature section:not(:nth-of-type(3)) .fig {
    margin-top: calc(50vw - 50%);
  }
}
@media screen and (min-width: 768px) {
  #feature {
    display: grid;
    grid-template-columns: 49.7rem 20.6rem 49.7rem;
    grid-template-rows: 58rem 58rem 58rem 58rem 58rem 44.5rem;
    position: relative;
    z-index: 0;
  }
  #feature section {
    padding: 1rem;
  }
  #feature section:nth-of-type(1) {
    padding-left: calc(50vw - 50%);
    margin-left: calc(50% - 50vw);
    margin-right: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    border-radius: 0 29rem 29rem 0;
  }
  #feature section:nth-of-type(1) .text {
    padding-left: 5.1rem;
    width: 44.7rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(2) {
    padding-bottom: 2.3rem;
    padding-left: 58rem;
    padding-right: calc(50vw - 50%);
    margin-left: -8.3rem;
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    border-radius: 29rem 0 0 29rem;
  }
  #feature section:nth-of-type(2) .text {
    display: flex;
    align-items: flex-start;
  }
  #feature section:nth-of-type(2) h2 {
    padding-top: 0;
    display: flex;
    align-items: flex-end;
  }
  #feature section:nth-of-type(2) h2::before {
    margin-bottom: 0;
    margin-left: -12.2rem;
    margin-right: 4.6rem;
  }
  #feature section:nth-of-type(2) .desc {
    padding-left: 3.3rem;
    margin-top: 1.1em;
    width: 36.6rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(2) .fig {
    padding-left: 5.4rem;
    margin-top: -4.2rem;
  }
  #feature section:nth-of-type(3) {
    margin-top: 18.3rem;
    margin-left: -8.3rem;
    display: flex;
    flex-direction: column;
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    border-radius: 29rem 29rem 0 0;
  }
  #feature section:nth-of-type(3) .text {
    padding-left: 9.3rem;
    padding-right: 8.4rem;
    width: 35.6rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(3) h2 {
    padding-top: 0;
  }
  #feature section:nth-of-type(3) h2::before {
    margin-top: -8.1rem;
    margin-left: -2rem;
  }
  #feature section:nth-of-type(3) .fig {
    order: -10;
  }
  #feature section:nth-of-type(4) {
    padding-left: 8.4rem;
    padding-right: calc(50vw - 50%);
    margin-left: -8.4rem;
    margin-right: calc(50% - 50vw);
    display: flex;
    align-items: center;
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    border-radius: 29rem 0 0 29rem;
  }
  #feature section:nth-of-type(4) .text {
    padding-left: 6.2rem;
  }
  #feature section:nth-of-type(4) h2 {
    position: relative;
  }
  #feature section:nth-of-type(4) h2::before {
    position: absolute;
    bottom: 0;
    left: calc(100% + 12.4rem);
  }
  #feature section:nth-of-type(4) .desc {
    width: 22.8rem;
  }
  #feature section:nth-of-type(4) .fig {
    padding-bottom: 2.2rem;
    margin-left: -4.2rem;
    align-self: flex-end;
  }
  #feature section:nth-of-type(5) {
    padding-left: calc(50vw - 50%);
    margin-left: calc(50% - 50vw);
    margin-right: -8.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / 4;
    grid-row: 4 / 5;
    border-radius: 0 29rem 29rem 0;
  }
  #feature section:nth-of-type(5) .text {
    padding-left: 9.9rem;
    width: 50.3rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(5) h2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  #feature section:nth-of-type(5) h2::before {
    margin-bottom: 0;
    order: 10;
  }
  #feature section:nth-of-type(6) {
    padding-left: calc(50vw - 50%);
    padding-right: 8.4rem;
    margin-left: calc(50% - 50vw);
    margin-right: -8.4rem;
    display: flex;
    align-items: center;
    grid-column: 1 / 3;
    grid-row: 5 / 6;
    border-radius: 0 29rem 29rem 0;
  }
  #feature section:nth-of-type(6) .text {
    padding-left: 2rem;
    width: 38rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(6) .fig {
    align-self: flex-start;
  }
  #feature section:nth-of-type(6) .fig .image {
    margin-left: calc(30.3rem - 48.3rem + 2.6rem);
  }
  #feature section:nth-of-type(7) {
    padding-top: 58rem;
    padding-right: 8.3rem;
    margin-right: -8.3rem;
    display: flex;
    flex-direction: column;
    grid-column: 3 / 4;
    grid-row: 4 / 7;
    border-radius: 29rem 29rem 29rem 29rem;
    position: relative;
    z-index: -10;
  }
  #feature section:nth-of-type(7) .text {
    padding-top: 4.8rem;
    padding-left: 11.9rem;
    width: 39.4rem;
    box-sizing: content-box;
  }
  #feature section:nth-of-type(7) h2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  #feature section:nth-of-type(7) h2::before {
    margin-bottom: 0;
    order: 10;
  }
  #feature section:nth-of-type(7) .fig {
    margin-top: auto;
  }
}
#feature section h2 {
  padding: 0.4em 0;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: keep-all;
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  #feature section h2 {
    padding: 0 0 0.3em 0;
    font-size: 2.8rem;
    line-height: 1.6;
  }
}
#feature section h2::before {
  content: "";
  margin-bottom: calc(0.4em + 1em);
  display: block;
  background: no-repeat 50% 50% / contain;
}
@media screen and (min-width: 768px) {
  #feature section h2::before {
    content: "";
  }
}
#feature section:nth-of-type(1) h2::before {
  width: calc(7.9rem * 0.6);
  height: calc(11.2rem * 0.6);
  background-image: url(../images/num_sp1.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(1) h2::before {
    width: 7.9rem;
    height: 11.2rem;
  }
}
#feature section:nth-of-type(2) h2::before {
  width: calc(9.7rem * 0.6);
  height: calc(11.5rem * 0.6);
  background-image: url(../images/num_sp2.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(2) h2::before {
    width: 9.7rem;
    height: 11.5rem;
  }
}
#feature section:nth-of-type(3) h2::before {
  width: calc(10.5rem * 0.6);
  height: calc(10.5rem * 0.6);
  background-image: url(../images/num_sp3.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(3) h2::before {
    width: 10.5rem;
    height: 10.5rem;
  }
}
#feature section:nth-of-type(4) h2::before {
  width: calc(9.1rem * 0.6);
  height: calc(11.5rem * 0.6);
  background-image: url(../images/num_sp4.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(4) h2::before {
    width: 9.1rem;
    height: 11.5rem;
  }
}
#feature section:nth-of-type(5) h2::before {
  width: calc(7.8rem * 0.6);
  height: calc(11.5rem * 0.6);
  background-image: url(../images/num_sp5.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(5) h2::before {
    width: 7.8rem;
    height: 11.5rem;
  }
}
#feature section:nth-of-type(6) h2::before {
  width: calc(8.3rem * 0.6);
  height: calc(12rem * 0.6);
  background-image: url(../images/num_sp6.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(6) h2::before {
    width: 8.3rem;
    height: 12rem;
  }
}
#feature section:nth-of-type(7) h2::before {
  width: calc(9.4rem * 0.6);
  height: calc(11.2rem * 0.6);
  background-image: url(../images/num_sp7.svg);
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(7) h2::before {
    width: 9.4rem;
    height: 11.2rem;
  }
}
#feature section .desc {
  padding: 0.57em 0;
  font-size: 1.4rem;
  line-height: 2.14;
}
@media screen and (min-width: 768px) {
  #feature section .desc {
    padding: 0.44em 0;
    margin: 0.88em 0 0 0;
    font-size: 1.6rem;
    line-height: 1.88;
  }
}
#feature section .desc p {
  margin: 0;
  letter-spacing: 0.05em;
  font-feature-settings: normal;
  color: rgb(255, 255, 255);
}
#feature section .photo .image {
  width: 32.9rem;
  height: 32.9rem;
}
@media screen and (min-width: 768px) {
  #feature section .photo .image {
    width: 56rem;
    height: 56rem;
  }
}
#feature section .photo .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
#feature section:nth-of-type(2) .illust .image {
  width: 34.4rem;
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(2) .illust .image {
    width: 74.2rem;
  }
}
#feature section:nth-of-type(4) .illust .image {
  width: 26.1rem;
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(4) .illust .image {
    width: 41.3rem;
  }
}
#feature section:nth-of-type(6) .illust .image {
  width: 28.8rem;
}
@media screen and (min-width: 768px) {
  #feature section:nth-of-type(6) .illust .image {
    width: 48.3rem;
  }
}
#feature section .illust .image img {
  width: 100%;
}

/* message */
#message {
  padding: 26.2rem 0 22.9rem 0;
  font-size: 1.6rem;
  line-height: 2.13;
}
@media screen and (min-width: 768px) {
  #message {
    padding: 33.8rem 0 20.2rem 0;
    font-size: 2.6rem;
    line-height: 2.3;
  }
}
#message p {
  margin: 0;
  font-family: var(--ZenKakuGothicNew);
  font-weight: bold;
  letter-spacing: calc(0.78 / 26 * 1em);
  text-align: center;
  white-space: nowrap;
}
