@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/*--------------------------------------------------------------------------------
	reset
--------------------------------------------------------------------------------*/

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}
*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  margin: 0;
  padding: 0;
}
hr {
  color: inherit;
  height: 0;
  overflow: visible;
}
details,
main {
  display: block;
}
summary {
  display: list-item;
}
small {
  font-size: 80%;
}
[hidden] {
  display: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}
pre {
  font-size: 1em;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-color: inherit;
  text-indent: 0;
}
iframe {
  border-style: none;
}
input {
  border-radius: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: 700;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}
legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}
[disabled] {
  cursor: default;
}
img {
  border-style: none;
}
progress {
  vertical-align: baseline;
}
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"] {
  cursor: default;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "YuGothic", "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222222;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
  html {
    scroll-padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }

  body {
    font-size: 1.5rem;
  }
}

body * {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

em {
  font-style: normal;
}

/*--------------------------------------------------------------------------------
	header
--------------------------------------------------------------------------------*/

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: linear-gradient(rgba(0, 0, 0, 1), transparent);
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-logo a {
  display: block;
  background-color: #fff;
  width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  padding: 20px 50px 23px 50px;
}

.header-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
  width: 150px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 100px;
}

.header-btn > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}

.header-btn > a > span {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

.header-menu ul {
  display: flex;
}

.header-menu ul li {
  margin-right: 50px;
}

.header-menu a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.header-menu li:nth-of-type(1) a::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-menu_img_01_20260609.svg) 0 / contain no-repeat;
}

.header-menu li:nth-of-type(2) a::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-menu_img_02_20260609.svg) 0 / contain no-repeat;
}

.header-menu li:nth-of-type(3) a::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-menu_img_03_20260609.svg) 0 / contain no-repeat;
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
  .header {
    flex-direction: column;
    align-items: baseline;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 1) 50%, transparent);
  }

  .header-logo {
    width: 100%;
  }

  .header-logo > a {
    position: static;
    width: 30%;
    margin: 0;
    padding: 25px 50px 20px;
  }

  .header-btn {
    top: 26px;
    right: 20px;
    bottom: auto;
  }

  .header-menu {
    padding: 0;
    width: 100%;
  }

  .header-menu a {
    text-align: center;
    padding: 30px 20px;
  }
  .header-menu ul li {
    flex: 0 0 33.3333%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    flex-direction: column;
    align-items: baseline;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 1) 50%, transparent);
  }

  .header-logo {
    width: 100%;
  }

  .header-logo > a {
    position: static;
    padding: 10px 25px;
    width: 150px;
    margin: 0;
  }

  .header-btn {
    width: 105px;
    height: 30px;
    top: 10px;
    right: 20px;
    bottom: auto;
    font-size: 1.2rem;
  }

  .header-menu {
    padding: 10px 13px;
    width: 100%;
  }

  .header-menu a {
    text-align: left;
    font-size: 1.3rem;
  }
  .header-menu ul li {
    flex: 0 0 33.3333%;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------------------------
	main
--------------------------------------------------------------------------------*/

main {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* sp/pc */
.ml-v {
  display: none;
}

.sp-v.ml-v {
  display: block;
}

.lp-v {
  display: none;
}
.pc-v {
  display: none;
}
.sp-v.lp-v {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-txt-spleft {
    text-align: left !important;
  }

  .c-text__small {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .sp-v {
    display: none;
  }

  .pc-v {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.99px) {
  .ml-v {
    display: block;
  }

  .sp-v.ml-v {
    display: block;
  }

  .sp-v.lp-v {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .ml-v {
    display: none;
  }

  .sp-v.ml-v {
    display: none;
  }

  .lp-v {
    display: block;
  }

  .sp-v.lp-v {
    display: block;
  }
}

.txt-bold {
  font-weight: 700;
}

.txt-red {
  color: #d60000;
}

.txt-green {
  color: #5cb531;
}

.txt-black {
  color: #000;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* 汎用マージン */
.u-mt-xs {
  margin-top: 10px !important;
}
@media (min-width: 768px), print {
  .u-mt-xs {
    margin-top: 20px !important;
  }
}

.u-mt-s {
  margin-top: 20px !important;
}
@media (min-width: 768px), print {
  .u-mt-s {
    margin-top: 30px !important;
  }
}

.u-mt-m {
  margin-top: 30px !important;
}
@media (min-width: 768px), print {
  .u-mt-m {
    margin-top: 40px !important;
  }
}

.u-mt-l {
  margin-top: 50px !important;
}
@media (min-width: 768px), print {
  .u-mt-l {
    margin-top: 60px !important;
  }
}

.u-mt-xl {
  margin-top: 60px !important;
}
@media (min-width: 768px), print {
  .u-mt-xl {
    margin-top: 80px !important;
  }
}

.u-mt-xxl {
  margin-top: 80px !important;
}
@media (min-width: 768px), print {
  .u-mt-xxl {
    margin-top: 120px !important;
  }
}

.u-mt-none {
  margin-top: 0 !important;
}
@media (min-width: 768px), print {
  .u-mt-none {
    margin-top: 0 !important;
  }
}

/* ---------- common ----------*/

.c-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
}

.c-text__small {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 15px;
}

.note {
  margin-top: 15px;
}

.note ul li {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.note ul li::before {
  content: "※";
  margin-right: 0.5em;
}

.note ul li + li {
  margin-top: 5px;
}

.line {
  margin-top: 100px;
}

.blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: right;
}

.blockquote:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .note {
    margin-top: 10px;
  }

  .note ul li {
    font-size: 1rem;
  }

  .line {
    margin-top: 70px;
  }

  .blockquote {
    font-size: 1rem;
  }

  .img_pinch,
  .img_scroll {
    position: relative;
    padding-bottom: 40px;
  }

  .img_pinch::after,
  .img_scroll::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .img_pinch.--top,
  .img_scroll.--top {
    padding-bottom: 0;
    padding-top: 40px;
  }

  .img_pinch.--top::after,
  .img_scroll.--top::after {
    top: 0;
    bottom: auto;
  }

  .img_pinch::after {
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-pinch_img_01_20260609.svg);
  }

  .img_pinch.--white::after {
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-pinch_img_02_20260609.svg);
  }

  .img_scroll::after {
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-scroll_img_02_20260609.svg);
  }

  .img_scroll {
    overflow-x: scroll;
  }

  .img_scroll .img_scroll__inner img {
    width: 200%;
  }
}

.iFreeNEXT-bg {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_bg-space-pc_img_01_20260609.webp);
  background-position: center top;
  background-size: cover;
}

