@charset "UTF-8";
@media (min-width: 768px) {
  .visible-md {
    display: none;
  }
}

/* mixin */
body,
html {
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴシック", sans-serif;
  line-height: 1.8;
  font-weight: 300;
  cursor: default;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
}
@supports (grid-area: auto) {
  body body,
html body {
    display: grid;
  }
}

html {
  font-size: 10px;
  word-break: break-all;
  scroll-behavior: smooth;
}

@media (max-width: 1439px) {
  body {
    font-size: 1.4rem;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 1.6rem;
  }
}

p::selection,
div::selection,
h1::selection,
h2::selection,
h3::selection,
span::selection {
  background: #121212;
  text-shadow: none;
  color: #ffffff;
}

.main-view-wrapper {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  box-sizing: border-box;
}
.main-view-wrapper.lower {
  margin-top: 9.8rem;
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .main-view-wrapper.lower {
    margin-top: 6.2rem;
    padding-top: 2.8rem;
  }
}

.main-view {
  padding-top: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-view {
    padding-top: 4rem;
  }
}
.main-view.generic-page {
  max-width: 90rem;
}
@media (min-width: 768px) {
  .main-view.generic-page {
    margin: 0 auto;
  }
}
@media (min-width: 1920px) {
  .main-view.generic-page {
    max-width: 50vw;
  }
}
.main-view.top {
  padding-top: 0;
}

.bg-dark {
  background-color: #121212;
}

.sub-title {
  font-size: 0.5em;
  margin-left: 1.8rem;
}
@media (max-width: 767px) {
  .sub-title {
    margin-left: 0;
    display: block;
  }
}

.sub-text {
  font-size: 0.86em;
}

