@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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;
}

/*HTML5display-roleresetforolderbrowsers*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "NotoSansjp";
  font-weight: 900;
  src: url("../fonts/notosansjp-black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  src: url("../fonts/Poppins-Black.woff2") format("woff2");
  font-display: swap;
}
:root {
  --color-black: #000000;
  --color-sub-black: #555555;
  --color-white: #ffffff;
  --color-main: #d5277a;
  --color-sub: #f9e9f8;
  --color-pink: #e47eb0;
  --color-red: #ff008c;
  --color-yellow: #fff302;
  --color-blue: #1c2438;
  --color-feature-bg: #ececec;
  --color-feature-content: #fff9f7;
  --color-text: #000000;
  --color-sub-text: #141414;
  --color-divide: #ededed;
  --color-bg-emph: rgba(252, 3, 135, 0.02);
  --color-bg: #eeeeee;
  --image-bg: #d9dde2;
  --content-bg: #f4f5f7;
  --heading-bg: #fff9f7;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: 100%;
  line-height: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

body {
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

body,
html {
  width: 100%;
  scrollbar-gutter: stable;
  overscroll-behavior-y: contain;
}

p,
a,
li,
dt,
dd,
div,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button {
  letter-spacing: 0.03em;
  line-height: 1em;
}

:focus:not(:fous-visible) {
  outline: none;
}

:focus-visible {
  outline: 1px solid var(--color-main);
}

summary {
  outline: none;
}

a {
  color: var(--color-black);
  text-decoration: none;
  word-break: break-all;
}

a,
p,
div,
li,
dd,
dt {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.isChrome * {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
}

img,
svg {
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

img,
svg {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

.disabled {
  cursor: default !important;
}

.disabled a {
  cursor: default !important;
}

._disabled {
  pointer-events: none !important;
}

.is_pc .device_sp {
  display: none !important;
}

.is_sp .device_pc {
  display: none !important;
}

.is__pc {
  display: block;
}
@media not screen and (min-width: 781px) {
  .is__pc {
    display: none;
  }
}

.is__sp {
  display: none;
}
@media not screen and (min-width: 781px) {
  .is__sp {
    display: block;
  }
}

::selection {
  background: var(--color-main);
  color: var(--color-white);
}

.unselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  -moz-outline-style: none;
  outline: none !important;
}

option {
  color: var(--color-black);
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

select,
option,
input,
textarea {
  color: var(--color-black);
}

::placeholder {
  color: var(--color-line-gray);
}

._nowrap {
  white-space: nowrap;
}

::-webkit-scrollbar {
  width: 8px;
}
@media not screen and (min-width: 781px) {
  ::-webkit-scrollbar {
    width: 2.0512820513vw;
    height: 2.0512820513vw;
  }
}

::-webkit-scrollbar-track {
  border-radius: 4px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  background-color: var(--color-sub);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
}

.is_pc .tel {
  pointer-events: none;
}

/* --------------------------------------------------
*
    common
*
-------------------------------------------------- */
img,
svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
img path,
svg path {
  fill-rule: evenodd;
}

main {
  width: 100vw;
  margin: 0 auto;
  display: block;
}
@media (min-width: 1600px) {
  main {
    width: 1600px;
  }
}
@media (max-width: 780px) {
  main {
    width: 100%;
  }
}

