@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;
  }
}

.c-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 663px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid #fcf9ee;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, #d6980f 0%, #d6790f 100%);
  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;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 760px) {
  .c-button__text {
    font-size: 20px;
  }
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.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: 156px;
}
@media screen and (max-width: 760px) {
  .l-header__anker {
    width: 103px;
  }
}
.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: #3e4383 !important;
  font-weight: 700;
  transition: all 0.3s;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.l-page-nav {
  background-color: #edf5fa;
}
@media screen and (max-width: 760px) {
  .l-page-nav {
    display: none;
  }
}
.l-page-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-page-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 46px;
  transition: all 0.3s ease;
}
.l-page-nav__link span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
  color: #444444;
}
.l-page-nav__link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #3e4383;
  transition: all 0.3s ease;
}
.l-page-nav__link::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #3e4383;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-page-nav__link:hover {
  color: #3e4383;
  background-color: #ffedf1;
}
.l-page-nav__link:hover::before {
  width: 100%;
}
.l-page-nav__link:hover::after {
  right: 8px;
  opacity: 1;
}

.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-fv {
  position: relative;
  background-color: #e9eef4;
  padding-top: min(59px, 5.7281553398vw);
  padding-bottom: min(37px, 3.5922330097vw);
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .p-fv {
    padding-top: 53px;
    padding-bottom: 31px;
  }
}
.p-fv__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1500px;
}
@media screen and (max-width: 1500px) {
  .p-fv__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .p-fv__container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-fv__man {
  height: 100%;
  position: absolute;
  z-index: 0;
}
.p-fv__man-pc {
  top: 0;
  left: 0;
}
@media screen and (max-width: 1500px) {
  .p-fv__man-pc {
    left: -15%;
  }
}
@media screen and (max-width: 1200px) {
  .p-fv__man-pc {
    display: none;
  }
}
.p-fv__man-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .p-fv__man-sp {
    right: 0;
    top: 0;
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-fv__man-wrapper img {
  width: 100%;
  height: 100%;
}
.p-fv__man-wrapper::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #e9eef4 100%);
}
@media screen and (max-width: 1200px) {
  .p-fv__man-wrapper::after {
    content: "";
  }
}
.p-fv__hako {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .p-fv__hako {
    align-items: flex-start;
    margin-left: 0;
  }
}
.p-fv__up {
  display: block;
}
@media screen and (max-width: 760px) {
  .p-fv__up {
    width: 100%;
    padding-left: 0;
  }
}
.p-fv__online {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 760px) {
  .p-fv__online {
    margin-bottom: 38px;
  }
}
.p-fv__online-text {
  font-size: min(40px, 3.8834951456vw);
  color: #3e4383;
  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;
  }
}
.p-fv__h1 {
  font-size: min(64px, 6.213592233vw);
  font-weight: 900;
  color: #121852;
  line-height: 1.05;
  margin: 0;
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    width: 100%;
    font-size: 28px;
  }
}
.p-fv__h1-eng {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: min(90px, 8.7378640777vw);
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .p-fv__h1-eng {
    font-size: 42px;
  }
}
.p-fv__h1-dot {
  margin-left: max(-15px, -1.4563106796vw);
  font-size: min(80px, 7.7669902913vw);
  font-weight: 900;
  letter-spacing: -16px;
}
@media screen and (max-width: 760px) {
  .p-fv__h1-dot {
    font-size: 36px;
  }
}
.p-fv__h1-br {
  display: none;
}
@media screen and (max-width: 1300px) {
  .p-fv__h1-br {
    display: block;
  }
}
.p-fv__h1-ttl {
  font-size: min(80px, 7.7669902913vw);
  font-weight: 900;
}
@media screen and (max-width: 1500px) {
  .p-fv__h1-ttl {
    font-size: min(70px, 6.7961165049vw);
  }
}
@media screen and (max-width: 760px) {
  .p-fv__h1-ttl {
    font-size: 32px;
  }
}
.p-fv__h1-big {
  display: block;
  font-size: min(170px, 16.5048543689vw);
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (max-width: 1500px) {
  .p-fv__h1-big {
    font-size: min(140px, 13.5922330097vw);
  }
}
@media screen and (max-width: 760px) {
  .p-fv__h1-big {
    font-size: 80px;
  }
}
.p-fv__cb {
  display: flex;
  align-items: flex-end;
  gap: min(98px, 9.5145631068vw);
}
@media screen and (max-width: 1200px) {
  .p-fv__cb {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
.p-fv__center {
  flex-shrink: 0;
}
.p-fv__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  row-gap: min(8px, 0.7766990291vw);
  justify-content: space-between;
  max-width: 574px;
  padding: min(16px, 1.5533980583vw) min(28px, 2.7184466019vw) min(24px, 2.3300970874vw);
  background-color: rgba(255, 255, 255, 0.48);
}
@media screen and (max-width: 1140px) {
  .p-fv__box {
    position: relative;
    left: unset;
    bottom: unset;
    margin-top: 14px;
  }
}
@media screen and (max-width: 760px) {
  .p-fv__box {
    flex-direction: row;
    justify-content: flex-start;
    max-width: 340px;
    margin: 0 auto;
    padding: 12px 16px;
  }
}
.p-fv__box-left {
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
  line-height: 1.4;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-fv__box-left {
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
  }
}
.p-fv__box-right {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-fv__box-right {
    flex-direction: column;
    width: 195px;
  }
}
.p-fv__cost {
  color: #fff;
  font-family: "Inter";
  font-size: min(59px, 5.7281553398vw);
  font-weight: 700;
  line-height: 1;
  background-color: #121852;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .p-fv__cost {
    width: 100%;
    font-size: 32px;
    margin-bottom: 4px;
    padding: 4px 25px;
  }
}
.p-fv__second-cost {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(39px, 3.786407767vw);
  color: #ffffff;
}
@media screen and (max-width: 760px) {
  .p-fv__second-cost {
    font-size: 20px;
  }
}
.p-fv__second-cost span {
  font-size: min(29px, 2.8155339806vw);
  color: #e9eef4;
}
@media screen and (max-width: 760px) {
  .p-fv__second-cost span {
    font-size: 16px;
  }
}
.p-fv__kome {
  font-size: min(14px, 1.359223301vw);
  color: #3e4383;
}
@media screen and (max-width: 760px) {
  .p-fv__kome {
    font-size: 10px;
  }
}
.p-fv__bottom {
  display: block;
}
@media screen and (max-width: 760px) {
  .p-fv__bottom {
    width: 100%;
  }
}
.p-fv__circle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: min(7px, 0.6796116505vw);
       column-gap: min(7px, 0.6796116505vw);
  margin: 14px 0 14px auto;
}
@media screen and (max-width: 760px) {
  .p-fv__circle-group {
    justify-content: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin: 16px auto 36px;
  }
}
.p-fv__circle {
  background-color: #fff;
  border-radius: 50%;
  width: min(144px, 13.9805825243vw);
  height: min(144px, 13.9805825243vw);
  border: 2px solid #121852;
  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 #121852;
    font-size: 17px;
  }
}
.p-fv__blue {
  font-family: "Inter";
  font-size: min(43px, 4.1747572816vw);
  font-weight: 900;
  line-height: 1;
  color: #121852;
}
@media screen and (max-width: 760px) {
  .p-fv__blue {
    font-size: 28px;
  }
}
.p-fv__blue span {
  font-size: min(25px, 2.427184466vw);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-fv__blue 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);
  width: min(475px, 46.1165048544vw);
  height: min(118px, 11.4563106796vw);
  margin: 0 0 0 auto;
  border: 2px solid #fcf9ee;
  border-radius: min(100px, 9.7087378641vw);
  transition: all 0.3s;
  box-shadow: 8px 8px 12px 0 rgba(122, 122, 122, 0.64);
  background: linear-gradient(90deg, #D6980F 0%, #D6790F 100%);
}
.p-fv__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-fv__button {
    -moz-column-gap: 11px;
         column-gap: 11px;
    width: 100%;
    height: 88px;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: 8px 8px 16px rgba(122, 122, 122, 0.64);
    border-radius: 72px;
    border: 2px solid #fcf9ee;
  }
}
.p-fv__button-left {
  width: min(91px, 8.8349514563vw);
  height: min(85px, 8.2524271845vw);
  padding: min(5px, 0.4854368932vw) min(8px, 0.7766990291vw);
  font-size: min(32px, 3.1067961165vw);
  font-weight: 900;
  line-height: 1;
  color: #121852;
  background-color: #fff;
  border-radius: min(10px, 0.9708737864vw);
  text-align: center;
}
@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-eng {
  font-family: "Inter";
  font-size: min(40px, 3.8834951456vw);
}
@media screen and (max-width: 760px) {
  .p-fv__button-left-eng {
    font-size: 28px;
  }
}
.p-fv__button-left-h {
  font-family: "Inter";
  font-size: min(32px, 3.1067961165vw);
}
.p-fv__button-text {
  text-align: center;
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
}
@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-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);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-start__child {
    width: 100%;
  }
}
.p-start__img {
  width: 100%;
  height: min(199px, 19.3203883495vw);
}
@media screen and (max-width: 760px) {
  .p-start__img {
    height: 142px;
  }
}
.p-start__content {
  padding: min(16px, 1.5533980583vw) min(24px, 2.3300970874vw);
  background-color: #fbfbfb;
  min-height: min(169px, 16.4077669903vw);
}
@media screen and (max-width: 760px) {
  .p-start__content {
    padding: 16px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.p-start__number {
  position: absolute;
  top: min(8px, 0.7766990291vw);
  left: min(8px, 0.7766990291vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: min(64px, 6.213592233vw);
  height: min(64px, 6.213592233vw);
  font-family: "Inter";
  font-size: min(28px, 2.7184466019vw);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #3e4383;
}
@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: #121852;
  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;
  text-align: left;
}
@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: 14px;
  }
}
.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: #121852;
}
@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__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1000px, 97.0873786408vw);
  margin: 0 auto;
  padding: min(24px, 2.3300970874vw) min(48px, 4.6601941748vw);
  background: linear-gradient(90deg, #D6980F 0%, #D6790F 100%);
  border-radius: min(16px, 1.5533980583vw);
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.48);
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-start__box {
    flex-direction: column;
    margin: 0 0 65px;
    padding: 16px;
  }
}
.p-start__box:hover {
  opacity: 0.7;
}
.p-start__box::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: #ffffff;
  border-radius: min(13px, 1.2621359223vw);
  z-index: 0;
}
@media screen and (max-width: 1140px) {
  .p-start__box {
    width: 100%;
  }
}
.p-start__medicine {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(286px, 27.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-start__medicine {
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 0 10px;
  }
}
.p-start__medicine-img {
  text-align: center;
}
.p-start__medicine-img:first-child {
  flex: 1 1 100%;
}
@media screen and (max-width: 760px) {
  .p-start__medicine-img:first-child {
    flex: unset;
  }
}
.p-start__lead {
  position: relative;
  padding-right: 64px;
}
@media screen and (max-width: 760px) {
  .p-start__lead {
    padding-right: 0;
  }
}
.p-start__lead-ttl {
  margin: 0 0 16px;
  font-size: min(42px, 4.0776699029vw);
  font-weight: 700;
  line-height: 1;
  color: #121852;
  white-space: nowrap;
}
@media screen and (max-width: 760px) {
  .p-start__lead-ttl {
    position: relative;
    margin: 0 0 10px;
    font-size: 20px;
    padding-right: 36px;
  }
}
.p-start__lead-ttl-big {
  font-size: min(56px, 5.4368932039vw);
  font-weight: 900;
}
@media screen and (max-width: 760px) {
  .p-start__lead-ttl-big {
    font-size: 28px;
  }
}
.p-start__lead-ttl-img {
  position: absolute;
  width: 48px;
  height: 48px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .p-start__lead-ttl-img {
    width: 24px;
    height: 24px;
  }
}
.p-start__lead-cost {
  padding: 8px;
  text-align: center;
  font-size: min(24px, 2.3300970874vw);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  background-color: #121852;
}
.p-start__lead-cost span {
  font-family: "Inter";
  font-size: min(40px, 3.8834951456vw);
  font-weight: 700;
}
.p-start__h3 {
  font-size: min(22px, 2.1359223301vw);
  font-weight: 700;
  text-align: left;
  color: #121852;
}
@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-start__nayami {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: min(48px, 4.6601941748vw);
}
.p-start__nayami-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: min(48px, 4.6601941748vw);
}
@media screen and (max-width: 760px) {
  .p-start__nayami-group {
    row-gap: 32px;
  }
}
.p-start__nayami-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.p-start__nayami-pink {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(49px, 4.7572815534vw);
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  color: #fff;
  background-color: #3e4383;
}
@media screen and (max-width: 760px) {
  .p-start__nayami-pink {
    height: 78px;
    font-size: 20px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    text-align: center;
  }
}
.p-start__nayami-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-top: min(32px, 3.1067961165vw);
  padding-right: min(27px, 2.6213592233vw);
  padding-left: min(27px, 2.6213592233vw);
}
@media screen and (max-width: 760px) {
  .p-start__nayami-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-start__nayami-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-start__nayami-content--2 {
    padding-top: 16px;
    padding-right: 11px;
    padding-left: 11px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
  }
}
.p-start__nayami-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-start__nayami-infant {
    row-gap: 6px;
    width: calc((100% - 16px) / 2);
  }
}
.p-start__nayami-infant-text {
  font-size: min(20px, 1.9417475728vw);
  font-weight: 500;
  line-height: 1.2;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-start__nayami-infant-text {
    font-size: 15px;
  }
}
.p-start__nayami-infant-text span {
  font-size: min(24px, 2.3300970874vw);
  color: #3e4383;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-start__nayami-infant-text span {
    font-size: 18px;
  }
}
.p-start__nayami-infant-img {
  width: min(200px, 19.4174757282vw);
  height: min(200px, 19.4174757282vw);
}
@media screen and (max-width: 760px) {
  .p-start__nayami-infant-img {
    width: 151px;
    height: 151px;
  }
}

