* {
  padding: 0;
  margin: 0;
}

:root {
  font-size: 75%;
  --backgroundColor: #fefefc;
  --breakPoint: 768px;
  --RoundedBorder: 3px;
  --easeOutCubic: cubic-bezier(.33, 1, .68, 1);
  --textColor: #333333;
  --topContainerPaddingTop: 5rem;
  --transition1: .5s var(--easeOutCubic);
  --transition2: 1s var(--easeOutCubic);
  --paddingSide: 3.33vw;
  --paddingTop: 1.5rem;
  --paddingBottom: 1rem;
  --mainBlue: #326db4;
  --largeHeadlineWidth: 2.8rem;
  --headLineRatioAbout: 2.92;
  --headLineRatioProfile: 5.46;
  --headLineRatioServices: 6.53;
  --headLineRatioPrice: 6.46;
}
@media (min-width: 768px) {
  :root {
    font-size: clamp(8px, 0.9vw, 10px);
    --paddingSide: 10px;
    --paddingTop: 10px;
  }
}

body {
  background-color: var(--backgroundColor);
  color: var(--textColor);
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: auto;
  letter-spacing: 0.1em;
  width: 100%;
}

a {
  color: var(--textColor);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.double {
  scale: 2 1;
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}

.pc-only {
  display: none;
}

.header {
  box-sizing: border-box;
  position: fixed;
  height: auto;
  width: 100%;
  z-index: 110;
}
@media (min-width: 768px) {
  .header {
    width: 20vw;
  }
}

.logoTop {
  box-sizing: border-box;
  padding: var(--paddingTop) 0 0 var(--paddingSide);
  opacity: 1;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .logoTop:hover {
    opacity: 0.75;
  }
}
.logoTop a {
  display: inline-block;
  line-height: 0;
}
.logoTop__inner {
  fill: #ffffff;
  height: 12.25vw;
  transition: fill var(--transition1);
  width: 50vw;
}
@media (min-width: 768px) {
  .logoTop__inner {
    height: clamp(3.675vw, 61.25px, 7.35vw);
    width: clamp(15vw, 20vw, 248px);
  }
}
.logoTop.not-top .logoTop__inner {
  fill: var(--mainBlue);
}
.logoTop.footer-now .logoTop__inner {
  fill: #ffffff;
}
.logoTop.open .logoTop__inner {
  fill: var(--mainBlue);
}

.nav {
  background-color: #fff;
  box-sizing: border-box;
  font-feature-settings: "pkna";
  padding: var(--paddingTop) 0 5rem 15%;
  position: absolute;
  height: 100dvh;
  top: 0;
  transition: translate var(--transition2);
  translate: 100% 0;
  width: 100%;
  z-index: 50;
}
.nav.open {
  translate: 0 0;
}
.nav.open .nav__items {
  opacity: 1;
  translate: 0 0;
}
@media (min-width: 768px) {
  .nav {
    background-color: transparent;
    display: inline-block;
    height: auto;
    opacity: 0;
    padding: 0 0 0 clamp(48px, 5.6vw, 72px);
    position: relative;
    transition: opacity var(--transition1), visibility var(--transition1);
    translate: 0;
    visibility: hidden;
    width: auto;
  }
  .nav.not-top {
    opacity: 1;
    visibility: visible;
  }
}
.nav__container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  width: 100%;
}
@media (min-width: 768px) {
  .nav__container {
    display: inline-flex;
    height: auto;
    width: auto;
  }
}
.nav__links {
  display: block;
  height: 12.5%;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .nav__links {
    display: inline-flex;
    flex-direction: column;
    height: 3.5rem;
    width: auto;
  }
  .nav__links.current::before {
    background-color: var(--mainBlue);
    border-radius: 100%;
    content: "";
    position: absolute;
    width: 0.6em;
    height: 0.6em;
    top: calc(50% - 0.3em);
    transition: background-color var(--transition1);
    left: -0.5em;
  }
  .nav__links:hover .nav__arrow {
    translate: 1em 0;
  }
  .nav__links.not-current {
    color: #999999;
  }
  .nav__links.not-current:hover {
    color: var(--textColor);
  }
}
@media (min-width: 768px) {
  .nav__links--button {
    border-radius: 10px;
    color: #fff;
    height: 3rem;
    margin: 1em 0;
    text-align: center;
    transition: background-color var(--transition1);
    width: 11em;
  }
}
@media (min-width: 768px) {
  .nav__links--info {
    background-color: #666666;
  }
  .nav__links--info:hover {
    background-color: #333333;
  }
}
.nav__links--inquiry {
  background-color: var(--mainBlue);
  color: #fff;
}
@media (min-width: 768px) {
  .nav__links--inquiry:hover {
    background-color: #255085;
  }
}
@media (min-width: 768px) {
  .nav.footer-now .nav__links--inquiry {
    background-color: #fff;
  }
  .nav.footer-now .nav__links--inquiry .nav__text {
    color: var(--mainBlue);
  }
}
.nav__links:nth-child(7) .nav__items {
  transition-duration: 0.125s;
  transition-delay: 0.015s;
}
.nav__links:nth-child(6) .nav__items {
  transition-duration: 0.25s;
  transition-delay: 0.03s;
}
.nav__links:nth-child(5) .nav__items {
  transition-duration: 0.375s;
  transition-delay: 0.045s;
}
.nav__links:nth-child(4) .nav__items {
  transition-duration: 0.5s;
  transition-delay: 0.06s;
}
.nav__links:nth-child(3) .nav__items {
  transition-duration: 0.625s;
  transition-delay: 0.075s;
}
.nav__links:nth-child(2) .nav__items {
  transition-duration: 0.75s;
  transition-delay: 0.09s;
}
.nav__links:nth-child(1) .nav__items {
  transition-duration: 0.875s;
  transition-delay: 0.105s;
}
.nav__items {
  align-items: center;
  border-top: 0.5px solid #eaeaea;
  box-sizing: border-box;
  display: flex;
  font-size: 1.4rem;
  height: 100%;
  justify-content: space-between;
  opacity: 0;
  padding-left: 0.7rem;
  padding-right: var(--paddingSide);
  translate: 100% 0;
  transition: translate var(--transition1), opacity var(--transition1) 0.2s;
  width: 100%;
}
@media (min-width: 768px) {
  .nav__items {
    border-top: none;
    font-size: 1.2rem;
    gap: 0.5em;
    justify-content: start;
    opacity: 1;
    translate: 0 0;
    width: auto;
  }
}
@media (min-width: 768px) {
  .nav__items--button {
    justify-content: center;
  }
}
.nav__items .new-window {
  fill: none;
  height: 1em;
  stroke: #333333;
  width: 1em;
}
@media (min-width: 768px) {
  .nav__items .new-window {
    display: inline-block;
    fill: none;
    height: 1em;
    stroke: #ffffff;
    stroke-width: 1px;
    width: 1em;
  }
}
.nav__text {
  transition: color var(--transition1);
}
@media (min-width: 768px) {
  .nav__text {
    display: inline;
  }
}
.nav__bar {
  border-top: 1px solid #ccc;
  height: 1%;
  flex-grow: 100;
}
@media (min-width: 768px) {
  .nav__bar {
    display: none;
  }
}
.nav__arrow {
  transition: translate var(--transition1);
  width: 1rem;
}
@media (min-width: 768px) {
  .nav.footer-now .nav__text {
    color: #ffffff;
  }
}
.nav.footer-now .nav__links.current::before {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .nav__items--with-sub:hover .submenu {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}
.submenu {
  box-sizing: border-box;
  border-left: 1px solid #ccc;
  padding-left: 1rem;
  width: calc(50% - var(--paddingSide));
}
@media (min-width: 768px) {
  .submenu {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-evenly;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    left: 13em;
    translate: 0 0.5em;
    transition: opacity var(--transition1);
    visibility: hidden;
    width: 13em;
  }
}
.submenu__inner {
  font-size: 1rem;
  list-style-type: none;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .submenu__inner {
    line-height: 2.5em;
  }
}

.humberger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 32px;
  justify-content: space-around;
  position: absolute;
  top: var(--paddingTop);
  right: var(--paddingSide);
  width: 32px;
  z-index: 200;
}
@media (min-width: 768px) {
  .humberger {
    display: none;
  }
}
.humberger__bar {
  background-color: #fff;
  height: 1px;
  transition: background-color var(--transition1), rotate var(--transition1), translate var(--transition1), scale var(--transition1);
  transform-origin: right;
  width: 100%;
}
.humberger.not-top .humberger__bar {
  background-color: var(--mainBlue);
}
.humberger.footer-now .humberger__bar {
  background-color: #fff;
}
.humberger.open .humberger__bar {
  background-color: var(--mainBlue);
}
.humberger.open .humberger__bar--top {
  rotate: -38deg;
  translate: 0 -3.5px;
  scale: 1.2 1;
}
.humberger.open .humberger__bar--bottom {
  rotate: 38deg;
  translate: 0 3.5px;
  scale: 1.2 1;
}