@media (min-width: 781px) {
  body {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .switch_sp {
    display: none;
  }
  br.sp {
    display: none;
  }
}
/* -------------------------------------------------- */
@media not screen and (min-width: 781px) {
  body {
    z-index: 10;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .switch_pc {
    display: none;
  }
  br {
    display: inherit;
  }
  br.sp {
    display: inherit;
  }
}
/* -------------------------------------------------- */
.page__title__content {
  width: 100%;
  border-bottom: solid 1px var(--color-sub-black);
  height: 1.6666666667vw;
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 781px) {
  .page__title__content {
    position: relative;
    height: auto;
  }
}
.page__title__content h1 {
  font-size: 1.25vw;
  color: var(--color-black);
}
@media (min-width: 1600px) {
  .page__title__content h1 {
    font-size: 20px;
  }
}
@media (max-width: 780px) {
  .page__title__content h1 {
    font-size: 2.8205128205vw;
  }
}
@media not screen and (min-width: 781px) {
  .page__title__content h1 {
    height: auto;
    line-height: 1.5;
    text-align: center;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding-top: 4.1666666667vw;
  width: 100%;
}
@media (min-width: 1600px) {
  header {
    padding-top: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  header {
    padding-top: 0vw;
  }
}
header .header__logo {
  width: 24.3333333333vw;
  margin-left: 4.1666666667vw;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  z-index: 21;
}
@media (min-width: 1600px) {
  header .header__logo {
    width: 389.3333333333px;
  }
}
@media (max-width: 780px) {
  header .header__logo {
    width: 69.2307692308vw;
  }
}
@media (min-width: 1600px) {
  header .header__logo {
    margin-left: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  header .header__logo {
    margin-left: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  header .header__logo {
    padding-top: 2.5641025641vw;
  }
}
header h1 {
  font-size: 0.875vw;
  color: var(--color-white);
  font-weight: bold;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 1600px) {
  header h1 {
    font-size: 14px;
  }
}
@media (max-width: 780px) {
  header h1 {
    font-size: 4.1025641026vw;
  }
}
@media not screen and (min-width: 781px) {
  header h1 {
    text-align: left;
    line-height: 1;
  }
}
header .navbar {
  display: flex;
  align-items: center;
  gap: 1.1666666667vw;
  height: 3.3333333333vw;
  margin-right: 4.1666666667vw;
  transition: all 0.4s ease-out;
}
@media (min-width: 1600px) {
  header .navbar {
    gap: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  header .navbar {
    gap: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  header .navbar {
    height: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  header .navbar {
    height: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  header .navbar {
    margin-right: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  header .navbar {
    margin-right: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  header .navbar {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color-black);
    padding-top: 35.8974358974vw;
    padding-left: 7.6923076923vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--color-white);
    font-weight: 700;
    z-index: 20;
  }
  header .navbar.is__open {
    display: flex;
  }
  header .navbar.is__open a {
    color: var(--color-white);
    position: relative;
    z-index: 2;
  }
}
header .navbar a {
  color: var(--color-white);
  font-size: 1.3333333333vw;
  transition: all 0.3s ease-out;
  font-weight: 700;
}
@media (min-width: 1600px) {
  header .navbar a {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  header .navbar a {
    font-size: 5.1282051282vw;
  }
}
header .navbar a:hover {
  opacity: 0.6;
}
header .navbar .button__pink {
  height: 3.3333333333vw;
  width: 8.3333333333vw;
  padding: 0 1.5384615385vw 0 1.5384615385vw;
}
@media (min-width: 1600px) {
  header .navbar .button__pink {
    height: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  header .navbar .button__pink {
    height: 15.3846153846vw;
  }
}
@media (min-width: 1600px) {
  header .navbar .button__pink {
    width: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  header .navbar .button__pink {
    width: 71.7948717949vw;
  }
}
@media not screen and (min-width: 781px) {
  header .navbar .button__pink {
    padding: 0 5.1282051282vw 0 10.2564102564vw;
  }
}
@media not screen and (min-width: 781px) {
  header .navbar .button__pink a {
    width: 66.6666666667vw;
  }
}
header .navbar .button__pink a .item__text {
  font-size: 1vw;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 1600px) {
  header .navbar .button__pink a .item__text {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  header .navbar .button__pink a .item__text {
    font-size: 4.6153846154vw;
  }
}
header .navbar .button__pink .arrow {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  background-color: unset;
}
@media (min-width: 1600px) {
  header .navbar .button__pink .arrow {
    width: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  header .navbar .button__pink .arrow {
    width: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  header .navbar .button__pink .arrow {
    height: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  header .navbar .button__pink .arrow {
    height: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  header .navbar .button__pink .arrow:after {
    width: 7.6923076923vw;
    height: 1.5384615385vw;
  }
}
header .hamburger {
  display: none;
}
@media not screen and (min-width: 781px) {
  header .hamburger {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: visible;
    width: unset;
    position: fixed;
    top: 0;
    right: 0;
    width: 15.3846153846vw;
    z-index: 100;
  }
  header .hamburger.hamburger__rotate.active {
    transform: rotate(45deg);
  }
  header .hamburger .top {
    stroke-dasharray: 40 160;
  }
  header .hamburger .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
  }
  header .hamburger .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
  }
  header .hamburger.active .top {
    stroke-dashoffset: -64px;
  }
  header .hamburger.active .middle {
    transform: rotate(90deg);
  }
  header .hamburger.active .bottom {
    stroke-dashoffset: -64px;
  }
  header .hamburger .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--color-white);
    stroke-width: 5.5;
  }
}
header.single__header {
  position: relative;
  padding-bottom: 2.9166666667vw;
  border-bottom: solid 1px var(--color-black);
}
@media (min-width: 1600px) {
  header.single__header {
    padding-bottom: 46.6666666667px;
  }
}
@media (max-width: 780px) {
  header.single__header {
    padding-bottom: 0vw;
  }
}
header.single__header .header__logo {
  filter: none;
}
header.single__header .header__logo.is__open {
  filter: brightness(0) invert(1);
}
@media not screen and (min-width: 781px) {
  header.single__header .header__logo {
    padding-bottom: 2.5641025641vw;
  }
}
header.single__header .navbar a {
  color: var(--color-black);
}
@media not screen and (min-width: 781px) {
  header.single__header .navbar a {
    color: var(--color-white);
  }
}
header.single__header .hamburger .line {
  stroke: var(--color-main);
}

.breadcrumbs {
  width: 100%;
  border-bottom: solid 1px var(--color-divide);
  display: flex;
  align-items: center;
}
.breadcrumbs .rank-math-breadcrumb {
  width: 71.6666666667vw;
  font-size: 1vw;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  display: block;
  margin: 0.8333333333vw;
  margin-left: 4.1666666667vw;
}
@media (min-width: 1600px) {
  .breadcrumbs .rank-math-breadcrumb {
    width: 1146.6666666667px;
  }
}
@media (max-width: 780px) {
  .breadcrumbs .rank-math-breadcrumb {
    width: 94.8717948718vw;
  }
}
@media (min-width: 1600px) {
  .breadcrumbs .rank-math-breadcrumb {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .breadcrumbs .rank-math-breadcrumb {
    font-size: 3.0769230769vw;
  }
}
@media (min-width: 1600px) {
  .breadcrumbs .rank-math-breadcrumb {
    margin: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .breadcrumbs .rank-math-breadcrumb {
    margin: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .breadcrumbs .rank-math-breadcrumb {
    margin-left: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .breadcrumbs .rank-math-breadcrumb {
    margin-left: 2.5641025641vw;
  }
}
.breadcrumbs .rank-math-breadcrumb::-webkit-scrollbar {
  display: none;
}

.section__headline {
  max-width: 83.3333333333vw;
  margin: 0 auto;
  margin-bottom: 4.1666666667vw;
}
@media (min-width: 1600px) {
  .section__headline {
    max-width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__headline {
    max-width: 128.2051282051vw;
  }
}
@media (min-width: 1600px) {
  .section__headline {
    margin-bottom: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .section__headline {
    margin-bottom: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  .section__headline {
    margin-left: 2.5641025641vw;
    max-width: 100%;
    width: calc(100% - 5.1282051282vw);
  }
}
.section__headline h1,
.section__headline h2,
.section__headline h3 {
  font-size: 1.3333333333vw;
  color: var(--color-text);
  line-height: 1;
}
@media (min-width: 1600px) {
  .section__headline h1,
  .section__headline h2,
  .section__headline h3 {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__headline h1,
  .section__headline h2,
  .section__headline h3 {
    font-size: 5.1282051282vw;
  }
}
.section__headline h1 span,
.section__headline h2 span,
.section__headline h3 span {
  font-size: 4.6666666667vw;
  margin-top: 0.8333333333vw;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  background: linear-gradient(1deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}
@media (min-width: 1600px) {
  .section__headline h1 span,
  .section__headline h2 span,
  .section__headline h3 span {
    font-size: 74.6666666667px;
  }
}
@media (max-width: 780px) {
  .section__headline h1 span,
  .section__headline h2 span,
  .section__headline h3 span {
    font-size: 14.358974359vw;
  }
}
@media (min-width: 1600px) {
  .section__headline h1 span,
  .section__headline h2 span,
  .section__headline h3 span {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__headline h1 span,
  .section__headline h2 span,
  .section__headline h3 span {
    margin-top: 2.5641025641vw;
  }
}
.section__headline h4 {
  font-size: 4.6666666667vw;
  margin-top: 0.8333333333vw;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  background: linear-gradient(1deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media (min-width: 1600px) {
  .section__headline h4 {
    font-size: 74.6666666667px;
  }
}
@media (max-width: 780px) {
  .section__headline h4 {
    font-size: 14.358974359vw;
  }
}
@media (min-width: 1600px) {
  .section__headline h4 {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__headline h4 {
    margin-top: 2.5641025641vw;
  }
}
.section__headline h2 span {
  font-size: 4.6666666667vw;
  margin-top: 0.8333333333vw;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  background: linear-gradient(1deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media (min-width: 1600px) {
  .section__headline h2 span {
    font-size: 74.6666666667px;
  }
}
@media (max-width: 780px) {
  .section__headline h2 span {
    font-size: 14.358974359vw;
  }
}
@media (min-width: 1600px) {
  .section__headline h2 span {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__headline h2 span {
    margin-top: 2.5641025641vw;
  }
}

.section__heading h3 {
  font-size: 3vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .section__heading h3 {
    font-size: 48px;
  }
}
@media (max-width: 780px) {
  .section__heading h3 {
    font-size: 7.1794871795vw;
  }
}
.section__heading p {
  text-align: center;
  padding-top: 1.3333333333vw;
  font-size: 1.3333333333vw;
  color: var(--color-text);
  line-height: 2;
}
@media (min-width: 1600px) {
  .section__heading p {
    padding-top: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__heading p {
    padding-top: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .section__heading p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .section__heading p {
    font-size: 3.5897435897vw;
  }
}
@media not screen and (min-width: 781px) {
  .section__heading p {
    width: 94.8717948718vw;
    margin: 0 auto;
  }
}

.button__pink {
  background: linear-gradient(270deg, #ff3b10 0%, #f94cff 51%, #ff3b10 100%);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 8.3333333333vw;
  width: 20vw;
  height: 5.3333333333vw;
  padding: 0 1.5384615385vw 0 2.5641025641vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  background-position: 1% 50%;
}
@media (min-width: 1600px) {
  .button__pink {
    border-radius: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink {
    border-radius: 10.7692307692vw;
  }
}
@media (min-width: 1600px) {
  .button__pink {
    width: 320px;
  }
}
@media (max-width: 780px) {
  .button__pink {
    width: 76.9230769231vw;
  }
}
@media (min-width: 1600px) {
  .button__pink {
    height: 85.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink {
    height: 10.7692307692vw;
  }
}
.button__pink a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.3333333333vw;
  width: 100%;
}
@media (min-width: 1600px) {
  .button__pink a {
    height: 85.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink a {
    height: 5.1282051282vw;
  }
}
.button__pink a .item__text {
  font-size: 1.3333333333vw;
  color: var(--color-white);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .button__pink a .item__text {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink a .item__text {
    font-size: 2.5641025641vw;
  }
}
.button__pink .arrow {
  width: 3.1666666667vw;
  height: 3.1666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1600px) {
  .button__pink .arrow {
    width: 50.6666666667px;
  }
}
@media (max-width: 780px) {
  .button__pink .arrow {
    width: 10.7692307692vw;
  }
}
@media (min-width: 1600px) {
  .button__pink .arrow {
    height: 50.6666666667px;
  }
}
@media (max-width: 780px) {
  .button__pink .arrow {
    height: 10.7692307692vw;
  }
}
.button__pink .arrow::after {
  content: "";
  width: 1.3333333333vw;
  height: 0.3333333333vw;
  border-bottom: solid 1px var(--color-white);
  border-right: solid 1px var(--color-white);
  transform: skew(45deg);
}
@media (min-width: 1600px) {
  .button__pink .arrow::after {
    width: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink .arrow::after {
    width: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .button__pink .arrow::after {
    height: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__pink .arrow::after {
    height: 0.7692307692vw;
  }
}
.button__pink:hover {
  background-position: 99% 50%;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
  border-color: transparent;
}
.button__pink:hover a .item__text {
  font-weight: 700;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(-4px, 0) rotate(0deg);
}
.button__pink:hover .arrow {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(4px, 0) rotate(0deg);
}

.button__white {
  background-color: var(--color-white);
  color: var(--color-main);
  font-weight: 700;
  border-radius: 8.3333333333vw;
  transition: all 0.4s ease-out;
  width: 26.6666666667vw;
  padding: 0 2.5641025641vw 0 3.8461538462vw;
}
@media (min-width: 1600px) {
  .button__white {
    border-radius: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__white {
    border-radius: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .button__white {
    width: 426.6666666667px;
  }
}
@media (max-width: 780px) {
  .button__white {
    width: 51.2820512821vw;
  }
}
.button__white a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 19.1666666667vw;
  height: 5.3333333333vw;
  padding-right: 0.9166666667vw;
  padding-left: 4vw;
  color: var(--color-main);
}
@media (min-width: 1600px) {
  .button__white a {
    width: 306.6666666667px;
  }
}
@media (max-width: 780px) {
  .button__white a {
    width: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .button__white a {
    height: 85.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__white a {
    height: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .button__white a {
    padding-right: 14.6666666667px;
  }
}
@media (max-width: 780px) {
  .button__white a {
    padding-right: 2.8205128205vw;
  }
}
@media (min-width: 1600px) {
  .button__white a {
    padding-left: 64px;
  }
}
@media (max-width: 780px) {
  .button__white a {
    padding-left: 7.1794871795vw;
  }
}
.button__white a .item__text {
  font-size: 1.5vw;
  font-weight: 700;
  margin-bottom: 0;
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1600px) {
  .button__white a .item__text {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .button__white a .item__text {
    font-size: 4.1025641026vw;
  }
}
.button__white .arrow {
  width: 3.5vw;
  height: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1600px) {
  .button__white .arrow {
    width: 56px;
  }
}
@media (max-width: 780px) {
  .button__white .arrow {
    width: 10.7692307692vw;
  }
}
@media (min-width: 1600px) {
  .button__white .arrow {
    height: 56px;
  }
}
@media (max-width: 780px) {
  .button__white .arrow {
    height: 10.7692307692vw;
  }
}
.button__white .arrow::after {
  content: "";
  width: 1.3333333333vw;
  height: 0.3333333333vw;
  border-bottom: solid 1px var(--color-main);
  border-right: solid 1px var(--color-main);
  transform: skew(45deg);
}
@media (min-width: 1600px) {
  .button__white .arrow::after {
    width: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__white .arrow::after {
    width: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .button__white .arrow::after {
    height: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .button__white .arrow::after {
    height: 0.7692307692vw;
  }
}
.button__white:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
  border-color: transparent;
  background: linear-gradient(270deg, #ff3b10 0%, #f94cff 51%, #ff3b10 100%);
  background-size: 200% auto;
  background-position: right center;
}
.button__white:hover a .item__text {
  color: var(--color-white);
  background: unset;
  -webkit-text-fill-color: unset;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(-4px, 0) rotate(0deg);
}
.button__white:hover .arrow {
  background: unset;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(4px, 0) rotate(0deg);
}
.button__white:hover .arrow::after {
  border-bottom: solid 1px var(--color-white);
  border-right: solid 1px var(--color-white);
}

.more__detail__wrapper a .more__detail__btn {
  padding-bottom: 0.3333333333vw;
  color: var(--color-sub-black);
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  transition: all 0.4s ease-out;
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn {
    padding-bottom: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn {
    padding-bottom: 0.5128205128vw;
  }
}
.more__detail__wrapper a .more__detail__btn span {
  position: relative;
  font-size: 1.5vw;
  color: var(--color-sub-black);
  transition: all 0.4s ease-out;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn span {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn span {
    font-size: 3.3333333333vw;
  }
}
.more__detail__wrapper a .more__detail__btn span .arrow {
  width: 2.5vw;
  height: 1.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn span .arrow {
    width: 40px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn span .arrow {
    width: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn span .arrow {
    height: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn span .arrow {
    height: 5.1282051282vw;
  }
}
.more__detail__wrapper a .more__detail__btn span .arrow::after {
  content: "";
  width: 1.3333333333vw;
  height: 0.3333333333vw;
  border-bottom: solid 1px var(--color-sub-black);
  border-right: solid 1px var(--color-sub-black);
  transform: skew(45deg);
  transition: all 0.4s ease-out;
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn span .arrow::after {
    width: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn span .arrow::after {
    width: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .more__detail__wrapper a .more__detail__btn span .arrow::after {
    height: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a .more__detail__btn span .arrow::after {
    height: 0.7692307692vw;
  }
}
.more__detail__wrapper a:hover .more__detail__btn {
  border-bottom: solid 1px var(--color-main);
}
.more__detail__wrapper a:hover .more__detail__btn span {
  color: var(--color-main);
}
.more__detail__wrapper a:hover .more__detail__btn span .arrow::after {
  content: "";
  width: 1.3333333333vw;
  height: 0.3333333333vw;
  border-bottom: solid 1px var(--color-main);
  border-right: solid 1px var(--color-main);
  transform: skew(45deg);
}
@media (min-width: 1600px) {
  .more__detail__wrapper a:hover .more__detail__btn span .arrow::after {
    width: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a:hover .more__detail__btn span .arrow::after {
    width: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .more__detail__wrapper a:hover .more__detail__btn span .arrow::after {
    height: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .more__detail__wrapper a:hover .more__detail__btn span .arrow::after {
    height: 0.7692307692vw;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-black);
  padding-top: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .footer {
    padding-top: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer {
    padding-top: 15.3846153846vw;
  }
}
.footer .nav {
  display: flex;
  gap: 3.3333333333vw;
  align-content: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 91.6666666667vw;
  padding-bottom: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .footer .nav {
    gap: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .nav {
    gap: 12.8205128205vw;
  }
}
@media (min-width: 1600px) {
  .footer .nav {
    width: 1466.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .nav {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .footer .nav {
    padding-bottom: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .nav {
    padding-bottom: 5.1282051282vw;
  }
}
.footer .nav .footer__logo {
  width: 25vw;
  filter: brightness(0) invert(1);
}
@media (min-width: 1600px) {
  .footer .nav .footer__logo {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__logo {
    width: 89.7435897436vw;
  }
}
@media not screen and (min-width: 781px) {
  .footer .nav .footer__logo {
    margin: 10.2564102564vw auto 0;
  }
}
.footer .nav .footer__logo a {
  display: block;
  transition: all 0.3s ease-out;
}
.footer .nav .footer__logo a:hover {
  opacity: 0.6;
}
.footer .nav .footer__logo img {
  width: 100%;
}
.footer .nav .footer__logo p {
  line-height: 1.25;
  font-size: 1.25vw;
  margin-top: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .footer .nav .footer__logo p {
    font-size: 20px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__logo p {
    font-size: 3.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .footer .nav .footer__logo p {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__logo p {
    margin-top: 5.1282051282vw;
  }
}
.footer .nav .footer__menu {
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 781px) {
  .footer .nav .footer__menu {
    width: fit-content;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0vw;
  }
}
.footer .nav .footer__menu li {
  font-size: 1.1666666667vw;
  color: var(--color-white);
  transition: all 0.3s ease-out;
  position: relative;
  padding-right: 1.6666666667vw;
  line-height: 2;
}
@media (min-width: 1600px) {
  .footer .nav .footer__menu li {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__menu li {
    font-size: 4.6153846154vw;
  }
}
@media (min-width: 1600px) {
  .footer .nav .footer__menu li {
    padding-right: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__menu li {
    padding-right: 5.1282051282vw;
  }
}
.footer .nav .footer__menu li:before {
  position: absolute;
  content: "/";
  left: -1.25vw;
  font-size: 1.1666666667vw;
}
@media (min-width: 1600px) {
  .footer .nav .footer__menu li:before {
    left: -20px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__menu li:before {
    left: -1.2820512821vw;
  }
}
@media (min-width: 1600px) {
  .footer .nav .footer__menu li:before {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .nav .footer__menu li:before {
    font-size: 3.0769230769vw;
  }
}
@media not screen and (min-width: 781px) {
  .footer .nav .footer__menu li:before {
    content: none;
  }
}
.footer .nav .footer__menu li a {
  display: block;
  color: var(--color-white);
  font-weight: 200;
  transition: all 0.3s ease-out;
  line-height: 2;
}
.footer .nav .footer__menu li a:hover {
  opacity: 0.5;
}
.footer .nav .footer__menu li:first-of-type:before {
  content: none;
}
.footer .sns__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91.6666666667vw;
  gap: 0.8333333333vw;
  padding-top: 0.8333333333vw;
  padding-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .footer .sns__wrapper {
    width: 1466.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .footer .sns__wrapper {
    gap: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper {
    gap: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .footer .sns__wrapper {
    padding-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .footer .sns__wrapper {
    padding-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper {
    padding-bottom: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .footer .sns__wrapper {
    width: fit-content;
  }
}
.footer .sns__wrapper li {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  filter: unset;
  transition: all 0.3s ease-out;
  background-color: var(--color-white);
  border-radius: 0.3333333333vw;
}
@media (min-width: 1600px) {
  .footer .sns__wrapper li {
    width: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper li {
    width: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .footer .sns__wrapper li {
    height: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper li {
    height: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .footer .sns__wrapper li {
    border-radius: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .sns__wrapper li {
    border-radius: 1.0256410256vw;
  }
}
.footer .sns__wrapper li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.footer .sns__wrapper li img {
  width: 80%;
}
.footer .sns__wrapper li:hover {
  opacity: 0.5;
}
.footer .copy__wrapper {
  margin-bottom: 0.8333333333vw;
  padding-bottom: 0vw;
  width: 91.6666666667vw;
}
@media (min-width: 1600px) {
  .footer .copy__wrapper {
    margin-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .copy__wrapper {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1600px) {
  .footer .copy__wrapper {
    padding-bottom: 0px;
  }
}
@media (max-width: 780px) {
  .footer .copy__wrapper {
    padding-bottom: 43.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .footer .copy__wrapper {
    width: 1466.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .copy__wrapper {
    width: 100%;
  }
}
@media not screen and (min-width: 781px) {
  .footer .copy__wrapper {
    text-align: center;
  }
}
.footer .copy__wrapper .copyright {
  color: var(--color-white);
  font-size: 1.1666666667vw;
  font-weight: 200;
}
@media (min-width: 1600px) {
  .footer .copy__wrapper .copyright {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .copy__wrapper .copyright {
    font-size: 3.3333333333vw;
  }
}
.footer .copy__wrapper .copyright a {
  color: var(--color-white);
  transition: all 0.3s ease-out;
}
.footer .copy__wrapper .copyright a:hover {
  opacity: 0.6;
}
.footer .footer__fixed__button {
  display: none;
}
@media not screen and (min-width: 781px) {
  .footer .footer__fixed__button {
    display: block;
    position: fixed;
    bottom: -52px;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: bottom 0.3s ease-in-out;
  }
}
.footer .footer__fixed__button.active {
  bottom: 0;
}
.footer .footer__fixed__button li {
  width: 100%;
  background-color: #06c755;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: solid 1px #00aa45;
}
.footer .footer__fixed__button li a {
  color: var(--color-white);
  text-align: center;
  font-size: 1.8333333333vw;
  text-decoration: none;
}
@media (min-width: 1600px) {
  .footer .footer__fixed__button li a {
    font-size: 29.3333333333px;
  }
}
@media (max-width: 780px) {
  .footer .footer__fixed__button li a {
    font-size: 5.641025641vw;
  }
}
.footer .footer__fixed__button li a svg {
  width: 1.6666666667vw;
  fill: var(--color-white);
}
@media (min-width: 1600px) {
  .footer .footer__fixed__button li a svg {
    width: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .footer .footer__fixed__button li a svg {
    width: 5.1282051282vw;
  }
}

/* -----------
PAGE top 
----------- */
.main__view {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 800px;
  z-index: 0;
}
@media not screen and (min-width: 781px) {
  .main__view {
    max-height: unset;
    height: 179.4871794872vw;
  }
}
.main__view:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background-color: #333;
  background-image: repeating-linear-gradient(0deg, #000 0 2px, transparent 2px 4px), repeating-linear-gradient(90deg, #777 0 2px, transparent 2px 4px);
  box-shadow: inset 5px 5px 80px rgba(25, 40, 43, 0.8);
}
.main__view .mv__bg {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 120%;
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.main__view .mv__bg .mv__bg__content {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  -webkit-transform: rotateX(15deg) rotateY(30deg) rotateZ(-15deg);
  transform: rotateX(15deg) rotateY(30deg) rotateZ(-15deg);
}
.main__view .mv__bg .mv__bg__content .background__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 800%;
  max-width: none;
  height: 100%;
  -webkit-animation: mv linear 80s infinite;
  animation: mv linear 80s infinite;
  background-image: url(../img/mv.webp);
  background-repeat: repeat;
  background-size: contain;
}
@media not screen and (min-width: 781px) {
  .main__view .mv__bg .mv__bg__content .background__animation {
    background-image: url(../img/mv-sp.webp);
    animation: mv linear 20s infinite;
  }
}
@keyframes mv {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-500vw);
  }
}
.main__view .mv__image {
  position: absolute;
  width: 52.9166666667vw;
  height: 31.8333333333vw;
  right: -4.6153846154vw;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  bottom: 0;
  z-index: 1;
  max-width: 67vw;
}
@media (min-width: 1600px) {
  .main__view .mv__image {
    width: 846.6666666667px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__image {
    width: 133.3333333333vw;
  }
}
@media (min-width: 1600px) {
  .main__view .mv__image {
    height: 509.3333333333px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__image {
    height: 51.2820512821vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__image {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: unset;
    top: unset;
    bottom: -2.5641025641vw;
    max-width: 87.1794871795vw;
  }
}
.main__view .mv__image img {
  width: 100%;
}
.main__view .mv__copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 4.1666666667vw;
  margin-top: 4.1666666667vw;
  z-index: 1;
}
@media (min-width: 1600px) {
  .main__view .mv__copy {
    left: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy {
    left: 6.4102564103vw;
  }
}
@media (min-width: 1600px) {
  .main__view .mv__copy {
    margin-top: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy {
    margin-top: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy {
    top: 66.6666666667vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .sp__mv__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.main__view .mv__copy .mv__copy__sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .mv__copy__sub {
    justify-content: center;
  }
}
.main__view .mv__copy .mv__copy__sub span {
  color: var(--color-white);
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  padding: 0.5vw 1.6666666667vw;
  display: inline-block;
  font-weight: 700;
  font-size: 1.5vw;
  margin-right: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .main__view .mv__copy .mv__copy__sub span {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy .mv__copy__sub span {
    font-size: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .main__view .mv__copy .mv__copy__sub span {
    margin-right: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy .mv__copy__sub span {
    margin-right: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .mv__copy__sub span {
    padding: 2.5641025641vw 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .mv__copy__sub {
    text-align: center;
    font-weight: 700;
  }
}
.main__view .mv__copy .mv__copy__main {
  font-family: "NotoSansjp", sans-serif;
  font-weight: 900;
  line-height: 1.15;
  font-size: 5vw;
  margin-bottom: 2.6666666667vw;
  color: var(--color-white);
}
@media (min-width: 1600px) {
  .main__view .mv__copy .mv__copy__main {
    font-size: 80px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy .mv__copy__main {
    font-size: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .main__view .mv__copy .mv__copy__main {
    margin-bottom: 42.6666666667px;
  }
}
@media (max-width: 780px) {
  .main__view .mv__copy .mv__copy__main {
    margin-bottom: 0vw;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .mv__copy__main {
    line-height: 1.5;
    letter-spacing: 3px;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .button__pink {
    width: 71.7948717949vw;
    margin: 2.5641025641vw auto 0;
    padding: 0 3.5897435897vw 0 5.1282051282vw;
  }
  .main__view .mv__copy .button__pink a .item__text {
    font-size: 5.1282051282vw;
    font-weight: 700;
  }
}
@media not screen and (min-width: 781px) {
  .main__view .mv__copy .button__pink .arrow {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
  }
}

.banner__cv {
  position: relative;
  width: fit-content;
  overflow-x: hidden;
  z-index: 2;
  top: -19.1666666667vw;
  right: -12.5vw;
  border-radius: 5.1282051282vw 0 0 5.1282051282vw;
  background: linear-gradient(45deg, rgba(255, 59, 16, 0.7) 0%, rgba(249, 76, 255, 0.7) 100%);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  padding-right: 4.6666666667vw;
  padding-left: 4.6666666667vw;
  padding-top: 3.3333333333vw;
  padding-bottom: 4vw;
  margin-left: auto;
  margin-right: 12.5vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .banner__cv {
    top: -306.6666666667px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    top: -25.641025641vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    right: -200px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    right: -25.641025641vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    padding-right: 74.6666666667px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    padding-right: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    padding-left: 74.6666666667px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    padding-left: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    padding-top: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    padding-top: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    padding-bottom: 64px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    padding-bottom: 7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  .banner__cv {
    margin-right: 200px;
  }
}
@media (max-width: 780px) {
  .banner__cv {
    margin-right: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  .banner__cv {
    display: none;
  }
}
.banner__cv p {
  font-weight: 700;
  font-size: 2vw;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 24px;
}
@media (min-width: 1600px) {
  .banner__cv p {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .banner__cv p {
    font-size: 3.0769230769vw;
  }
}

.slogan {
  position: relative;
  top: -16.6666666667vw;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .slogan {
    top: -266.6666666667px;
  }
}
@media (max-width: 780px) {
  .slogan {
    top: 0vw;
  }
}
.slogan .slogan__bg {
  position: absolute;
  width: 200vw;
  height: 100%;
  background-image: url(../img/slogan-bg.svg);
  background-size: cover;
  animation: bgLoop 30s linear infinite;
  background-repeat: repeat-x;
  will-change: transform;
  z-index: -1;
}
@media not screen and (min-width: 781px) {
  .slogan .slogan__bg {
    margin-top: 7.6923076923vw;
  }
}
@keyframes bgLoop {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100vw);
  }
}
.slogan .slogan__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .slogan .slogan__content {
    margin-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content {
    margin-top: 10.2564102564vw;
  }
}
.slogan .slogan__content h2 {
  font-size: 3.3333333333vw;
  font-family: "NotoSansjp", sans-serif;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.3333333333vw;
  padding-top: 0.8333333333vw;
  padding-bottom: 0.6666666667vw;
  color: var(--color-text);
  display: block;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .slogan .slogan__content h2 {
    font-size: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content h2 {
    font-size: 6.4102564103vw;
  }
}
@media (min-width: 1600px) {
  .slogan .slogan__content h2 {
    letter-spacing: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content h2 {
    letter-spacing: 0vw;
  }
}
@media (min-width: 1600px) {
  .slogan .slogan__content h2 {
    padding-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content h2 {
    padding-top: 2.0512820513vw;
  }
}
@media (min-width: 1600px) {
  .slogan .slogan__content h2 {
    padding-bottom: 10.6666666667px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content h2 {
    padding-bottom: 5.1282051282vw;
  }
}
.slogan .slogan__content h2 span {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.slogan .slogan__content h2 span.is__animated {
  clip-path: inset(0);
}
@media not screen and (min-width: 781px) {
  .slogan .slogan__content h2 {
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.slogan .slogan__content p {
  font-size: 1.3333333333vw;
  padding-bottom: 2.9166666667vw;
  line-height: 2;
  text-align: center;
  color: var(--color-text);
  display: block;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .slogan .slogan__content p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content p {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 1600px) {
  .slogan .slogan__content p {
    padding-bottom: 46.6666666667px;
  }
}
@media (max-width: 780px) {
  .slogan .slogan__content p {
    padding-bottom: 3.8461538462vw;
  }
}
@media not screen and (min-width: 781px) {
  .slogan .slogan__content p {
    letter-spacing: 0;
    line-height: 1.75;
  }
}
.slogan .slogan__content p span {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 2.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.slogan .slogan__content p span.is__animated {
  clip-path: inset(0);
}

.goodpoint {
  margin-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .goodpoint {
    margin-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint {
    margin-bottom: 6.6666666667vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint {
    margin-top: 20.5128205128vw;
  }
}
.goodpoint .section__heading {
  margin-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .goodpoint .section__heading {
    margin-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .section__heading {
    margin-bottom: 53.8461538462vw;
  }
}
.goodpoint .section__heading h2 {
  font-size: 2.8333333333vw;
  display: block;
  text-align: center;
  color: var(--color-main);
  font-weight: bold;
}
@media (min-width: 1600px) {
  .goodpoint .section__heading h2 {
    font-size: 45.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .section__heading h2 {
    font-size: 5.641025641vw;
  }
}
.goodpoint .reasons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item {
    flex-direction: column;
  }
}
.goodpoint .reasons__item img {
  max-width: 100%;
}
.goodpoint .reasons__item + .reasons__item {
  padding-top: 21.6666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item + .reasons__item {
    padding-top: 346.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item + .reasons__item {
    padding-top: 76.9230769231vw;
  }
}
.goodpoint .reasons__item + .reasons__item .reasons__item__heading .reasons__item__heading__number .reason__number {
  width: 11.6666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item + .reasons__item .reasons__item__heading .reasons__item__heading__number .reason__number {
    width: 186.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item + .reasons__item .reasons__item__heading .reasons__item__heading__number .reason__number {
    width: 41.0256410256vw;
  }
}
.goodpoint .reasons__item + .reasons__item + .reasons__item {
  padding-bottom: 16.6666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item + .reasons__item + .reasons__item {
    padding-bottom: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item + .reasons__item + .reasons__item {
    padding-bottom: 25.641025641vw;
  }
}
.goodpoint .reasons__item__heading {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: -4vw;
  position: relative;
  width: 100%;
  margin-bottom: 6.6666666667vw;
  max-width: 91.6666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading {
    margin-bottom: -64px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading {
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading {
    margin-bottom: 106.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading {
    max-width: 1466.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading {
    max-width: 100%;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__heading {
    flex-direction: column;
  }
}
.goodpoint .reasons__item__heading .reasons__item__heading__number {
  position: absolute;
  top: -10.8333333333vw;
  left: 0;
  padding-left: 4.75vw;
  max-width: 100%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number {
    top: -173.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number {
    top: -35.8974358974vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number {
    padding-left: 76px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number {
    padding-left: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number {
    transform: translate(0, 0);
    align-items: flex-start;
  }
}
.goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number__head {
  color: var(--color-main);
  font-size: 1.3333333333vw;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number__head {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number__head {
    font-size: 4.6153846154vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number__head {
    margin-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number__head {
    margin-bottom: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number {
  width: 9.1666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number {
    width: 146.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number {
    width: 30.7692307692vw;
  }
}
.goodpoint .reasons__item__heading .reasons__item__heading__number .reason__number.is__animated {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.goodpoint .reasons__item__heading h3 {
  font-size: 3vw;
  padding-left: 4.75vw;
  line-height: 2;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading h3 {
    font-size: 48px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading h3 {
    font-size: 6.1538461538vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading h3 {
    padding-left: 76px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading h3 {
    padding-left: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__heading h3 span {
  display: inline-block;
  color: var(--color-text);
  line-height: 1;
  font-weight: 600;
}
.goodpoint .reasons__item__heading h3 span.is__animated {
  color: transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}
.goodpoint .reasons__item__heading h3 span.is__animated .emphasize {
  font-size: 4vw;
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading h3 span.is__animated .emphasize {
    font-size: 64px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading h3 span.is__animated .emphasize {
    font-size: 8.2051282051vw;
  }
}
.goodpoint .reasons__item__heading h3 span.is__animated::after {
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, -100%);
}
.goodpoint .reasons__item__heading h3 span.is__animated.is__animated {
  color: var(--color-text);
}
.goodpoint .reasons__item__heading h3 span.is__animated.is__animated::after {
  animation: mask 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}
@keyframes mask {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
.goodpoint .reasons__item__heading p {
  padding-top: 1.3333333333vw;
  color: var(--color-text);
  font-size: 1.3333333333vw;
  max-width: 37.5vw;
  line-height: 2;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading p {
    padding-top: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading p {
    padding-top: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading p {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading p {
    max-width: 600px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading p {
    max-width: 94.8717948718vw;
  }
}
.goodpoint .reasons__item__heading p .emphasize {
  border-bottom: solid 3px var(--color-main);
  font-weight: 700;
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__heading p .emphasize {
    border-bottom: solid 2px var(--color-main);
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__heading p {
    padding-left: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__heading p a {
  font-weight: bold;
  margin-top: 1.5em;
  display: block;
  transition: all 0.5s 0s ease;
  font-size: 1.5vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__heading p a {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__heading p a {
    font-size: 4.358974359vw;
  }
}
.goodpoint .reasons__item__heading p a:hover {
  color: var(--color-main);
  opacity: 0.6;
}
.goodpoint .reasons__item__content {
  width: 70.8333333333vw;
  text-align: center;
  color: var(--color-text);
  margin: 0 auto;
  font-weight: 700;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content {
    width: 1133.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content {
    width: 100%;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content {
    margin-top: 33.3333333333vw;
  }
}
.goodpoint .reasons__item__content span {
  padding-left: 0.4166666667vw;
  padding-right: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
  font-size: 2vw;
  display: inline-block;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content span {
    padding-left: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content span {
    padding-left: 0vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content span {
    padding-right: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content span {
    padding-right: 0vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content span {
    padding-bottom: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content span {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content span {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content span {
    font-size: 5.1282051282vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.3333333333vw;
  gap: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper {
    margin-top: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper {
    margin-top: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper {
    gap: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper {
    gap: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content .resason__item__wrapper {
    flex-direction: column;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.08));
  position: relative;
  width: 100%;
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box {
    max-width: 94.8717948718vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box figcaption {
  font-size: 1.0833333333vw;
  color: var(--color-text);
  padding-top: 0.6666666667vw;
  text-align: center;
  opacity: 0.6;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box figcaption {
    font-size: 17.3333333333px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box figcaption {
    font-size: 3.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box figcaption {
    padding-top: 10.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box figcaption {
    padding-top: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 7vw;
  width: 25vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon {
    bottom: 112px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon {
    bottom: 15.3846153846vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon {
    width: 71.7948717949vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon.is__animated {
  animation: popup 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}
@keyframes popup {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon.item__one {
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  width: 27.5vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon.item__one {
    width: 440px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon.item__one {
    width: 51.2820512821vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content .resason__item__wrapper .resason__item__box .point__balloon.item__one {
    top: unset;
    left: unset;
    right: 0;
    bottom: -12.8205128205vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper.second__point {
  display: block;
  position: relative;
}
.goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box {
  width: 54.1666666667vw;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box {
    width: 866.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box {
    width: 71.7948717949vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box {
    left: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
  position: absolute;
  top: 19.6666666667vw;
  right: 0vw;
  right: 0px;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
    top: 314.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
    top: 23.0769230769vw;
  }
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
    right: 0px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
    right: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image {
    left: unset;
    right: 2.5641025641vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image .point__balloon {
  top: -4.1666666667vw;
  left: unset;
  right: 0;
  bottom: unset;
  transform: unset;
}
@media (min-width: 1600px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image .point__balloon {
    top: -66.6666666667px;
  }
}
@media (max-width: 780px) {
  .goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image .point__balloon {
    top: -10.2564102564vw;
  }
}
.goodpoint .reasons__item__content .resason__item__wrapper.second__point .resason__item__box.front__image .point__balloon.is__animated {
  animation: popup 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}

.feature {
  padding-top: 3.3333333333vw;
  width: 100%;
  width: 83.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .feature {
    padding-top: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature {
    padding-top: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .feature {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature {
    width: 94.8717948718vw;
  }
}
@media not screen and (min-width: 781px) {
  .feature {
    overflow: hidden;
    margin-left: 2.5641025641vw;
  }
}
.feature .section__heading {
  padding-top: 5vw;
  padding-bottom: 5vw;
  border-radius: 1.2820512821vw;
}
@media (min-width: 1600px) {
  .feature .section__heading {
    padding-top: 80px;
  }
}
@media (max-width: 780px) {
  .feature .section__heading {
    padding-top: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .feature .section__heading {
    padding-bottom: 80px;
  }
}
@media (max-width: 780px) {
  .feature .section__heading {
    padding-bottom: 10.2564102564vw;
  }
}
.feature .section__heading h2 {
  font-size: 2vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .feature .section__heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .feature .section__heading h2 {
    font-size: 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .feature .section__heading h2 {
    line-height: 1.5;
  }
}
.feature .section__heading p .emph {
  position: relative;
}
.feature .section__heading p .emph::after {
  position: absolute;
  width: 100%;
  left: 0;
  content: "";
  height: 2px;
  background: var(--color-main);
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 1.5s;
  transition-delay: 0.5s;
}
.feature .section__heading p .emph.is__animated::after {
  transform: scale(1, 1);
}
.feature .section__heading p a {
  font-weight: bold;
  margin-top: 1em;
  display: block;
  transition: all 0.5s 0s ease;
  font-size: 1.5vw;
}
@media (min-width: 1600px) {
  .feature .section__heading p a {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .feature .section__heading p a {
    font-size: 4.358974359vw;
  }
}
.feature .section__heading p a:hover {
  color: var(--color-main);
  opacity: 0.6;
}
.feature .feature__items {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 5.1282051282vw auto 2.5641025641vw;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feature .feature__items li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 19.5833333333vw;
}
@media (min-width: 1600px) {
  .feature .feature__items li {
    width: 313.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li {
    width: 46.1538461538vw;
  }
}
.feature .feature__items li:nth-child(2) {
  animation-delay: 0.4s;
}
.feature .feature__items li:nth-child(3) {
  animation-delay: 0.5s;
}
.feature .feature__items li:nth-child(4) {
  animation-delay: 0.6s;
}
.feature .feature__items li:nth-child(5) {
  animation-delay: 0.7s;
}
.feature .feature__items li:nth-child(6) {
  animation-delay: 0.8s;
}
.feature .feature__items li:nth-child(7) {
  animation-delay: 0.9s;
}
.feature .feature__items li:nth-child(8) {
  animation-delay: 1s;
}
.feature .feature__items li.is__animated {
  animation-name: fadeUpAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature .feature__items li .feature__image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 11.6666666667vw;
  background-color: var(--color-feature-bg);
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__image {
    height: 186.6666666667px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__image {
    height: 30.7692307692vw;
  }
}
.feature .feature__items li .feature__image img {
  width: 100%;
}
.feature .feature__items li .feature__content {
  border-radius: 0 0 15px 15px;
  background-color: var(--color-feature-content);
  padding-top: 0.5vw;
  padding-bottom: 0.8333333333vw;
  padding-left: 15px;
  padding-right: 15px;
  width: calc(100% - 30px);
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__content {
    padding-top: 8px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__content {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__content {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__content {
    padding-bottom: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .feature .feature__items li .feature__content {
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 20px);
    height: 25.641025641vw;
  }
}
.feature .feature__items li .feature__content h3 {
  font-size: 1.0833333333vw;
  line-height: 1.5;
  text-align: left;
  font-weight: 700;
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__content h3 {
    font-size: 17.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__content h3 {
    font-size: 3.5897435897vw;
  }
}
.feature .feature__items li .feature__content p {
  text-align: left;
  font-size: 0.8333333333vw;
  margin-top: 0.1666666667vw;
  color: var(--color-sub-text);
  line-height: 1.5;
  font-weight: 300;
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__content p {
    font-size: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__content p {
    font-size: 3.0769230769vw;
  }
}
@media (min-width: 1600px) {
  .feature .feature__items li .feature__content p {
    margin-top: 2.6666666667px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li .feature__content p {
    margin-top: 1.0256410256vw;
  }
}
.feature .feature__items li:nth-child(n+5) {
  margin-top: 4.1666666667vw;
}
@media (min-width: 1600px) {
  .feature .feature__items li:nth-child(n+5) {
    margin-top: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .feature .feature__items li:nth-child(n+5) {
    margin-top: 1.2820512821vw;
  }
}
@media not screen and (min-width: 781px) {
  .feature .feature__items li:nth-child(n+3) {
    margin-top: 7.6923076923vw;
  }
}
.feature .more__detail__wrapper {
  width: 100%;
  margin: 2.5641025641vw auto 10.2564102564vw;
}
@media not screen and (min-width: 781px) {
  .feature .more__detail__wrapper {
    margin: 12.8205128205vw auto 12.8205128205vw;
  }
}

.cta__section {
  position: relative;
  width: 100%;
  height: 100%;
  height: 53.3333333333vw;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .cta__section {
    height: 853.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section {
    height: 200vw;
  }
}
.cta__section .cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(45deg, #ff3b10, #f94cff, #ff3b10);
  z-index: -1;
  animation: bggradient 10s ease infinite;
  will-change: transform;
}
@keyframes bggradient {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-66.66%);
  }
  100% {
    transform: translateX(0%);
  }
}
@media not screen and (min-width: 781px) {
  .cta__section {
    justify-content: flex-start;
  }
  .cta__section .cta__background {
    animation: bggradient 4s ease infinite;
  }
}
.cta__section .cta__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 5.8333333333vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper {
    margin-top: 93.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper {
    margin-top: 15.3846153846vw;
  }
}
@media not screen and (min-width: 781px) {
  .cta__section .cta__wrapper {
    flex-direction: column;
  }
}
.cta__section .cta__wrapper .cta__heading {
  position: relative;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cta__section .cta__wrapper .cta__heading .cta__catchcopy {
  font-size: 1.5vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__catchcopy {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__catchcopy {
    font-size: 4.1025641026vw;
  }
}
.cta__section .cta__wrapper .cta__heading .cta__title {
  font-size: 2.3333333333vw;
  margin-top: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__title {
    font-size: 37.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__title {
    font-size: 5.641025641vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__title {
    margin-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__title {
    margin-top: 5.1282051282vw;
  }
}
.cta__section .cta__wrapper .cta__heading .cta__comment {
  font-size: 7.5vw;
  margin-top: 1.25vw;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment {
    font-size: 120px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment {
    font-size: 15.3846153846vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment {
    margin-top: 20px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment {
    margin-top: 3.8461538462vw;
  }
}
.cta__section .cta__wrapper .cta__heading .cta__comment span {
  font-size: 1vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment span {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__comment span {
    font-size: 2.5641025641vw;
  }
}
.cta__section .cta__wrapper .cta__heading .cta__text {
  font-size: 1.6666666667vw;
  color: var(--color-yellow);
  margin-top: 1.25vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__text {
    font-size: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__text {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__text {
    margin-top: 20px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__text {
    margin-top: 5.1282051282vw;
  }
}
.cta__section .cta__wrapper .cta__heading .cta__label {
  background-color: var(--color-white);
  font-size: 1.3333333333vw;
  margin-top: 1.6666666667vw;
  padding: 1.0256410256vw 2.0512820513vw;
  color: var(--color-main);
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__label {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__label {
    font-size: 4.6153846154vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__heading .cta__label {
    margin-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__heading .cta__label {
    margin-top: 7.6923076923vw;
  }
}
@media not screen and (min-width: 781px) {
  .cta__section .cta__wrapper .cta__heading .cta__label {
    padding: 3.0769230769vw;
    width: 100%;
    text-align: center;
  }
}
.cta__section .cta__wrapper .cta__panel {
  width: 40vw;
  margin-left: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__panel {
    width: 640px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__panel {
    width: 87.1794871795vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__wrapper .cta__panel {
    margin-left: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__wrapper .cta__panel {
    margin-left: 0vw;
  }
}
@media not screen and (min-width: 781px) {
  .cta__section .cta__wrapper .cta__panel {
    margin-top: 7.6923076923vw;
  }
}
.cta__section .cta__button__wrapper {
  margin-top: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper {
    margin-top: 10.2564102564vw;
  }
}
.cta__section .cta__button__wrapper .cta__sub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-black);
  text-align: center;
  color: var(--color-white);
  font-size: 1.1666666667vw;
  padding: 0.5128205128vw 2.5641025641vw;
  border-radius: 10px;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper .cta__sub {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper .cta__sub {
    font-size: 3.0769230769vw;
  }
}
@media not screen and (min-width: 781px) {
  .cta__section .cta__button__wrapper .cta__sub {
    width: 65%;
    padding: 1.0256410256vw 2.5641025641vw;
  }
}
.cta__section .cta__button__wrapper .cta__sub:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 99%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.4vw solid transparent;
  border-left: 0.4vw solid transparent;
  border-top: 0.7vw solid var(--color-black);
  border-bottom: 0;
}
@media not screen and (min-width: 781px) {
  .cta__section .cta__button__wrapper .cta__sub:after {
    border-right: 0.8vw solid transparent;
    border-left: 0.8vw solid transparent;
    border-top: 1vw solid var(--color-black);
  }
}
.cta__section .cta__button__wrapper .cta__sub span {
  font-size: 1vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper .cta__sub span {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper .cta__sub span {
    font-size: 2.5641025641vw;
  }
}
.cta__section .cta__button__wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-yellow);
  color: var(--color-black);
  border: solid 3px var(--color-black);
  width: 58.3333333333vw;
  height: 6.6666666667vw;
  border-radius: 100vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a {
    width: 933.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a {
    width: 87.1794871795vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a {
    height: 106.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a {
    height: 12.8205128205vw;
  }
}
.cta__section .cta__button__wrapper a .button__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.cta__section .cta__button__wrapper a .button__cta .item__text {
  font-size: 2.3333333333vw;
  font-weight: bold;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a .button__cta .item__text {
    font-size: 37.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a .button__cta .item__text {
    font-size: 5.1282051282vw;
  }
}
.cta__section .cta__button__wrapper a .button__cta .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow {
    margin-left: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow {
    margin-left: 1.2820512821vw;
  }
}
.cta__section .cta__button__wrapper a .button__cta .arrow::after {
  content: "";
  width: 2.5vw;
  height: 0.8333333333vw;
  border-bottom: solid 3px var(--color-black);
  border-right: solid 4px var(--color-black);
  transform: skew(45deg);
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow::after {
    width: 40px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow::after {
    width: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow::after {
    height: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section .cta__button__wrapper a .button__cta .arrow::after {
    height: 1.2820512821vw;
  }
}
.cta__section .cta__button__wrapper a:hover {
  background-color: var(--color-main);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
  border: solid 3px var(--color-white);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.cta__section .cta__button__wrapper a:hover .item__text {
  color: var(--color-white);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(-4px, 0) rotate(0deg);
}
.cta__section .cta__button__wrapper a:hover .arrow {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translate(4px, 0) rotate(0deg);
}
.cta__section .cta__button__wrapper a:hover .arrow::after {
  border-bottom: solid 3px var(--color-white);
  border-right: solid 4px var(--color-white);
  transform: skew(45deg);
}
.cta__section p {
  color: var(--color-white);
  font-size: 1vw;
  margin-top: 3.3333333333vw;
  line-height: 1.25;
}
@media (min-width: 1600px) {
  .cta__section p {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .cta__section p {
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .cta__section p {
    margin-top: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .cta__section p {
    margin-top: 5.1282051282vw;
  }
}
@media not screen and (min-width: 781px) {
  .cta__section p {
    width: 96%;
  }
}
.cta__section.is__sigle {
  height: 41.6666666667vw;
}
@media (min-width: 1600px) {
  .cta__section.is__sigle {
    height: 666.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section.is__sigle {
    height: 148.7179487179vw;
  }
}
.cta__section.is__sigle .cta__button__wrapper {
  margin-top: 0;
}
.cta__section.is__sigle .cta__button__wrapper p {
  margin-top: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .cta__section.is__sigle .cta__button__wrapper p {
    margin-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .cta__section.is__sigle .cta__button__wrapper p {
    margin-top: 148.7179487179vw;
  }
}

.steps {
  padding-top: 10vw;
  margin-bottom: 5vw;
}
@media (min-width: 1600px) {
  .steps {
    padding-top: 160px;
  }
}
@media (max-width: 780px) {
  .steps {
    padding-top: 20.5128205128vw;
  }
}
@media (min-width: 1600px) {
  .steps {
    margin-bottom: 80px;
  }
}
@media (max-width: 780px) {
  .steps {
    margin-bottom: 15.3846153846vw;
  }
}
.steps .steps__item__content {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.steps .steps__item__content .section__heading {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.steps .steps__item__content .section__heading h2 {
  font-size: 2vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .section__heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .section__heading h2 {
    font-size: 4.6153846154vw;
  }
}
.steps .steps__item__content .section__heading p a {
  font-weight: bold;
  margin-top: 0.5em;
  display: block;
  transition: all 0.5s 0s ease;
  font-size: 1.3333333333vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .section__heading p a {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .section__heading p a {
    font-size: 3.8461538462vw;
  }
}
.steps .steps__item__content .section__heading p a:hover {
  color: var(--color-main);
  opacity: 0.6;
}
.steps .steps__item__content .steps__item__wrapper {
  width: 70.8333333333vw;
  display: flex;
  align-items: center;
  gap: 1.1666666667vw;
  text-align: center;
  justify-content: center;
  margin-top: 3.3333333333vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper {
    width: 1133.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper {
    width: 94.8717948718vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper {
    gap: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper {
    gap: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper {
    flex-direction: column;
    margin: 10.2564102564vw auto 0;
  }
}
.steps .steps__item__content .steps__item__wrapper p {
  text-align: center;
  font-size: 2vw;
  color: var(--color-text);
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper p {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper p {
    font-size: 0vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item {
  width: 25vw;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  border-radius: 2vw;
  padding: 2.5641025641vw 0 3.8461538462vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--color-white);
  position: relative;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item {
    width: 89.7435897436vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item {
    border-radius: 32px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item {
    border-radius: 5.1282051282vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item {
    padding: 5.1282051282vw 0 2.5641025641vw;
    min-width: 38.4615384615vw;
    align-items: flex-start;
    flex-direction: row;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .step__number {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.3333333333vw;
  line-height: 1;
  letter-spacing: 0.1282051282vw;
  color: var(--color-black);
  padding-bottom: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .step__number {
    font-size: 37.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .step__number {
    font-size: 6.6666666667vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .step__number {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .step__number {
    padding-bottom: 2.0512820513vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .title {
  margin-bottom: 0.3333333333vw;
}
.steps .steps__item__content .steps__item__wrapper .steps__item .title span {
  font-size: 1.8333333333vw;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .title span {
    font-size: 29.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .title span {
    font-size: 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .title span {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .title {
    margin-bottom: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .title {
    margin-bottom: 1.5384615385vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .description {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description {
    margin-bottom: 42.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description {
    margin-bottom: 2.5641025641vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .description p {
  font-size: 1vw;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p {
    font-size: 3.5897435897vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p {
    text-align: left;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .description p span {
  padding-left: 0.4166666667vw;
  padding-right: 0.4166666667vw;
  display: inline-block;
  border-bottom: solid 2px var(--color-main);
  line-height: 1;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p span {
    padding-left: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p span {
    padding-left: 0vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p span {
    padding-right: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .description p span {
    padding-right: 0vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .steps__item__image {
  width: 6.6666666667vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .steps__item__image {
    width: 106.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .steps__item__image {
    width: 19.2307692308vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .steps__item__image img {
  width: 100%;
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .steps__item__image {
    position: absolute;
    right: 5.1282051282vw;
    bottom: 2.5641025641vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
  position: absolute;
  content: "";
  bottom: 0.4166666667vw;
  width: 25vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
    bottom: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
    bottom: -7.6923076923vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
    width: 71.7948717949vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.steps .steps__item__content .steps__item__wrapper .steps__item .point__balloon.is__animated {
  animation: popup 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .steps__item .sp__step__item__wrapper {
    text-align: left;
    padding-left: 5.1282051282vw;
  }
}
.steps .steps__item__content .steps__item__wrapper .dot {
  width: 2.6666666667vw;
  display: flex;
  gap: 0.6666666667vw;
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .dot {
    width: 42.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .dot {
    width: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .dot {
    gap: 10.6666666667px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .dot {
    gap: 1.5384615385vw;
  }
}
@media not screen and (min-width: 781px) {
  .steps .steps__item__content .steps__item__wrapper .dot {
    flex-direction: column;
  }
}
.steps .steps__item__content .steps__item__wrapper .dot .dot__item {
  width: 1vw;
  height: 1vw;
  border-radius: 8.3333333333vw;
  background: var(--color-divide);
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    width: 16px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    width: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    height: 16px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    height: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    border-radius: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .steps .steps__item__content .steps__item__wrapper .dot .dot__item {
    border-radius: 2.5641025641vw;
  }
}

.price {
  padding-top: 6.6666666667vw;
  margin-bottom: 5vw;
}
@media (min-width: 1600px) {
  .price {
    padding-top: 106.6666666667px;
  }
}
@media (max-width: 780px) {
  .price {
    padding-top: 15.3846153846vw;
  }
}
@media (min-width: 1600px) {
  .price {
    margin-bottom: 80px;
  }
}
@media (max-width: 780px) {
  .price {
    margin-bottom: 15.3846153846vw;
  }
}
.price .section__headline {
  margin-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .price .section__headline {
    margin-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .section__headline {
    margin-bottom: 15.3846153846vw;
  }
}
.price .section__headline h2 {
  font-size: 2vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .price .section__headline h2 {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .price .section__headline h2 {
    font-size: 4.6153846154vw;
  }
}
.price .pricing__table {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.08));
  flex-direction: column;
  border-radius: 2.1666666667vw;
  width: 83.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .price .pricing__table {
    border-radius: 34.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table {
    border-radius: 2.8205128205vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table {
    width: 94.8717948718vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .pricing__table {
    overflow-y: hidden;
    overflow-x: scroll;
    margin-left: 2.5641025641vw;
    margin-right: 2.5641025641vw;
    filter: unset;
  }
}
.price .pricing__table .plan__heading {
  display: flex;
  width: 100%;
}
.price .pricing__table .plan__heading li {
  padding-bottom: 0.8333333333vw;
  min-width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li {
    padding-bottom: 2.8205128205vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__heading li {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__heading li.plan__space {
  width: 15%;
  min-width: 16.6666666667vw;
  padding: 0 2.0512820513vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li.plan__space {
    min-width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li.plan__space {
    min-width: 41.0256410256vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__heading li.plan__space {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__heading li .plan__name__sub {
  font-size: 0.8333333333vw;
  color: var(--color-sub-black);
  display: block;
  text-align: center;
  font-weight: 400;
  padding-top: 1.9166666667vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__name__sub {
    font-size: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__name__sub {
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__name__sub {
    padding-top: 30.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__name__sub {
    padding-top: 5.1282051282vw;
  }
}
.price .pricing__table .plan__heading li .plan__name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.3333333333vw;
  color: var(--color-text);
  padding-top: 0.4166666667vw;
  line-height: 1;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__name {
    font-size: 37.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__name {
    font-size: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__name {
    padding-top: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__name {
    padding-top: 0.5128205128vw;
  }
}
.price .pricing__table .plan__heading li .plan__name.__emph {
  background: linear-gradient(1deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price .pricing__table .plan__heading li .plan__caption {
  font-size: 1.0833333333vw;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-top: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__caption {
    font-size: 17.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__caption {
    font-size: 2.8205128205vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li .plan__caption {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li .plan__caption {
    margin-top: 4.1025641026vw;
  }
}
.price .pricing__table .plan__heading li.price__emph {
  background-color: var(--color-bg-emph);
  position: relative;
}
.price .pricing__table .plan__heading li.price__emph::before {
  position: absolute;
  top: -2.9166666667vw;
  width: 100%;
  height: 2.9166666667vw;
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  content: "最もおすすめ！";
  color: var(--color-white);
  font-size: 1.1666666667vw;
  border-radius: 0.5128205128vw 0.5128205128vw 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    top: -46.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    top: -5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    height: 46.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    height: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    font-size: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__heading li.price__emph::before {
    display: none;
  }
}
.price .pricing__table .plan__feature__heading {
  display: flex;
  width: 100%;
}
.price .pricing__table .plan__feature__heading li.feature__heading {
  width: 15%;
  min-width: 16.6666666667vw;
  padding: 0 2.0512820513vw;
  font-weight: 500;
  color: var(--color-sub-black);
  font-size: 1.1666666667vw;
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    min-width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    min-width: 41.0256410256vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    font-size: 3.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    padding-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    padding-top: 3.0769230769vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__heading {
    padding-bottom: 3.0769230769vw;
  }
}
.price .pricing__table .plan__feature__heading li.feature__divide {
  width: 25%;
  position: relative;
  padding-top: 1.3333333333vw;
  padding-bottom: 0.8333333333vw;
  min-width: 16.6666666667vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    padding-top: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    padding-top: 4.1025641026vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    padding-bottom: 1.0256410256vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    min-width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__heading li.feature__divide {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__feature__heading li.feature__divide span {
  background-color: var(--color-divide);
  height: 1px;
  width: 100%;
  display: block;
}
.price .pricing__table .plan__feature__heading li.feature__divide.price__emph {
  background-color: var(--color-bg-emph);
}
.price .pricing__table .plan__feature__item {
  display: flex;
  width: 100%;
}
.price .pricing__table .plan__feature__item li {
  min-width: 25%;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
  font-size: 1.3333333333vw;
  font-weight: 700;
  color: var(--color-sub-black);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  min-width: calc(unset / 1200 / 1 * 100vw);
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    width: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    width: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    height: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    height: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    padding-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    padding-bottom: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li {
    min-width: calc(unset / 1200 * 1600 * 1px);
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__feature__item li.plan__feature__item__heading {
  width: 15%;
  min-width: 16.6666666667vw;
  font-size: 1.3333333333vw;
  color: var(--color-black);
  padding: 0 2.0512820513vw;
  justify-content: flex-start;
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    min-width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    min-width: 41.0256410256vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    padding-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    padding-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li.plan__feature__item__heading {
    padding-bottom: 2.5641025641vw;
  }
}
.price .pricing__table .plan__feature__item li .feature__true {
  background: none;
  position: relative;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  border-radius: 50%;
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  box-sizing: border-box;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .feature__true {
    border-bottom: 1px solid var(--color-black);
    border-left: 1px solid var(--color-black);
    border-right: 1px solid var(--color-black);
    border-top: 1px solid var(--color-black);
  }
}
.price .pricing__table .plan__feature__item li .feature__true.circle__double:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 1px;
  left: 1px;
  border: solid var(--color-black) 2px;
  border-radius: 50%;
  box-sizing: border-box;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .feature__true.circle__double:after {
    top: 2px;
    left: 2px;
    border: solid var(--color-black) 1px;
  }
}
.price .pricing__table .plan__feature__item li .feature__false {
  position: relative;
  width: 20px;
  height: 20px;
}
.price .pricing__table .plan__feature__item li .feature__false:before, .price .pricing__table .plan__feature__item li .feature__false:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 26px;
  background-color: var(--color-sub-black);
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .feature__false:before, .price .pricing__table .plan__feature__item li .feature__false:after {
    width: 1px;
    height: 24px;
  }
}
.price .pricing__table .plan__feature__item li .feature__false::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.price .pricing__table .plan__feature__item li .feature__false::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.price .pricing__table .plan__feature__item li .feature__triangle {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid var(--color-sub-black);
  background-color: transparent;
  position: relative;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .feature__triangle {
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 21px solid var(--color-sub-black);
  }
}
.price .pricing__table .plan__feature__item li .feature__triangle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid white;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .feature__triangle::after {
    top: 2px;
    left: -11px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 18px solid white;
  }
}
.price .pricing__table .plan__feature__item li .price__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.price .pricing__table .plan__feature__item li .price__wrapper .regular__price {
  z-index: 1;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: var(--color-sub-black);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price {
    flex-direction: column;
    font-size: 4.1025641026vw;
    width: 100%;
  }
}
.price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
  margin-bottom: 0.4166666667vw;
  margin-right: auto;
  margin-left: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
    margin-bottom: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
    margin-bottom: 0.5128205128vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
    margin-left: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
    margin-left: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount {
    margin-right: auto;
    margin-left: auto;
  }
}
.price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount span {
  font-size: 1vw;
  padding: 0.25vw;
  font-weight: bold;
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  color: var(--color-white);
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount span {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount span {
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount span {
    padding: 4px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .regular__price .discount span {
    padding: 0.5128205128vw;
  }
}
.price .pricing__table .plan__feature__item li .price__wrapper del {
  text-decoration: line-through;
  margin: 0 0.4em;
  text-decoration-color: #fe3464;
  text-decoration-thickness: 3px;
}
@media not screen and (min-width: 781px) {
  .price .pricing__table .plan__feature__item li .price__wrapper del {
    text-decoration-thickness: 2px;
  }
}
.price .pricing__table .plan__feature__item li .price__wrapper .special__price {
  font-family: "Poppins", sans-serif;
  font-size: 2.25vw;
  letter-spacing: -1px;
  background: linear-gradient(1deg, #ff3b10 0%, #f94cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .special__price {
    font-size: 36px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .price__wrapper .special__price {
    font-size: 6.1538461538vw;
  }
}
.price .pricing__table .plan__feature__item li .yen {
  font-size: 1.0833333333vw;
  margin-left: 0.3333333333vw;
  font-weight: 400;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .yen {
    font-size: 17.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .yen {
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__feature__item li .yen {
    margin-left: 5.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__feature__item li .yen {
    margin-left: 1.0256410256vw;
  }
}
.price .pricing__table .plan__feature__item li.price__emph {
  background-color: var(--color-bg-emph);
}
.price .pricing__table .plan__feature__item:hover {
  background-color: var(--color-bg-emph);
}
.price .pricing__table .plan__button {
  display: flex;
  width: 100%;
}
.price .pricing__table .plan__button li {
  min-width: 25%;
  display: flex;
  justify-content: center;
  padding-bottom: 2.6666666667vw;
  padding-top: 1.25vw;
  min-width: calc(unset / 1200 / 1 * 100vw);
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li {
    padding-bottom: 42.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li {
    padding-bottom: 6.6666666667vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li {
    padding-top: 20px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li {
    padding-top: 6.6666666667vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li {
    min-width: calc(unset / 1200 * 1600 * 1px);
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__button li.plan__space {
  width: 15%;
  min-width: 16.6666666667vw;
  padding: 0 2.0512820513vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li.plan__space {
    min-width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li.plan__space {
    min-width: 41.0256410256vw;
  }
}
.price .pricing__table .plan__button li.price__emph {
  background-color: var(--color-bg-emph);
}
.price .pricing__table .plan__button li .button__pink {
  width: 16.6666666667vw;
  height: 3.8333333333vw;
  padding: 0 1.0256410256vw 0 2.0512820513vw;
  margin-left: 0.4166666667vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink {
    width: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink {
    width: 30.7692307692vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink {
    height: 61.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink {
    height: 10.2564102564vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink {
    margin-left: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink {
    margin-left: 1.2820512821vw;
  }
}
.price .pricing__table .plan__button li .button__pink a .item__text {
  font-size: 1.5833333333vw;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink a .item__text {
    font-size: 25.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink a .item__text {
    font-size: 3.0769230769vw;
  }
}
.price .pricing__table .plan__button li .button__pink .arrow {
  width: 2.5vw;
  height: 2.5vw;
  background-color: unset;
  border-radius: 8.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    width: 40px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    width: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    height: 40px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    height: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    border-radius: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink .arrow {
    border-radius: 10.7692307692vw;
  }
}
.price .pricing__table .plan__button li .button__pink .arrow img {
  width: 1.2916666667vw;
  color: var(--color-main);
}
@media (min-width: 1600px) {
  .price .pricing__table .plan__button li .button__pink .arrow img {
    width: 20.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .pricing__table .plan__button li .button__pink .arrow img {
    width: 2.5641025641vw;
  }
}
.price .more__detail__wrapper {
  width: 83.3333333333vw;
  margin: 2.5641025641vw auto 10.2564102564vw;
}
@media (min-width: 1600px) {
  .price .more__detail__wrapper {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .more__detail__wrapper {
    width: 94.8717948718vw;
  }
}
.price .other__table {
  width: 83.3333333333vw;
  margin: 5.1282051282vw auto;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1600px) {
  .price .other__table {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table {
    width: 94.8717948718vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .other__table {
    flex-direction: column;
    margin: 15.3846153846vw auto;
    margin-left: 2.5641025641vw;
  }
}
.price .other__table .other__table__title {
  display: flex;
  flex-direction: column;
  width: 25vw;
  margin-top: -1.25vw;
}
@media (min-width: 1600px) {
  .price .other__table .other__table__title {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__title {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .price .other__table .other__table__title {
    margin-top: -20px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__title {
    margin-top: calc(unset * 2 / 780 * 100vw);
  }
}
.price .other__table .other__table__title .main {
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 1600px) {
  .price .other__table .other__table__title .main {
    font-size: 48px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__title .main {
    font-size: 7.1794871795vw;
  }
}
.price .other__table .other__table__title .sub {
  margin-top: 0.8333333333vw;
  font-size: 1.3333333333vw;
}
@media (min-width: 1600px) {
  .price .other__table .other__table__title .sub {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__title .sub {
    margin-top: 0.7692307692vw;
  }
}
@media (min-width: 1600px) {
  .price .other__table .other__table__title .sub {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__title .sub {
    font-size: 3.5897435897vw;
  }
}
.price .other__table .other__table__list {
  width: 43.3333333333vw;
  margin-top: -1.6666666667vw;
}
@media (min-width: 1600px) {
  .price .other__table .other__table__list {
    width: 693.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__list {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .price .other__table .other__table__list {
    margin-top: -26.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .other__table .other__table__list {
    margin-top: 5.1282051282vw;
  }
}
.price .other__table .list__item {
  display: flex;
  align-items: center;
  height: 3.8333333333vw;
  border-bottom: 1px solid var(--color-divide);
}
@media (min-width: 1600px) {
  .price .other__table .list__item {
    height: 61.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item {
    height: 12.8205128205vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .other__table .list__item {
    flex-direction: row;
    padding-top: 1.5384615385vw;
    padding-bottom: 1.5384615385vw;
    justify-content: space-between;
  }
}
.price .other__table .list__item .title {
  width: 81.6666666667vw;
  font-size: 1.3333333333vw;
  font-weight: bold;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .title {
    width: 1306.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .title {
    width: 92.3076923077vw;
  }
}
@media (min-width: 1600px) {
  .price .other__table .list__item .title {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .title {
    font-size: 4.358974359vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .other__table .list__item .title {
    width: fit-content;
  }
}
.price .other__table .list__item .title small {
  font-size: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .title small {
    font-size: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .title small {
    font-size: 2.5641025641vw;
  }
}
.price .other__table .list__item .detail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 38.3333333333vw;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail {
    width: 613.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail {
    width: 92.3076923077vw;
  }
}
@media not screen and (min-width: 781px) {
  .price .other__table .list__item .detail {
    width: fit-content;
  }
}
.price .other__table .list__item .detail p {
  font-size: 1.3333333333vw;
  display: block;
  text-align: right;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail p {
    font-size: 4.358974359vw;
  }
}
.price .other__table .list__item .detail p del {
  text-decoration: line-through;
  text-decoration-color: #fe3464;
  text-decoration-thickness: 3px;
}
@media not screen and (min-width: 781px) {
  .price .other__table .list__item .detail p del {
    text-decoration-thickness: 2px;
  }
}
.price .other__table .list__item .detail p span.emph {
  display: inline-block;
  font-size: 1vw;
  margin-left: 0.4166666667vw;
  padding: 0.25vw;
  font-weight: bold;
  background: linear-gradient(45deg, #ff3b10 0%, #f94cff 100%);
  color: var(--color-white);
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail p span.emph {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail p span.emph {
    font-size: 3.0769230769vw;
  }
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail p span.emph {
    margin-left: 6.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail p span.emph {
    margin-left: 1.2820512821vw;
  }
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail p span.emph {
    padding: 4px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail p span.emph {
    padding: 0.5128205128vw;
  }
}
.price .other__table .list__item .detail p small {
  font-size: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail p small {
    font-size: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail p small {
    font-size: 2.5641025641vw;
  }
}
.price .other__table .list__item .detail .caption {
  font-size: 1.1666666667vw;
  color: var(--color-sub-black);
  font-weight: 500;
}
@media (min-width: 1600px) {
  .price .other__table .list__item .detail .caption {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .price .other__table .list__item .detail .caption {
    font-size: 3.8461538462vw;
  }
}

.faq {
  width: 83.3333333333vw;
  margin: 0 auto;
  margin-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .faq {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .faq {
    width: 94.8717948718vw;
  }
}
@media (min-width: 1600px) {
  .faq {
    margin-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .faq {
    margin-bottom: 15.3846153846vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq {
    margin-left: 2.5641025641vw;
    margin-right: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .section__headline {
    margin-left: 0vw;
    width: 100%;
    margin-bottom: 20.5128205128vw;
  }
}
.faq .section__headline h2 {
  font-size: 2vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 1600px) {
  .faq .section__headline h2 {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .faq .section__headline h2 {
    font-size: 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .section__headline h2 {
    line-height: 1.5;
  }
}
.faq .section__headline p {
  font-size: 1.3333333333vw;
  text-align: center;
  color: var(--color-sub-text);
  margin-top: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .faq .section__headline p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .faq .section__headline p {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .faq .section__headline p {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .faq .section__headline p {
    margin-top: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .section__headline p {
    line-height: 1.5;
  }
}
.faq .section__headline p a {
  font-weight: bold;
  margin-top: 0.5em;
  display: block;
  transition: all 0.5s 0s ease;
}
@media not screen and (min-width: 781px) {
  .faq .section__headline p a {
    font-size: 3.5897435897vw;
    margin-top: 1em;
  }
}
.faq .section__headline p a:hover {
  color: var(--color-main);
  opacity: 0.6;
}
.faq .faq__item {
  border-bottom: 1px solid var(--color-divide);
  position: relative;
}
.faq .faq__item .qa__parent {
  display: flex;
  gap: 2vw;
  padding-top: 2.5vw;
  padding-bottom: 1.6666666667vw;
  cursor: pointer;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent {
    gap: 32px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent {
    gap: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent {
    padding-top: 40px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent {
    padding-bottom: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent {
    padding-bottom: 2.5641025641vw;
  }
}
.faq .faq__item .qa__parent img {
  width: 2.1666666667vw;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent img {
    width: 34.6666666667px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent img {
    width: 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .faq__item .qa__parent img {
    margin-top: 0.7692307692vw;
  }
}
.faq .faq__item .qa__parent p {
  font-size: 1.3333333333vw;
  line-height: 1.5;
  font-weight: 700;
  width: 75vw;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent p {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent p {
    width: 1200px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent p {
    width: 79.4871794872vw;
  }
}
.faq .faq__item .qa__parent .crossBar {
  width: 1.75vw;
  height: 1.75vw;
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent .crossBar {
    width: 28px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent .crossBar {
    width: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent .crossBar {
    height: 28px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent .crossBar {
    height: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent .crossBar {
    right: 32px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent .crossBar {
    right: 3.8461538462vw;
  }
}
.faq .faq__item .qa__parent .crossBar::before {
  content: "";
  display: inline-block;
  width: 0.1333333333vw;
  height: 100%;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent .crossBar::before {
    width: 2.1333333333px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent .crossBar::before {
    width: 0.2564102564vw;
  }
}
.faq .faq__item .qa__parent .crossBar::after {
  content: "";
  display: inline-block;
  width: 100%;
  background-color: var(--color-main);
  height: 0.1333333333vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent .crossBar::after {
    height: 2.1333333333px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent .crossBar::after {
    height: 0.2564102564vw;
  }
}
.faq .faq__item .qa__parent.is__open .crossBar {
  top: 3.75vw;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__parent.is__open .crossBar {
    top: 60px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__parent.is__open .crossBar {
    top: 5.1282051282vw;
  }
}
.faq .faq__item .qa__parent.is__open .crossBar::before {
  transform: translateX(-50%) rotate(90deg); /* 90度回転 */
}
.faq .faq__item .qa__child {
  display: flex;
  gap: 2vw;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__child {
    gap: 32px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__child {
    gap: 2.5641025641vw;
  }
}
.faq .faq__item .qa__child img {
  width: 2.1666666667vw;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__child img {
    width: 34.6666666667px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__child img {
    width: 4.6153846154vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .faq__item .qa__child img {
    margin-top: 0.7692307692vw;
  }
}
.faq .faq__item .qa__child p {
  font-size: 1.1666666667vw;
  line-height: 1.75;
  font-weight: 400;
  width: 75vw;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__child p {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__child p {
    font-size: 3.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__child p {
    width: 1200px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__child p {
    width: 79.4871794872vw;
  }
}
.faq .faq__item .qa__child.is__open {
  max-height: 16.6666666667vw;
  padding: 0 0 1.2820512821vw 0;
}
@media (min-width: 1600px) {
  .faq .faq__item .qa__child.is__open {
    max-height: 266.6666666667px;
  }
}
@media (max-width: 780px) {
  .faq .faq__item .qa__child.is__open {
    max-height: 51.2820512821vw;
  }
}
@media not screen and (min-width: 781px) {
  .faq .faq__item .qa__child.is__open {
    margin-bottom: 2.5641025641vw;
  }
}

.news {
  margin-top: 8.3333333333vw;
  margin-bottom: 8.3333333333vw;
}
@media (min-width: 1600px) {
  .news {
    margin-top: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .news {
    margin-top: 12.8205128205vw;
  }
}
@media (min-width: 1600px) {
  .news {
    margin-bottom: 133.3333333333px;
  }
}
@media (max-width: 780px) {
  .news {
    margin-bottom: 30.7692307692vw;
  }
}
.news .section__headline h2 {
  font-size: 1.5vw;
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 1600px) {
  .news .section__headline h2 {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .news .section__headline h2 {
    font-size: 4.1025641026vw;
  }
}
@media not screen and (min-width: 781px) {
  .news .section__headline h2 {
    text-align: center;
  }
}
.news .section__headline p {
  font-size: 1.3333333333vw;
  color: var(--color-sub-text);
  margin-top: 0.8333333333vw;
  line-height: 1.5;
}
@media (min-width: 1600px) {
  .news .section__headline p {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .section__headline p {
    font-size: 3.8461538462vw;
  }
}
@media (min-width: 1600px) {
  .news .section__headline p {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .section__headline p {
    margin-top: 2.5641025641vw;
  }
}
@media not screen and (min-width: 781px) {
  .news .section__headline p {
    text-align: center;
  }
}
.news .section__headline p a {
  font-weight: bold;
  margin-top: 0.5em;
  display: block;
  transition: all 0.5s 0s ease;
  white-space: nowrap;
}
.news .section__headline p a:hover {
  color: var(--color-main);
  opacity: 0.6;
}
.news .top__news__wrapper {
  width: 83.3333333333vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper {
    width: 1333.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper {
    width: 100%;
  }
}
@media not screen and (min-width: 781px) {
  .news .top__news__wrapper {
    flex-direction: column;
  }
}
.news .top__news__wrapper .section__headline {
  margin: unset;
}
@media not screen and (min-width: 781px) {
  .news .top__news__wrapper .section__headline {
    margin-left: 2.5641025641vw;
  }
}
.news .top__news__wrapper .section__headline .more__detail__wrapper {
  margin-top: 1.6666666667vw;
  padding-bottom: 0.5vw;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .section__headline .more__detail__wrapper {
    margin-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .section__headline .more__detail__wrapper {
    margin-top: 1.2820512821vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .section__headline .more__detail__wrapper {
    padding-bottom: 8px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .section__headline .more__detail__wrapper {
    padding-bottom: 10.2564102564vw;
  }
}
.news .top__news__wrapper .section__headline .more__detail__wrapper a .more__detail__btn {
  margin-left: 0;
}
@media not screen and (min-width: 781px) {
  .news .top__news__wrapper .section__headline .more__detail__wrapper a .more__detail__btn {
    margin-top: 0;
  }
}
.news .top__news__wrapper .rated__news__list {
  width: 50vw;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list {
    width: 800px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list {
    width: 94.8717948718vw;
  }
}
@media not screen and (min-width: 781px) {
  .news .top__news__wrapper .rated__news__list {
    margin-left: 2.5641025641vw;
    margin-right: 2.5641025641vw;
    margin-top: 20.5128205128vw;
  }
}
.news .top__news__wrapper .rated__news__list li {
  border-bottom: 1px solid var(--color-divide);
  padding-top: 1.6666666667vw;
  padding-bottom: 1.25vw;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li {
    padding-top: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li {
    padding-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li {
    padding-bottom: 20px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li {
    padding-bottom: 2.5641025641vw;
  }
}
.news .top__news__wrapper .rated__news__list li .news__category {
  display: inline-block;
  margin-right: 0.8333333333vw;
  padding: 0.5128205128vw 1.0256410256vw 0.7692307692vw 1.0256410256vw;
  border-radius: 4.1666666667vw;
  font-weight: 400;
  line-height: 1;
  font-size: 1.3333333333vw;
  color: var(--color-sub-black);
  border: 1px solid var(--color-divide);
  transition: all 0.3s ease-out;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    margin-right: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    margin-right: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    border-radius: 66.6666666667px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    border-radius: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__category {
    font-size: 3.5897435897vw;
  }
}
.news .top__news__wrapper .rated__news__list li .news__category:hover {
  font-weight: 600;
}
.news .top__news__wrapper .rated__news__list li .news__date {
  color: var(--color-sub-black);
  font-size: 1.3333333333vw;
  font-weight: 400;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__date {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__date {
    font-size: 3.5897435897vw;
  }
}
.news .top__news__wrapper .rated__news__list li .news__excerpt a p {
  line-height: 2;
  font-size: 1.25vw;
  margin-top: 0.8333333333vw;
  margin-bottom: 0.8333333333vw;
  color: var(--color-sub-black);
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    font-size: 20px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    font-size: 3.5897435897vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    margin-top: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    margin-bottom: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .news .top__news__wrapper .rated__news__list li .news__excerpt a p {
    margin-bottom: 2.5641025641vw;
  }
}
.news .top__news__wrapper .rated__news__list li .news__excerpt a:hover p {
  color: var(--color-main);
}
.news .top__news__wrapper .rated__news__list li:first-of-type {
  border-top: 1px solid var(--color-divide);
}

.related__links {
  background: #fcfafa;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
@media (min-width: 1600px) {
  .related__links {
    padding-top: 80px;
  }
}
@media (max-width: 780px) {
  .related__links {
    padding-top: 15.3846153846vw;
  }
}
@media (min-width: 1600px) {
  .related__links {
    padding-bottom: 80px;
  }
}
@media (max-width: 780px) {
  .related__links {
    padding-bottom: 15.3846153846vw;
  }
}
.related__links .related__links__container {
  max-width: 100vw;
  margin: 0 auto;
  padding-left: 1.6666666667vw;
  padding-right: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container {
    max-width: 1600px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container {
    max-width: 92.3076923077vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container {
    padding-left: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container {
    padding-left: 2.5641025641vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container {
    padding-right: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container {
    padding-right: 2.5641025641vw;
  }
}
.related__links .related__links__container h2 {
  font-size: 2vw;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container h2 {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container h2 {
    font-size: 4.6153846154vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container h2 {
    margin-bottom: 53.3333333333px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container h2 {
    margin-bottom: 10.2564102564vw;
  }
}
.related__links .related__links__container .related__links__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6666666667vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents {
    gap: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents {
    gap: 5.1282051282vw;
  }
}
.related__links .related__links__container .related__links__contents .related__link {
  background: var(--color-white);
  padding: 1.6666666667vw;
  border-radius: 0.6666666667vw;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link {
    padding: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link {
    padding: 5.1282051282vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link {
    border-radius: 10.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link {
    border-radius: 2.0512820513vw;
  }
}
.related__links .related__links__container .related__links__contents .related__link h3 {
  color: var(--color-main);
  font-size: 1.6666666667vw;
  font-weight: bold;
  margin-bottom 10: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link h3 {
    font-size: 26.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link h3 {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link h3 {
    margin-bottom 10: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link h3 {
    margin-bottom 10: 0vw;
  }
}
.related__links .related__links__container .related__links__contents .related__link p {
  font-size: 1.1666666667vw;
  text-align: left;
  line-height: 1.5;
  color: var(--color-sub-text);
  margin-top: 0.8333333333vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link p {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link p {
    font-size: 3.3333333333vw;
  }
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link p {
    margin-top: 13.3333333333px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link p {
    margin-top: 2.5641025641vw;
  }
}
.related__links .related__links__container .related__links__contents .related__link a {
  font-weight: bold;
  margin-top: 1.5em;
  display: block;
  font-size: 1.1666666667vw;
  color: var(--color-main);
  transition: all 0.5s 0s ease;
}
@media (min-width: 1600px) {
  .related__links .related__links__container .related__links__contents .related__link a {
    font-size: 18.6666666667px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .related__links__contents .related__link a {
    font-size: 3.3333333333vw;
  }
}
.related__links .related__links__container .related__links__contents .related__link a:hover {
  opacity: 0.6;
}
.related__links .related__links__container .button__pink {
  margin: 0 auto;
  margin-top: 5vw;
}
@media (min-width: 1600px) {
  .related__links .related__links__container .button__pink {
    margin-top: 80px;
  }
}
@media (max-width: 780px) {
  .related__links .related__links__container .button__pink {
    margin-top: 10.2564102564vw;
  }
}
.related__links .related__links__container .button__pink a {
  color: var(--color-white);
}
@media not screen and (min-width: 781px) {
  .related__links .related__links__container .button__pink a {
    display: block;
    text-align: center;
  }
}