.box-border {
  padding: 10px;
  position: relative;
}

.box-border::before,
.box-border::after {
  content: "";
  display: block;
  width: 490px;
  height: 256px;
  position: absolute;
  z-index: 1;
}

.box-border::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-tp_img_01_20260609.png) 0 / contain no-repeat;
  top: 0;
  left: 0;
}

.box-border::after {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-bt_img_01_20260609.png) 0 / contain no-repeat;
  bottom: 0;
  right: 0;
}

.box-border__inner {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .iFreeNEXT-bg {
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_bg-space-sp_img_01_20260609.webp);
  }

  .box-border::before,
  .box-border::after {
    width: 88px;
    height: 173px;
  }

  .box-border::before {
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-tp-sp_img_01_20260609.png) 0 / contain no-repeat;
  }

  .box-border::after {
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-bt-sp_img_01_20260609.png) 0 / contain no-repeat;
  }
}

.content-wrap__inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.content-box {
  background: #edf0f4;
  padding: 80px 70px;
}

.content-box__title-primary {
  margin-bottom: 20px;
}

.content-box__title-primary .inner {
  color: #111;
  font-size: 5.4rem;
  font-weight: 800;
}

.content-box__title-secondary {
  margin: 48px 0 24px;
  display: flex;
  align-items: center;
}

.content-box__title-secondary .inner {
  color: #111;
  font-size: 2.2rem;
  font-weight: 700;
}

.content-box__title-secondary::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-right: 0.5em;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-title_img_01_20260609.svg) 0 / contain no-repeat;
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
  .content-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .content-box {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 767px) {
  .content-wrap {
    padding-left: 5px;
    padding-right: 5px;
  }

  .content-box {
    padding: 40px 15px;
  }

  .content-box__title-primary .inner {
    font-size: 3.2rem;
  }

  .content-box__title-secondary {
    margin: 24px 0 16px;
  }
  .content-box__title-secondary .inner {
    font-size: 1.7rem;
  }

  .content-box__title-secondary::before {
    width: 32px;
    height: 32px;
  }
}

.decoration-x {
  width: 530px;
  height: 530px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-x_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
}
.decoration-x.--small {
  width: 360px;
  height: 360px;
}
.decoration-x.--right {
  right: -35%;
}
.decoration-x.--left {
  left: -35%;
}
.decoration-x.--small.--right {
  right: -20%;
}
.decoration-x.--small.--left {
  left: -20%;
}
.decoration-x.--01 {
  top: 40%;
}
.decoration-x.--02 {
  top: 60%;
}
.decoration-x.--03 {
  top: -6%;
}
.decoration-x.--04 {
  top: 40%;
}
.decoration-x.--05 {
  top: 40%;
}
.decoration-x.--06 {
  top: 65%;
}
.decoration-x.--07 {
  top: 40%;
}
.decoration-x.--08 {
  top: 72%;
}

@media screen and (max-width: 767px) {
  .decoration-x,
  .decoration-x.--small {
    width: 150px;
    height: 150px;
  }
  .decoration-x.--01,
  .decoration-x.--02,
  .decoration-x.--07 {
    display: none;
  }
  .decoration-x.--03 {
    right: -12%;
  }
  .decoration-x.--04 {
    top: -15%;
    left: 2% !important;
  }
  .decoration-x.--05 {
    top: 11%;
    right: -5% !important;
  }
  .decoration-x.--06 {
    top: auto;
    bottom: 10px;
    left: -12% !important;
  }
  .decoration-x.--08 {
    top: auto;
    bottom: -20px;
    left: 5% !important;
  }
}

/* -------------- mainvisual ------------- */

.mainvis {
  color: #fff;
  padding-top: 80px;
  background: #000a1c;
}

.mainvis__inner {
  position: relative;
  max-width: 1920px;
  height: 85vh;
  max-height: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_mv-pc_img_01_20260609.webp) center/cover no-repeat;
}

.mainvis__title {
  width: 46%;
  position: relative;
}

.mainvis__title img {
  position: relative;
  z-index: 10;
}