.font-bold {
  font-weight: 600;
}
.font-bold.accent-border {
  border-bottom: 4px solid #12b1d9;
  border-image: linear-gradient(45deg, #146df1 0%, #0ff8c0 100%) 1/0 0 3px 0;
  border-image-slice: 1;
}

.hover-button {
  transition: ease 0.2s;
  position: relative;
  color: #121212;
}
@media (hover: hover) {
  .hover-button:hover, .hover-button:focus {
    color: #ffffff;
    text-decoration: none;
  }
}
.hover-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}
@media (hover: hover) {
  .hover-button:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.hover-button.not-name {
  opacity: 0.3;
  pointer-events: none;
}

.button {
  border: 1px solid #121212;
  border-radius: 0.4rem;
  font-weight: 600;
}
.button:hover, .button:focus {
  text-decoration: none;
}
.button.line {
  border: none;
}
.button.line:hover, .button.line:focus {
  opacity: 0.6;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  border-bottom: 1px solid #12b1d9;
  border-image: linear-gradient(45deg, #146df1 0%, #0ff8c0 100%) 1/0 0 1px 0;
  display: inline-block;
  padding-bottom: 0.8rem;
  position: relative;
  margin-bottom: 4rem;
  margin-top: 0;
  font-size: 3.2rem;
  font-weight: 600;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(100px);
  background: linear-gradient(45deg, #146DF1 0%, #0FF8C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  h2 {
    margin-bottom: 3.2rem;
  }
}
h2.scroll-in {
  opacity: 1;
  transform: translateY(0);
}
h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -8px;
  border: 4px solid transparent;
  border-left: 4px solid #12b1d9;
  border-bottom: 4px solid #12b1d9;
  background: linear-gradient(45deg, #146DF1 0%, #0FF8C0 100%);
}
h2.lower {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  h2 .lower-title {
    background: linear-gradient(45deg, #146DF1 0%, #0FF8C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.8rem;
  }
}

ol {
  padding-left: 0;
}

body > img {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

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

a {
  color: #121212;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  text-decoration: underline;
}
a img:hover, a img:focus {
  outline: transparent;
  transition: 0.3s ease;
  opacity: 0.6;
}
a .artwork {
  overflow: hidden;
}
a .artwork img {
  opacity: 1;
}
a.img-link:hover, a.img-link:focus {
  outline: transparent;
  transition: 0.3s ease;
  opacity: 0.6;
  text-decoration: none;
}

button {
  outline: transparent;
  border-style: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
button:hover, button:focus {
  cursor: pointer;
  pointer-events: all;
  opacity: 0.6;
}

input,
select,
textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  background: linear-gradient(45deg, #146DF1 0%, #0FF8C0 100%);
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

p {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.small-text {
  font-size: 0.85em;
}

.text-center {
  text-align: center;
}

@media (min-width: 599px) {
  .md-hidden {
    display: none !important;
  }
}

@media (max-width: 598px) {
  .sm-hidden {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .visible-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}

.display-bk {
  display: block;
}

.weight-b {
  font-weight: 700;
}

.lang-en {
  font-size: 0.82em;
  opacity: 0.5;
  font-weight: 400;
  word-break: keep-all;
}

body.open {
  position: fixed;
}

.header-block {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  padding-right: 2rem;
  padding-left: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: all 0.5s;
  width: 100%;
  opacity: 1;
  position: fixed;
  top: -20%;
  z-index: 1000;
  transition: all 0.5s;
}
@media (min-width: 599px) {
  .header-block {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .header-block {
    padding-right: 3.5vw;
    padding-left: 3.5vw;
  }
}
@media (min-width: 1024px) {
  .header-block {
    padding-right: 8rem;
    padding-left: 8rem;
  }
}
@media (min-width: 1280px) {
  .header-block {
    padding-right: 12rem;
    padding-left: 12rem;
  }
}
@media (min-width: 1440px) {
  .header-block {
    padding-right: 20rem;
    padding-left: 20rem;
  }
}
@media (min-width: 1920px) {
  .header-block {
    padding-right: 25rem;
    padding-left: 25rem;
  }
}
@media (max-width: 320px) {
  .header-block {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
@media (max-width: 767px) {
  .header-block {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
}
.header-block.fixed {
  top: 0;
  pointer-events: all;
  opacity: 1;
  background-color: #ffffff;
  position: fixed;
  border-bottom: 1px solid #F5F5F5;
}
.header-logo {
  display: block;
  font-size: 0;
}
@media (min-width: 768px) {
  .header-logo {
    margin-right: 3.2rem;
  }
}
.header-logo img {
  width: 16rem;
}
@media (max-width: 1023px) {
  .header-logo img {
    width: 14vw;
  }
}
@media (max-width: 767px) {
  .header-logo img {
    width: 14rem;
  }
}
@media (min-width: 768px) {
  .header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-menu {
    font-size: 0.86em;
  }
}
@media (min-width: 768px) {
  .header-menu > *:not(:last-child) {
    margin-right: 2rem;
  }
}
.header-menu a {
  position: relative;
}
@media (hover: hover) {
  .header-menu a:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #121212;
    transition: all 0.3s;
    transform: scaleX(0);
  }
  .header-menu a:hover:after, .header-menu a:focus:after {
    transform: scaleX(1);
  }
  .header-menu a:hover, .header-menu a:focus {
    outline: none;
    text-decoration: none;
  }
}
.header-lineblock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #06C755;
  padding: 0.6rem 2rem;
  border-radius: 0.4rem;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .header-lineblock {
    padding: 0.4rem 1rem;
  }
}
.header-lineblock img {
  width: 2.6rem;
}
@media (max-width: 767px) {
  .header-lineblock img {
    width: 1.6rem;
  }
}
.header-linetext {
  color: #ffffff;
  font-weight: 600;
  margin-left: 1.2rem;
}
@media (max-width: 1023px) {
  .header-linetext {
    font-size: 0.86em;
  }
}
@media (max-width: 767px) {
  .header-linetext {
    font-size: 1.2rem;
  }
}
@media (max-width: 598px) {
  .header-linetext {
    margin-left: 0.8rem;
  }
}
.header-menubtn {
  position: relative;
  width: 3.6rem;
  height: 2.4rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
  margin-left: 1.6rem;
}
@media (min-width: 768px) {
  .header-menubtn {
    height: 3rem;
    width: 6rem;
  }
}
.header-menubtn span {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  height: 0.2rem;
  background-color: #121212;
}
@media (min-width: 768px) {
  .header-menubtn span {
    height: 0.3rem;
  }
}
.header-menubtn span:nth-last-of-type(1) {
  top: 0;
  width: 100%;
}
.header-menubtn span:nth-last-of-type(2) {
  top: calc(50% - 2px);
  width: 80%;
}
@media (min-width: 768px) {
  .header-menubtn span:nth-last-of-type(2) {
    width: 70%;
  }
}
.header-menubtn span:nth-last-of-type(2)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #121212;
}
@media (min-width: 768px) {
  .header-menubtn span:nth-last-of-type(2)::after {
    height: 0.3rem;
  }
}
.header-menubtn span:nth-last-of-type(3) {
  bottom: 0;
  width: 50%;
}
@media (min-width: 768px) {
  .header-menubtn span:nth-last-of-type(3) {
    width: 40%;
  }
}
@media (hover: hover) {
  .header-menubtn:not(.open):hover span:nth-last-of-type(1), .header-menubtn:not(.open):focus span:nth-last-of-type(1) {
    animation: hamburgerMenu01 ease-out 0.4s;
  }
  .header-menubtn:not(.open):hover span:nth-last-of-type(2), .header-menubtn:not(.open):focus span:nth-last-of-type(2) {
    animation: hamburgerMenu02 ease-out 0.4s;
  }
  .header-menubtn:not(.open):hover span:nth-last-of-type(3), .header-menubtn:not(.open):focus span:nth-last-of-type(3) {
    animation: hamburgerMenu03 ease-out 0.4s;
  }
}
.header-menubtn.open {
  z-index: 100000;
}
.header-menubtn.open span:nth-last-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header-menubtn.open span:nth-last-of-type(2) {
  opacity: 0;
}
.header-menubtn.open span:nth-last-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header-menubtn.close-btn {
  width: 3rem;
  pointer-events: none;
}
.header-menubtn.close-btn span {
  top: 1.5rem;
}
.header-menubtn.close-btn span:nth-last-of-type(1) {
  width: 100%;
  transform: rotate(45deg);
}
.header-menubtn.close-btn span:nth-last-of-type(2) {
  width: 100%;
  transform: rotate(-45deg);
}
.header-menubtn.close-btn span:nth-last-of-type(3) {
  display: none;
}
.header-spmenu {
  width: 100%;
  pointer-events: none;
  padding-right: 2rem;
  padding-left: 2rem;
  position: fixed;
  height: 0;
  opacity: 0;
  transition: 0.5s ease-out all;
  background-color: rgba(18, 18, 18, 0.95);
  z-index: 10000;
  padding-top: 5rem;
  box-sizing: border-box;
}
@media (min-width: 599px) {
  .header-spmenu {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .header-spmenu {
    padding-right: 3.5vw;
    padding-left: 3.5vw;
  }
}
@media (min-width: 1024px) {
  .header-spmenu {
    padding-right: 8rem;
    padding-left: 8rem;
  }
}
@media (min-width: 1280px) {
  .header-spmenu {
    padding-right: 12rem;
    padding-left: 12rem;
  }
}
@media (min-width: 1440px) {
  .header-spmenu {
    padding-right: 20rem;
    padding-left: 20rem;
  }
}
@media (min-width: 1920px) {
  .header-spmenu {
    padding-right: 25rem;
    padding-left: 25rem;
  }
}
@media (max-width: 320px) {
  .header-spmenu {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
.header-spmenu .btn {
  text-align: center;
}
.header-spmenu .btn + .btn {
  margin-top: 1.2rem;
}
.header-spmenu li {
  margin-bottom: 2rem;
}
.header-spmenu a {
  color: #ffffff;
  font-size: 2rem;
}
.header-spmenu-register-item {
  width: 100%;
}
.header-spmenu.open {
  pointer-events: all;
  transition: 0.5s ease-out all;
  opacity: 1;
  height: 100vh;
  padding-top: 3rem;
}
.header-spmenu.open .close-btn {
  pointer-events: all;
}
.header-spmenu.open .close-btn span {
  background-color: #ffffff;
}
.header-spmenu.open .close-btn span::after {
  background-color: #ffffff;
}
.header-spmenu-logo img {
  width: 16rem;
}
@media (max-width: 1023px) {
  .header-spmenu-logo img {
    width: 14vw;
  }
}
@media (max-width: 767px) {
  .header-spmenu-logo img {
    width: 14rem;
  }
}
.header-spmenu-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.header-menublock {
  margin-top: 6rem;
}

.footer-wrapper {
  background-color: #121212;
  font-size: 1.2rem;
  padding: 4rem 5rem;
}
@media (max-width: 767px) {
  .footer-wrapper {
    padding: 4rem 2rem;
  }
}
.footer-wrapper .copylight {
  color: #ffffff;
  color: #8B8B8B;
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .footer-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-icon li:not(:last-child) {
  margin-right: 4rem;
}
@media (max-width: 767px) {
  .footer-icon li:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}
.footer-icon li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 1.2rem;
  color: #ffffff;
  position: relative;
}
.footer-icon li a:hover, .footer-icon li a:focus {
  opacity: 0.7;
  cursor: pointer;
}

.mv-logo {
  display: block;
  text-align: center;
  padding: 3rem 4.8rem;
}
@media (max-width: 767px) {
  .mv-logo {
    padding: 2rem 4.8rem;
  }
}
.mv-logo a {
  display: block;
}
.mv-logo img {
  width: 19rem;
}
@media (max-width: 767px) {
  .mv-logo img {
    width: 14rem;
  }
}
.mv-description {
  color: #ffffff;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 767px) {
  .mv-description {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.mv-description-title {
  font-weight: 600;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .mv-description-title {
    font-size: 2.8rem;
  }
}
.mv-description-text {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .mv-description-text {
    font-size: 1.2rem;
  }
}

.contents-wrapper {
  padding-right: 2rem;
  padding-left: 2rem;
  margin-bottom: 12rem;
}
@media (min-width: 599px) {
  .contents-wrapper {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .contents-wrapper {
    padding-right: 3.5vw;
    padding-left: 3.5vw;
  }
}
@media (min-width: 1024px) {
  .contents-wrapper {
    padding-right: 8rem;
    padding-left: 8rem;
  }
}
@media (min-width: 1280px) {
  .contents-wrapper {
    padding-right: 12rem;
    padding-left: 12rem;
  }
}
@media (min-width: 1440px) {
  .contents-wrapper {
    padding-right: 20rem;
    padding-left: 20rem;
  }
}
@media (min-width: 1920px) {
  .contents-wrapper {
    padding-right: 25rem;
    padding-left: 25rem;
  }
}
@media (max-width: 320px) {
  .contents-wrapper {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
@media (max-width: 767px) {
  .contents-wrapper {
    margin-bottom: 7.2rem;
  }
}
@media (max-width: 767px) {
  .contents-wrapper.line-contents {
    margin-bottom: 8.2rem;
  }
}
@media (max-width: 767px) {
  .contents-wrapper.mv-description-contents {
    margin-bottom: 5.2rem;
  }
}

@keyframes fadeUpAnimation {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.item-block {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  gap: 2.8rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .item-block {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 598px) {
  .item-block {
    gap: 0.4rem;
  }
}
.item-list {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  .item-attention {
    display: grid;
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.item-text {
  font-size: 0.85em;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.item-sub-text {
  display: block;
}
@media (max-width: 767px) {
  .item-sub-text {
    margin-bottom: 2.4rem;
  }
}
.item-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .item-button {
    padding: 1.2rem;
  }
}
.item-button::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url(/images/arrow_right_bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 2%;
}
.item-button:hover::after {
  background-image: url(/images/arrow_right_wh.svg);
}

@media (min-width: 768px) {
  .line-wrapper {
    display: grid;
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -moz-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
  }
}
.line-wrapper:not(:last-child) {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .line-block {
    margin-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .line-block {
    margin-right: 8rem;
  }
}
@media (max-width: 767px) {
  .line-block {
    margin-bottom: 5.2rem;
  }
}
.line-mobile {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30%;
}
@media (max-width: 767px) {
  .line-mobile {
    width: 18%;
  }
}
@media (max-width: 598px) {
  .line-mobile {
    width: 38%;
  }
}
.line-qr {
  margin-left: 2.4rem;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .line-qr {
    width: 8vw;
  }
}
.line-id {
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) and (min-width: 599px) {
  .line-id {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) and (min-width: 599px) {
  .line-linkblock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.4rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) and (min-width: 599px) {
  .line-link {
    width: 20vw;
  }
}
.line-images {
  background-color: #F5F5F5;
  position: relative;
  padding: 4rem 4rem;
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
}
@media (max-width: 1023px) {
  .line-images {
    padding: 2rem 2rem;
  }
}
.line-images-block {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .line-images-block {
    grid-template-columns: 1fr 1fr;
  }
}
.line-images-description {
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  padding: 2rem;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .line-images-description {
    padding: 1.2rem;
  }
}
.line-images-title {
  color: #06C755;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.line-telblock {
  border: 1px solid #121212;
  border-radius: 0.4rem;
}
.line-teltitle {
  background-color: #F5F5F5;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid;
  border-radius: 0.4rem 0.4rem 0 0;
}
.line-tellink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .line-tellink {
    font-size: 1.8rem;
  }
}
.line-telicon {
  margin-right: 0.8rem;
  width: 1.8rem;
}
@media (max-width: 598px) {
  .line-telicon {
    width: 1.4rem;
  }
}
.line-teltext {
  margin-bottom: 1.2rem;
  text-align: center;
}
.line-buy:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .line-buy:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.line-point {
  margin-bottom: 2rem;
}

.buy-wrapper:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .buy-wrapper:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.buy-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .buy-point {
    font-size: 1.8rem;
  }
}
.buy-point img {
  margin-left: 1.6rem;
  max-width: 4rem;
}
@media (max-width: 767px) {
  .buy-point img {
    margin-left: 0.8rem;
    max-width: 3rem;
  }
}
.buy-number {
  margin-right: 0.8rem;
}
.buy-picture {
  background-color: #F5F5F5;
  padding: 4rem;
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  row-gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .buy-picture {
    padding: 2rem;
    row-gap: 4rem;
  }
}
.buy-picture-list {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  column-gap: 5%;
}
@media (min-width: 768px) {
  .buy-picture-list {
    grid-template-columns: 3fr 2fr;
  }
}
.buy-picture-list .title {
  border-left: 4px solid #121212;
  padding-left: 1.2rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.buy-picture-list .images {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .buy-picture-list .images {
    margin-top: 2.4rem;
  }
}

.how-wrapper {
  background-color: #F5F5F5;
  padding: 4rem;
}
@media (max-width: 767px) {
  .how-wrapper {
    padding: 2rem;
  }
}
.how-wrapper:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .how-wrapper:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
.how-wrapper table {
  border: 1px solid #121212;
  border-radius: 0.4rem;
  border-spacing: 0;
  border-collapse: separate;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.how-wrapper tr:last-child td:nth-child(1) {
  border-radius: 0 0 0 4px;
  border-top: 1px solid #121212;
}
.how-wrapper tr:last-child td:nth-child(2) {
  border-top: 1px solid #121212;
  border-radius: 0 0 4px 0;
}
.how-wrapper tr th {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 50%;
  border-bottom: 1px solid;
}
.how-wrapper tr th:not(:last-child) {
  border-right: 1px solid #121212;
}
.how-wrapper tr td {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 50%;
  background-color: #ffffff;
}
.how-wrapper tr td:not(:last-child) {
  border-right: 1px solid #121212;
}
.how-point {
  margin-bottom: 2rem;
}
.how-item {
  margin: 1.2rem 0;
}

.scroll-top {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5.8rem;
  padding: 1.6rem;
  border-radius: 0.4rem;
  position: fixed;
  right: 3.5vw;
  bottom: 4rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #8B8B8B;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in;
}
@media (max-width: 767px) {
  .scroll-top {
    width: 4.2rem;
    padding: 1.2rem;
  }
}
.scroll-top img {
  transition: 0.3s ease-in;
}
@media (hover: hover) {
  .scroll-top:hover img, .scroll-top:focus img {
    transform: translateY(-4px);
  }
}
.scroll-top.fixed {
  opacity: 1;
  pointer-events: all;
}

.brandlist-wrapper .button {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.brandlist-button-list {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(14, 1fr);
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .brandlist-button-list {
    grid-template-columns: repeat(12, 1fr);
    margin-bottom: 4rem;
  }
}
@media (max-width: 598px) {
  .brandlist-button-list {
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
  }
}
.brandlist-section:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .brandlist-section:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.brandlist-title {
  background-color: #F5F5F5;
  padding-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .brandlist-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .brandlist-title {
    margin-bottom: 2.8rem;
  }
}
.brandlist-block {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  font-size: 0.86em;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1.6rem;
  column-gap: 2rem;
}
@media (max-width: 598px) {
  .brandlist-block {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.8rem;
  }
}
.brandlist-name {
  font-weight: 600;
  display: block;
}

.company-wrapper {
  width: 100%;
}
.company-block {
  display: grid;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  row-gap: 2.4rem;
}
@media (max-width: 767px) {
  .company-block {
    row-gap: 1.6rem;
  }
}
.company-list {
  text-align: left;
}
@media (min-width: 768px) {
  .company-list {
    display: grid;
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    column-gap: 6.4rem;
    grid-template-columns: 18rem 100%;
  }
}
@media (max-width: 767px) {
  .company-list th {
    display: block;
  }
}

.privacy-block:not(:last-child) {
  margin-bottom: 4rem;
}
.privacy-title {
  margin-bottom: 2.4rem;
}
.privacy-list {
  margin-top: 1.2rem;
}

.error-wrapper {
  width: 100%;
  text-align: center;
}
.error-title {
  font-size: 5.4rem;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 598px) {
  .error-title {
    font-size: 4rem;
  }
}
.error-button {
  padding: 0.8rem 2rem;
  display: inline-block;
  margin-top: 2.4rem;
  width: 24rem;
  text-align: center;
}
@media (max-width: 598px) {
  .error-button {
    width: 100%;
  }
}
.error-logo {
  width: 16rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 598px) {
  .error-logo {
    width: 14rem;
  }
}
.error-icon {
  width: 8rem;
}
@media (max-width: 598px) {
  .error-icon {
    width: 6.5rem;
  }
}
.error-number {
  margin-left: -1.5rem;
  z-index: -1;
}
@media (max-width: 598px) {
  .error-number {
    margin-left: -1rem;
  }
}
.error-number-400 {
  margin-left: -2rem;
}
@media (max-width: 598px) {
  .error-number-400 {
    margin-left: -1.6rem;
  }
}

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