.slider {
  height: 100svh;
  position: relative;
  width: 100%;
}
.slider__inner {
  background-color: black;
  height: 100%;
  position: relative;
  width: 100%;
}
.slider__image {
  height: 100%;
  mix-blend-mode: plus-lighter;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s;
  left: 0;
  width: 100%;
}
.slider__image.active {
  opacity: 1;
}
.slider__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
}
.slider__copy {
  bottom: 0;
  position: absolute;
  right: calc(var(--paddingSide) * 1.5);
  width: 20vw;
}
@media (min-width: 768px) {
  .slider__copy {
    height: 25vh;
    top: var(--paddingTop);
    width: 7.05vh;
  }
}

.container {
  box-sizing: border-box;
  display: inline-block;
  opacity: 0;
  padding: 0 calc(var(--paddingSide) * 2) 0;
  position: relative;
  margin: 6.5rem 0;
  translate: 0 100px;
  transition: translate var(--transition2), opacity var(--transition2);
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 15vw 0 25vw;
    width: 100%;
  }
}
.container.show {
  opacity: 1;
  translate: 0 0;
}
.container.show .subpage__illustration img {
  translate: 0;
}
.container--indent {
  padding: 0 calc(var(--paddingSide) * 2) 0 calc(var(--paddingSide) * 3 + 10vw);
}
@media (min-width: 768px) {
  .container--indent {
    padding: 0 15vw 0 40vw;
  }
}
.container--top {
  padding-top: var(--topContainerPaddingTop);
}
.container--top__large-headline {
  left: calc(var(--paddingSide) * 1.5);
  position: absolute;
  top: 0;
  width: var(--largeHeadlineWidth);
}
@media (min-width: 768px) {
  .container--top__large-headline {
    left: 25vw;
    top: var(--topContainerPaddingTop);
  }
}
.container--top__en-headline {
  height: 1rem;
  padding-right: calc(var(--paddingSide) * 2);
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .container--top__en-headline {
    left: calc(25vw + 2.8rem + 1rem);
    top: var(--topContainerPaddingTop);
  }
}
.container--top__en-headline img {
  height: 1rem;
}
.container--top--about::before {
  content: "";
  border-left: 1px solid #ccc;
  bottom: 0;
  position: absolute;
  left: calc(var(--paddingSide) * 1.5 + var(--largeHeadlineWidth) / 2);
  height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioAbout) - 0.5rem);
}
@media (min-width: 768px) {
  .container--top--about::before {
    left: calc(25vw + 1.4rem);
    height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioAbout) - var(--topContainerPaddingTop) - 0.5rem);
  }
}
.container--top--profile::before {
  content: "";
  border-left: 1px solid #ccc;
  bottom: 0;
  position: absolute;
  left: calc(var(--paddingSide) * 1.5 + var(--largeHeadlineWidth) / 2);
  height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioProfile) - 0.5rem);
}
@media (min-width: 768px) {
  .container--top--profile::before {
    left: calc(25vw + 1.4rem);
    height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioProfile) - var(--topContainerPaddingTop) - 0.5rem);
  }
}
.container--top--services::before {
  content: "";
  border-left: 1px solid #ccc;
  bottom: 0;
  position: absolute;
  left: calc(var(--paddingSide) * 1.5 + var(--largeHeadlineWidth) / 2);
  height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioServices) - 0.5rem);
}
@media (min-width: 768px) {
  .container--top--services::before {
    left: calc(25vw + 1.4rem);
    height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioServices) - var(--topContainerPaddingTop) - 0.5rem);
  }
}
.container--top--price::before {
  content: "";
  border-left: 1px solid #ccc;
  bottom: 0;
  position: absolute;
  left: calc(var(--paddingSide) * 1.5 + var(--largeHeadlineWidth) / 2);
  height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioPrice) - 0.5rem);
}
@media (min-width: 768px) {
  .container--top--price::before {
    left: calc(25vw + 1.4rem);
    height: calc(100% - var(--largeHeadlineWidth) * var(--headLineRatioPrice) - var(--topContainerPaddingTop) - 0.5rem);
  }
}
.container--footer {
  opacity: 1;
  padding-top: calc(var(--topContainerPaddingTop) * 2);
  padding-bottom: calc(var(--topContainerPaddingTop) * 1);
  translate: 0 0;
}
@media (min-width: 768px) {
  .container--footer {
    padding-top: var(--topContainerPaddingTop);
    padding-left: 45vw;
  }
}
.container--footer:last-of-type {
  margin-bottom: 0;
}
.container--footer--news {
  background-color: #eeeeee;
  margin-bottom: 0;
}
.container--footer--inquiry {
  background-color: var(--mainBlue);
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .container--footer--inquiry {
    padding-left: 25vw;
  }
}
.container--footer--inquiry .inquiry-container {
  position: relative;
  margin: 1rem 0;
  width: 100%;
}
.container--footer--inquiry .inquiry-container:first-of-type {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .container--footer--inquiry .inquiry-container:first-of-type {
    margin-top: 0;
  }
}
.container--footer--inquiry .inquiry-container__arrow {
  position: absolute;
  top: 0.7rem;
  left: -13.33vw;
  width: 10vw;
}
@media (min-width: 768px) {
  .container--footer--inquiry .inquiry-container__arrow {
    left: 0;
    top: 1em;
    width: 2.5vw;
  }
}
.container--footer--inquiry .inquiry-container__white-block {
  align-items: center;
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: var(--RoundedBorder);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}
.container--footer--inquiry .inquiry-container__white-block img {
  height: 2.4rem;
  width: auto;
}
.container--footer--inquiry .inquiry-container__white-block p {
  color: #333333;
  font-size: 1.2rem;
}
.container--footer__subhead {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .container--footer__subhead {
    margin-left: 3.5vw;
  }
}
.container--footer__subhead--access {
  margin-left: 0;
}
.container--footer__two-columns-images {
  display: flex;
  justify-content: space-between;
}
.container--footer__two-columns-images .container__image {
  width: 49%;
}
.container--footer--access {
  background-color: var(--mainBlue);
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 25vw;
  position: relative;
}
.container--footer--access .map {
  height: 350px;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .container--footer--access .map {
    margin-bottom: 3rem;
  }
}
.container--footer__large-headline {
  left: calc(var(--paddingSide) * 2);
  position: absolute;
  top: calc(var(--topContainerPaddingTop) * 0.75);
  height: 3rem;
}
@media (min-width: 768px) {
  .container--footer__large-headline {
    top: var(--topContainerPaddingTop);
    left: 25vw;
  }
}
.container--footer__large-headline img {
  height: 100%;
}
.container--footer__en-headline {
  height: 1rem;
  padding-right: calc(var(--paddingSide) * 2);
  position: absolute;
  right: 0;
  top: calc(var(--topContainerPaddingTop) * 0.75);
}
@media (min-width: 768px) {
  .container--footer__en-headline {
    top: calc(var(--topContainerPaddingTop) + 3rem);
    left: calc(25vw + 0.25rem);
  }
}
.container--footer__en-headline img {
  height: 1rem;
}
.container__text {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  line-height: 1.75em;
  margin-bottom: 1em;
  text-align: justify;
  width: 100%;
}
@media (min-width: 768px) {
  .container__text {
    box-sizing: border-box;
    padding-left: 5vw;
  }
}
@media (min-width: 768px) {
  .container__text--no-indent {
    padding-left: 0;
  }
}
.container__sumall-text {
  font-size: 10rem;
}
.container__image {
  width: 100%;
}
.container__image--right-crop {
  width: calc(100% + var(--paddingSide) * 2);
}
.container__image--profile {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(70vw + var(--paddingSide));
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .container__image--profile {
    height: 20vw;
  }
}
@media (min-width: 768px) {
  .container__image--about-container {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: 100%;
  }
  .container__image--about-container img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 60%;
  }
  .container__image--about-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 40%;
  }
  .container__image--about-inner img {
    width: 100%;
  }
}
.container__link-button {
  align-items: center;
  border: 1px solid var(--mainBlue);
  border-radius: var(--RoundedBorder);
  box-sizing: border-box;
  color: var(--mainBlue);
  display: flex;
  font-size: 1rem;
  height: 3.6rem;
  justify-content: center;
  margin-left: 10vw;
  text-align: right;
  width: 63.66vw;
}
@media (min-width: 768px) {
  .container__link-button {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-left: 0;
    transition: background-color var(--transition1), color var(--transition1);
    width: 20em;
  }
  .container__link-button:hover {
    background-color: var(--mainBlue);
    color: white;
  }
}
.container__link-button img {
  height: 1.6rem;
  width: auto;
}
.container__period {
  background-color: #ccc;
  bottom: 0;
  border-radius: 100%;
  position: absolute;
  left: 10%;
  height: 3.8px;
  translate: -1.4px 0;
  width: 3.8px;
}
@media (min-width: 768px) {
  .container__period {
    left: calc(25vw + 1.4rem);
  }
}