.mainvis__title::before {
  content: "";
  display: block;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #000a1c;
  filter: blur(50px);
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.mainvis__lead {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.mainvis__badge {
  padding: 10px 16px;
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
  background: linear-gradient(105deg, #88f3ff 0%, #ecceff 20%, #bacaff 45%, #b2a0ff 70%, #f7e0ff 80%, #c962ff 100%);
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1081px) {
  .mainvis__title {
    min-width: 668px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
  .mainvis {
    padding-top: 190px;
  }

  .mainvis__title {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .mainvis {
    padding-top: 105px;
  }

  .mainvis__inner {
    height: 90vh;
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_mv-sp_img_01_20260609.webp) center/cover no-repeat;
  }

  .mainvis__title {
    width: 90%;
    max-width: 500px;
  }

  .mainvis__title::before {
    width: 230px;
    height: 230px;
  }

  .mainvis__lead {
    font-size: 1.7rem;
  }

  .mainvis__badge {
    font-size: 1.3rem;
    margin-bottom: 100px;
  }
}

.bnr {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 270px;
  height: 70px;
  background: rgb(18, 101, 214, 0.9);
  z-index: 100;
  transition: 0.5s;
}

.bnr.is-fade {
  opacity: 0;
  transition: 0.5s;
}

.bnr.is-close {
  opacity: 0;
  transition: 0.5s;
}

.bnr .bnr-close {
  position: absolute;
  right: 0;
  top: -30px;
  width: 20px;
  height: 20px;
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
}
.bnr .bnr-close::before,
.bnr .bnr-close::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  position: absolute;
  background-color: #fff;
}
.bnr .bnr-close::before {
  transform: rotate(45deg);
  transform-origin: top left;
}
.bnr .bnr-close::after {
  transform: rotate(-45deg);
  transform-origin: bottom left;
  bottom: 0;
}

.bnr a {
  display: block;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  position: relative;
  width: 100%;
  height: 100%;
}

.bnr a::before {
  content: "";
  display: block;
  width: 7px;
  height: 60px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.bnr a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-wh_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.bnr a span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.bnr a span::before,
.bnr a span::after {
  content: "";
  display: block;
  width: 88%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 8%;
}

.bnr a span::before {
  top: 5px;
}

.bnr a span::after {
  bottom: 5px;
}

@media screen and (max-width: 767px) {
  .bnr {
    width: 150px;
    height: 58px;
    right: 10px;
  }

  .bnr a {
    font-size: 1.3rem;
  }

  .bnr a::before {
    width: 6px;
    height: 48px;
  }

  .bnr .bnr-close {
    top: -25px;
  }
}

/* -------------- about ------------- */

.about-inner {
  padding: 120px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.about-lead {
  background: rgba(0, 10, 28, 0.9);
  border: 1px solid #fff;
  padding: 90px 20px;
}

.about-lead__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.about-lead__text {
  text-align: center;
  font-size: 1.8rem;
}

.about-point {
  margin-top: 44px;
}

.about-point__title img {
  width: 100%;
  height: 52px;
  object-fit: cover;
}

.about-point__menu {
  margin-top: 30px;
}

.about-point__menu ul {
  display: flex;
  justify-content: space-between;
}

.about-point__menu ul li {
  flex: 0 0 31.81%;
}

.about-point__menu .border::before,
.about-point__menu .border::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}

.about-point__menu .border::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-tp_img_02_20260609.png) 0 / contain no-repeat;
  width: 206px;
  height: 122px;
  top: 0;
  left: 0;
}

.about-point__menu .border::after {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-bt_img_02_20260609.png) 0 / contain no-repeat;
  width: 107px;
  height: 7px;
  bottom: 0;
  right: 0;
}

.about-point__menu ul li a {
  display: block;
  padding: 10px 0 12px 10px;
  height: 100%;
  position: relative;
}

.about-point__menu ul li:nth-of-type(1) a .inner {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_thumb_img_01_20260609.png) center / cover no-repeat;
}

.about-point__menu ul li:nth-of-type(2) a .inner {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_thumb_img_02_20260609.png) center / cover no-repeat;
}

.about-point__menu ul li:nth-of-type(3) a .inner {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_thumb_img_03_20260609.png) center / cover no-repeat;
}

.about-point__menu ul li a .inner {
  display: block;
  height: 100%;
  padding: 0 10px 20px 10px;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  z-index: 2;
}

.about-point__menu ul li a .arrow::after {
  content: "";
  display: block;
  width: 50px;
  height: 32px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-dw_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.about-point__menu ul li a .point {
  display: block;
  width: 80px;
}

.about-point__menu ul li a p {
  margin: 20px 0 0 10px;
}

.about-point__link {
  max-width: 360px;
  height: 50px;
  margin: 60px auto 0;
}

.about-point__link a {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 10, 28, 0.9);
  border: 1px solid #fff;
}

.about-point__link a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-dw_img_02_20260609.svg) 0 / contain no-repeat;
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
  .about-point__ttl::after {
    width: 70%;
  }

  .about-point__menu ul li a .inner {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .about-lead {
    padding: 60px 30px;
  }

  .about-lead__title {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .about-lead__text {
    text-align: left;
    font-size: 1.7rem;
  }

  .about-point {
    margin-top: 70px;
    padding: 0 10px;
  }

  .about-point__title img {
    height: 38px;
  }

  .about-point__ttl::after {
    width: 56%;
    right: 20px;
    background-size: contain;
  }

  .about-point__menu {
    margin-top: 20px;
  }

  .about-point__menu ul {
    flex-direction: column;
  }

  .about-point__menu ul li {
    flex: auto;
  }

  .about-point__menu .border::before {
    width: 65px;
    height: 40px;
  }

  .about-point__menu .border::after {
    width: 107px;
    height: 7px;
  }

  .about-point__menu ul li a {
    display: flex;
  }

  .about-point__menu ul li a .inner {
    font-size: 1.5rem;
    flex: 1 0 auto;
  }

  .about-point__menu ul li a .arrow {
    flex: 0 0 50px;
    border: 1px solid #fff;
    border-left: none;
    background: #111;
    position: relative;
  }

  .about-point__menu ul li a .arrow::after {
    width: 33px;
    height: 21px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .about-point__link {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .about-point__link a {
    font-size: 1.5rem;
  }
}

/* ------------ point -------------- */

.point {
  background: #020c18;
}

.point01,
.point02,
.point03 {
  border-top: 1px solid #fff;
}

.point01 {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point_img_01_20260609.webp) top / 100% no-repeat;
}

.point02 {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point_img_02_20260609.webp) top / 100% no-repeat;
}

.point03 {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point_img_03_20260609.webp) top / 100% no-repeat;
}