.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-about {
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
  background-color: #e9eef4;
}
@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__container-wide {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: min(48px, 4.6601941748vw);
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__container-wide {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-about__h2 {
  margin-bottom: min(32px, 3.1067961165vw);
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
  line-height: 1;
  color: #121852;
}
@media screen and (max-width: 760px) {
  .p-about__h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.p-about__type-group {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 760px) {
  .p-about__type-group {
    gap: 16px;
  }
}
.p-about__type-box {
  width: calc(50% - 16px);
  padding: min(24px, 2.3300970874vw);
  background-color: #ffffff;
}
@media screen and (max-width: 760px) {
  .p-about__type-box {
    width: 100%;
    padding: 20px 16px 16px;
  }
}
.p-about__type-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-about__type-ttl {
    margin-bottom: 12px;
  }
}
.p-about__type-icon {
  width: min(48px, 4.6601941748vw);
  height: min(48px, 4.6601941748vw);
}
@media screen and (max-width: 760px) {
  .p-about__type-icon {
    width: 32px;
    height: 32px;
  }
}
.p-about__type-word {
  padding-right: min(8px, 0.7766990291vw);
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  line-height: 1.25;
  color: #3e4383;
  border-right: 1px solid #3e4383;
}
@media screen and (max-width: 760px) {
  .p-about__type-word {
    font-size: 24px;
    border-right: none;
  }
}
.p-about__type-sub {
  font-size: min(18px, 1.7475728155vw);
  font-weight: 700;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-about__type-sub {
    display: block;
    width: 100%;
    font-size: 16px;
  }
}
.p-about__type-text {
  margin-bottom: min(16px, 1.5533980583vw);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-about__type-text {
    margin-bottom: 16px;
    font-size: 15px;
  }
}
.p-about__reason-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 0 min(4px, 0.3883495146vw);
}
@media screen and (max-width: 760px) {
  .p-about__reason-ttl {
    margin-bottom: 4px;
  }
}
.p-about__reason-ttl span {
  display: inline-block;
  position: relative;
  padding: 0 min(16px, 1.5533980583vw);
  font-size: min(14px, 1.359223301vw);
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  background-color: #ffffff;
}
@media screen and (max-width: 760px) {
  .p-about__reason-ttl span {
    padding: 0 16px;
    font-size: 14px;
  }
}
.p-about__reason-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #666666;
  z-index: 0;
}
.p-about__reason-txt {
  font-size: min(14px, 1.359223301vw);
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
}
@media screen and (max-width: 760px) {
  .p-about__reason-txt {
    font-size: 14px;
  }
}
.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-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: 0;
    padding-left: 0;
  }
}
.p-kind__wrap {
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-kind__wrap {
    padding: 32px 12px;
    text-align: center;
  }
}
.p-kind__diagram {
  width: 100%;
}
.p-kind__diagram--first {
  margin-bottom: 32px;
}
@media screen and (max-width: 760px) {
  .p-kind__diagram--first {
    margin-bottom: 16px;
  }
}
.p-kind__content {
  padding: min(48px, 4.6601941748vw) min(60px, 5.8252427184vw);
  background-color: #e9eef4;
}
@media screen and (max-width: 760px) {
  .p-kind__content {
    padding: 16px 12px;
  }
}
.p-kind__h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(70px, 6.7961165049vw);
  font-size: min(32px, 3.1067961165vw);
  font-weight: 700;
  color: #fff;
  background-color: #121852;
}
@media screen and (max-width: 760px) {
  .p-kind__h2 {
    font-size: 24px;
    height: 61px;
  }
}