@media (min-width: 768px) {
  .contents-container {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15vw 0 30vw;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .top-profile__links-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.top-profile__links {
  display: block;
  line-height: initial;
  margin-bottom: 3.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-profile__links {
    margin-bottom: 0;
    width: 20vw;
  }
  .top-profile__links:hover .top-profile__arrow-container {
    translate: 1rem 0;
  }
}
.top-profile__links:last-of-type {
  margin-bottom: 0;
}
.top-profile__name-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.top-profile__shoulder {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5em;
  width: 30vw;
}
@media (min-width: 768px) {
  .top-profile__shoulder {
    width: 20vw;
  }
}
.top-profile__name {
  font-size: 1.8rem;
  font-weight: normal;
  height: 4.4rem;
  letter-spacing: 0.125em;
  line-height: 1em;
  width: 30vw;
}
.top-profile__name img {
  height: 1rem;
  width: auto;
}
.top-profile__arrow-container {
  flex: 1;
  text-align: right;
}
@media (min-width: 768px) {
  .top-profile__arrow-container {
    transition: translate var(--transition1);
  }
}
.top-profile__arrow {
  translate: 0 0.25rem;
  width: 1rem;
}

.top-services__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .top-services__cards {
    flex-direction: row;
  }
}
.top-services__card {
  border-radius: 10px;
  box-shadow: 0px 0px 10px -5px #666666;
  box-sizing: border-box;
  display: block;
  height: 28rem;
  overflow: hidden;
  padding: 1rem 0 0 2rem;
  position: relative;
  transition: translate var(--transition1), box-shadow var(--transition1);
  width: 100%;
}
@media (min-width: 768px) {
  .top-services__card:hover {
    translate: 0 2px;
    box-shadow: 0px 0px 2px -1px #333333;
  }
}
.top-services__card:hover .top-services__arrow {
  translate: 0.8rem 0;
}
.top-services__card:nth-of-type(1) .top-services__illustration {
  bottom: 1rem;
  right: -2vw;
  width: 36.66vw;
}
@media (min-width: 768px) {
  .top-services__card:nth-of-type(1) .top-services__illustration {
    bottom: 2.5rem;
    right: 18%;
    width: 57.5%;
  }
}
.top-services__card:nth-of-type(2) .top-services__illustration {
  bottom: -1rem;
  right: -6vw;
  width: 46vw;
}
@media (min-width: 768px) {
  .top-services__card:nth-of-type(2) .top-services__illustration {
    bottom: 4rem;
    right: 20%;
    width: 60%;
  }
}
.top-services__card:nth-of-type(3) .top-services__illustration {
  bottom: -1rem;
  right: 8vw;
  width: 15vw;
}
@media (min-width: 768px) {
  .top-services__card:nth-of-type(3) .top-services__illustration {
    bottom: 3.5rem;
    right: 40%;
    width: 20%;
  }
}
.top-services__headline {
  font-size: 1.6rem;
  position: relative;
}
@media (min-width: 768px) {
  .top-services__headline {
    font-size: 1.4rem;
    letter-spacing: 0.025em;
  }
}
.top-services__headline::before {
  background-color: var(--mainBlue);
  border-radius: 100%;
  content: "";
  height: 0.6em;
  position: absolute;
  width: 0.6em;
  top: calc(50% - 0.3em);
  left: -0.8em;
}
.top-services__items {
  position: relative;
  list-style-type: none;
}
.top-services__item {
  font-size: 1.4rem;
  line-height: 1.75em;
  position: relative;
}
@media (min-width: 768px) {
  .top-services__item {
    font-size: 1.2rem;
    letter-spacing: 0.025em;
  }
}
.top-services__item::before {
  background-color: var(--textColor);
  border-radius: 100%;
  content: "";
  height: 0.25em;
  position: absolute;
  width: 0.25em;
  top: calc(50% - 0.125em);
  left: -0.5em;
}
.top-services__arrow {
  height: auto;
  width: 1.25rem;
  position: absolute;
  top: 2rem;
  right: 1rem;
}
@media (min-width: 768px) {
  .top-services__arrow {
    bottom: 1rem;
    top: auto;
    transition: translate var(--transition1);
  }
}
.top-services__illustration {
  position: absolute;
  height: auto;
}

.top-price {
  font-size: 1.4rem;
  line-height: initial;
}

footer {
  position: relative;
  z-index: 100;
}

@media (min-width: 768px) {
  .footer-two-columns-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .footer-two-columns-wrapper > p {
    padding-top: 8rem;
    width: 15vw;
  }
  .footer-two-columns-wrapper__right {
    width: 40vw;
  }
}
.footer-section-with-border::before {
  border-top: 1px solid #ffffff;
  content: "";
  left: calc(var(--paddingSide) * 2);
  opacity: 0.25;
  position: absolute;
  top: 0;
  width: calc(100vw - var(--paddingSide) * 2);
}
@media (min-width: 768px) {
  .footer-section-with-border::before {
    left: 5vw;
    width: calc(100% - 5vw);
  }
}

.form {
  width: 100%;
}
.form__container {
  width: 100%;
}
.form__inner {
  font-size: 1.4rem;
  list-style-type: none;
  margin-bottom: 0.75em;
  width: 100%;
}
.form__label {
  display: block;
  font-size: 1.4rem;
  position: relative;
  width: 100%;
}
.form__label span {
  font-size: 1rem;
}
.form__label::before {
  content: "";
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  left: -0.5em;
  height: 3px;
  top: 0.9em;
  width: 3px;
}
.form__text {
  background-color: #ffffff;
  border: none;
  box-sizing: border-box;
  border-radius: var(--RoundedBorder);
  padding-left: 1em;
  height: 3em;
  width: 100%;
}
.form__text::-moz-placeholder {
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  color: #999999;
}
.form__text::placeholder {
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  color: #999999;
}
.form__radio {
  box-sizing: border-box;
  border: none;
  font-size: 1.4rem;
  margin-bottom: 1em;
  width: 100%;
}
.form__radio ul {
  background-color: #ffffff;
  border-radius: var(--RoundedBorder);
  width: 100%;
}
.form__radio li {
  align-items: center;
  border-top: 1px solid #cccccc;
  box-sizing: border-box;
  color: #333333;
  cursor: pointer;
  display: flex;
  list-style-type: none;
  height: 3em;
  padding-left: 1em;
  margin-left: 0.5em;
  width: calc(100% - 1em);
}
.form__radio li:first-of-type {
  border-top: none;
}
.form__radio li label {
  cursor: pointer;
  width: 100%;
}
.form__radio li label input {
  margin-right: 1em;
}
.form textarea {
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: var(--RoundedBorder);
  height: 30rem;
  padding: 0.5em 1em;
  width: 100%;
}
.form textarea::-moz-placeholder {
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  color: #999999;
}
.form textarea::placeholder {
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  color: #999999;
}
.form__submit {
  background-color: #333333;
  border: none;
  border-radius: 3px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  height: 3em;
  margin-top: 1em;
  width: 100%;
}
@media (min-width: 768px) {
  .form__submit {
    transition: background-color var(--transition1);
  }
  .form__submit:hover {
    background-color: #000;
    text-decoration: underline;
  }
}

.footer-navigation {
  background-color: var(--mainBlue);
  box-sizing: border-box;
  height: auto;
  padding: 12rem 6.66vw 0 20vw;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-navigation {
    height: 20rem;
    padding: 3rem 5rem 0 25vw;
  }
}
.footer-navigation__logo {
  position: absolute;
  top: 3rem;
  left: 6.66vw;
}
@media (min-width: 768px) {
  .footer-navigation__logo {
    left: 5vw;
  }
}
.footer-navigation__logo img {
  height: auto;
  width: 53.33vw;
}
@media (min-width: 768px) {
  .footer-navigation__logo img {
    width: 15vw;
  }
}
.footer-navigation__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-navigation__items {
    justify-content: space-between;
  }
}
.footer-navigation__item {
  font-size: 1.4rem;
  list-style-type: none;
  height: 4.5em;
  width: 36.66vw;
}
@media (min-width: 768px) {
  .footer-navigation__item {
    width: auto;
  }
}
.footer-navigation__item a {
  color: #ffffff;
  font-feature-settings: "pkna";
}
.footer-navigation__sub-items {
  box-sizing: border-box;
  font-size: 1rem;
  padding-left: 1rem;
}
.footer-navigation__sub-item {
  list-style-type: disc;
}
.footer-navigation__sub-item::marker {
  color: #ffffff;
}