.point-inner {
  padding: 200px 0;
}

.point-inner01 {
  padding: 200px 0 0;
}

.point-inner02 {
  padding: 0 0 200px;
}

.point-title {
  margin-bottom: 100px;
}

.point-title__num {
  display: block;
  width: 276px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  background: #fff;
}

.point-title .inner {
  color: #fff;
  font-size: 5.4rem;
  font-weight: 700;
}

.point-title .large {
  font-size: 7.4rem;
}

.point-title .em {
  display: inline-block;
  border: 1px solid #fff;
  line-height: 1;
  padding: 0 5px 5px;
}

@media screen and (min-width: 768px) and (max-width: 1180.99px) {
}

@media screen and (max-width: 767px) {
  .point01 {
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point-sp_img_01_20260609.webp) top / 100% no-repeat;
  }

  .point02 {
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point-sp_img_02_20260609.webp) top / 100% no-repeat;
  }

  .point03 {
    background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_point-sp_img_03_20260609.webp) top / 100% no-repeat;
    overflow-y: hidden;
  }

  .point-inner {
    padding: 160px 0 100px;
  }

  .point-inner01 {
    padding: 160px 0 0;
  }

  .point-inner02 {
    padding: 0 0 80px;
  }

  .point-title {
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .point-title__num {
    width: 160px;
  }

  .point-title .inner {
    font-size: 2.8rem;
  }

  .point-title .large {
    font-size: 4.1rem;
  }
}

/* ------------ project ------------- */

.project {
  padding: 120px 0;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_bg-project_img_01_20260609.webp) bottom center / contain no-repeat;
  position: relative;
}

.project-inner {
  max-width: 900px;
  margin: 0 auto;
}

.project-title {
  margin: 0 0 12px;
  padding-bottom: 20px;
  position: relative;
}

.project-title .inner {
  font-size: 5.4rem;
  font-weight: 800;
  text-align: center;
}

.project-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-border_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.project-content {
  margin-top: 80px;
}

.project-content__2up {
  display: flex;
  justify-content: space-between;
}

.project-content__2up + .project-content__2up {
  margin-top: 80px;
}

.project-content__item {
  flex: 0 0 48%;
}

.project-content__title {
  width: 288px;
  margin: 0 auto 30px;
}

.project-content__text {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 30px;
}

.project-content__image {
  max-width: 420px;
  margin: 0 auto;
}

.project-content__item.--1itemimage {
  flex: 0 0 600px;
  position: relative;
  right: 10%;
  bottom: -40px;
}
.project-content__item.--1itemimage .project-content__image {
  max-width: 100%;
}

@media screen and (max-width: 1000px) and (min-width: 901px) {
  .project-content__item.--1itemimage {
    flex: 0 0 550px;
  }
}

@media screen and (max-width: 900px) and (min-width: 768px) {
  .project-content__2up.--1item {
    padding-bottom: 50px;
  }
  .project-content__item.--1itemimage {
    flex: 0 0 500px;
    right: 15%;
    bottom: -80px;
  }
}

@media screen and (max-width: 767px) {
  .project {
    background-image: none;
    padding: 80px 0;
  }

  .project-content {
    display: none;
  }

  .project-title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-title .inner {
    font-size: 3.2rem;
  }

  .project .c-text {
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ---------- point02 ------------ */

.point02 .process0102 {
  position: relative;
  padding-bottom: 70px;
}

.point02 .process0102::before {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(#d0def2 20%, #84b4f5);
  clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 40% 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.point02 .process01 {
  background: #fff;
  padding: 38px;
  position: relative;
  z-index: 2;
}

.point02 .process01__title {
  display: flex;
  justify-content: center;
}

.point02 .process01__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 50px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-title_img_02_20260609.svg) 0 / contain no-repeat;
  margin-right: 10px;
}

.point02 .process01__title .inner {
  font-size: 2.4rem;
  font-weight: 600;
}

.point02 .process01__title em {
  font-size: 1.16em;
  font-weight: 700;
  color: #1265d6;
}

@media screen and (max-width: 767px) {
  .point02 .process0102::before {
    width: 95%;
  }

  .point02 .process01 {
    padding: 20px;
  }

  .point02 .process01__title::before {
    width: 56px;
    height: 46px;
  }

  .point02 .process01__title .inner {
    font-size: 1.6rem;
  }
}

.point02__btn {
  max-width: 750px;
  margin: 0 auto 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.point02__btn::before {
  content: "";
  display: block;
  width: 7px;
  height: 60px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.point02__btn:hover::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_02_20260609.svg) 0 / contain no-repeat;
}

.point02__btn button {
  background-color: #000;
  text-align: left;
  width: 100%;
  padding: 20px;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  transition: 0.5s;
  border: 2px solid #000;
}

.point02__btn button:hover {
  background-color: #edf0f4;
  transition: 0.5s;
  color: #000;
}

@keyframes btnAnime {
  0% {
    transform: translateX(0);
  }

  5% {
    transform: translateX(6px);
  }

  10% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(8px);
  }

  20% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.point02__btn button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  margin: auto;
  width: 19px;
  height: 19px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-wh_img_01_20260609.svg) 0 / contain no-repeat;
  transition: 0.5s;
  animation: btnAnime 4s infinite;
}