.p-menu {
  position: relative;
  background: #6585b6;
  padding-top: min(80px, 7.7669902913vw);
  padding-bottom: min(80px, 7.7669902913vw);
}
.p-menu::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 160px;
  background-color: #ffffff;
  left: 0;
  top: -1px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 1140px) {
  .p-menu::before {
    width: 120px;
    height: 60px;
  }
}
.p-menu::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 160px;
  background-color: #ffffff;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
@media screen and (max-width: 1140px) {
  .p-menu::after {
    width: 120px;
    height: 60px;
  }
}
@media screen and (max-width: 760px) {
  .p-menu {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top-left-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__titles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: min(32px, 3.1067961165vw);
}
@media screen and (max-width: 1140px) {
  .p-menu__titles {
    flex-direction: column;
    gap: 0;
  }
}
.p-menu__h2 {
  font-size: min(48px, 4.6601941748vw);
  font-weight: 900;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 760px) {
  .p-menu__h2 {
    text-align: center;
    font-size: 24px;
  }
}
.p-menu__h2-eng {
  font-size: min(80px, 7.7669902913vw);
}
@media screen and (max-width: 760px) {
  .p-menu__h2-eng {
    font-size: 48px;
  }
}
.p-menu__h2-big {
  font-size: min(64px, 6.213592233vw);
}
@media screen and (max-width: 760px) {
  .p-menu__h2-big {
    font-size: 48px;
  }
}
.p-menu__subtitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(350px, 33.9805825243vw);
  height: min(80px, 7.7669902913vw);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #0c2c63;
  background-color: #ffffff;
  border: 2px solid #0c2c63;
  border-radius: min(8px, 0.7766990291vw);
}
@media screen and (max-width: 760px) {
  .p-menu__subtitle {
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px 35px 14px 50px;
    font-size: 24px;
  }
}
.p-menu__mark {
  position: absolute;
  left: -15px;
  top: -18px;
  width: min(64px, 6.213592233vw);
  height: min(64px, 6.213592233vw);
}
@media screen and (max-width: 760px) {
  .p-menu__mark {
    top: -10px;
    left: -6px;
    width: 48px;
    height: 48px;
  }
}
.p-menu__medicines {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: min(32px, 3.1067961165vw);
}
.p-menu__medicines-item {
  max-width: 33.3333333333%;
}
.p-menu__diagram-group {
  margin-bottom: min(0px, 0vw);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-group {
    margin-bottom: 8px;
  }
}
.p-menu__diagram {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram {
    margin-bottom: 16px;
  }
}
.p-menu__diagram-pc table {
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
}
.p-menu__diagram-pc table tr {
  width: 100%;
}
.p-menu__diagram-pc table tr th {
  height: 64px;
  font-size: min(18px, 1.7475728155vw);
  font-weight: 700;
  color: #ffffff;
  background-color: #3E4383;
  border-radius: 4px 4px 0 0;
}
.p-menu__diagram-pc table tr th:nth-child(1) {
  background-color: transparent;
}
.p-menu__diagram-pc table tr td {
  padding: min(29px, 2.8155339806vw) min(18px, 1.7475728155vw);
  text-align: center;
  background-color: #ffffff;
}
.p-menu__diagram-pc table tr td:nth-child(1) {
  text-align: center;
  font-size: min(21px, 2.0388349515vw);
  font-weight: 700;
  color: #444444;
  background-color: #fbfbfb;
  white-space: nowrap;
}
@media screen and (max-width: 1140px) {
  .p-menu__diagram-pc table tr td:nth-child(1) {
    width: 28%;
  }
}
.p-menu__diagram-pc table tr td:nth-child(1) span.head {
  display: block;
  padding: min(6px, 0.5825242718vw) min(12px, 1.1650485437vw);
  font-size: min(14px, 1.359223301vw);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3e4383;
  border-radius: 4px;
}
.p-menu__diagram-pc table tr td:nth-child(1) span.ttl {
  display: block;
  font-size: min(24px, 2.3300970874vw);
}
.p-menu__diagram-pc table tr td.unit {
  width: min(130px, 12.6213592233vw);
  font-family: "Inter";
  font-size: min(28px, 2.7184466019vw);
  font-weight: 700;
  color: #3e4383;
}
@media screen and (max-width: 1140px) {
  .p-menu__diagram-pc table tr td.unit {
    width: 11%;
  }
}
.p-menu__diagram-pc table tr td.price {
  width: min(240px, 23.3009708738vw);
  font-size: min(18px, 1.7475728155vw);
  font-weight: 700;
  color: #444444;
  white-space: nowrap;
}
@media screen and (max-width: 1140px) {
  .p-menu__diagram-pc table tr td.price {
    width: 21%;
  }
}
.p-menu__diagram-pc table tr td.price span.num {
  font-family: "Inter";
  font-size: min(28px, 2.7184466019vw);
  letter-spacing: 1px;
}
.p-menu__diagram-pc table tr td.price span.tax {
  font-size: min(14px, 1.359223301vw);
  font-weight: 400;
}
.p-menu__diagram-pc table tr td.link {
  width: min(280px, 27.1844660194vw);
}
@media screen and (max-width: 1140px) {
  .p-menu__diagram-pc table tr td.link {
    width: 25%;
  }
}
.p-menu__diagram-pc table tr td.link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(16px, 1.5533980583vw);
  width: min(200px, 19.4174757282vw);
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(90deg, #d6980f 0%, #d6790f 100%);
  border: 1px solid #ffffff;
  border-radius: 30px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.32);
  transition: 0.3s ease all;
}
.p-menu__diagram-pc table tr td.link a .text {
  display: inline-block;
  font-size: min(24px, 2.3300970874vw);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.p-menu__diagram-pc table tr td.link a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(24px, 2.3300970874vw);
  height: min(24px, 2.3300970874vw);
  margin-top: min(4px, 0.3883495146vw);
}
.p-menu__diagram-pc table tr td.link a:hover {
  opacity: 0.7;
}
.p-menu__diagram-sp {
  margin: 0 0 16px;
}
.p-menu__diagram-sp table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
}
.p-menu__diagram-sp table tr th {
  padding: 8px;
  background-color: #ecf2f9;
}
.p-menu__diagram-sp table tr th.top {
  font-size: 16px;
  font-weight: 700;
  color: #444444;
}
.p-menu__diagram-sp table tr th.top span.head {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #323f61;
  border-radius: 4px;
}
.p-menu__diagram-sp table tr th.top span.ttl {
  display: block;
  font-size: 20px;
}
.p-menu__diagram-sp table tr th.unit {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 700;
  color: #323f61;
}
.p-menu__diagram-sp table tr th:nth-child(1) {
  background-color: transparent;
}
.p-menu__diagram-sp table tr td {
  padding: 24px 20px;
  text-align: center;
  background-color: #ffffff;
}
.p-menu__diagram-sp table tr td:nth-child(1) {
  font-size: 14px;
  font-weight: 700;
  color: #323f61;
  background-color: #ecf2f9;
  border-radius: 4px 0 0 4px;
}
.p-menu__diagram-sp table tr td:nth-child(1) span.num {
  font-family: "Inter";
  font-size: 20px;
}
.p-menu__diagram-sp table tr td:nth-child(1) span.ttl {
  font-size: 18px;
}
.p-menu__diagram-sp table tr td.price {
  font-size: 16px;
  font-weight: 700;
  color: #444444;
}
.p-menu__diagram-sp table tr td.price p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.2;
}
.p-menu__diagram-sp table tr td.price span.num {
  font-family: "Inter";
  font-size: 20px;
}
.p-menu__diagram-sp table tr td.price span.tax {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  font-size: 12px;
  font-weight: 400;
}
.p-menu__diagram-sp table tr td.link {
  padding: 12px 14px;
}
.p-menu__diagram-sp table tr td.link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 100px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(90deg, #d6980f 0%, #d6790f 100%);
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.32);
  transition: ease 0.3s all;
}
@media screen and (max-width: 400px) {
  .p-menu__diagram-sp table tr td.link a {
    max-width: 100%;
  }
}
.p-menu__diagram-sp table tr td.link a .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.p-menu__diagram-sp table tr td.link a:hover {
  opacity: 0.7;
}
.p-menu__diagram-sp table tr:nth-child(1) th {
  border-radius: 4px 4px 0 0;
}
.p-menu__diagram-sp:last-child {
  margin: 0 0 8px;
}
.p-menu__diagram-button {
  width: min(200px, 19.4174757282vw);
  position: absolute;
  transition: all 0.3s;
  right: 3.5%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button {
    width: 120px;
  }
}
.p-menu__diagram-button--1 {
  top: 12.5%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--1 {
    right: 0;
    top: unset;
    bottom: 0;
  }
}
.p-menu__diagram-button--2 {
  top: 27.5%;
}
@media screen and (max-width: 760px) {
  .p-menu__diagram-button--2 {
    right: 38%;
    top: unset;
    bottom: 0;
  }
}
.p-menu__diagram-button--3 {
  top: 42.5%;
}
.p-menu__diagram-button--4 {
  top: 57.5%;
}
.p-menu__diagram-button--5 {
  top: 72.5%;
}
.p-menu__diagram-button--6 {
  top: 87.5%;
}
.p-menu__diagram-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-menu__kome {
  margin-bottom: min(32px, 3.1067961165vw);
  font-size: min(14px, 1.359223301vw);
  color: #f4f4f4;
}
@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: #333333;
}
@media screen and (max-width: 760px) {
  .p-menu__calc-menu {
    font-size: 20px;
    margin-right: 10px;
  }
}
.p-menu__calc-up-cost {
  font-family: "Inter";
  font-size: min(48px, 4.6601941748vw);
  font-weight: 700;
  color: #e14a5c;
}
@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);
  color: #121852;
}
@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: #f4f4f4;
}
@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__button {
  height: min(94px, 9.1262135922vw);
}
@media screen and (max-width: 760px) {
  .p-menu__button {
    height: 64px;
  }
}
.p-menu__guideline {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: min(32px, 3.1067961165vw);
  padding: min(16px, 1.5533980583vw);
  background-color: #e9eef4;
}
@media screen and (max-width: 760px) {
  .p-menu__guideline {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 0 16px;
  }
}
.p-menu__guideline-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 80px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3e4383;
}
@media screen and (max-width: 760px) {
  .p-menu__guideline-left {
    width: 100%;
    height: 30px;
    font-size: 18px;
  }
}
.p-menu__guideline-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: min(16px, 1.5533980583vw);
}
@media screen and (max-width: 760px) {
  .p-menu__guideline-right {
    padding-right: 0;
  }
}
.p-menu__guideline-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-menu__guideline-standard {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(110px, 10.6796116505vw);
  height: min(34px, 3.3009708738vw);
  font-family: "Poppins", sans-serif;
  font-size: min(16px, 1.5533980583vw);
  font-weight: 700;
  line-height: 1;
  color: #3e4383;
  background-color: #ffffff;
  border: 1px solid #3e4383;
}
@media screen and (max-width: 760px) {
  .p-menu__guideline-standard {
    width: 110px;
    height: 38px;
    font-size: 16px;
  }
}
.p-menu__guideline-standard span {
  font-size: min(20px, 1.9417475728vw);
}
@media screen and (max-width: 760px) {
  .p-menu__guideline-standard span {
    font-size: 20px;
  }
}
.p-menu__guideline-desc {
  font-size: 18px;
  font-weight: 500;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-menu__guideline-desc {
    font-size: 16px;
    line-height: 1;
  }
}