.copyright {
  align-items: center;
  background-color: var(--mainBlue);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.5333333333);
  display: flex;
  padding: 2rem 0 2rem calc(var(--paddingSide) * 2);
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .copyright {
    padding-left: 5vw;
  }
}

.subpage-hero {
  height: 50vh;
  padding-top: 8rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .subpage-hero {
    box-sizing: border-box;
    padding-top: 1rem;
    padding-left: 25vw;
    height: 75vh;
  }
}
.subpage-hero__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.subpage-hero__title {
  background-color: #ffffff;
  bottom: 1em;
  line-height: 1em;
  padding: 0.25em 0.25em 0;
  position: absolute;
  right: 1em;
}
@media (min-width: 768px) {
  .subpage-hero__title {
    bottom: 6em;
    left: 30vw;
    padding: 0.25em;
  }
}
.subpage-hero__title--profile {
  height: 3.2rem;
}
@media (min-width: 768px) {
  .subpage-hero__title--profile {
    height: auto;
    width: 2.4rem;
  }
}
.subpage-hero__title--registration {
  height: 3.2rem;
}
@media (min-width: 768px) {
  .subpage-hero__title--registration {
    height: auto;
    width: 2.4rem;
  }
}
.subpage-hero__title--after {
  height: 4rem;
}
@media (min-width: 768px) {
  .subpage-hero__title--after {
    height: auto;
    width: 4.2rem;
  }
}
.subpage-hero__title--before {
  height: 4rem;
}
@media (min-width: 768px) {
  .subpage-hero__title--before {
    height: auto;
    width: 4.2rem;
  }
}
.subpage-hero__title--price {
  height: 3.2rem;
}
@media (min-width: 768px) {
  .subpage-hero__title--price {
    height: auto;
    width: 2.4rem;
  }
}