.point02__btn button:hover::after {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-black_img_01_20260609.svg) 0 / contain no-repeat;
  transition: 0.5s;
  right: 3%;
}

@media screen and (max-width: 767px) {
  .point02__btn button {
    padding: 14px 20px;
    font-size: 1.5rem;
  }
}

.point02 .process02 {
  max-width: 750px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.point02 .process02__text {
  background: #fff;
  text-align: center;
  padding: 20px;
}

.point02 .process03__title {
  background: #1265d6;
  padding: 60px 40px 10px;
  text-align: center;
  position: relative;
}

.point02 .process03__title::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-title_img_03_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translatex(-50%);
}

.point02 .process03__title .inner {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
}

.point02 .process03__lead {
  background: #103577;
  padding: 15px 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.point02 .process03__body {
  background: #fff;
  padding: 30px 40px;
}

.point02 .process03__text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.point02 .process03__btn + .process03__btn {
  margin-top: 24px;
}

.point02 .process03__btn button {
  padding-right: 60px;
}

.point02 .process03__btn-inner {
  display: block;
  text-align: left;
}

.point02 .process03__btn-inner + .process03__btn-inner {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px dotted #fff;
}

.point02 .process03__btn-num {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.point02 .process03__btn-num img {
  width: 40%;
}

.point02 .process03__btn-title {
  padding-left: 72px;
  margin-bottom: 10px;
}

.point02 .process03__btn-text {
  padding-left: 72px;
  font-size: 1.6rem;
  font-weight: 400;
}

.point02 .process03__btn button:hover .process03__btn-inner {
  border-color: #000;
}

@media screen and (max-width: 767px) {
  .point02 .process02 {
    margin-top: 40px;
  }

  .point02 .process02__text {
    text-align: left;
  }

  .point02 .process03__title {
    padding: 46px 20px 15px;
  }

  .point02 .process03__title::before {
    width: 72px;
    height: 72px;
  }

  .point02 .process03__title .inner {
    font-size: 2rem;
  }

  .point02 .process03__lead {
    font-size: 1.6rem;
  }

  .point02 .process03__body {
    padding: 24px 0;
  }

  .point02 .process03__text {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 20px 20px;
  }

  .point02 .process03__btn button {
    padding-right: 40px;
    padding-left: 30px;
  }

  .point02 .process03__btn-num {
    width: 50px;
    height: 50px;
    justify-content: flex-start;
  }

  .point02 .process03__btn-num img {
    width: 60%;
  }

  .point02 .process03__btn-title {
    font-size: 1.6rem;
    padding-left: 55px;
  }

  .point02 .process03__btn-text {
    font-size: 1.4rem;
    padding-left: 0;
  }
}

/* ------------ point03 -------------- */

.point03__btn {
  max-width: 500px;
  margin: 40px auto 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.point03__btn::before {
  content: "";
  display: block;
  width: 7px;
  height: 60px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_01_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.point03__btn:hover::before {
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_02_20260609.svg) 0 / contain no-repeat;
}

.point03__btn button,
.point03__btn a {
  background-color: #000;
  text-align: left;
  width: 100%;
  padding: 20px;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  transition: 0.5s;
  border: 2px solid #000;
}

.point03__btn button:hover,
.point03__btn a:hover {
  background-color: #edf0f4;
  transition: 0.5s;
  color: #000;
}

.point03__btn button::after,
.point03__btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  margin: auto;
  width: 21px;
  height: 23px;
  background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-excel_img_01_20260609.svg);
}

@media screen and (max-width: 767px) {
  .point03__btn button,
  .point03__btn a {
    padding: 14px 20px;
    font-size: 1.5rem;
  }
}

/* ------------- index --------------- */

.index-inner {
  padding: 200px 0 0;
}

.index-title {
  text-align: center;
  margin-bottom: 60px;
}

.index-title .inner {
  font-size: 5.4rem;
  font-weight: 700;
  color: #fff;
}

.index .content-box {
  background: rgba(0, 10, 28, 0.9);
  border: 1px solid #fff;
}

.index .content-box__title-secondary .inner {
  color: #fff;
}

.index .content-box__title-secondary::before {
  background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-title_img_04_20260609.svg);
}

.index .content-box__title-secondary .small {
  font-size: 0.72em;
}

.index__table table {
  width: 100%;
  text-align: center;
}

.index__table table .table-pc-v,
.index__table table .table-sp-v {
  display: none;
}

@media screen and (min-width: 768px) {
  .index__table table .table-pc-v {
    display: table-column-group;
  }
}

@media screen and (max-width: 767px) {
  .index__table table .table-sp-v {
    display: table-column-group;
  }
}

.index__table table thead th {
  padding: 8px 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #6c7789;
}

.index__table table tbody tr:nth-child(odd) {
  background-color: #edf1f4;
}

.index__table table tbody tr:nth-child(even) {
  background-color: #fff;
}

.index__table table tbody tr + tr {
  border-top: 1px solid #c8d1d5;
}

.index__table table tbody tr th {
  background-color: #1265d6;
  color: #fff;
}

.index__table table tbody tr td {
  padding: 12px 20px;
  font-weight: 400;
}

.index .note {
  color: #fff;
}

.index__2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.index-item {
  flex: 0 0 48%;
  background-color: #fff;
}

.index-item:nth-child(n + 3) {
  margin-top: 40px;
}