.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: #3e4383;
  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: #3e4383;
  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: #3e4383;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.p-important__subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
}
.p-important__list {
  list-style: none;
  padding-left: 0;
}
.p-important__list li {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}
.p-important__list li::before {
  content: "•";
  color: #666666;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 760px) {
  .p-important__list li {
    font-size: 12px;
  }
}
.p-important__text {
  color: #666666;
  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: #666666;
  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-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: min(40px, 3.8834951456vw);
  font-weight: 700;
  color: #121852;
  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__answer {
  align-items: flex-start !important;
}
.p-faq__dt-english {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #3e4383;
  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-p a {
  font-weight: 700;
  color: #077bc7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-faq__dd-english {
  color: #6585b6;
  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__dd-p-ul {
  margin: 16px;
  padding: 16px;
  background-color: #f8f9fb;
  border-radius: 16px;
}
.p-faq__dd-p-li {
  padding: 12px 0;
  border-bottom: 1px dashed #b2b2b2;
}
.p-faq__dd-p-li-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.p-faq__dd-p-li-head .ttl {
  color: #333333;
}
.p-faq__dd-p-li-head .delay {
  color: #6585b6;
}
.p-faq__dd-p-li-desc {
  margin: 4px 0 0;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #333333;
}
.p-faq__dd-p-li:last-child {
  border-bottom: none;
}
.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-faq__link {
  margin-top: min(48px, 4.6601941748vw);
}
.p-faq__link-up {
  text-align: center;
}
.p-faq__link-txt {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: #606062;
}
@media screen and (max-width: 760px) {
  .p-faq__link-txt {
    font-size: 16px;
  }
}
.p-faq__link-txt::before {
  content: "＼";
  position: absolute;
  bottom: 0;
  left: -36px;
}
@media screen and (max-width: 760px) {
  .p-faq__link-txt::before {
    left: -10px;
  }
}
.p-faq__link-txt::after {
  content: "／";
  position: absolute;
  bottom: 0;
  right: -36px;
}
@media screen and (max-width: 760px) {
  .p-faq__link-txt::after {
    right: -10px;
  }
}
.p-faq__link-txt span {
  font-size: 28px;
  font-weight: 700;
  color: #d6980f;
}
@media screen and (max-width: 760px) {
  .p-faq__link-txt span {
    font-size: 16px;
  }
}
.p-faq__link-btn {
  display: block;
  max-width: min(732px, 71.067961165vw);
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__link-btn {
    max-width: 340px;
  }
}
.p-faq__link-btn:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.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: #e9eef4;
  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: #121852;
  min-width: 133px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-send__h2 {
    font-size: 24px;
  }
}
.p-send__group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-send__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
@media screen and (max-width: 760px) {
  .p-send__table {
    border-spacing: 1px;
  }
}
.p-send__table colgroup col:nth-child(1) {
  width: 15%;
}
.p-send__table colgroup col:nth-child(2) {
  width: 60%;
}
.p-send__table colgroup col:nth-child(3) {
  width: 25%;
}
.p-send__table tr {
  width: 100%;
}
.p-send__table tr th {
  height: 40px;
  font-size: min(20px, 1.9417475728vw);
  font-weight: 700;
  color: #ffffff;
  background-color: #3e4383;
  border-radius: 4px 4px 0 0;
}
@media screen and (max-width: 760px) {
  .p-send__table tr th {
    font-size: 14px;
  }
}
.p-send__table tr th:nth-child(1) {
  background-color: transparent;
}
.p-send__table tr td {
  min-height: 70px;
  padding: min(12px, 1.1650485437vw) min(20px, 1.9417475728vw);
  background-color: #ffffff;
}
@media screen and (max-width: 760px) {
  .p-send__table tr td {
    padding: 8px;
  }
}
.p-send__table tr td:nth-child(1) {
  text-align: center;
  font-size: min(20px, 1.9417475728vw);
  font-weight: 700;
  color: #ffffff;
  background-color: #3e4383;
  border-radius: 4px 0 0 4px;
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(1) {
    font-size: 14px;
  }
}
.p-send__table tr td:nth-child(2) p {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: min(16px, 1.5533980583vw);
       column-gap: min(16px, 1.5533980583vw);
  row-gap: min(10px, 0.9708737864vw);
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(2) p {
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 8px;
  }
}
.p-send__table tr td:nth-child(2) p span:not(.nl) {
  position: relative;
  padding: 0 0 0 min(14px, 1.359223301vw);
  font-size: min(18px, 1.7475728155vw);
  font-weight: 500;
  line-height: 1;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(2) p span:not(.nl) {
    padding: 0 0 0 10px;
    font-size: 14px;
  }
}
.p-send__table tr td:nth-child(2) p span:not(.nl)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(10px, 0.9708737864vw);
  height: min(10px, 0.9708737864vw);
  background-color: #3e4383;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(2) p span:not(.nl)::before {
    width: 8px;
    height: 8px;
    top: 4px;
    transform: unset;
  }
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(2) p .nl {
    display: inline;
    font-size: 12px;
  }
}
.p-send__table tr td:nth-child(3) {
  text-align: center;
  font-size: min(18px, 1.7475728155vw);
  font-weight: 700;
  color: #444444;
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(3) {
    font-size: 10px;
  }
}
.p-send__table tr td:nth-child(3) span {
  font-family: "Inter";
  font-size: min(24px, 2.3300970874vw);
}
@media screen and (max-width: 760px) {
  .p-send__table tr td:nth-child(3) span {
    font-size: 16px;
  }
}
.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);
  line-height: 2;
  color: #808080;
}
@media screen and (max-width: 760px) {
  .p-send__kome {
    font-size: 12px;
  }
}