.subpage {
  padding-top: 0;
}
@media (min-width: 768px) {
  .subpage {
    padding: 0 15vw 0 30vw;
    position: relative;
  }
  .subpage::after {
    border-left: 1px solid #eeeeee;
    content: "";
    height: calc(100% - 5.4rem);
    left: 0.5rem;
    position: absolute;
    top: 3.6rem;
  }
  .subpage__period {
    background-color: #ccc;
    border-radius: 100%;
    bottom: 1.8rem;
    left: 0.5rem;
    position: absolute;
    height: 3.8px;
    width: 3.8px;
    z-index: 10;
    translate: -40% 0;
  }
}
@media (min-width: 768px) {
  .subpage--content {
    padding: 0 0 0 0;
    width: calc(50% - 2.5vw);
  }
}
.subpage--profile {
  padding-top: 10rem;
}
@media (min-width: 768px) {
  .subpage--profile {
    padding: 0 15vw 0 40vw;
  }
  .subpage--profile::after {
    border-left: 1px solid #eeeeee;
    content: "";
    height: calc(100% - 8.5rem);
    left: calc(24.75vw + 0.5rem);
    position: absolute;
    top: 6.7rem;
  }
  .subpage--profile .subpage__period {
    background-color: #ccc;
    border-radius: 100%;
    bottom: 1.8rem;
    left: calc(24.75vw + 0.5rem);
    position: absolute;
    height: 3.8px;
    width: 3.8px;
    z-index: 10;
    translate: -40% 0;
  }
}
.subpage:nth-of-type(n+2)::before {
  content: "";
  border-top: 1px solid #eeeeee;
  position: absolute;
  width: calc(100% - var(--paddingSide) * 2);
  top: -5rem;
  left: calc(var(--paddingSide) * 2);
}
@media (min-width: 768px) {
  .subpage:nth-of-type(n+2)::before {
    border-top: none;
  }
}
.subpage__image {
  height: 70vw;
  margin-bottom: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 80vw;
}
@media (min-width: 768px) {
  .subpage__image {
    height: 25vw;
    width: 100%;
  }
}
.subpage__name-container {
  position: absolute;
  top: 0;
  left: 6.666vw;
}
@media (min-width: 768px) {
  .subpage__name-container {
    left: 25vw;
  }
}
@media (min-width: 768px) {
  .subpage__name-container--content {
    left: 0;
    width: 100%;
  }
}
.subpage__shoulder {
  font-size: 1rem;
  line-height: 1em;
}
.subpage__name {
  font-size: 1.8rem;
}
.subpage__name img {
  display: block;
  height: 1rem;
  width: auto;
}
.subpage__data-container {
  font-size: 1.2rem;
  padding: 1rem 0;
  position: relative;
}
.subpage__data-container::before {
  border-top: 1px solid #cccccc;
  content: "";
  position: absolute;
  top: 0;
  left: -1em;
  width: 4em;
}
@media (min-width: 768px) {
  .subpage__data-container.registration {
    padding-left: 5vw;
  }
}
@media (min-width: 768px) {
  .subpage__data-container.registration::before {
    translate: 5vw 0;
  }
}
.subpage__data-header {
  font-size: 1.2rem;
}
.subpage__illustration {
  height: 80vw;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .subpage__illustration {
    box-sizing: border-box;
    padding-left: 5vw;
    height: 25vw;
  }
}
.subpage__illustration img {
  bottom: 0;
  left: 0;
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
  position: absolute;
  transition: translate 2s var(--easeOutCubic) 0.25s;
  width: 100%;
}
@media (min-width: 768px) {
  .subpage__illustration img {
    box-sizing: border-box;
    padding: 0 1vw 7.5% 5vw;
    width: 100%;
  }
}
.subpage__illustration img:first-of-type {
  translate: 2rem -1rem;
}
.subpage__illustration img:last-of-type {
  translate: -2rem 1rem;
}
.subpage__illustration__registration--1 {
  bottom: 0;
}
.subpage__illustration__registration--2 {
  bottom: 0;
}
.subpage__illustration__registration--3 {
  bottom: 0;
}
.subpage__illustration__after--1 {
  bottom: 0;
}
.subpage__illustration__after--2 {
  bottom: 0;
}
.subpage__illustration__after--3 {
  bottom: 0;
}
.subpage__illustration__after--4 {
  bottom: 0;
}
.subpage__illustration__after--5 {
  bottom: 0;
}
.subpage__illustration__after--6 {
  bottom: 0;
}
.subpage__illustration__before--1 {
  bottom: 0;
}
.subpage__illustration__before--2 {
  bottom: 0;
}
.subpage__illustration__before--3 {
  bottom: 0;
}
.subpage__illustration__before--4 {
  bottom: 0;
}
.subpage__illustration__before--5 {
  bottom: 0;
}
.subpage__illustration__before--6 {
  bottom: 0;
}
.subpage__illustration__before--7 {
  bottom: 0;
}
.subpage__illustration__before--8 {
  bottom: 0;
}