.index-item__flag {
  background-color: #6c7789;
  padding: 10px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-item__flag .flag {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.index-item__flag .flag img {
  max-width: 62px;
  margin-left: 10px;
}

.index-item__text {
  padding: 30px;
}

.index-item__text .lead {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .index-title .inner {
    font-size: 3.6rem;
  }

  .index__2col {
    flex-direction: column;
  }

  .index-item:nth-child(n + 3) {
    margin-top: 0;
  }

  .index-item + .index-item {
    margin-top: 20px;
  }

  .index-item__flag {
    font-size: 1.6rem;
  }

  .index-item__flag .flag {
    font-size: 1rem;
  }

  .index-item__flag .flag img {
    max-width: 43px;
    margin-left: 10px;
  }

  .index-item__text {
    padding: 20px;
  }

  .index-item__text .lead {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 500px) {
  .index__table {
    overflow-x: scroll;
    padding-top: 40px;
    position: relative;
  }

  .index__table::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 28px;
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-scroll_img_01_20260609.svg);
    background-repeat: no-repeat;
  }
  .index__table__inner {
    width: 500px;
  }
}

/* ------------ shop ---------------- */

.shop-inner {
  padding: 60px 25px 80px;
}

.shop-title {
  text-align: center;
  margin-bottom: 60px;
}

.shop-title .inner {
  font-size: 5.4rem;
  font-weight: 700;
  color: #fff;
}

.shop__menu-btn {
  display: flex;
  justify-content: space-between;
}

.shop__menu-btn li {
  flex: 0 0 295px;
  height: 90px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 6px 6px;
}

.shop__menu-btn li a {
  position: relative;
  background-color: #fff;
  color: #000;
  border: 1px solid #111;
  border-right: 35px solid #1265d6;
  font-size: 1.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.shop__menu-btn li:nth-child(2) a {
  padding-top: 5px;
}

.shop__menu-btn li a::before {
  content: "";
  display: block;
  width: 7px;
  height: 60px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_02_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.shop__menu-btn li a::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-wh_img_01_20260609.svg) 0 / contain no-repeat;
  z-index: 1;
}

.shop__menu-btn li a img {
  width: 70%;
}

.shop__menu-btn li:first-child a img {
  width: 50%;
}

.shop__menu-link {
  display: flex;
  justify-content: center;
}

.shop__menu-link li {
  flex: 0 0 460px;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.2) 0 6px 6px;
}

.shop__menu-link li a {
  display: block;
  width: 100%;
  background: #fff;
  color: #000;
  font-size: 1.8rem;
  padding: 20px;
  position: relative;
  color: #000;
  border: 1px solid #000;
}

.shop__menu-link li a::before {
  content: "";
  display: block;
  width: 7px;
  height: 60px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_shape-left_img_02_20260609.svg) 0 / contain no-repeat;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.shop__menu-link li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 25px;
  margin: auto;
  width: 14px;
  height: 14px;
  background: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-arrow-black_img_01_20260609.svg) 0 / contain no-repeat;
  z-index: 1;
}

@media screen and (min-width: 768px) and (max-width: 1023.99px) {
  .shop__menu-btn li {
    flex: 0 0 32%;
  }

  .shop__menu-link li {
    flex: 0 0 48%;
  }
}

@media screen and (max-width: 767px) {
  .shop-inner {
    padding: 50px 20px 60px;
  }

  .shop-title {
    margin-bottom: 30px;
  }

  .shop-title .inner {
    font-size: 3.6rem;
  }

  .shop__menu-btn {
    flex-direction: column;
  }

  .shop__menu-btn li {
    flex: auto;
  }

  .shop__menu-btn li + li {
    margin-top: 20px;
  }

  .shop__menu-btn li a {
    padding: 20px 0;
  }

  .shop__menu-btn li:nth-child(2) a {
    padding: 22px 0 20px;
  }

  .shop__menu-btn li a img {
    width: 70%;
    max-width: 300px;
  }

  .shop__menu-btn li:first-child a img {
    width: 40%;
  }

  .shop__menu-link {
    flex-direction: column;
  }

  .shop__menu-link li {
    flex: auto;
  }

  .shop__menu-link li + li {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------------------------
	disclaimer
--------------------------------------------------------------------------------*/
.disclaimer {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 50px calc(20 / 375 * 100%);
}

.disclaimer-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.disclaimer-ttl-01 {
  position: relative;
  margin-bottom: 30px;
}

.disclaimer-ttl-01-inner {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.6;
}

.disclaimer-ttl-01-inner span {
  font-size: 1.2rem;
  font-weight: 400;
}

.disclaimer-ttl-02 {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 30px 0;
}

.disclaimer-ttl-03 {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 15px 0;
}

.disclaimer-ttl-04 {
  font-size: 1.4rem;
  padding: 0 0 0 1.5em;
  margin: 0 0 12px 0;
  position: relative;
}

.disclaimer-ttl-04::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1265d6;
  outline: 1px solid #1265d6;
  outline-offset: 1px;
}

.disclaimer-txt-01 {
  font-size: 1.4rem;
  line-height: 1.6;
}

.disclaimer-txt-01 + .disclaimer-txt-01 {
  margin-top: 4px;
}

.disclaimer-txt-01 a {
  text-decoration: underline;
}

.disclaimer-txt-03 {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0 1.5em;
}

.disclaimer-txt-03 + .disclaimer-txt-03 {
  margin-top: 4px;
}

.disclaimer-txt-03::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.disclaimer-list-01 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.disclaimer-list-01.disclaimer-list-01--01 {
  margin-top: 16px;
}

.disclaimer-list-01 > li {
  position: relative;
  padding: 0 0 0 1.5em;
}

.disclaimer-list-01 > li + li {
  margin-top: 12px;
}

.disclaimer-list-01.disclaimer-list-01--01 > li + li {
  margin-top: 4px;
}

.disclaimer-list-01 > li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1265d6;
  outline: 1px solid #1265d6;
  outline-offset: 1px;
}

