@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

main {
  display: block;
}

html {
  font-size: 62.5%;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-padding-top: 50px;
}

iframe[src^='javascript:'] {
  display: none;  /* iframe を非表示にする */
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

* {
  font-family: source-han-sans-japanese, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  font-family: source-han-sans-japanese, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  overflow: hidden;
  font-size: 15px;
  word-break: break-all;
  background: #101010;
  color: #fff;
}

a:hover {
  opacity: 0.7;
}

li,
ul {
  list-style: none;
}

a {
  color: inherit;
}

/* ==========================================================================
  共通
  ========================================================================== */
.show--pc {
  display: block;
}

@media (max-width: 960px) {
  .show--pc {
    display: none;
  }
}

.show--sp {
  display: none;
}

@media (max-width: 960px) {
  .show--sp {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 40px;
}

@media (max-width: 960px) {
  .inner {
    padding: 100px 30px;
  }
}

@media (max-width: 768px) {
  .inner {
    padding: 50px 30px;
  }
}

.section-title {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-title .green {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-title .green {
    font-size: 15px;
  }
}

.section-title-sub {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 27px;
  margin-top: 100px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 768px) {
  .section-title-sub {
    font-size: 22px;
    padding-bottom: 19px;
    margin-top: 50px;
  }
}

.section-title-sub::after {
  content: "";
  position: absolute;
  background: #cc0000;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-description {
  margin-top: 60px;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .section-description {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section-description {
    margin-top: 30px;
  }
}

.section-description .red {
  font-weight: 700;
}

.section-description-sub {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .section-description-sub {
    margin-top: 25px;
  }
}

.section-description-sub .red {
  font-weight: 700;
}

.section-description-sub+.section-description-sub {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .section-description-sub+.section-description-sub {
    margin-top: 25px;
  }
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 136px;
  height: 40px;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 20px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (hover: hover) {
  .btn:hover {
    background: #333;
    color: #fff;
  }
}

.red {
  color: #cc0000;
}

.green {
  color: #339900;
}

.yellow {
  color: #ffff00;
}

.bg-gray {
  background: #202020;
  position: relative;
}

.bg-gray::before {
  background: url("../images/top/bg-gray.png") no-repeat center center/450px 390px;
  content: "";
  position: absolute;
  width: 450px;
  height: 390px;
  top: 0;
  left: 0;
  z-index: 0;
}

.bg-red {
  position: relative;
}

.bg-red::before {
  background: url("../images/top/bg-red.png") no-repeat center center/450px 390px;
  content: "";
  position: absolute;
  width: 450px;
  height: 390px;
  top: 0;
  left: 0;
  z-index: 0;
}

.attention {
  font-size: 13px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .attention {
    margin-top: 30px;
  }
}

/* ======================================================
    ヘッダー
=========================================================*/
.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: background-color 0.5s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}
.header.scrolled .header-inner{
  height: 70px;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 30px;
  }
}
@media (max-width: 350px) {
  .header-inner {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .header-logo img {
    max-width: 250px;
  }
}
@media (max-width: 350px) {
  .header-logo img {
    max-width: 200px;
  }
}

.header-menu-wrapper {
  width: calc(100% - 260px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-menu-item:not(:first-child) {
  padding-left: 38px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-link {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: source-han-sans-japanese, sans-serif;
}

@media screen and (max-width: 1024px) {
  .header-menu-link {
    padding: 15px;
  }
}

.header-hamburger {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header-menu-wrapper {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    padding: 100px 30px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8666666667);
  }

  .header-menu-wrapper.is-open {
    right: 0;
    display: block;
    overflow: hidden;
    opacity: 1;
  }

  .header-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-menu-item {
    width: 100%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-bottom: 1px solid #666666;
    position: relative;
  }

  .header-menu-item::after {
    content: "";
    position: absolute;
    border: 0;
    border-right: solid 2px #666666;
    border-top: solid 2px #666666;
    content: "";
    height: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
  }

  .header-menu-item.--mail {
    display: none;
  }

  .header-menu-item:not(:first-child) {
    padding-left: 0;
  }

  .header-menu-item:first-child {
    border-top: 1px solid #666666;
  }

  .header-menu-link {
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-hamburger {
    background: #fff;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-hamburger:hover {
    cursor: pointer;
  }

  .header-hamburger.is-open .header-bar--01 {
    top: 50%;
    width: 25px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }

  .header-hamburger.is-open .header-bar--02 {
    bottom: 50%;
    width: 25px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .header-hamburger.is-open .header-bar--03 {
    opacity: 0;
  }

  .header-bars {
    position: relative;
    width: 25px;
    height: 20px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .header-bars:hover {
    opacity: 0.6;
  }

  .header-hamburger.is-open .header-bars {
    width: 25px;
    height: 22px;
  }

  .header-bar {
    position: absolute;
    left: 0;
    width: 26px;
    height: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #000;
  }

  .header-hamburger.is-open .header-bar {
    background-color: #000;
  }

  .header-bar--01 {
    top: 0;
  }

  .header-bar--02 {
    top: 50%;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }

  .header-bar--03 {
    bottom: 0;
  }

  .sp-menu-sub {
    margin-top: 50px;
  }

  .sp-menu-list {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
  フッター
  ========================================================================== */
.footer {
  background: #202020;
}

.footer .inner {
  padding: 40px 40px 120px;
  position: relative;
}

@media (max-width: 768px) {
  .footer .inner {
    padding: 30px 20px 100px;
  }
}

.footer-menu-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-menu-item {
    border: 1px solid #666666;
    width: 100%;
    position: relative;
  }

  .footer-menu-item::after {
    content: "";
    position: absolute;
    border: 0;
    border-right: solid 3px #666666;
    border-top: solid 3px #666666;
    content: "";
    height: 9px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
  }
}

@media (min-width: 769px) {
  .footer-menu-item:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .footer-menu-item:not(:last-child) {
    border-bottom: none;
  }
}

@media (min-width: 769px) {
  .footer-menu-item:not(:first-child) {
    padding-left: 15px;
  }
}

.footer-menu-link {
  width: 100%;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-menu-link {
    padding: 15px;
    display: block;
    text-align: left;
  }
}

.footer-term {
  border: 1px solid #666;
  margin-top: 40px;
  padding: 20px;
  color: #cccccc;
}

@media (max-width: 768px) {
  .footer-term {}
}

.footer-term-text {
  font-size: 13px;
  margin-top: 15px;
}

.footer-term-text+.footer-term-text {
  margin-top: 20px;
}

.footer-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-sns-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.footer-sns-item a img {
  display: inline;
}

.footer-sns-item.share {
  background: #1877f2;
  color: #fff;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2px;
  padding: 5px;
  max-height: 20px;
  white-space: nowrap;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 391px;
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 250px;
    margin: 35px auto 0;
  }
}


.footer-copyright {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .footer-copyright {
    margin-top: 30px;
  }
}

.copyright {
  color: #fff;
  font-size: 13px;
  display: block;
  text-align: center;
  font-family: source-han-sans-japanese, sans-serif;
}

.pagetop {
  position: absolute;
  right: 20px;
  bottom: 100px;
}

@media (max-width: 768px) {
  .pagetop {
    bottom: 130px;
    max-width: 30px;
  }
}

.fixed-btn {
  position: fixed;
  bottom: 0;
  background: #cc0000;
  z-index: 99;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  padding: 19px;
  font-size: 25px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s;
  transition: opacity 0.5s ease, visibility 0.5s;
}

@media (max-width: 768px) {
  .fixed-btn {
    font-size: 18px;
    gap: 0;
    height: 70px;
  }
}

.fixed-btn .bg-green {
  background: #339900;
  border-radius: 20px;
  top: -20px;
  font-size: 15px;
  color: #fff;
  padding: 8px 15px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 768px) {
  .fixed-btn .bg-green {
    position: absolute;
    top: -15px;
    font-size: 13px;
    -webkit-box-shadow: 0px 5px 5px -5px #000;
    box-shadow: 0px 5px 5px -5px #000;
  }
}

.fixed-btn .arrow {
  position: relative;
}

.fixed-btn .arrow::after {
  background: url("../images/top/btn-arrow.svg") no-repeat center center/20px 20px;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -46px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fixed-btn.active {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .fixed-btn:hover {
    background: #fff;
    color: #cc0000;
  }

  .fixed-btn:hover .arrow::after {
    background: url("../images/top/btn-arrow-hover.svg") no-repeat center center/20px 20px;
  }
}

/* ==========================================================================
  トップページ（TOP）
  ========================================================================== */
/* ==========================================================================
  メインビジュアル（mv）
  =========================================================================== */
.mv {
  background: url("../images/top/mv-bg.jpg") no-repeat center center/cover;
  height: 100vh;
  width: 100vw;
  position: relative;
}

.mv::before {
  background: url("../images/top/mv-bg-dot.png")repeat center center/100px 100px;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
}

.mv::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #000000;
}

@media screen and (min-width: 1025px) {
  .mv .show--sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .mv .show--sp {
    display: block;
  }
}

.mv-inner {
  padding: 0px 40px;
  position: relative;
  max-width: 100%;
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  .mv-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 380px) {
  .mv-inner {
    padding: 0 20px;
  }
}

.mv-logo {
  padding-top: 14.66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .mv-logo {
    padding-top: 25.75%;
  }
}

@media (max-width: 768px) {
  .mv-logo {
    padding-top: 150px;
    max-width: 250px;
    margin: auto;
  }
}

.mv-copy {
  font-size: 45px;
  font-weight: 700;
  margin-top: 3%;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 768px) {
  .mv-copy {
    font-size: 25px;
    margin-top: 40px;
  }
}

.mv-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2%;
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .mv-list {
    gap: 1.5%;
  }
}

@media (max-width: 768px) {
  .mv-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5.263%;
    margin: 25px auto 0;
    max-width: 340px;
  }
}

.mv-item {
  color: #ffde84;
  text-align: center;
  position: relative;
  font-weight: 700;
  padding: 0 4.3%;
}

@media screen and (max-width: 1024px) {
  .mv-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 5%;
  }
}

@media (max-width: 768px) {
  .mv-item {
    width: 47.3%;
  }

  .mv-item:nth-child(n+3) {
    margin-top: 15px;
  }
}

.mv-item::before {
  content: "";
  position: absolute;
  background: url("../images/top/mv-decoration-left.svg") no-repeat center center/cover;
  width: 45px;
  height: 100px;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .mv-item::before {
    width: 35px;
    height: 75px;
  }
}

.mv-item::after {
  content: "";
  position: absolute;
  background: url("../images/top/mv-decoration-right.svg") no-repeat center center/cover;
  width: 45px;
  height: 100px;
  right: 0;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .mv-item::after {
    width: 35px;
    height: 75px;
  }
}

.mv-item--upper {
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .mv-item--upper {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .mv-item--upper {
    font-size: 12px;
  }
}

.mv-item--bottom {
  font-size: 45px;
}

@media screen and (max-width: 1024px) {
  .mv-item--bottom {
    font-size: 30px;
  }
}

.mv-item--bottom .small {
  font-size: 30px;
}

@media screen and (max-width: 1024px) {
  .mv-item--bottom .small {
    font-size: 20px;
  }
}

.mv-item--attention {
  font-size: 12px;
}

@media screen and (max-width: 1024px) {
  .mv-item--attention {
    font-size: 10px;
  }
}

.mv .btn {
  margin: 65px auto 0;
  background: #cc0000;
  color: #fff;
  width: 440px;
  height: 90px;
  border-radius: 45px;
  border: none;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  -webkit-box-shadow: 0px 5px 15px -5px #000;
  box-shadow: 0px 5px 15px -5px #000;
}

@media (max-width: 768px) {
  .mv .btn {
    font-size: 18px;
    margin-top: 60px;
    max-width: 340px;
    width: 100%;
    height: 70px;
  }
}

@media (max-width: 380px) {
  .mv .btn {
    font-size: 4.76vw;
  }
}

@media (hover: hover) {
  .mv .btn:hover {
    background: #fff;
    color: #cc0000;
    opacity: 1;
  }

  .mv .btn:hover::after {
    background: url("../images/top/btn-arrow-hover.svg") no-repeat center center/20px 20px;
  }
}

.mv .btn .bg-green {
  background: #339900;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  font-size: 15px;
  color: #fff;
  padding: 8px 15px;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  -webkit-box-shadow: 0px 5px 5px -5px #000;
  box-shadow: 0px 5px 5px -5px #000;
}

@media (max-width: 768px) {
  .mv .btn .bg-green {
    font-size: 13px;
  }
}

.mv .btn::after {
  background: url("../images/top/btn-arrow.svg") no-repeat center center/20px 20px;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 380px) {
  .mv .btn::after {
    right: 6.57vw;
  }
}

/* ========================================================================
  topics
  ========================================================================= */
.topics-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.16%;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .topics-box {
    gap: 6.25%;
  }
}

@media (max-width: 768px) {
  .topics-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.topics-box-img {
  width: 32.5%;
}

@media (max-width: 960px) {
  .topics-box-img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .topics-box-img {
    width: 100%;
  }

  .topics-box-img img {
    width: 100%;
  }
}

.topics-box-text {
  width: 67.5%;
}

@media (max-width: 960px) {
  .topics-box-text {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .topics-box-text {
    width: 100%;
  }
}

.topics-title {
  font-size: 22px;
  font-weight: 700;
}

.topics-text {
  margin-top: 26px;
  line-height: 1.5;
}

.topics-text+.topics-text {
  margin-top: 26px;
}

/* ========================================================================
  features
  ========================================================================= */
@media (max-width: 768px) {
  .features .section-title .red {
    display: block;
  }
}

.features-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 960px) {
  .features-list {
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .features-list {
    margin-top: 30px;
    gap: 35px;
  }
}

.features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

@media (max-width: 960px) {
  .features-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .features-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.features-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .features-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features-item-img {
  width: 50%;
}

@media (max-width: 768px) {
  .features-item-img {
    width: 100%;
  }

  .features-item-img img {
    width: 100%;
  }
}

.features-item-detail {
  width: calc(50% - 50px);
}

@media (max-width: 768px) {
  .features-item-detail {
    width: 100%;
  }
}

.features-title {
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.features-title--en {
  font-size: 18px;
}

@media (max-width: 768px) {
  .features-title--en {
    font-size: 15px;
  }
}

.features-title--ja {
  margin-top: 20px;
  font-size: 35px;
  line-height: 48px;
}

@media (max-width: 768px) {
  .features-title--ja {
    font-size: 22px;
    line-height: 32px;
  }
}

.features-item-text {
  margin-top: 40px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features-item-text {
    margin-top: 25px;
  }
}

/* ========================================================================
  promotion
  ========================================================================= */
.promotion .section-title {
  position: relative;
}

.promotion .section-title::after {
  background: url("../images/top/promotion-present.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 960px) {
  .promotion .section-title::after {
    top: -100px;
    -webkit-transform: initial;
    transform: initial;
  }
}

@media (max-width: 768px) {
  .promotion .section-title::after {
    width: 60px;
    height: 60px;
    top: -25px;
  }
}

@media (max-width: 768px) {
  .promotion .section-title .red {
    display: block;
  }
}

.promotion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .promotion-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
}

.promotion-item {
  background: #fff;
  color: #333333;
  padding: 40px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .promotion-item {
    padding: 30px 20px;
  }
}

.promotion-item:nth-child(1) {
  grid-area: 1/1/2/3;
}

.promotion-item .promotion-item-number {
  position: absolute;
  background: #cc0000;
  color: #fff;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.promotion-item-head {
  text-align: center;
  font-weight: 700;
  line-height: 1;
}

.promotion-item-head .head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 960px) {
  .promotion-item-head .head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.promotion-item-head .head--upper {
  background: #cc0000;
  color: #fff;
  display: inline-block;
  padding: 7px;
}

@media (max-width: 768px) {
  .promotion-item-head .head--upper {
    font-size: 13px;
  }
}

.promotion-item-head .head--upper--green {
  background: #339900;
}

.promotion-item-head .head--middle {
  font-size: 18px;
  margin-top: 20px;
}

@media (min-width: 961px) {
  .promotion-item-head .head--middle {
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .promotion-item-head .head--middle {
    font-size: 15px;
  }
}

.promotion-item-head .head--lower {
  font-size: 35px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .promotion-item-head .head--lower {
    font-size: 22px;
    margin-top: 10px;
  }
}

.promotion-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .promotion-item-link {
    margin-top: 20px;
  }
}

.promotion-item-text {
  margin-top: 25px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .promotion-item-text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.promotion-item .btn {
  margin: auto auto 0;
}

/* ==========================================================================
  accountType
  ========================================================================== */
.accountType-table-wrapper {
  overflow: auto;
}

.accountType-table {
  margin-top: 60px;
  text-align: center;
  table-layout: fixed;
}

@media (max-width: 960px) {
  .accountType-table {
    width: 1200px;
  }

}

@media (max-width: 768px) {
  .accountType-table {
    max-width: 800px;
    margin-top: 30px;
  }
}

.accountType-table th,
.accountType-table td {
  border: 1px solid #cccccc;
  padding: 20px;
  vertical-align: middle;
}

@media (max-width: 768px) {

  .accountType-table th,
  .accountType-table td {
    font-size: 13px;
    padding: 10px;
  }
}

.accountType-table th strong,
.accountType-table td strong {
  font-weight: 700;
}

.accountType-table th.red,
.accountType-table td.red {
  font-weight: 700;
}

.accountType-table th {
  font-weight: 700;
  width: 250px;
}

@media (max-width: 768px) {
  .accountType-table th {
    width: 180px;
  }
}

.accountType-table th:nth-child(1) {
  background: #444444;
  text-align: left;
  width: 200px;
}

@media (max-width: 768px) {
  .accountType-table th:nth-child(1) {
    width: 130px;
  }
}

.accountType-table th:nth-child(2) {
  background: #339900;
}

.accountType-table th:nth-child(3) {
  background: #cc0000;
}

.accountType-table th:nth-child(4) {
  background: #ca9a0c;
}

.accountType-table th:nth-child(5) {
  background: #666666;
}

.accountType-table td.red {
  background: #2e1c1c;
}

.accountType-table td.large {
  font-size: 20px;
  font-weight: 700;
}

.accountType-table td.left {
  text-align: left;
}

.accountType-table-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.type-text {
  text-align: left;
  margin-top: 20px;
}

.type-text .yellow {
  font-weight: 700;
  color: #ffde84;
}

/* ========================================================================
  promotion
  ========================================================================= */
@media (max-width: 768px) {
  .platform .section-title .red {
    display: block;
  }
}

.platform .section-description {
  text-align: left;
}

.platform .section-description+.section-description {
  margin-top: 20px;
}

.platform-img {
  margin-top: 65px;
}

@media (max-width: 960px) {
  .platform-img {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .platform-img {
    margin-top: 30px;
  }
}

.platform-feature-box {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 960px) {
  .platform-feature-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .platform-feature-box {
    gap: 30px;
    margin-top: 30px;
  }
}

.platform-feature-block,
.application-feature-img,
.application-feature-detail {
  width: 50%;
}

@media (max-width: 960px) {

  .platform-feature-block,
  .application-feature-img,
  .application-feature-detail {
    width: 100%;
  }
}

.platform-feature-head,
.application-feature-head {
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 768px) {

  .platform-feature-head,
  .application-feature-head {
    font-size: 20px;
  }
}

.platform-feature-list,
.application-feature-list {
  padding-left: 25px;
  margin-top: 35px;
}

@media (max-width: 768px) {

  .platform-feature-list,
  .application-feature-list {
    margin-top: 25px;
  }
}

.platform-feature-item,
.application-feature-item {
  list-style: disc;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {

  .platform-feature-item,
  .application-feature-item {
    font-size: 15px;
  }
}

.platform-feature-item:not(:first-child),
.application-feature-item:not(:first-child) {
  margin-top: 19px;
}

@media (max-width: 768px) {

  .platform-feature-item:not(:first-child),
  .application-feature-item:not(:first-child) {
    margin-top: 16px;
  }
}

.application-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .application-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .application-feature {
    margin-top: 25px;
    gap: 30px;
  }
}

.application-feature-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ========================================================================
  program
  ========================================================================= */
@media (max-width: 768px) {
  .program .section-title-sub .sp-block {
    display: block;
  }
}

.program-img {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .program-img {
    margin-top: 30px;
  }
}

.program-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .program-img-box {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .program-img-box .program-img img {
    width: 100%;
  }
}

/* ========================================================================
  qa
  ========================================================================= */
.accordion-list {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .accordion-list {
    margin-top: 30px;
  }
}

.accordion-item {
  border: 1px solid #fff;
  padding: 0px 25px;
}

@media (max-width: 768px) {
  .accordion-item {
    padding: 0 15px;
  }
}

.accordion-item:not(:first-child) {
  margin-top: 20px;
}

.accordion-title {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  padding: 25px;
  position: relative;
  text-align: left;
}

@media (max-width: 768px) {
  .accordion-title {
    font-size: 15px;
    padding: 15px;
  }
}

.accordion-title::before {
  content: "Q.";
  position: absolute;
  font-size: 20px;
  color: #cc0000;
  font-weight: 700;
  left: -2px;
  top: 24px;
}

@media (max-width: 768px) {
  .accordion-title::before {
    font-size: 15px;
    top: 15px;
  }
}

.accordion-title::after {
  content: "\f067";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font: var(--fa-font-solid);
  font-weight: 900;
  font-size: 20px;
}

.accordion-title.active {
  border-bottom: 1px solid #fff;
}

.accordion-title.active::after {
  content: "\f068";
}

@media (hover: hover) {
  .accordion-title:hover {
    opacity: 0.7;
  }
}

.accordion-text {
  text-align: left;
  padding: 25px;
  display: none;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .accordion-text {
    padding: 15px 0;
  }
}

.accordion-text strong {
  font-weight: 700;
  display: block;
}

.accordion-text-link {
  color: #3399ff;
}

/* ========================================================================
  support
  ========================================================================= */
@media (max-width: 768px) {
  .support .section-title .red {
    display: block;
  }
}

@media (max-width: 768px) {
  .support .section-title-sub .sp-block {
    display: block;
  }
}

.support-merit-list,
.support-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4.41%;
  margin-top: 61px;
}

@media (max-width: 960px) {

  .support-merit-list,
  .support-flow-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 4%;
    -moz-column-gap: 4%;
    column-gap: 4%;
    row-gap: 4%;
  }
}

@media (max-width: 768px) {

  .support-merit-list,
  .support-flow-list {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .support-flow-list {
    gap: 70px;
  }
}

.support-merit-item,
.support-flow-item {
  width: 21.08%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 960px) {

  .support-merit-item,
  .support-flow-item {
    width: 33.125%;
  }

  .support-merit-item:nth-child(n+3),
  .support-flow-item:nth-child(n+3) {
    margin-top: 5.625%;
  }
}

@media (max-width: 768px) {

  .support-merit-item,
  .support-flow-item {
    width: 100%;
  }

  .support-merit-item:nth-child(n+3),
  .support-flow-item:nth-child(n+3) {
    margin-top: 0;
  }

  .support-merit-item:nth-child(n+2),
  .support-flow-item:nth-child(n+2) {
    margin-top: 40px;
  }
}

@media (min-width: 769px) {
  .support-merit-img {
    min-height: 80px;
  }
}

@media (min-width: 769px) {
  .support-flow-img {
    min-height: 80px;
  }
}

.support-merit-title,
.support-flow-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {

  .support-merit-title,
  .support-flow-title {
    margin-top: 35px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .support-flow-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.support-flow-description {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 960px) {
  .support-flow-description {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .support-flow-description {
    margin-top: 25px;
  }
}

.support-flow-description a {
  color: #3399ff;
}

.support-flow-item {
  position: relative;
}

.support-flow-item:not(:last-child)::after {
  background: url("../images/top/support-flow-arrow.svg") no-repeat center center/20px 20px;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 960px) {
  .support-flow-item:not(:last-child)::after {
    right: -9%;
  }
}

@media (max-width: 768px) {
  .support-flow-item:not(:last-child)::after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    bottom: -60px;
  }
}

@media (max-width: 960px) {
  .support-flow-item:nth-child(2)::after {
    content: none;
  }
}

@media (max-width: 768px) {
  .support-flow-item:nth-child(2)::after {
    content: "";
  }
}

/* ==========================================================================
  アニメーション
  ========================================================================== */
/* フェードインのアニメーション */
/* .fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: 1s;
} */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;

  opacity: 0;

  -webkit-animation-fill-mode: forwards;

  animation-fill-mode: forwards;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定 */

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp.--f2 {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.fadeUp.--f3 {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;

  opacity: 0;

  -webkit-animation-fill-mode: forwards;

  animation-fill-mode: forwards;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定 */

.fadeInTrigger {
  opacity: 0;
}


@-webkit-keyframes fadeUpAnime {
  from {
    transform: translateY(120px);

    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(120px);

    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}