.process {
  margin-top: 5rem;
  margin-bottom: 0;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .process {
    padding-left: 55vw;
  }
}
.process::before {
  content: "";
  border-top: 0.5px solid var(--mainBlue);
  position: absolute;
  top: -5rem;
  left: calc(var(--paddingSide) * 2);
  width: calc(100% - var(--paddingSide) * 2);
}
@media (min-width: 768px) {
  .process::before {
    left: 30vw;
    width: 55vw;
  }
}
.process__title {
  color: var(--mainBlue);
  font-size: 1.8rem;
  left: calc(var(--paddingSide) * 2);
  top: -2.5rem;
  position: absolute;
}
@media (min-width: 768px) {
  .process__title {
    left: 30vw;
    line-height: 1em;
    padding-top: 7.75rem;
  }
}
.process__container {
  margin-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .process__container {
    padding-top: 0;
  }
}
.process__container:not(:last-of-type)::before {
  border-left: 1px solid #eeeeee;
  content: "";
  height: 100%;
  left: -10vw;
  position: absolute;
  top: 3.8rem;
}
@media (min-width: 768px) {
  .process__container:not(:last-of-type)::before {
    left: -9.5vw;
  }
}
.process__headline {
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: calc(-10vw - var(--paddingSide));
}
@media (min-width: 768px) {
  .process__headline {
    left: -10vw;
    line-height: 1.5em;
  }
}
.process__period {
  background-color: #ccc;
  bottom: -4rem;
  border-radius: 100%;
  position: absolute;
  left: -10vw;
  height: 3.8px;
  translate: -1.4px 0;
  width: 3.8px;
}
@media (min-width: 768px) {
  .process__period {
    left: -9.5vw;
  }
}
@media (min-width: 768px) {
  .process .container__text {
    padding-left: 0;
  }
}