.disclaimer-list-01 > li.disclaimer-list-01-red {
  color: #dd2525;
  font-weight: 700;
}

.disclaimer-list-01 > li.disclaimer-list-01-red:before {
  background: #dd2525;
}

.disclaimer-list-02 {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 30px;
}

.disclaimer-list-02 > li {
  position: relative;
  padding: 0 0 0 1.5em;
}

.disclaimer-list-02 > li + li {
  margin-top: 4px;
}

.disclaimer-list-02 > li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.disclaimer-list-03 {
  counter-reset: counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.disclaimer-list-03 li {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 1.5em;
}

.disclaimer-list-03 > li + li {
  margin-top: 12px;
}

.disclaimer-list-03 li:before {
  content: counter(counter) ".";
  counter-increment: counter;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  line-height: inherit;
}

.disclaimer-inner-list {
  margin: 20px 0 12px;
}

.disclaimer-inner-list > li + li {
  margin-top: 12px;
}

.disclaimer-block {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .disclaimer {
    padding: 120px 40px;
  }

  .disclaimer-ttl-01 {
    margin: 0 0 32px 0;
  }

  .disclaimer-ttl-01:before {
    top: 15px;
  }

  .disclaimer-ttl-01-inner {
    font-size: 2rem;
  }

  .disclaimer-ttl-01-inner > span {
    padding: 0 20px 0 0;
  }

  .disclaimer-ttl-02 {
    font-size: 1.6rem;
    margin: 24px 0 24px 0;
  }

  .disclaimer-ttl-02.disclaimer-ttl-02--01 {
    margin: 32px 0 24px 0;
  }

  .disclaimer-ttl-03 {
    font-size: 1.4rem;
    margin: 12px 0 8px 0;
  }

  .disclaimer-ttl-04 {
    font-size: 1.4rem;
  }

  .disclaimer-ttl-04:before {
    top: 0.4em;
    width: 11px;
    height: 11px;
  }

  .disclaimer-txt-01,
  .disclaimer-txt-03 {
    font-size: 1.4rem;
  }

  .disclaimer-txt-01 + .disclaimer-txt-01 {
    margin-top: 8px;
  }

  .disclaimer-list-01 {
    font-size: 1.4rem;
  }

  .disclaimer-list-01.disclaimer-list-01--01 {
    margin-top: 24px;
  }

  .disclaimer-list-01 > li + li {
    margin-top: 12px;
  }

  .disclaimer-list-01.disclaimer-list-01--01 > li + li {
    margin-top: 8px;
  }

  .disclaimer-list-01 > li:before {
    width: 11px;
    height: 11px;
  }

  .disclaimer-list-02 {
    margin-top: 24px;
  }

  .disclaimer-list-02 > li + li {
    margin-top: 8px;
  }

  .disclaimer-block {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------------------------
	footer
--------------------------------------------------------------------------------*/

.footer {
  background: #222222;
  color: #ffffff;
  padding: 30px 20px 60px 20px;
}
.footer-02 {
  display: flex;
  flex-wrap: wrap;
}
.footer-02-01 {
  order: 1;
}
.footer-02-01-inner > dl {
  font-size: 1.2rem;
  line-height: 1.6;
}
.footer-02-01-inner > dl > dt {
  font-weight: bold;
  text-align: center;
}
.footer-02-01-inner > dl > dt > span {
  padding: 0 0 0 1em;
}
.footer-02-01-inner > dl > dd {
  text-align: center;
}
.footer-02-01-inner-copyright {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 60px 80px 60px;
  }
  .footer-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-02 {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 auto;
  }
  .footer-02-01-inner > dl {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .footer-02-01-inner > dl > dt > span > br {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
	modal
--------------------------------------------------------------------------------*/

.modal-process {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s linear,
    visibility 0.2s;
}
.modal-process__closelayer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.modal-process__inner {
  width: 90%;
  max-width: 960px;
  position: relative;
  z-index: 1;
}
.modal-process__close {
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 203;
  cursor: pointer;
}
.modal-process__close::before,
.modal-process__close::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  position: absolute;
  background-color: #fff;
  transform-origin: center;
}
.modal-process__close::before {
  transform: rotate(45deg);
  transform-origin: top left;
}
.modal-process__close::after {
  transform: rotate(-45deg);
  transform-origin: bottom left;
  bottom: 0;
}
.modal-process__content {
  display: none;
  width: 100%;
  height: 0;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
  overflow-y: auto;
  pointer-events: none;
}
.modal-process__content.is-show {
  display: block;
  height: auto;
  max-height: 75vh;
  pointer-events: all;
}
.modal-process.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (min-width: 768px) {
  .modal-process__close {
    top: -80px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .modal-process__close {
    width: 40px;
    height: 40px;
    top: -50px;
    right: 10px;
  }
  .modal-process__close::before,
  .modal-process__close::after {
    width: 54px;
    height: 1px;
  }
}

.modal-process-body {
  width: 100%;
  height: 100%;
  background-color: #edf0f4;
  padding: 64px 30px;
  position: relative;
  z-index: 1;
}

.modal-process-inner {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .modal-process__inner {
    width: 100%;
  }

  .modal-process-body {
    padding: 40px 20px;
  }
}

/* -------- modal1 -------- */

.modal-process-body__title {
  background-color: #111;
  padding: 10px 50px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.modal-process-body__title .inner {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.modal-process-inner .lead {
  text-align: center;
}

.modal-process-inner .lead .inner {
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
  max-width: 350px;
  font-size: 2.2rem;
}

.modal-process-inner .list li {
  position: relative;
  padding: 0 0 0 1.5em;
  margin-bottom: 0.5em;
}

.modal-process-inner .list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
}

.modal-process-body__problem {
  padding: 40px 60px 90px;
  background: #fff;
}
.modal-process-body__problem .lead .inner {
  background-color: #edf0f4;
  color: #111;
  margin-bottom: 24px;
}

.modal-process-body__solution {
  position: relative;
  padding: 0 60px 40px;
  background-color: #1265d6;
}

.modal-process-body__solution .c-text {
  color: #fff;
}

.modal-process-body__solution::before,
.modal-process-body__solution::after {
  position: absolute;
}

.modal-process-body__solution::before {
  content: "";
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 20px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #1265d6;
}

.modal-process-body__solution .lead {
  position: relative;
  top: -30px;
}

.modal-process-body__solution .lead .inner {
  background-color: #fff;
  color: #1265d6;
  border: 3px solid #1265d6;
}

.modal-process-body__solution .flow {
  margin-top: 40px;
}

.modal-process-body__solution .flow-item {
  background: #fff;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal-process-body__solution .flow-item + .flow-item {
  margin-top: 40px;
}

.modal-process-body__solution .flow-item + .flow-item::before {
  content: "";
  display: block;
  width: 60px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #5597f0;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.modal-process-body__solution .flow-num {
  flex: 0 0 40px;
  display: flex;
  justify-content: center;
  margin-right: 20px;
}

.modal-process-body__solution .flow-tx {
  flex: 1 1 auto;
}

.modal-process-body__solution .flow-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-process-body__solution .flow-ttl em {
  color: #1265d6;
}

.modal-process-body__solution .flow-list li::before {
  content: "・";
  display: inline-block;
  margin-right: 0.5em;
}

.modal-process-body__solution .flow-score {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.modal-process-body__solution .flow-score dt {
  color: #1265d6;
  border: 1px solid #1265d6;
  padding: 2px 8px;
  margin-right: 20px;
}

.modal-process-body__solution .flow-score dd .arrow {
  display: inline-block;
  width: 9px;
  height: 6px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #111;
  margin: 0 10px 2px;
}

.modal-process-body__solution .flow-score dd em {
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .modal-process-body__solution .flow-score dd ul {
    display: flex;
  }

  .modal-process-body__solution .flow-score dd ul li + li::before {
    content: "／";
    display: inline-block;
    margin: 0 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.99px) {
  .modal-process-body__solution {
    padding: 0 30px 30px;
  }
}

@media screen and (max-width: 767px) {
  .modal-process-body__title {
    padding: 10px 20px;
  }

  .modal-process-body__title .inner {
    font-size: 1.5rem;
  }

  .modal-process-inner .lead .inner {
    font-size: 1.5rem;
    max-width: 230px;
    padding: 6px 12px;
  }

  .modal-process-body__problem {
    padding: 30px 20px 60px;
  }

  .modal-process-body__solution {
    padding: 0 20px 20px;
    position: relative;
  }

  .modal-process-body__solution::before {
    width: 80px;
    height: 20px;
  }

  .modal-process-body__solution .lead {
    top: -15px;
  }

  .modal-process-body__solution .flow {
    margin-top: 24px;
  }

  .modal-process-body__solution .flow-item {
    padding: 20px;
    align-items: flex-start;
  }

  .modal-process-body__solution .flow-num {
    flex: 0 0 18px;
    margin: 5px 15px 0 0;
  }

  .modal-process-body__solution .flow-ttl {
    font-size: 1.7rem;
  }

  .modal-process-body__solution .flow-score {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-process-body__solution .flow-score dt {
    margin-bottom: 10px;
  }
}

/* -------- modal2 ---------- */

.modal-process-body__list li + li {
  margin-top: 40px;
}

.modal-process-body__list .list-inner {
  display: flex;
  margin-bottom: 40px;
}

.modal-process-body__list .list-inner .num {
  flex: 0 0 32px;
  margin: 0 20px 0 0;
}

.modal-process-body__list .list-inner .text {
  flex: 1 1 auto;
}

.modal-process-body__list .table table {
  width: 100%;
  background: #fff;
}

.modal-process-body__list .table colgroup {
  display: table-column-group;
}

@media screen and (max-width: 767px) {
  .modal-process-body__list .list-inner .num {
    flex: 0 0 23px;
    margin: 5px 20px 0 0;
  }
}

@media screen and (max-width: 500px) {
  .modal-process-body__list .table {
    overflow-x: scroll;
    padding-top: 40px;
    position: relative;
  }

  .modal-process-body__list .table::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 28px;
    background-image: url(https://sbisec.akamaized.net/sbisec/images/static/2026/space-x_icon-scroll_img_02_20260609.svg);
    background-repeat: no-repeat;
  }
  .modal-process-body__list .table__inner {
    width: 500px;
  }
}

.modal-process-body__list .table thead th {
  padding: 6px 10px;
  font-weight: 600;
  color: #fff;
  background-color: #111;
  text-align: center;
}

.modal-process-body__list .table thead th + th,
.modal-process-body__list .table tbody tr td + td {
  border-left: 1px solid #c8d1d5;
}

.modal-process-body__list .table tbody tr + tr {
  border-top: 1px solid #c8d1d5;
}

.modal-process-body__list .table tbody tr th {
  text-align: center;
  border-right: 1px solid #c8d1d5;
}

.modal-process-body__list .table tbody tr td {
  padding: 8px 16px;
  font-weight: 400;
  text-align: right;
}

/*--------------------------------------------------------------------------------
	animation
--------------------------------------------------------------------------------*/

.js-anime-trigger {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease-in;
  transition-delay: 0.3s;
}
.js-anime-trigger.is-anime-completed {
  transform: translateY(0);
  opacity: 1;
}