.p-time {
  padding: min(40px, 3.8834951456vw) 0;
}
.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(66px, 6.4077669903vw);
  width: 100%;
  background-color: #3e4383;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@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(615px, 59.7087378641vw);
  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: 615px;
  }
}
.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 #3e4383;
  width: min(157px, 15.2427184466vw);
  height: min(45px, 4.9514563107vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #3e4383;
  background-color: #f8f9fb;
}
.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-family: "Inter";
  font-size: min(28px, 2.7184466019vw);
  font-weight: 700;
  color: #3e4383;
}
@media screen and (max-width: 760px) {
  .p-time__right {
    text-align: center;
    font-size: 20px;
  }
}
.p-time__right span {
  display: inline;
}
.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: #3e4383;
  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: 64px;
    text-align: center;
    margin-top: 16px;
  }
}
.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 #3e4383;
  background-color: #3e4383;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-register__nav-btn:hover {
  background-color: #3e4383;
  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 {
    width: 14px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-register__step {
  position: absolute;
  height: min(70px, 6.7961165049vw);
  width: min(70px, 6.7961165049vw);
  background-color: #3e4383;
  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: 71px;
    width: 68px;
    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: #e9eef4;
  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 240px;
    scroll-snap-align: start;
    padding: 24px 16px;
    width: 240px;
    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: 240px;
    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: #444444;
}
.p-register__words span {
  color: #121852;
}
@media screen and (max-width: 760px) {
  .p-register__words {
    font-size: 14px;
  }
}

.p-top-doctor {
  background: #ffffff;
  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: #3e4383;
  }
}
.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: #444444;
  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: #3e4383;
  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: #3e4383;
}
@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: #3e4383;
  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: #444444;
  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: #444444;
  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: #444444;
  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: #444444;
  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: #444444;
  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: #444444;
  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: #3e4383;
}
@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: #444444;
  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: #3e4383;
  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/doctor/arrow.svg);
  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;
  }
}

.l-footer {
  background-color: #3e4383;
  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(295px, 28.640776699vw);
  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;
  }
}/*# sourceMappingURL=style.css.map */