.confirm {
  margin-top: 8rem;
  padding-top: 2rem;
}
.confirm::before {
  border-top: 0.5px solid var(--mainBlue);
  content: "";
  width: calc(100% - var(--paddingSide) * 2);
  position: absolute;
  top: 0;
}
.confirm__table {
  font-size: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.confirm__head {
  height: 3.2rem;
}
.confirm__head img {
  height: 100%;
  width: auto;
}
.confirm__item {
  display: block;
  margin-bottom: 2.5em;
}
.confirm__item-name {
  border-top: 1px solid #cccccc;
  color: #999999;
  padding-top: 1em;
  text-align: left;
  width: 34%;
}
.confirm__item-content {
  color: #333333;
  font-size: 1.2rem;
  padding: 1em 0 0 1em;
  position: relative;
  text-align: left;
  width: calc(70vw + var(--paddingSide));
}
.confirm__item-content::before {
  border-top: 1px solid #cccccc;
  content: "";
  position: absolute;
  top: 0;
  left: 1em;
  width: 100%;
}
.confirm__text {
  font-size: 1.2rem;
}
.confirm__buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
}
.confirm__button {
  align-items: center;
  border: none;
  background-color: var(--mainBlue);
  border-radius: var(--RoundedBorder);
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: "yu-gothic-pr6n", "dnp-shuei-gothic-gin-std", sans-serif;
  height: 3.6rem;
  justify-content: center;
  letter-spacing: 0.1em;
  text-align: center;
  width: 63.66vw;
}
.confirm__button--gray {
  background-color: #999999;
}
.confirm__button a {
  color: #ffffff;
  font-size: 1.4rem;
}
.confirm__error_messe {
  color: var(--mainBlue);
  font-size: 1.4rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */