@charset "UTF-8";
/* Start reset CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Body defaults */
body {
  line-height: 1;
}

/* Lists */
ol, ul {
  list-style: none;
}

/* Blockquotes & quotes */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* Tables */
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Reset form elements */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/* Images */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* End reset CSS */
img,
video {
  display: block;
  width: 100%;
}

.m-auto {
  margin: auto;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
     opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

.l-container {
  margin: auto;
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 750px;
  }
}

@media screen and (max-width: 767px) {
  body::-webkit-scrollbar {
    width: 0;
    opacity: 0;
  }
}

.section-intro .intro-note {
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .section-intro {
    padding: 32px 38px 0;
  }
  .section-intro .intro-note {
    font-size: 16px;
  }
  .section-intro .intro-icon {
    width: 683px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .section-intro {
    padding: 4.2666666667vw 5.0666666667vw 0;
  }
  .section-intro .intro-note {
    font-size: 2.1333333333vw;
  }
  .section-intro .intro-icon {
    width: 91.0666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}

.check-point {
  background: linear-gradient(90deg, rgb(242, 34, 195) 0%, rgb(93, 146, 237) 100%);
  position: relative;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.12);
}
.check-point-label {
  color: #d861e9;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  line-height: 1.205;
  text-align: center;
  background: url("../img/check_point_label.png") no-repeat center center/cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.check-point-title {
  font-weight: 600;
  color: #fff;
  line-height: 0.9643055556;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .check-point {
    padding: 55px 20px 62px;
  }
  .check-point-label {
    font-size: 34px;
    width: 311px;
    height: 80px;
    padding-top: 13px;
    top: -40px;
  }
  .check-point-title {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .check-point {
    padding: 7.3333333333vw 2.6666666667vw 8.2666666667vw;
  }
  .check-point-label {
    font-size: 4.5333333333vw;
    width: 41.4666666667vw;
    height: 10.6666666667vw;
    padding-top: 1.7333333333vw;
    top: -5.3333333333vw;
  }
  .check-point-title {
    font-size: 9.6vw;
  }
}

.title-common {
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.title-common .title-small {
  display: block;
  font-weight: 500;
}
.title-common .title-large {
  display: block;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .title-common .title-small {
    font-size: 40px;
    margin-bottom: 14px;
  }
  .title-common .title-large {
    font-size: 66px;
  }
}
@media screen and (max-width: 767px) {
  .title-common .title-small {
    font-size: 5.3333333333vw;
    margin-bottom: 1.8666666667vw;
  }
  .title-common .title-large {
    font-size: 8.8vw;
  }
}

.slider-common .swiper-pagination {
  position: static;
}

.slider-common .swiper-button {
  background: url("../img/arrow_01.png") no-repeat center center/cover;
  top: 50%;
}

.slider-common .swiper-button-prev {
  transform: scaleX(-1);
  left: 0;
}

.slider-common .swiper-button-next {
  right: 0;
}

.slider-common .swiper-button::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .slider-common .swiper-button {
    width: 73px;
    height: 76px;
    margin-top: -36px;
  }
  .slider-common .swiper-slide {
    padding: 0 21px 0 27px;
  }
}
@media screen and (max-width: 767px) {
  .slider-common .swiper-button {
    width: 9.7333333333vw;
    height: 10.1333333333vw;
    margin-top: -4.8vw;
  }
  .slider-common .swiper-slide {
    padding: 0 2.8vw 0 3.6vw;
  }
}
.section-assurances .assurances-number {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: url("../img/decor_01.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-assurances .assurances-number::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.section-assurances .assurances-number span {
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgb(242, 34, 195) 0%, rgb(93, 146, 237) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-assurances .assurances-item {
  position: relative;
  background: linear-gradient(0deg, rgb(225, 233, 245) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 768px) {
  .section-assurances {
    padding-top: 70px;
  }
  .section-assurances .assurances-number {
    width: 243px;
    height: 248px;
    font-size: 154px;
    margin-top: -47px;
    margin-bottom: -56px;
    padding-bottom: 20px;
  }
  .section-assurances .assurances-number::after {
    bottom: 8px;
    height: 135px;
  }
  .section-assurances .assurances-slider {
    margin-top: 30px;
  }
  .section-assurances .assurances-item {
    padding: 143px 0 75px;
  }
}
@media screen and (max-width: 767px) {
  .section-assurances {
    padding-top: 9.3333333333vw;
  }
  .section-assurances .assurances-number {
    width: 32.4vw;
    height: 33.0666666667vw;
    font-size: 20.5333333333vw;
    margin-top: -6.2666666667vw;
    margin-bottom: -7.4666666667vw;
    padding-bottom: 2.6666666667vw;
  }
  .section-assurances .assurances-number::after {
    bottom: 1.0666666667vw;
    height: 18vw;
  }
  .section-assurances .assurances-slider {
    margin-top: 4vw;
  }
  .section-assurances .assurances-item {
    padding: 19.0666666667vw 0 10vw;
  }
}

.section-cta {
  background: linear-gradient(145deg, rgb(242, 34, 195) 0%, rgb(93, 146, 237) 100%);
  color: #231815;
}
.section-cta h2 span {
  display: inline-block;
  width: 100%;
}
.section-cta .cta-inner {
  background-color: #fff;
}
.section-cta .cta-note {
  line-height: 1.375;
  letter-spacing: 0.01em;
}
.section-cta .cta-account {
  letter-spacing: 0.04em;
}
.section-cta .cta-account dl {
  border: 1px solid #666;
}
.section-cta .cta-account dt {
  background-color: #666;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.section-cta .cta-account dd {
  line-height: 1.5;
}
.section-cta .cta-account .cta-note {
  margin-bottom: 0;
}
.section-cta .cta-download {
  display: flex;
  justify-content: center;
}
.section-cta .cta-download > li {
  text-align: center;
}
.section-cta .download-btn {
  display: block;
}
.section-cta .download-text {
  font-weight: 800;
  color: #000;
}
@media screen and (min-width: 768px) {
  .section-cta {
    padding: 20px 40px 60px;
    font-size: 16px;
    font-weight: 300;
  }
  .section-cta .cta-logo {
    width: 302px;
    margin-left: 183px;
  }
  .section-cta .cta-yen {
    width: 120px;
    margin-left: 30px;
  }
  .section-cta .cta-title {
    width: 664px;
    margin-top: 10px;
  }
  .section-cta .cta-text {
    width: 580px;
  }
  .section-cta .cta-inner {
    border-radius: 12px;
    margin-top: 47px;
    padding: 50px 50px 44px;
  }
  .section-cta .cta-sub {
    width: 459px;
  }
  .section-cta .cta-note {
    margin-bottom: 30px;
  }
  .section-cta .cta-download {
    gap: 45px;
    margin-top: 40px;
  }
  .section-cta .download-text {
    font-size: 26px;
    margin-top: 15px;
    font-weight: 700;
  }
  .section-cta .appstore {
    width: 226px;
  }
  .section-cta .googleplay {
    width: 278px;
  }
  .section-cta .cta-account {
    margin: 0 -13px 58px;
  }
  .section-cta .cta-account dl {
    margin-bottom: 9px;
  }
  .section-cta .cta-account dt {
    font-size: 20px;
    padding: 8px 10px 12px;
  }
  .section-cta .cta-account dd {
    padding: 15px 18px;
  }
}
@media screen and (max-width: 767px) {
  .section-cta {
    padding: 2.6666666667vw 5.3333333333vw 8vw;
    font-size: 2.1333333333vw;
    font-weight: 300;
  }
  .section-cta .cta-logo {
    width: 40.2666666667vw;
    margin-left: 24.4vw;
  }
  .section-cta .cta-yen {
    width: 16vw;
    margin-left: 4vw;
  }
  .section-cta .cta-title {
    width: 88.5333333333vw;
    margin-top: 1.3333333333vw;
  }
  .section-cta .cta-text {
    width: 77.3333333333vw;
  }
  .section-cta .cta-inner {
    border-radius: 1.6vw;
    margin-top: 6.2666666667vw;
    padding: 6.6666666667vw 6.6666666667vw 5.8666666667vw;
  }
  .section-cta .cta-sub {
    width: 61.2vw;
  }
  .section-cta .cta-note {
    margin-bottom: 4vw;
  }
  .section-cta .cta-download {
    gap: 6vw;
    margin-top: 5.3333333333vw;
  }
  .section-cta .download-text {
    font-size: 3.4666666667vw;
    margin-top: 2vw;
    font-weight: 700;
  }
  .section-cta .appstore {
    width: 30.1333333333vw;
  }
  .section-cta .googleplay {
    width: 37.0666666667vw;
  }
  .section-cta .cta-account {
    margin: 0 -1.7333333333vw 7.7333333333vw;
  }
  .section-cta .cta-account dl {
    margin-bottom: 1.2vw;
  }
  .section-cta .cta-account dt {
    font-size: 2.6666666667vw;
    padding: 1.0666666667vw 1.3333333333vw 1.6vw;
  }
  .section-cta .cta-account dd {
    padding: 2vw 2.4vw;
  }
}

@media screen and (min-width: 768px) {
  .section-step {
    padding: 76px 0;
  }
  .section-step .step-slider {
    margin-top: 33px;
  }
}
@media screen and (max-width: 767px) {
  .section-step {
    padding: 10.1333333333vw 0;
  }
  .section-step .step-slider {
    margin-top: 4.4vw;
  }
}

.section-voice {
  background: url("../img/voice_bg.png") no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section-voice {
    padding: 44px 0 40px;
  }
  .section-voice .voice-title {
    width: 627px;
    margin-bottom: 22px;
  }
  .section-voice .voice-item {
    width: 692px;
    margin-left: 13px;
    margin-bottom: 14px;
  }
  .section-voice .voice-item:nth-child(2n) {
    width: 696px;
    margin: 0 9px 14px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-voice {
    padding: 5.8666666667vw 0 5.3333333333vw;
  }
  .section-voice .voice-title {
    width: 83.6vw;
    margin-bottom: 2.9333333333vw;
  }
  .section-voice .voice-item {
    width: 92.2666666667vw;
    margin-left: 1.7333333333vw;
    margin-bottom: 1.8666666667vw;
  }
  .section-voice .voice-item:nth-child(2n) {
    width: 92.8vw;
    margin: 0 1.2vw 1.8666666667vw 0;
  }
}

.section-when-safety .check-point-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-when-safety .check-point-title span {
  font-family: "Rubik", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-when-safety {
    padding: 100px 0 88px;
  }
  .section-when-safety .check-point {
    padding: 45px 20px 28px;
  }
  .section-when-safety .check-point-title {
    font-size: 54px;
  }
  .section-when-safety .check-point-title span {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section-when-safety {
    padding: 13.3333333333vw 0 11.7333333333vw;
  }
  .section-when-safety .check-point {
    padding: 6vw 2.6666666667vw 3.7333333333vw;
  }
  .section-when-safety .check-point-title {
    font-size: 7.2vw;
  }
  .section-when-safety .check-point-title span {
    font-size: 10.6666666667vw;
  }
}

.safety-tab .tab-heading {
  display: flex;
}
.safety-tab .tab-heading > li {
  width: 50%;
  background-color: #aeaeae;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.safety-tab .tab-heading > li.active {
  cursor: default;
  background-color: #957adb;
}
.safety-tab .tab-heading .highlight {
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}
.safety-tab .tab-heading .plan {
  font-weight: 600;
}
.safety-tab .tab-content {
  border: 4px solid #957adb;
  border-top: 0;
}
.safety-tab .tab-content li {
  display: none;
  background-color: #fff;
}
.safety-tab .tab-content li.active {
  display: block;
}
@media screen and (min-width: 768px) {
  .safety-tab {
    margin-top: 65px;
  }
  .safety-tab .tab-heading {
    margin: 0 38px;
  }
  .safety-tab .tab-heading > li {
    font-size: 32px;
    border-radius: 20px 20px 0 0;
    padding: 26px 10px 16px;
  }
  .safety-tab .tab-heading .highlight {
    font-size: 42px;
    margin-right: -4px;
  }
  .safety-tab .tab-heading .plan {
    font-size: 25px;
    margin-top: 18px;
  }
  .safety-tab .tab-content {
    padding: 0 24px;
    border-radius: 0 0 20px 20px;
    margin: 0 38px;
    padding: 45px 39px 39px;
  }
}
@media screen and (max-width: 767px) {
  .safety-tab {
    margin-top: 8.6666666667vw;
  }
  .safety-tab .tab-heading {
    margin: 0 5.0666666667vw;
  }
  .safety-tab .tab-heading > li {
    font-size: 4.2666666667vw;
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    padding: 3.4666666667vw 1.3333333333vw 2.1333333333vw;
  }
  .safety-tab .tab-heading .highlight {
    font-size: 5.6vw;
    margin-right: -0.5333333333vw;
  }
  .safety-tab .tab-heading .plan {
    font-size: 3.3333333333vw;
    margin-top: 2.4vw;
  }
  .safety-tab .tab-content {
    padding: 0 3.2vw;
    border-radius: 0 0 2.6666666667vw 2.6666666667vw;
    margin: 0 5.0666666667vw;
    padding: 6vw 5.2vw 5.2vw;
  }
}

.section-howtouse .title-common .title-large {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .section-howtouse {
    padding: 98px 0 80px;
  }
  .section-howtouse .check-point {
    padding: 45px 20px 34px;
    margin-bottom: 37px;
  }
  .section-howtouse .title-common .small {
    font-size: 50px;
  }
  .section-howtouse .howtouse-slider {
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .section-howtouse {
    padding: 13.0666666667vw 0 10.6666666667vw;
  }
  .section-howtouse .check-point {
    padding: 6vw 2.6666666667vw 4.5333333333vw;
    margin-bottom: 4.9333333333vw;
  }
  .section-howtouse .title-common .small {
    font-size: 6.6666666667vw;
  }
  .section-howtouse .howtouse-slider {
    margin-top: 3.7333333333vw;
  }
}

.section-link a {
  display: block;
}
@media screen and (min-width: 768px) {
  .section-link {
    padding: 66px 51px 30px;
  }
  .section-link ul {
    gap: 24px;
  }
  .section-link .sub-links {
    margin: 54px -18px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-link {
    padding: 8.8vw 6.8vw 4vw;
  }
  .section-link ul {
    gap: 3.2vw;
  }
  .section-link .sub-links {
    margin: 7.2vw -2.4vw 0;
  }
}

.section-contact {
  text-align: center;
}
.section-contact h2 {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.section-contact .contact-tel {
  display: block;
}
.section-contact .contact-txt {
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .section-contact {
    padding: 28px 40px 200px 39px;
  }
  .section-contact h2 {
    font-size: 60px;
    margin-bottom: 28px;
  }
  .section-contact .contact-tel {
    width: 519px;
    margin-bottom: 16px;
  }
  .section-contact .contact-txt {
    font-size: 24px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-contact {
    padding: 3.7333333333vw 5.3333333333vw 26.6666666667vw 5.2vw;
  }
  .section-contact h2 {
    font-size: 8vw;
    margin-bottom: 3.7333333333vw;
  }
  .section-contact .contact-tel {
    width: 69.2vw;
    margin-bottom: 2.1333333333vw;
  }
  .section-contact .contact-txt {
    font-size: 3.2vw;
    margin-bottom: 8vw;
  }
}

.fixed {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(216, 216, 216, 0.5);
}
.fixed a {
  display: block;
}
@media screen and (min-width: 768px) {
  .fixed {
    padding: 20px 40px;
  }
  .fixed a {
    width: 666px;
  }
}
@media screen and (max-width: 767px) {
  .fixed {
    padding: 2.6666666667vw 5.3333333333vw;
  }
  .fixed a {
    width: 88.8vw;
  }
}

.navigation {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  right: 0;
  transform: translateY(-200%);
  transition: all 0.3s ease;
}
.navigation.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.navigation-list {
  background: rgba(255, 255, 255, 0.7);
  display: flex;
}
.navigation-item {
  width: 33.3333333333%;
}
.navigation-link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.12);
  background: #957adb;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.navigation-link:hover {
  opacity: 1;
}
.navigation-link.active, .navigation-link:hover {
  background: #d861e9;
}
.navigation-link .num {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.navigation-link .normal {
  line-height: 1.3636363636;
}
.navigation-link .medium {
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
}
.navigation-link .large {
  line-height: 1.1538461538;
}
.navigation-wrap {
  display: block;
}
.navigation-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/arrow_02.png") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .navigation {
    top: 40px;
  }
  .navigation-inner {
    width: 750px;
    margin: auto;
  }
  .navigation-list {
    border-radius: 47px 0 0 47px;
    gap: 14px;
    width: 710px;
    padding: 16px 40px 18px 20px;
    margin-left: auto;
  }
  .navigation-item {
    min-height: 60px;
  }
  .navigation-link {
    border-radius: 30px;
    font-size: 20px;
    padding-right: 16px;
  }
  .navigation-link .num {
    font-size: 28px;
  }
  .navigation-link .normal {
    font-size: 22px;
  }
  .navigation-link .medium {
    font-size: 24px;
  }
  .navigation-link .large {
    font-size: 26px;
  }
  .navigation-wrap::after {
    width: 17px;
    height: 11px;
    right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .navigation {
    top: 5.3333333333vw;
  }
  .navigation-inner {
    width: 100%;
    max-width: 100vw;
    margin: auto;
  }
  .navigation-list {
    border-radius: 6.2666666667vw 0vw 0vw 6.2666666667vw;
    gap: calc(10 / 750 * 100vw);
    width: calc(710 / 750 * 100vw);
    padding: 2.1333333333vw 5.3333333333vw 2.4vw 2.6666666667vw;
    margin-left: auto;
  }
  .navigation-item {
    min-height: 8vw;
  }
  .navigation-link {
    border-radius: 4vw;
    font-size: 2.6666666667vw;
    padding-right: 2.1333333333vw;
  }
  .navigation-link .num {
    font-size: 3.7333333333vw;
  }
  .navigation-link .normal {
    font-size: 2.9333333333vw;
  }
  .navigation-link .medium {
    font-size: 3.2vw;
  }
  .navigation-link .large {
    font-size: 3.4666666667vw;
  }
  .navigation-wrap::after {
    width: 2.2666666667vw;
    height: 1.4666666667vw;
    right: 1.6vw;
  }
}

/*# sourceMappingURL=style.css.map */
