@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
}

.container {
  width: 100%;
  max-width: 118rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 663px;
  height: 94px;
  border-radius: 100px;
  border: 2px solid #fcf9ee;
  box-shadow: 8px 8px 16px rgba(122, 122, 122, 0.64);
  background: linear-gradient(to right, #e4717f, #ef835b);
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .c-button {
    width: 100%;
    height: 64px;
    box-shadow: 8px 8px 16px rgba(122, 122, 122, 0.64);
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.c-button__line {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 760px) {
  .c-button__line {
    width: 32px;
    height: 32px;
  }
}
.c-button__arrow {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 760px) {
  .c-button__arrow {
    width: 24px;
    height: 24px;
  }
}
.c-button__text {
  font-size: 28px;
  color: #fcf9ee;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .c-button__text {
    font-size: 20px;
  }
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.l-footer {
  background-color: #c08990;
  padding-top: min(40px, 3.8834951456vw);
  padding-bottom: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .l-footer {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
.l-footer__container {
  max-width: 1150px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px) {
  .l-footer__container {
    max-width: 1150px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-footer__wrap {
  margin-bottom: min(30px, 2.9126213592vw);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .l-footer__wrap {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
.l-footer__copy {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: min(12px, 1.1650485437vw);
  padding-top: min(16px, 1.5533980583vw);
  border-top: 1px solid #fff;
}
@media screen and (max-width: 760px) {
  .l-footer__copy {
    font-size: 12px;
    padding-top: 16px;
  }
}
.l-footer__arrow {
  width: min(5px, 0.4854368932vw);
}
@media screen and (max-width: 760px) {
  .l-footer__arrow {
    width: 5px;
  }
}
.l-footer__mouth {
  width: min(252px, 24.4660194175vw);
  margin-bottom: min(7px, 0.6796116505vw);
}
@media screen and (max-width: 760px) {
  .l-footer__mouth {
    width: 280px;
    margin-bottom: 7px;
  }
}
.l-footer__button {
  width: min(350px, 33.9805825243vw);
  height: min(58px, 5.6310679612vw);
}
@media screen and (max-width: 760px) {
  .l-footer__button {
    width: 350px;
    height: 58px;
  }
}
.l-footer__button-line {
  width: min(26px, 2.5242718447vw);
  height: min(26px, 2.5242718447vw);
}
@media screen and (max-width: 760px) {
  .l-footer__button-line {
    width: 26px;
    height: 26px;
  }
}
.l-footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .l-footer__right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 67px;
  }
}
.l-footer__button-text {
  font-size: min(18px, 1.7475728155vw);
}
@media screen and (max-width: 760px) {
  .l-footer__button-text {
    font-size: 18px;
  }
}
.l-footer__button-arrow {
  width: min(17px, 1.6504854369vw);
  height: min(17px, 1.6504854369vw);
}
@media screen and (max-width: 760px) {
  .l-footer__button-arrow {
    width: 17px;
    height: 17px;
  }
}
.l-footer__anker {
  width: min(200px, 19.4174757282vw);
  margin-right: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .l-footer__anker {
    width: 200px;
    margin-right: 0;
    margin-bottom: 190px;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 760px) {
  .l-footer__left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.l-footer__logo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__ul {
  display: flex;
  flex-direction: column;
  row-gap: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .l-footer__ul {
    row-gap: 8px;
  }
}
.l-footer__a {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(10px, 0.9708737864vw);
       column-gap: min(10px, 0.9708737864vw);
  transition: all 0.3s;
}
.l-footer__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .l-footer__a {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.l-footer__p {
  font-size: min(14px, 1.359223301vw);
  color: #fff !important;
}
@media screen and (max-width: 760px) {
  .l-footer__p {
    font-size: 14px;
  }
}

.l-header {
  height: 80px;
  width: 100%;
  line-height: 80px;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .l-header {
    height: 64px;
    line-height: 64px;
  }
}
.l-header__container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
  height: 80px;
  line-height: 80px;
}
@media screen and (max-width: 760px) {
  .l-header__container {
    padding-left: 16px;
    padding-right: 16px;
    height: 64px;
    line-height: 64px;
  }
}
.l-header__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  line-height: 80px;
  height: 100%;
}
@media screen and (max-width: 760px) {
  .l-header__wrap {
    line-height: 64px;
  }
}
.l-header__anker {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 200px;
}
@media screen and (max-width: 760px) {
  .l-header__anker {
    width: 160px;
  }
}
.l-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__logo {
  width: 100%;
}
.l-header__button {
  width: 323px;
  height: 60px;
}
.l-header__button-text {
  font-size: 20px;
  font-weight: 700;
}
.l-header__button-line {
  width: 28px;
  height: 28px;
}
.l-header__button-arrow {
  width: 20px;
  height: 20px;
}
.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-right: 16px;
}
.l-header__li {
  font-size: 16px;
}
.l-header__a {
  color: #dc7f8a !important;
  font-weight: 700;
  transition: all 0.3s;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.p-faq {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background-color: #f4f4f4;
}
@media screen and (max-width: 760px) {
  .p-faq {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-faq__container {
  max-width: 1030px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-faq__h2 {
  font-size: 40px;
  font-weight: 700;
  color: #dc7f8a;
  margin-bottom: 32px;
}
@media screen and (max-width: 760px) {
  .p-faq__h2 {
    font-size: 24px;
  }
}
.p-faq__group:not(:last-child) {
  margin-bottom: 8px;
}
.p-faq__group.is-open .p-faq__icon-plus::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq__dl {
  background-color: #fff;
  border-radius: 8px;
  padding-left: 48px;
  padding-right: 48px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .p-faq__dl {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.p-faq__question {
  cursor: pointer;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.p-faq__question:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-faq__dt-english {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #dc7f8a;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .p-faq__dt-english {
    font-size: 24px;
  }
}
.p-faq__dt-p {
  font-size: 20px;
  font-weight: 500;
  color: #444444;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-faq__dt-p {
    font-size: 16px;
  }
}
.p-faq__dd-p {
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  text-align: left;
}
.p-faq__dd-english {
  color: #eccccd;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .p-faq__dd-english {
    font-size: 24px;
  }
}
.p-faq__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.p-faq__flex--special {
  border-top: 1px dashed #444444;
}
.p-faq__icon {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .p-faq__icon {
    width: 16px;
    height: 16px;
  }
}
.p-faq__icon-plus {
  position: relative;
  width: 25px;
  height: 1px;
  background-color: #e14a5c;
  transition: all 0.3s ease;
}
.p-faq__icon-plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 25px;
  height: 1px;
  background-color: #e14a5c;
  transition: all 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__icon-plus::before {
    width: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-faq__icon-plus {
    width: 16px;
  }
}

.p-menu {
  background: linear-gradient(to right top, #f3e8e7, #fbd8d5);
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
  border-top-left-radius: min(258px, 25.0485436893vw);
}
@media screen and (max-width: 760px) {
  .p-menu {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top-left-radius: 40px;
  }
}
.p-menu--2 {
  border-bottom-right-radius: min(258px, 25.0485436893vw);
  border-top-left-radius: 0;
}
@media screen and (max-width: 760px) {
  .p-menu--2 {
    border-bottom-right-radius: 40px;
  }
}
.p-menu__container {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-menu__container {
    max-width: 1150px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-menu__title-group {
  margin-bottom: min(32px, 3.1067961165vw);
  display: flex;
  flex-direction: row;
  -moz-column-gap: min(48px, 4.6601941748vw);
       column-gap: min(48px, 4.6601941748vw);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-menu__title-group {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: center;
  }
}
.p-menu__titles {
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 760px) {
  .p-menu__titles {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.p-menu__h2 {
  font-size: min(48px, 4.6601941748vw);
  font-weight: 700;
  color: #e14a5c;
}
@media screen and (max-width: 760px) {
  .p-menu__h2 {
    font-size: 28px;
  }
}
.p-menu__title-ico {
  width: min(96px, 9.3203883495vw);
  height: min(96px, 9.3203883495vw);
}
@media screen and (max-width: 760px) {
  .p-menu__title-ico {
    width: 64px;
    height: 64px;
  }
}
.p-menu__medicine {
  width: min(302px, 29.3203883495vw);
}
@media screen and (max-width: 760px) {
  .p-menu__medicine {
    width: 201px;
  }
}
.p-menu__diagram-group {
  margin-bottom: min(8px, 0.7766990291vw);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-group {
    margin-bottom: 8px;
  }
}
.p-menu__diagram {
  width: 100%;
}
.p-menu__kome {
  margin-bottom: min(32px, 3.1067961165vw);
  font-size: min(14px, 1.359223301vw);
  color: #666666;
}
@media screen and (max-width: 760px) {
  .p-menu__kome {
    font-size: 12px;
    margin-bottom: 32px;
  }
}
.p-menu__calc-group {
  margin-bottom: min(32px, 3.1067961165vw);
}
@media screen and (max-width: 760px) {
  .p-menu__calc-group {
    margin-bottom: 32px;
  }
}
.p-menu__calc-parent {
  display: flex;
  flex-direction: column;
  row-gap: min(8px, 0.7766990291vw);
  max-width: min(463px, 44.9514563107vw);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-parent {
    max-width: 463px;
    row-gap: 8px;
  }
}
.p-menu__calc-up {
  height: min(63px, 6.1165048544vw);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-up {
    height: 44px;
  }
}
.p-menu__calc-menu {
  margin-right: min(10px, 0.9708737864vw);
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-menu {
    font-size: 20px;
    margin-right: 10px;
  }
}
.p-menu__calc-up-cost {
  font-size: min(48px, 4.6601941748vw);
  color: #e14a5c;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-up-cost {
    font-size: 36px;
  }
}
.p-menu__calc-up-cost span {
  font-size: min(20px, 1.9417475728vw);
}
@media screen and (max-width: 760px) {
  .p-menu__calc-up-cost span {
    font-size: 16px;
  }
}
.p-menu__calc-kome {
  text-align: right;
  font-size: min(14px, 1.359223301vw);
  color: #666666;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-kome {
    font-size: 12px;
  }
}
.p-menu__calc-down {
  display: flex;
  flex-direction: row;
  -moz-column-gap: min(8px, 0.7766990291vw);
       column-gap: min(8px, 0.7766990291vw);
  align-items: center;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-down {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-menu__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  background-color: #fff;
  height: min(64px, 6.213592233vw);
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-menu__box {
    -moz-column-gap: 8px;
         column-gap: 8px;
    height: 44px;
  }
}
.p-menu__calc-ico {
  width: min(48px, 4.6601941748vw);
  height: min(48px, 4.6601941748vw);
}
@media screen and (max-width: 760px) {
  .p-menu__calc-ico {
    width: 28px;
    height: 28px;
  }
}
.p-menu__diagram-button {
  width: min(200px, 19.4174757282vw);
  position: absolute;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);
  transition: all 0.3s;
  right: 3.5%;
  border-radius: min(30px, 2.9126213592vw);
}
.p-menu__diagram-button--1 {
  top: 15%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--1 {
    top: 19%;
  }
}
.p-menu__diagram-button--2 {
  top: 38%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--2 {
    top: 40%;
  }
}
.p-menu__diagram-button--3 {
  top: 60.5%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--3 {
    top: 61%;
  }
}
.p-menu__diagram-button--4 {
  top: 83%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--4 {
    top: 82%;
  }
}
.p-menu__diagram-button--5 {
  top: 19%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--5 {
    top: 21.5%;
  }
}
.p-menu__diagram-button--6 {
  top: 48%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--6 {
    top: 49%;
  }
}
.p-menu__diagram-button--7 {
  top: 77%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--7 {
    top: 77%;
  }
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button {
    right: 2.5%;
    border-radius: 20px;
    width: 59px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);
  }
}
.p-menu__diagram-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-menu__diagram-button-content {
  width: 100%;
}

.p-start {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-start {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-start__container {
  max-width: 1120px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px) {
  .p-start__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1120px;
  }
}
.p-start__container-2 {
  max-width: 1022px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-start__container-2 {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1022px;
  }
}
.p-start__button {
  height: min(100px, 9.7087378641vw);
}
@media screen and (max-width: 760px) {
  .p-start__button {
    height: 100px;
  }
}
.p-start__text {
  text-align: center;
}
.p-start__up {
  margin-bottom: min(48px, 4.6601941748vw);
}
@media screen and (max-width: 760px) {
  .p-start__up {
    margin-bottom: 32px;
  }
}
.p-start__down {
  row-gap: min(32px, 3.1067961165vw);
  -moz-column-gap: min(32px, 3.1067961165vw);
       column-gap: min(32px, 3.1067961165vw);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: min(51px, 4.9514563107vw);
}
@media screen and (max-width: 760px) {
  .p-start__down {
    row-gap: 16px;
    margin-bottom: 32px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.p-start__child {
  width: calc((100% - min(32px, 3.1067961165vw)) / 2);
  border-radius: min(5px, 0.4854368932vw);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-start__child {
    width: 100%;
    border-radius: 5px;
  }
}
.p-start__img {
  width: 100%;
  height: min(199px, 19.3203883495vw);
  border-top-left-radius: min(5px, 0.4854368932vw);
  border-top-right-radius: min(5px, 0.4854368932vw);
}
@media screen and (max-width: 760px) {
  .p-start__img {
    height: 142px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}
.p-start__content {
  padding: min(16px, 1.5533980583vw) min(24px, 2.3300970874vw);
  background-color: #fbfbfb;
  border-bottom-left-radius: min(5px, 0.4854368932vw);
  border-bottom-right-radius: min(5px, 0.4854368932vw);
  min-height: min(169px, 16.4077669903vw);
}
@media screen and (max-width: 760px) {
  .p-start__content {
    padding: 16px;
    min-height: 146px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.p-start__number {
  width: min(64px, 6.213592233vw);
  height: min(64px, 6.213592233vw);
  font-size: min(28px, 2.7184466019vw);
  color: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #dc7f8a;
  border-radius: 50%;
  top: min(8px, 0.7766990291vw);
  left: min(8px, 0.7766990291vw);
  position: absolute;
}
@media screen and (max-width: 760px) {
  .p-start__number {
    width: 48px;
    height: 48px;
    font-size: 21px;
    top: 8px;
    left: 8px;
  }
}
.p-start__h3 {
  font-size: min(22px, 2.1359223301vw);
  font-weight: 700;
  color: #dc7f8a;
  margin-bottom: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-start__h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-start__description {
  font-size: min(16px, 1.5533980583vw);
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-start__description {
    font-size: 14px;
  }
}
.p-start__description span {
  font-size: min(14px, 1.359223301vw);
}
@media screen and (max-width: 760px) {
  .p-start__description span {
    font-size: 11px;
  }
}
.p-start__center {
  text-align: center;
  margin-bottom: min(50px, 4.854368932vw);
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 760px) {
  .p-start__center {
    margin-bottom: 32px;
  }
}
.p-start__airplane {
  width: min(607px, 58.932038835vw);
  margin: 0 auto;
  margin-bottom: min(20px, 1.9417475728vw);
}
@media screen and (max-width: 760px) {
  .p-start__airplane {
    margin-bottom: 45px;
    width: 191px;
  }
}
.p-start__title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(10px, 0.9708737864vw);
       column-gap: min(10px, 0.9708737864vw);
  margin-bottom: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-start__title-group {
    margin-bottom: 8px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.p-start__boy {
  position: absolute;
  width: min(120px, 11.6504854369vw);
  top: 60%;
  transform: translateY(-50%);
}
.p-start__boy--1 {
  left: min(-100px, -9.7087378641vw);
}
@media screen and (max-width: 760px) {
  .p-start__boy--1 {
    left: -40px;
  }
}
.p-start__boy--2 {
  right: min(-100px, -9.7087378641vw);
}
@media screen and (max-width: 760px) {
  .p-start__boy--2 {
    right: -40px;
  }
}
@media screen and (max-width: 760px) {
  .p-start__boy {
    width: 60px;
    transform: translateY(0);
    top: -25px;
  }
}
.p-start__h2 {
  font-size: min(29px, 2.8155339806vw);
  font-weight: 700;
  color: #dc7f8a;
}
@media screen and (max-width: 760px) {
  .p-start__h2 {
    font-size: 24px;
  }
}
.p-start__logo {
  width: min(224px, 21.7475728155vw);
}
@media screen and (max-width: 760px) {
  .p-start__logo {
    width: 200px;
  }
}
.p-start__ha {
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-start__ha {
    font-size: 20px;
  }
}
.p-start__groups {
  margin-bottom: min(16px, 1.5533980583vw);
  -moz-column-gap: min(40px, 3.8834951456vw);
       column-gap: min(40px, 3.8834951456vw);
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-start__groups {
    margin-bottom: 16px;
    row-gap: 24px;
    flex-direction: column;
  }
}
.p-start__children {
  padding: min(24px, 2.3300970874vw) min(31px, 3.0097087379vw);
  border: 3px solid #e4717f;
  border-radius: min(16px, 1.5533980583vw);
  display: flex;
  flex-direction: column;
  row-gap: min(8px, 0.7766990291vw);
  width: min(540px, 52.427184466vw);
  position: relative;
  transition: all 0.3s;
}
.p-start__children:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-start__children {
    padding: 10px 16px;
    border-radius: 8px;
    row-gap: 8px;
    width: 100%;
  }
}
.p-start__arrow {
  position: absolute;
  width: min(32px, 3.1067961165vw);
  height: min(32px, 3.1067961165vw);
  top: 50%;
  transform: translateY(-50%);
  right: min(31px, 3.0097087379vw);
}
@media screen and (max-width: 760px) {
  .p-start__arrow {
    width: 24px;
    height: 24px;
    right: 16px;
  }
}
.p-start__icon {
  width: min(64px, 6.213592233vw);
  height: min(64px, 6.213592233vw);
}
@media screen and (max-width: 760px) {
  .p-start__icon {
    width: 48px;
    height: 48px;
  }
}
.p-start__medicine {
  position: absolute;
  top: min(40px, 3.8834951456vw);
  right: min(70px, 6.7961165049vw);
  width: min(200px, 19.4174757282vw);
}
@media screen and (max-width: 760px) {
  .p-start__medicine {
    top: 10px;
    right: 40px;
    width: 120px;
  }
}
.p-start__h3 {
  font-size: min(36px, 3.4951456311vw);
  font-weight: 700;
  color: #e14a5c;
}
@media screen and (max-width: 760px) {
  .p-start__h3 {
    font-size: 20px;
  }
}
.p-start__cost {
  font-family: "Inter";
  font-weight: 700;
  border-radius: min(4px, 0.3883495146vw);
  width: 100%;
  height: min(52px, 5.0485436893vw);
  font-size: min(40px, 3.8834951456vw);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #e14a5c;
}
@media screen and (max-width: 760px) {
  .p-start__cost {
    font-size: 24px;
    height: 33px;
    border-radius: 4px;
  }
}
.p-start__cost span {
  font-size: min(24px, 2.3300970874vw);
}
@media screen and (max-width: 760px) {
  .p-start__cost span {
    font-size: 16px;
  }
}
.p-start__kome {
  font-size: min(14px, 1.359223301vw);
  color: #666;
}
@media screen and (max-width: 760px) {
  .p-start__kome {
    font-size: 12px;
  }
}

.p-chase {
  width: min(178px, 17.2815533981vw);
  position: fixed;
  right: 0;
  top: min(230px, 22.3300970874vw);
  z-index: 5;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(100%);
}
.p-chase__img {
  width: 100%;
}
.p-chase:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-chase--visible {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 760px) {
  .p-chase {
    display: none;
  }
}

.p-fv {
  position: relative;
  background-color: #f3e8e7;
  padding-top: min(53px, 5.145631068vw);
  padding-bottom: min(44px, 4.2718446602vw);
}
@media screen and (max-width: 760px) {
  .p-fv {
    padding-top: 35px;
    padding-bottom: 31px;
  }
}
.p-fv__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1160px;
}
@media screen and (max-width: 760px) {
  .p-fv__container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-fv__hako {
  max-width: min(940px, 91.2621359223vw);
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 760px) {
  .p-fv__hako {
    max-width: 940px;
  }
}
.p-fv__girl {
  height: 100%;
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 0;
}
@media screen and (max-width: 1500px) {
  .p-fv__girl {
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-fv__girl {
    left: -200px;
  }
}
@media screen and (max-width: 760px) {
  .p-fv__girl {
    height: 473px;
    left: -30px;
  }
}
.p-fv__up {
  padding-left: min(150px, 14.5631067961vw);
}
@media screen and (max-width: 760px) {
  .p-fv__up {
    padding-left: 0;
    margin-bottom: 11px;
  }
}
.p-fv__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(8px, 0.7766990291vw);
       column-gap: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-fv__bottom {
    row-gap: 15px;
    flex-direction: column;
  }
}
.p-fv__circle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(7px, 0.6796116505vw);
       column-gap: min(7px, 0.6796116505vw);
}
@media screen and (max-width: 760px) {
  .p-fv__circle-group {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
.p-fv__circle {
  background-color: #fff;
  border-radius: 50%;
  width: min(144px, 13.9805825243vw);
  height: min(144px, 13.9805825243vw);
  border: 2px solid #e14a5c;
  font-size: min(25px, 2.427184466vw);
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__circle {
    width: 96px;
    height: 96px;
    border: 2px solid #e14a5c;
    font-size: 17px;
  }
}
.p-fv__red {
  line-height: 1;
  font-size: min(43px, 4.1747572816vw);
  font-family: "Inter";
  font-weight: 700;
  color: #e14a5c;
}
@media screen and (max-width: 760px) {
  .p-fv__red {
    font-size: 28px;
  }
}
.p-fv__red span {
  line-height: 1;
  font-family: "Inter";
  font-weight: 700;
  color: #e14a5c;
  font-size: min(25px, 2.427184466vw);
}
@media screen and (max-width: 760px) {
  .p-fv__red span {
    font-size: 17px;
  }
}
.p-fv__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  border-radius: min(100px, 9.7087378641vw);
  border: 2px solid #fcf9ee;
  width: min(475px, 46.1165048544vw);
  height: min(124px, 12.0388349515vw);
  transition: all 0.3s;
  box-shadow: 8px 8px 16px rgba(122, 122, 122, 0.64);
  background: linear-gradient(to right, #e4717f, #ef835b);
}
.p-fv__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-fv__button {
    box-shadow: 8px 8px 16px rgba(122, 122, 122, 0.64);
    -moz-column-gap: 11px;
         column-gap: 11px;
    border-radius: 72px;
    border: 2px solid #fcf9ee;
    width: 100%;
    height: 88px;
  }
}
.p-fv__button-left {
  font-size: min(32px, 3.1067961165vw);
  color: #e14a5c;
  font-weight: 700;
  background-color: #fff;
  border-radius: min(10px, 0.9708737864vw);
  height: min(85px, 8.2524271845vw);
  width: min(91px, 8.8349514563vw);
  line-height: 1;
  padding: min(5px, 0.4854368932vw);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__button-left {
    border-radius: 7px;
    height: 61px;
    width: 64px;
    padding: 5.5px;
    font-size: 22px;
  }
}
.p-fv__button-left span {
  font-size: min(40px, 3.8834951456vw);
}
@media screen and (max-width: 760px) {
  .p-fv__button-left span {
    font-size: 28px;
  }
}
.p-fv__button-text {
  color: #fff;
  text-align: center;
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__button-text {
    font-size: 23px;
  }
}
.p-fv__arrow {
  width: min(32px, 3.1067961165vw);
  height: min(32px, 3.1067961165vw);
}
@media screen and (max-width: 760px) {
  .p-fv__arrow {
    width: 23px;
    height: 23px;
  }
}
.p-fv__online {
  display: flex;
  flex-direction: column;
  margin-bottom: min(10px, 0.9708737864vw);
}
@media screen and (max-width: 760px) {
  .p-fv__online {
    margin-bottom: 25px;
    text-align: right;
  }
}
.p-fv__online-text {
  font-size: min(40px, 3.8834951456vw);
  color: #666666;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__online-text {
    font-size: 20px;
  }
}
.p-fv__airplane {
  width: min(392px, 38.0582524272vw);
}
@media screen and (max-width: 760px) {
  .p-fv__airplane {
    width: 191px;
    margin-left: auto;
  }
}
.p-fv__box {
  background-color: rgba(255, 255, 255, 0.48);
  padding: min(20px, 1.9417475728vw) min(28px, 2.7184466019vw);
  border-radius: min(10px, 0.9708737864vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .p-fv__box {
    padding: 11px 12px;
    row-gap: 4px;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    width: 220px;
  }
}
.p-fv__box-left {
  font-size: min(32px, 3.1067961165vw);
  color: #666;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__box-left {
    font-size: 16px;
  }
}
.p-fv__box-left span {
  font-size: min(39px, 3.786407767vw);
}
@media screen and (max-width: 760px) {
  .p-fv__box-left span {
    font-size: 20px;
  }
}
.p-fv__box-right {
  display: flex;
  flex-direction: column;
}
.p-fv__cost {
  color: #fff;
  font-size: min(59px, 5.7281553398vw);
  border-radius: min(4px, 0.3883495146vw);
  background-color: #e14a5c;
  margin-bottom: min(4px, 0.3883495146vw);
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-fv__cost {
    font-size: 34px;
    border-radius: 2.5px;
    margin-bottom: 2px;
  }
}
.p-fv__second-cost {
  font-size: min(39px, 3.786407767vw);
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-fv__second-cost {
    font-size: 22px;
  }
}
.p-fv__second-cost span {
  font-size: min(29px, 2.8155339806vw);
  color: #eccccd;
}
@media screen and (max-width: 760px) {
  .p-fv__second-cost span {
    font-size: 16px;
  }
}
.p-fv__kome {
  font-size: min(14px, 1.359223301vw);
  color: #dc7f8a;
}
@media screen and (max-width: 760px) {
  .p-fv__kome {
    font-size: 8px;
  }
}
.p-fv__center {
  -moz-column-gap: min(30px, 2.9126213592vw);
       column-gap: min(30px, 2.9126213592vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: min(22px, 2.1359223301vw);
}
@media screen and (max-width: 760px) {
  .p-fv__center {
    margin-bottom: 12px;
    row-gap: 9px;
    flex-direction: column;
    align-items: flex-end;
  }
}
.p-fv__h1 {
  font-size: min(69px, 6.6990291262vw);
  font-weight: 700;
  color: #e14a5c;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0px 0px 16px rgb(255, 255, 255);
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    font-size: 48px;
    text-align: right;
  }
}
.p-fv__h1 span {
  font-size: min(114px, 11.067961165vw);
}
@media screen and (max-width: 760px) {
  .p-fv__h1 span {
    font-size: 80px;
  }
}
.p-fv__center-left {
  position: relative;
  padding: min(46px, 4.4660194175vw) min(22px, 2.1359223301vw) min(28px, 2.7184466019vw);
  border: 2px solid #dc7f8a;
  border-radius: min(8px, 0.7766990291vw);
  margin-top: min(30px, 2.9126213592vw);
}
@media screen and (max-width: 760px) {
  .p-fv__center-left {
    border: 2px solid #dc7f8a;
    border-radius: 3.5px;
    margin-top: 0;
    padding: 6px 6px 3px;
    text-align: center;
    width: 171px;
  }
}
.p-fv__center-p {
  font-size: min(75px, 7.2815533981vw);
  font-weight: 700;
  font-family: "Inter";
  color: #e14a5c;
  line-height: 1;
}
@media screen and (max-width: 760px) {
  .p-fv__center-p {
    font-size: 31px;
  }
}
.p-fv__ico {
  width: min(64px, 6.213592233vw);
  height: min(64px, 6.213592233vw);
  position: absolute;
  top: min(-32px, -3.1067961165vw);
}
@media screen and (max-width: 760px) {
  .p-fv__ico {
    width: 26px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-fv__ico--1 {
  left: min(40px, 3.8834951456vw);
}
@media screen and (max-width: 760px) {
  .p-fv__ico--1 {
    left: 10px;
  }
}
.p-fv__ico--2 {
  right: min(40px, 3.8834951456vw);
}
@media screen and (max-width: 760px) {
  .p-fv__ico--2 {
    right: 10px;
  }
}

.p-important {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 760px) {
  .p-important {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.p-important__container {
  max-width: 1030px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-important__group:not(:last-child) {
  margin-bottom: 24px;
}
.p-important__h2 {
  color: #dc7f8a;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-important__h2::before, .p-important__h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #dc7f8a;
  min-width: 20px;
}
@media screen and (max-width: 760px) {
  .p-important__h2 {
    gap: 12px;
    font-size: 24px;
    margin-bottom: 16px;
  }
  .p-important__h2::before, .p-important__h2::after {
    min-width: 16px;
  }
}
.p-important__item {
  margin-bottom: 16px;
}
.p-important__h3 {
  color: #dc7f8a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.p-important__list {
  list-style: none;
  padding-left: 0;
}
.p-important__list li {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}
.p-important__list li::before {
  content: "•";
  color: #666;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 760px) {
  .p-important__list li {
    font-size: 12px;
  }
}
.p-important__text {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 760px) {
  .p-important__text {
    font-size: 12px;
  }
}
.p-important__note {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 4px;
}
.p-important__note--special {
  margin-top: 0;
}
@media screen and (max-width: 760px) {
  .p-important__note {
    font-size: 12px;
  }
}

.p-about {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
  background-color: #f4f4f4;
}
@media screen and (max-width: 760px) {
  .p-about {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-about__container {
  max-width: 1030px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-about__title-group {
  margin-bottom: min(51px, 4.9514563107vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-about__title-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    row-gap: 5px;
  }
}
.p-about__h2 {
  font-size: min(31px, 3.0097087379vw);
  color: #e14a5c;
  font-family: "Inter";
}
.p-about__h2 span {
  font-size: min(52px, 5.0485436893vw);
}
@media screen and (max-width: 760px) {
  .p-about__h2 span {
    font-size: 42px;
    line-height: 1;
  }
}
@media screen and (max-width: 760px) {
  .p-about__h2 {
    font-size: 32px;
    line-height: 1;
  }
}
.p-about__description {
  font-size: min(20px, 1.9417475728vw);
  font-weight: 500;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-about__description {
    font-size: 15px;
  }
}
.p-about__description span {
  font-size: min(14px, 1.359223301vw);
}
@media screen and (max-width: 760px) {
  .p-about__description span {
    font-size: 12px;
  }
}
.p-about__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: min(48px, 4.6601941748vw);
}
@media screen and (max-width: 760px) {
  .p-about__group {
    row-gap: 32px;
  }
}
.p-about__parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.p-about__pink {
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  color: #fff;
  height: min(55px, 5.3398058252vw);
  width: 100%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background-color: #dc7f8a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__pink {
    height: 78px;
    font-size: 20px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    text-align: center;
  }
}
@media screen and (max-width: 760px) {
  .p-about__pink--2 {
    height: 51px;
  }
}
.p-about__content {
  padding-top: min(32px, 3.1067961165vw);
  padding-right: min(27px, 2.6213592233vw);
  padding-left: min(27px, 2.6213592233vw);
  background-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__content {
    padding-top: 16px;
    padding-right: 12px;
    padding-left: 12px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    flex-wrap: wrap;
  }
}
.p-about__content--2 {
  padding-top: min(16px, 1.5533980583vw);
  padding-right: 0;
  padding-left: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-about__content--2 {
    padding-top: 16px;
    padding-right: 11px;
    padding-left: 11px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
  }
}
.p-about__img {
  border-radius: 8px;
  margin-bottom: min(8px, 0.7766990291vw);
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__img {
    border-radius: 8px;
    margin-bottom: 8px;
  }
}
.p-about__child-title {
  margin-bottom: min(4px, 0.3883495146vw);
  font-size: min(18px, 1.7475728155vw);
  font-weight: 700;
  color: #dc7f8a;
}
@media screen and (max-width: 760px) {
  .p-about__child-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.p-about__child-description {
  font-size: min(14px, 1.359223301vw);
  font-weight: 400;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-about__child-description {
    font-size: 14px;
  }
}
.p-about__child {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 760px) {
  .p-about__child {
    width: 100%;
  }
}
.p-about__infant {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-about__infant {
    row-gap: 6px;
    width: calc((100% - 16px) / 2);
  }
}
.p-about__infant-text {
  font-size: min(20px, 1.9417475728vw);
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-about__infant-text {
    font-size: 15px;
  }
}
.p-about__infant-text span {
  font-size: min(24px, 2.3300970874vw);
  color: #e14a5c;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-about__infant-text span {
    font-size: 18px;
  }
}
.p-about__infant-img {
  width: min(200px, 19.4174757282vw);
  height: min(200px, 19.4174757282vw);
}
@media screen and (max-width: 760px) {
  .p-about__infant-img {
    width: 151px;
    height: 151px;
  }
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1140px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__logo-group {
  width: 18rem;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
.l-hamburger__buttons {
  margin-top: 30px;
}
.l-hamburger__logo {
  width: 100%;
  display: inline-block;
}
.l-hamburger__contact {
  width: 50%;
  margin: 0 auto;
  height: 5rem;
  border-radius: 30px;
  margin-top: 2.5rem;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 2rem;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #444444;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  top: -150rem;
  transition: all 0.7s;
}
.l-hamburger__ul {
  text-align: center;
  position: relative;
  padding-top: 8rem;
}
@media screen and (max-width: 760px) {
  .l-hamburger__ul {
    padding-top: 6.4rem;
  }
}
.l-hamburger__li {
  position: relative;
  border-top: 1px solid #dc7f8a;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.l-hamburger__li--special {
  border-bottom: 1px solid #dc7f8a;
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__a {
  color: #dc7f8a !important;
  position: relative;
  font-size: 1.8rem;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 760px) {
  .l-hamburger__a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__a {
    font-size: 1.6rem;
  }
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  transform-origin: center 3px;
}
.l-hamburger__submenu-li {
  padding-bottom: 0 !important;
}
.l-hamburger__submenu-li--2 {
  margin-top: 2rem;
}
.l-hamburger__button {
  display: none;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 2%;
  top: 2.7rem;
  background-color: transparent;
  z-index: 100;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 1140px) {
  .l-hamburger__button {
    display: inline-block;
  }
}
.l-hamburger__hum {
  height: 2px;
  width: 2.4rem;
  background-color: #dc7f8a;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 2.5rem;
  z-index: 100;
  border-radius: 3px;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 2.4rem;
  background-color: #dc7f8a;
  position: absolute;
  top: -1rem;
  left: 0;
  transition: all 0.25s;
  border-radius: 3px;
}
.l-hamburger__hum::after {
  top: 1rem;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum {
    margin-top: 1rem;
  }
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(1rem) rotate(-315deg);
}

.open .l-hamburger__button span::after {
  transform: translateY(-1rem) rotate(315deg);
}

.p-kind {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-kind {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.p-kind__container {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-kind__container {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.p-kind__wrap {
  background-color: #f3e8e7;
  padding: min(32px, 3.1067961165vw) min(60px, 5.8252427184vw) min(48px, 4.6601941748vw);
  text-align: left;
  border-radius: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-kind__wrap {
    padding: 32px 12px;
    text-align: center;
  }
}
.p-kind__h2 {
  margin-bottom: min(8px, 0.7766990291vw);
  font-weight: 700;
  color: #dc7f8a;
  font-size: min(28px, 2.7184466019vw);
}
@media screen and (max-width: 760px) {
  .p-kind__h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.p-send {
  padding-top: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-send {
    padding-top: 48px;
  }
}
.p-send__container {
  max-width: 1030px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-send__container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-send__wrap {
  background-color: #f3e8e7;
  border-top-right-radius: min(10px, 0.9708737864vw);
  border-bottom-right-radius: min(10px, 0.9708737864vw);
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
  margin-right: min(160px, 15.5339805825vw);
}
@media screen and (max-width: 760px) {
  .p-send__wrap {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-right: 8px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.p-send__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: min(160px, 15.5339805825vw);
       column-gap: min(160px, 15.5339805825vw);
}
@media screen and (max-width: 1024px) {
  .p-send__flex {
    -moz-column-gap: min(80px, 7.7669902913vw);
         column-gap: min(80px, 7.7669902913vw);
  }
}
@media screen and (max-width: 760px) {
  .p-send__flex {
    row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-send__h2 {
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
  color: #dc7f8a;
  min-width: 133px;
}
@media screen and (max-width: 760px) {
  .p-send__h2 {
    font-size: 24px;
  }
}
.p-send__img {
  margin-bottom: min(8px, 0.7766990291vw);
  width: min(704px, 68.3495145631vw);
}
@media screen and (max-width: 760px) {
  .p-send__img {
    width: 100%;
  }
}
.p-send__kome {
  font-size: min(14px, 1.359223301vw);
  color: #808080;
}
@media screen and (max-width: 760px) {
  .p-send__kome {
    font-size: 12px;
  }
}

.p-flow {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-flow {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-flow__nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-flow__container {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-flow__container {
    max-width: 1150px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-flow__h2 {
  margin-bottom: min(32px, 3.1067961165vw);
  font-size: min(36px, 3.4951456311vw);
  font-weight: 700;
  color: #dc7f8a;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-flow__h2 {
    margin-bottom: 32px;
    font-size: 24px;
  }
}
@media screen and (max-width: 760px) {
  .p-flow__content {
    margin-bottom: 32px;
  }
}
.p-flow__pc-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: min(33px, 3.2038834951vw);
       column-gap: min(33px, 3.2038834951vw);
}
@media screen and (max-width: 760px) {
  .p-flow__pc-content {
    display: none;
  }
}
.p-flow__mobile-wrapper {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-flow__mobile-wrapper {
    display: block;
    position: relative;
  }
}
@media screen and (max-width: 760px) {
  .p-flow__mobile-content {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 0 15px;
  }
  .p-flow__mobile-content::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .p-flow__nav {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 16px;
  }
}
.p-flow__nav-btn {
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-flow__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dc7f8a;
    background-color: #dc7f8a;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .p-flow__nav-btn:hover {
    background-color: #dc7f8a;
    color: white;
  }
  .p-flow__nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}
.p-flow__kome {
  font-size: min(12px, 1.1650485437vw);
  color: #666666;
  text-align: right;
  margin-top: min(2px, 0.1941747573vw);
  align-self: flex-end;
}
@media screen and (max-width: 760px) {
  .p-flow__kome {
    margin-top: 2px;
    font-size: 10px;
  }
}
.p-flow__arrow {
  width: min(14px, 1.359223301vw);
}
.p-flow__child {
  width: calc((100% - min(132px, 12.8155339806vw)) / 3);
}
@media screen and (max-width: 760px) {
  .p-flow__child--mobile {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}
.p-flow__top {
  color: #fff;
  font-weight: 700;
  font-size: min(32px, 3.1067961165vw);
  height: min(55px, 5.3398058252vw);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #dc7f8a;
  border-top-left-radius: min(6px, 0.5825242718vw);
  border-top-right-radius: min(6px, 0.5825242718vw);
}
@media screen and (max-width: 760px) {
  .p-flow__top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 25px;
    height: 44px;
  }
}
.p-flow__bottom {
  padding: min(16px, 1.5533980583vw) min(16px, 1.5533980583vw) min(23px, 2.2330097087vw);
  background-color: #fcf3f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom-left-radius: min(6px, 0.5825242718vw);
  border-bottom-right-radius: min(6px, 0.5825242718vw);
}
@media screen and (max-width: 760px) {
  .p-flow__bottom {
    padding: 13px 13px 27px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}
.p-flow__bottom--special {
  padding: min(16px, 1.5533980583vw) min(16px, 1.5533980583vw) min(6px, 0.5825242718vw);
}
@media screen and (max-width: 760px) {
  .p-flow__bottom--special {
    padding: 13px 13px 12px;
  }
}
.p-flow__img {
  height: min(180px, 17.4757281553vw);
  margin-bottom: min(20px, 1.9417475728vw);
}
@media screen and (max-width: 760px) {
  .p-flow__img {
    height: 140px;
    margin-bottom: 10px;
  }
}
.p-flow__white {
  height: 230px;
  padding: min(12px, 1.1650485437vw) min(16px, 1.5533980583vw);
  background-color: #fff;
  border-radius: min(6px, 0.5825242718vw);
}
@media screen and (max-width: 760px) {
  .p-flow__white {
    padding: 9px 13px;
    border-radius: 6px;
    min-height: 202px;
    height: auto;
  }
}
.p-flow__red {
  font-size: min(20px, 1.9417475728vw);
  font-weight: 700;
  color: #e14a5c;
  text-align: center;
  margin-bottom: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-flow__red {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.p-flow__description {
  font-size: min(15px, 1.4563106796vw);
  font-weight: 500;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-flow__description {
    font-size: 14px;
  }
}
.p-flow__button {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-flow__button {
    display: flex;
    text-align: center;
    height: 90px;
  }
}

.p-time__container {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-time__container {
    max-width: 1150px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-time__wrap {
  border: 1px solid #eccccd;
  border-radius: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-time__wrap {
    border-radius: 8px;
  }
}
.p-time__top {
  font-size: min(28px, 2.7184466019vw);
  color: #fff;
  height: min(73px, 7.0873786408vw);
  width: 100%;
  background-color: #dc7f8a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-top-right-radius: min(8px, 0.7766990291vw);
  border-top-left-radius: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-time__top {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    font-size: 22px;
    height: 48px;
  }
}
.p-time__content {
  padding-top: min(32px, 3.1067961165vw);
  padding-bottom: min(32px, 3.1067961165vw);
  background-color: #fff;
  border-bottom-left-radius: min(8px, 0.7766990291vw);
  border-bottom-right-radius: min(8px, 0.7766990291vw);
  max-width: min(557px, 54.0776699029vw);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .p-time__content {
    padding: 16px 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-width: 557px;
  }
}
.p-time__group {
  row-gap: min(8px, 0.7766990291vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-time__group {
    margin-bottom: 8px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    flex-direction: row;
  }
}
.p-time__child {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-time__child {
    flex-direction: column;
    row-gap: 8px;
    width: calc((100% - 8px) / 2);
  }
}
.p-time__left {
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  border: 1px solid #dc7f8a;
  width: min(157px, 15.2427184466vw);
  height: min(51px, 4.9514563107vw);
  border-radius: min(5px, 0.4854368932vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #dc7f8a;
  background-color: #fcf3f4;
}
.p-time__left--2 {
  color: #5b5c5e;
  background-color: #f4f4f4;
  border: 1px solid #5b5c5e;
}
@media screen and (max-width: 760px) {
  .p-time__left {
    font-size: 18px;
    height: 38px;
    width: 100%;
    border-radius: 5px;
  }
}
.p-time__right {
  font-size: min(28px, 2.7184466019vw);
  font-weight: 700;
  color: #dc7f8a;
}
@media screen and (max-width: 760px) {
  .p-time__right {
    font-size: 20px;
  }
}
.p-time__kome {
  font-size: min(14px, 1.359223301vw);
  color: #666666;
}
@media screen and (max-width: 760px) {
  .p-time__kome {
    font-size: 12px;
  }
}

.p-register {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-register {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-register__container {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-register__container {
    max-width: 1150px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-register__h2 {
  text-align: left;
  margin-bottom: min(34px, 3.3009708738vw);
  color: #dc7f8a;
  font-size: min(32px, 3.1067961165vw);
}
@media screen and (max-width: 760px) {
  .p-register__h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
@media screen and (max-width: 760px) {
  .p-register__button {
    height: 90px;
    text-align: center;
    margin-top: 32px;
  }
}
.p-register__pc-wrapper {
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-register__pc-wrapper {
    display: none;
  }
}
.p-register__pc-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  padding: 0 15px;
}
.p-register__pc-content::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-register__pc-content {
    display: none;
  }
}
.p-register__mobile-wrapper {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-register__mobile-wrapper {
    display: block;
    position: relative;
  }
}
@media screen and (max-width: 760px) {
  .p-register__mobile-content {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 0 15px;
  }
  .p-register__mobile-content::-webkit-scrollbar {
    display: none;
  }
}
.p-register__nav {
  display: flex;
  justify-content: center;
  gap: min(64px, 6.213592233vw);
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 760px) {
  .p-register__nav--pc {
    display: none;
  }
}
.p-register__nav--mb {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-register__nav--mb {
    display: flex;
    gap: 64px;
    margin-top: 32px;
  }
}
.p-register__nav-btn {
  position: relative;
  width: min(40px, 3.8834951456vw);
  height: min(40px, 3.8834951456vw);
  border-radius: 50%;
  border: 2px solid #dc7f8a;
  background-color: #dc7f8a;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-register__nav-btn:hover {
  background-color: #dc7f8a;
  color: white;
}
.p-register__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 760px) {
  .p-register__nav-btn {
    width: 40px;
    height: 40px;
  }
}
.p-register__nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(10px, 0.9708737864vw);
}
@media screen and (max-width: 760px) {
  .p-register__nav-icon {
    width: 10px;
  }
}
.p-register__arrow {
  width: min(14px, 1.359223301vw);
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .p-register__arrow {
    display: none;
  }
}
.p-register__step {
  position: absolute;
  height: min(70px, 6.7961165049vw);
  width: min(70px, 6.7961165049vw);
  background-color: #dc7f8a;
  color: white;
  font-size: min(14px, 1.359223301vw);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: min(10px, 0.9708737864vw);
  border-bottom-right-radius: min(10px, 0.9708737864vw);
  top: 0;
  left: 0;
  line-height: 1;
  row-gap: min(3px, 0.2912621359vw);
  font-family: "Inter";
}
@media screen and (max-width: 760px) {
  .p-register__step {
    font-size: 14px;
    height: 55px;
    width: 55px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    row-gap: 3px;
  }
}
.p-register__step span {
  font-size: min(24px, 2.3300970874vw);
}
@media screen and (max-width: 760px) {
  .p-register__step span {
    font-size: 24px;
  }
}
.p-register__child {
  position: relative;
  background-color: #f3e8e7;
  padding: min(24px, 2.3300970874vw) min(32px, 3.1067961165vw);
  min-height: 470px;
  height: 100%;
  border-bottom-right-radius: min(10px, 0.9708737864vw);
  border-top-left-radius: min(10px, 0.9708737864vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-register__child--pc {
  width: min(320px, 31.067961165vw);
  flex: 0 0 min(320px, 31.067961165vw);
  scroll-snap-align: start;
}
@media screen and (max-width: 760px) {
  .p-register__child--mobile {
    flex: 0 0 250px;
    scroll-snap-align: start;
    padding: 24px 16px;
    width: 250px;
    max-height: 457px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .p-register__child {
    min-height: 380px;
  }
}
@media screen and (max-width: 760px) {
  .p-register__child {
    padding: 24px 16px;
    width: 250px;
    min-height: 475px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}
.p-register__iphone {
  height: min(309px, 30vw);
  margin-bottom: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-register__iphone {
    height: 309px;
    margin-bottom: 16px;
  }
}
.p-register__words {
  font-size: min(16px, 1.5533980583vw);
  font-weight: 500;
  color: #333333;
}
.p-register__words span {
  color: #e14a5c;
}
@media screen and (max-width: 760px) {
  .p-register__words {
    font-size: 14px;
  }
}

.p-top-doctor {
  background: #f4f4f4;
  padding-top: 170px;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-top-doctor {
    padding-top: 150px;
    margin-top: -2px;
  }
}
@media (max-width: 450px) {
  .p-top-doctor {
    background: #077bc7;
  }
}
.p-top-doctor__blue {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2284px;
  height: 831.801px;
  border-radius: 100%;
  background: #e7f1f9;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .p-top-doctor__blue {
    top: 0;
    width: 594.95px;
    height: 527.702px;
  }
}
.p-top-doctor__about {
  width: 100%;
  padding: 193px 0 83px;
  background: #e7f1f9;
}
@media (max-width: 450px) {
  .p-top-doctor__about {
    padding: 120px 0 60px;
  }
}
.p-top-doctor__about-title {
  margin-top: -170px;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 450px) {
  .p-top-doctor__about-title {
    font-size: 24px;
    margin-top: -116px;
  }
}
.p-top-doctor__about-title span {
  color: #077bc7;
  font-weight: 700;
}
.p-top-doctor__box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1080px;
  background: #fff;
  border-radius: 8px;
  margin: 40px auto 0;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  gap: 8%;
}
@media (max-width: 850px) {
  .p-top-doctor__box {
    flex-direction: column;
    gap: 10px;
    padding: 16px 23px;
    max-width: 500px;
  }
}
.p-top-doctor__box-texts {
  width: 64%;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .p-top-doctor__box-texts {
    width: 100%;
  }
}
.p-top-doctor__box-title-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 850px) {
  .p-top-doctor__box-title-wrapper {
    gap: 4px;
  }
}
.p-top-doctor__box-specialty {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 10px;
  background: #ea5e7f;
}
@media (max-width: 850px) {
  .p-top-doctor__box-specialty {
    font-size: 16px;
    line-height: 19px;
    padding: 6px;
    border-radius: 5px;
  }
}
.p-top-doctor__box-specialty + .p-top-doctor__box-title {
  margin-left: 8px;
}
.p-top-doctor__box-title {
  color: #077bc7;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-title {
    display: none;
  }
}
.p-top-doctor__box-work {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-work {
    margin: 0;
  }
}
.p-top-doctor__box-name {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-name {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.p-top-doctor__box-name span {
  font-size: 24px;
  font-weight: 700;
}
.p-top-doctor__box-intro {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-intro {
    font-size: 16px;
  }
}
.p-top-doctor__box-career-title {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-career-title {
    margin-top: 20px;
  }
}
.p-top-doctor__box-career {
  margin-top: 8px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-career {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .p-top-doctor__box-img {
    display: none;
  }
}
.p-top-doctor__box-img-sp {
  width: 100%;
  margin: 10px auto 0;
}
.p-top-doctor__box-img-sp img {
  width: 100%;
  height: auto;
}
@media (min-width: 851px) {
  .p-top-doctor__box-img-sp {
    display: none;
  }
}
.p-top-doctor__button {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-top-doctor__button {
    all: unset;
    display: block;
    width: 90%;
    margin: 20px auto 0;
  }
}
.p-top-doctor__clinic-title {
  margin-top: 40px;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 760px) {
  .p-top-doctor__clinic-title {
    margin-top: 20px;
    font-size: 24px;
    background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.p-top-doctor__clinic-title span {
  color: #077bc7;
}
@media screen and (max-width: 760px) {
  .p-top-doctor__clinic-title span {
    color: inherit;
  }
}
.p-top-doctor__clinic-box {
  width: 90%;
  margin: 40px auto 0;
  padding: 30px 24px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-box {
    max-width: 500px;
    margin: 20px auto 0;
    padding: 30px 20px;
  }
}
.p-top-doctor__clinic-name-pc {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-name-pc {
    display: none;
  }
}
.p-top-doctor__clinic-wrapper {
  margin-top: 20px;
  width: calc(100% + 60px);
  transform: translateX(-60px);
  display: flex;
  gap: 5.4%;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-wrapper {
    margin: 0;
    width: 100%;
    transform: none;
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-doctor__clinic-img {
  width: 44%;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-img {
    width: 100%;
  }
}
.p-top-doctor__clinic-img img {
  width: 100%;
  height: auto;
}
.p-top-doctor__clinic-name-sp {
  display: none;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-name-sp {
    margin-top: 20px;
    display: block;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.p-top-doctor__clinic-text {
  color: var(--2, #5b5c5e);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-text {
    font-size: 16px;
  }
}
.p-top-doctor__clinic-address {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
}
.p-top-doctor__clinic-btn {
  all: unset;
  margin-top: 20px;
  display: block;
  background: #ea5e7f;
  border-radius: 8px;
  padding: 10px 40px 10px 10px;
  position: relative;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn {
    box-sizing: border-box;
    width: 100%;
    padding: 6px 0 6px 45px;
  }
}
.p-top-doctor__clinic-btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url(../img/front/pink-arrow.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn::after {
    right: 45px;
  }
}
.p-top-doctor__clinic-btn a {
  letter-spacing: 1px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn a {
    font-size: 18px;
    line-height: normal;
  }
}
@media (min-width: 851px) {
  .p-top-doctor__clinic-btn a br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */