@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap";
/*
===== original reset ===========================
*/
/* 1: universal reset
------------------------------------- */
html {
  cursor: default;
  font-size: 62.5%;
}

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

/* general params
------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
body,
div,
p,
pre,
ul,
ol,
dl,
dt,
dd,
address,
form,
blockquote,
figure {
  margin: 0;
  padding: 0; /* margin&padding reset */
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

/* word break
------------------------------------- */
p {
  word-break: normal;
}

/* image
------------------------------------- */
img {
  vertical-align: bottom;
  border-style: none;
}

/* 2: form setting
------------------------------------- */
option {
  padding-right: 10px;
}

input,
select {
  vertical-align: middle;
}

*:focus {
  outline: none;
}

@-webkit-keyframes fade-bottom {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes fade-bottom {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-anim-trigger {
  opacity: 0;
  /*-------------------------------------------> delay */
  /*-------------------------------------------> setting */
}
.js-anim-trigger.--delay-1 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-1.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-2 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-2.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-3 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-3.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-4 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-4.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-5 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-5.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-6 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-6.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-7 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-7.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-8 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-8.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-9 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-9.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--delay-10 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
@media screen and (max-width: 767px) {
  .js-anim-trigger.--delay-10.--delay-off-sp {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.js-anim-trigger.--fade.js-anim-active {
  -webkit-animation: fade 1.6s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: fade 1.6s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.js-anim-trigger.--fade-bottom.js-anim-active {
  -webkit-animation: fade-bottom 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: fade-bottom 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-feature-settings: "palt";
}

* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
}

img,
svg {
  width: 100%;
  height: auto;
  vertical-align: top;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.main-content {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.header .header-content {
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s linear;
  transform: translateY(-100%);
  z-index: 101;
}
.header .header-content--static {
  position: absolute;
}
.header .header-content--fixed {
  position: fixed;
}
@media screen and (min-width: 768px) {
  .header .header-content.--active .header-nav {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  }
}
@media screen and (max-width: 767px) {
  .header .header-content.--active:after {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
  }
  .header .header-content.--active .header-logo svg polygon,
.header .header-content.--active .header-logo svg path {
    fill: #000;
  }
  .header .header-content.--active .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
  }
  .header .header-content.--active .header-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 105px 30px 40px;
  }
  .header .header-content.--active .header-nav__list li {
    position: relative;
    border-top: 2px solid #f3f3f3;
  }
  .header .header-content.--active .header-nav__list li:last-child {
    border-bottom: 2px solid #f3f3f3;
  }
  .header .header-content.--active .header-nav__list li a {
    padding: 30px 0;
    display: block;
    color: #000;
  }
  .header .header-content.--active .header-nav__list li a span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .header .header-content.--active .header-nav__list li:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #000;
    border-right: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .header .header-content.--active .header-nav__btn {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    margin: 0;
    width: 100%;
    padding: 0 40px 50px;
    gap: 25px;
  }
  .header .header-content.--active .header-nav__btn a:first-child, .header .header-content.--active .header-nav__btn a:last-child {
    width: 100%;
    color: #fff;
    border-radius: 35px;
    background-color: #000;
    padding: 25px;
    filter: unset;
    font-size: 16px;
    font-weight: 700;
  }
  .header .header-content.--active .header-nav__btn a:first-child:after, .header .header-content.--active .header-nav__btn a:last-child:after {
    border-left: 5px solid #fff;
  }
  .header .header-content.--active .header-trigger {
    position: absolute;
    top: 27px;
    right: 26px;
  }
  .header .header-content.--active .header-trigger span {
    background-color: #000;
  }
}
.header .header-inner {
  position: relative;
  z-index: 99;
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    max-width: 100%;
    padding: 28px 26px 0 28px;
    justify-content: space-between;
  }
}
.header .header-inner .header-logo {
  position: relative;
  z-index: 1;
  width: 72px;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-logo {
    width: 51px;
  }
}
.header .header-inner .header-logo svg {
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-logo svg {
    vertical-align: baseline;
  }
}
.header .header-inner .header-logo svg polygon,
.header .header-inner .header-logo svg path {
  fill: #fff;
  transition: fill 0.2s linear;
}
.header .header-inner .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-nav {
    width: auto;
  }
}
.header .header-inner .header-nav__list {
  display: flex;
  gap: 55px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-nav__list {
    display: none;
  }
}
.header .header-inner .header-nav__list li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.2s linear;
}
.header .header-inner .header-nav__list li a span {
  position: relative;
}
.header .header-inner .header-nav__list li a span:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.2s linear, width 0.2s linear;
}
@media screen and (min-width: 768px) {
  .header .header-inner .header-nav__list li a:hover span:after {
    width: 100%;
    background-color: #ed1c24;
  }
}
.header .header-inner .header-nav__btn {
  display: flex;
  gap: 5px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-nav__btn {
    display: none;
  }
}
.header .header-inner .header-nav__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 3px 7px 5px;
  position: relative;
  transition: all 0.2s linear;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  overflow: hidden;
}
.header .header-inner .header-nav__btn a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.2s linear;
}
.header .header-inner .header-nav__btn a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s linear;
}
.header .header-inner .header-nav__btn a:first-child {
  color: #000;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.header .header-inner .header-nav__btn a:first-child:before {
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.header .header-inner .header-nav__btn a:first-child:after {
  border-left: 5px solid #000;
}
.header .header-inner .header-nav__btn a:last-child {
  color: #fff;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.header .header-inner .header-nav__btn a:last-child:before {
  background-color: #ed1c24;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.header .header-inner .header-nav__btn a:last-child:after {
  border-left: 5px solid #fff;
}
@media screen and (min-width: 768px) {
  .header .header-inner .header-nav__btn a:hover:before {
    transform: scale(0.95);
  }
}
.header .header-inner .header-trigger {
  cursor: pointer;
  display: none;
  position: relative;
  width: 35px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-trigger {
    display: block;
    width: 30px;
    height: 25px;
  }
}
.header .header-inner .header-trigger span {
  display: block;
  width: calc(100% - 6px);
  height: 3px;
  background-color: #000;
  border-radius: 1.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-trigger span {
    background-color: #fff;
  }
}
.header .header-inner .header-trigger span:nth-child(1) {
  margin-top: -8px;
}
.header .header-inner .header-trigger span:nth-child(3) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .header .header-content--fixed .header-inner {
    justify-content: space-between;
  }
  .header .header-content--fixed .header-nav {
    gap: 55px;
    justify-content: flex-start;
    width: auto;
    padding: 10px 25px;
    position: relative;
    border-radius: 23px;
    overflow: hidden;
  }
  .header .header-content--fixed .header-nav .header-nav__list {
    display: none;
    margin: 0;
  }
  .header .header-content--fixed .header-nav .header-nav__list li a {
    color: #000;
  }
  .header .header-content--fixed .header-nav__btn {
    display: none;
  }
}
.header .header-content--fixed .header-logo svg {
  overflow: visible;
}
.header .header-content--fixed .header-logo svg polygon,
.header .header-content--fixed .header-logo svg path {
  fill: #000;
}
.header .header-content--fixed .header-trigger {
  display: block;
}
.header .header-content--fixed .header-trigger span {
  background-color: #000;
}
.header .header-content--fixed.--fixed {
  transform: translateY(0);
}

body .--m-inner {
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body .--m-inner {
    max-width: 100%;
    padding: 0 20px;
  }
}

#top {
  overflow: hidden;
}
#top .hero {
  position: relative;
}
#top .hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 1068px;
  background-image: url("../img/hero-bg--pc.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #top .hero:before {
    height: 100%;
    background-image: url("../img/hero-bg--sp.jpg");
    background-position: bottom right;
  }
}
#top .hero .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  padding: 156px 60px 160px;
  margin: 0 auto;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #top .hero .hero-inner {
    max-width: 100%;
    padding: 95px 30px 130px 30px;
    margin-bottom: -1px;
  }
}
#top .hero .hero-inner .hero-heading .title .--en {
  display: block;
  width: 585px;
}
@media screen and (max-width: 767px) {
  #top .hero .hero-inner .hero-heading .title .--en {
    width: 240.5px;
  }
}
#top .hero .hero-inner .hero-heading .title .--ja {
  display: block;
  width: 455px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #top .hero .hero-inner .hero-heading .title .--ja {
    width: 228px;
    margin-top: 38px;
  }
}
#top .hero .hero-inner .hero-heading .app-icons {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #top .hero .hero-inner .hero-heading .app-icons {
    gap: 20px;
    margin-top: 35px;
  }
}
#top .hero .hero-inner .hero-heading .app-icons img {
  width: 117px;
  filter: drop-shadow(0 0 37px rgba(255, 255, 255, 0.45));
}
@media screen and (max-width: 767px) {
  #top .hero .hero-inner .hero-heading .app-icons img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    width: 75px;
  }
}
#top .intro {
  background-color: #000;
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top .intro {
    padding: 0 0 40px;
  }
}
#top .intro:after {
  content: "";
  display: block;
  width: 100%;
  height: 1862px;
  background-image: url("../img/intro-bg--pc.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #top .intro:after {
    height: 100%;
    background-image: url("../img/intro-bg--sp.png");
    background-position: bottom center;
    background-size: contain;
    top: auto;
    bottom: -30px;
  }
}
#top .intro .intro-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
#top .intro .intro-inner .intro-lead {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-lead {
    font-size: 19px;
    font-weight: 700;
  }
}
#top .intro .intro-inner .intro-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 105px;
  max-width: 975px;
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
    margin-top: 50px;
    max-width: 200px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  #top .intro .intro-inner .intro-content__item:not(:last-child) {
    border-right: 1px solid #cccccc;
  }
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-content__item {
    padding-bottom: 30px;
    border-bottom: 1px solid #cccccc;
  }
  #top .intro .intro-inner .intro-content__item:last-child {
    padding-bottom: 20px;
  }
}
#top .intro .intro-inner .intro-content__item .icon {
  width: 178px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-content__item .icon {
    width: calc(100% - 60px);
  }
}
#top .intro .intro-inner .intro-content__item .text {
  font-size: 17px;
  line-height: 1.7058823529;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-content__item .text {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 20px;
  }
}
#top .intro .intro-inner .intro-heading .title {
  width: 100%;
  max-width: 864px;
  margin: 100px auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  #top .intro .intro-inner .intro-heading .title {
    max-width: 329px;
    margin: 75px auto 0;
    padding: 0 20px;
  }
}
#top .about {
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #top .about {
    padding-top: 38px;
  }
}
#top .about::before, #top .about:after {
  content: "";
  display: block;
  width: 115%;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  z-index: 1;
}
#top .about::before {
  background-image: url("../img/about-bg-top--pc.svg");
  height: 140px;
  top: -139px;
}
@media screen and (max-width: 767px) {
  #top .about::before {
    height: 50px;
    top: -49px;
  }
}
#top .about::after {
  background-image: url("../img/about-bg-bottom--pc.svg");
  height: 70px;
  bottom: -20px;
  transform: translateX(-50%) rotateX(180deg);
}
@media screen and (max-width: 767px) {
  #top .about::after {
    height: 50px;
  }
}
#top .about .about-inner {
  position: relative;
}
#top .about .about-inner:before {
  content: "";
  display: block;
  width: 1274px;
  height: 100%;
  background-image: url("../img/about-deco--pc.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner:before {
    width: 323px;
    height: 131px;
    background-image: url("../img/about-deco--sp.png");
    top: 230px;
    margin-left: -5px;
  }
}
#top .about .about-inner .about-heading {
  padding: 0 10px;
}
#top .about .about-inner .about-heading .title {
  display: block;
  width: 100%;
  max-width: 972px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .about-heading .title {
    max-width: 260px;
  }
}
#top .about .about-inner .about-heading .about-heading__lead {
  text-align: center;
  font-size: 22px;
  line-height: 1.7272727273;
  letter-spacing: -0.01em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .about-heading .about-heading__lead {
    font-size: 13px;
    line-height: 1.6923076923;
    margin-top: 25px;
    text-align: left;
  }
}
#top .about .about-inner .about-heading .about-heading__lead span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .about-heading .about-heading__lead span {
    display: inline;
  }
}
#top .about .about-inner .app-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .app-icons {
    gap: 20px;
    margin: 35px auto 0;
  }
}
#top .about .about-inner .app-icons img {
  width: 142px;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .app-icons img {
    width: 71px;
  }
}
#top .about .about-inner .about-illust {
  width: 100%;
  max-width: 298px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  #top .about .about-inner .about-illust {
    max-width: 149px;
    margin-top: 40px;
  }
}
#top .merit {
  position: relative;
  background-color: #f8f8f8;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  #top .merit {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
#top .merit .merit-inner .merit-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-heading {
    gap: 15px;
  }
}
#top .merit .merit-inner .merit-heading::after {
  content: "";
  display: block;
  width: 300px;
  height: 3px;
  margin: 0 auto;
  background-image: linear-gradient(to right, transparent, #E60012 25%, #E60012 75%, transparent);
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-heading::after {
    width: 150px;
    height: 2px;
  }
}
#top .merit .merit-inner .merit-heading .title {
  font-size: 30px;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-heading .title {
    font-size: 21px;
    letter-spacing: 0.045em;
    line-height: 1.3913043478;
  }
}
@media screen and (min-width: 768px) {
  #top .merit .merit-inner .merit-points .merit-points__item {
    display: grid;
    gap: 10%;
    align-items: center;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item01 {
    grid-template-columns: 1fr 52.4%;
    margin-top: 100px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item01 .image {
    max-width: 566px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item02 {
    grid-template-columns: 55.3% 1fr;
    margin-top: 125px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item02 .detail {
    grid-column: 2;
    grid-row: 1;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item02 .image {
    grid-column: 1;
    grid-row: 1;
    max-width: 588px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 {
    grid-template-columns: 1fr 49.5%;
    margin-top: 180px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image {
    max-width: 505px;
    position: relative;
    transform: translateX(6px);
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image::before {
    content: "";
    display: block;
    width: 118px;
    height: 107px;
    background-image: url("../img/merit-item03-deco02.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -18px;
    right: -24px;
    z-index: 1;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image::after {
    content: "";
    display: block;
    width: 100%;
    height: 72px;
    background-image: url("../img/merit-item03-deco01.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -78px;
    left: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item {
    padding: 0 10px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item01 {
    margin-top: 63px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item01 .image {
    margin: 34px auto 0;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item02 {
    margin-top: 78px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item02 .image {
    margin: 27px auto 0;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 {
    margin-top: 77px;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image {
    margin: 32px auto 0;
    position: relative;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image::before {
    content: "";
    display: block;
    width: 69px;
    height: 62px;
    background-image: url("../img/merit-item03-deco02.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -10px;
    right: -14px;
    z-index: 1;
  }
  #top .merit .merit-inner .merit-points .merit-points__item.--item03 .image::after {
    content: "";
    display: block;
    width: 100%;
    height: 72px;
    background-image: url("../img/merit-item03-deco01.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -78px;
    left: 0;
    z-index: 1;
  }
  #top .merit .merit-inner .merit-points .merit-points__item .image {
    max-width: 375px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .number {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .number {
    font-size: 20px;
    gap: 10px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .number::before {
  content: "";
  display: block;
  background-image: url("../img/common/icon-plus-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .number::before {
    width: 12px;
    height: 12px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .number:after {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .number:after {
    width: 30px;
    height: 30px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .heading {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6923076923;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .heading {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 20px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .heading sub {
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .heading sub {
    font-size: 10px;
    margin-left: 5px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .textarea {
  margin-top: 10px;
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .textarea p {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .textarea p {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item .detail .textarea p.note {
  font-size: 12px;
  line-height: 1;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-points .merit-points__item .detail .textarea p.note {
    font-size: 10px;
    margin-top: 10px;
  }
}
#top .merit .merit-inner .merit-points .merit-points__item.--item01 .number:after {
  background-image: url("../img/merit-item-num01.svg");
}
#top .merit .merit-inner .merit-points .merit-points__item.--item02 .number:after {
  background-image: url("../img/merit-item-num02.svg");
}
#top .merit .merit-inner .merit-points .merit-points__item.--item03 .number:after {
  background-image: url("../img/merit-item-num03.svg");
}
#top .merit .merit-inner .merit-plans {
  margin-top: 120px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-plans {
    margin-top: 110px;
    padding: 30px 10px 0;
  }
}
#top .merit .merit-inner .merit-plans .merit-plans__heading .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-plans .merit-plans__heading .title {
    font-size: 21px;
    line-height: 1.3913043478;
    letter-spacing: 0.045em;
  }
}
#top .merit .merit-inner .merit-plans .merit-plans__heading .lead {
  font-size: 18px;
  line-height: 1.8333333333;
  letter-spacing: -0.01em;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-plans .merit-plans__heading .lead {
    font-size: 13px;
    line-height: 1.6923076923;
    margin-top: 30px;
    text-align: left;
  }
}
#top .merit .merit-inner .merit-plans .merit-plans__table {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-plans .merit-plans__table {
    margin-top: 40px;
  }
}
#top .merit .merit-inner .merit-plans .merit-plans__table img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .merit .merit-inner .merit-plans .merit-plans__table img {
    max-width: 375px;
  }
}
#top .platinam {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top .platinam {
    padding-top: 70px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner {
    padding: 0 30px;
  }
}
#top .platinam .platinam-inner .platinam-heading {
  display: grid;
  grid-template-columns: 144px auto;
  grid-template-rows: auto auto;
  grid-template-areas: "title title title" "icon lead lead";
  gap: 0px;
  position: relative;
  align-items: end;
  padding-left: 30px;
}
@media (max-width: 1150px) {
  #top .platinam .platinam-inner .platinam-heading {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading {
    max-width: 325px;
    grid-template-columns: auto 104px;
    grid-template-areas: "title icon" "lead lead";
    padding: 0;
    gap: 20px 0;
  }
}
#top .platinam .platinam-inner .platinam-heading .title {
  grid-area: title;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6923076923;
  letter-spacing: 0.045em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #top .platinam .platinam-inner .platinam-heading .title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .title {
    font-size: 16px;
    line-height: 1.5625;
    white-space: nowrap;
  }
}
#top .platinam .platinam-inner .platinam-heading .icon {
  grid-area: icon;
  width: 144px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .icon {
    width: 104px;
    margin: 0;
  }
}
#top .platinam .platinam-inner .platinam-heading .lead {
  grid-area: lead;
  justify-self: start;
  margin-top: 20px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .lead {
    margin: 0;
  }
}
#top .platinam .platinam-inner .platinam-heading .lead span {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.015em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 1150px) {
  #top .platinam .platinam-inner .platinam-heading .lead span {
    font-size: 30px;
    line-height: 1.3;
  }
  #top .platinam .platinam-inner .platinam-heading .lead span br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .lead span {
    font-size: 23px;
    gap: 5px;
    white-space: nowrap;
  }
}
#top .platinam .platinam-inner .platinam-heading .lead span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to right, transparent, #E60012 0%, #E60012 75%, transparent);
}
@media (max-width: 1150px) {
  #top .platinam .platinam-inner .platinam-heading .lead span::after {
    width: calc(100% - 1.25em);
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .lead span::after {
    height: 2px;
  }
}
#top .platinam .platinam-inner .platinam-heading .illust {
  position: relative;
  top: 0;
  right: 0;
  grid-area: illust;
  width: 152px;
  margin-top: -100%;
  transform: translate(10px, 30px);
}
@media (max-width: 1150px) {
  #top .platinam .platinam-inner .platinam-heading .illust {
    transform: translate(-30px, 30px);
  }
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-heading .illust {
    position: absolute;
    width: 72px;
    margin-top: 0;
    transform: none;
    top: auto;
    right: 0;
    bottom: -15px;
  }
}
#top .platinam .platinam-inner .platinam-desc {
  width: 100%;
  max-width: 800px;
  margin: 105px auto 0;
  display: grid;
  grid-template-columns: 1fr 41%;
  gap: 5.2%;
  align-items: end;
  position: relative;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc {
    max-width: 100%;
    margin: 46px auto 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #top .platinam .platinam-inner .platinam-desc .textarea {
    order: 2;
  }
  #top .platinam .platinam-inner .platinam-desc .image {
    order: 1;
  }
}
#top .platinam .platinam-inner .platinam-desc::before {
  content: "";
  display: block;
  width: 2203px;
  height: 1201px;
  background-image: url("../img/platinam-wave.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -450px;
  left: 50%;
  transform: translateX(calc(-50% - 170px));
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc::before {
    width: 564px;
    height: 282.5px;
    background-image: url("../img/platinam-wave--sp.png");
    top: -80px;
  }
}
#top .platinam .platinam-inner .platinam-desc .textarea .deco {
  width: 50px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc .textarea .deco {
    width: 35px;
    margin: 0 auto;
  }
}
#top .platinam .platinam-inner .platinam-desc .textarea .head {
  display: block;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6923076923;
  letter-spacing: 0.045em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc .textarea .head {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-align: center;
  }
}
#top .platinam .platinam-inner .platinam-desc .textarea .text {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc .textarea .text {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 15px;
  }
}
#top .platinam .platinam-inner .platinam-desc .image {
  position: relative;
  top: 10px;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc .image {
    top: 0px;
    width: 250px;
    margin: 0 auto;
  }
}
#top .platinam .platinam-inner .platinam-desc .image::after {
  content: "";
  display: block;
  width: 116px;
  height: 113px;
  background-image: url("../img/common/icon-abobe.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -25px;
  bottom: -23px;
  filter: drop-shadow(-5.6px 5.6px 16px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-desc .image::after {
    width: 87px;
    height: 84px;
    right: -15px;
    bottom: -17px;
  }
}
#top .platinam .platinam-inner .platinam-table {
  width: 100%;
  max-width: 800px;
  margin: 245px auto 0;
}
@media screen and (max-width: 767px) {
  #top .platinam .platinam-inner .platinam-table {
    margin: 36px auto 0;
    max-width: 375px;
  }
}
#top .support {
  background-color: #f8f8f8;
  padding: 100px 0 115px;
}
@media screen and (max-width: 767px) {
  #top .support {
    padding: 50px 0 96px;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner {
    padding: 0 30px;
  }
}
#top .support .support-inner .support-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 810px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item {
    padding: 0 30px;
  }
}
#top .support .support-inner .support-menu .support-menu__item.--item01 .icon img {
  width: 115px;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item.--item01 .icon img {
    width: 77px;
  }
}
#top .support .support-inner .support-menu .support-menu__item.--item02 .icon img {
  width: 105px;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item.--item02 .icon img {
    width: 70px;
  }
}
#top .support .support-inner .support-menu .support-menu__item.--item03 .icon img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item.--item03 .icon img {
    width: 68px;
  }
}
#top .support .support-inner .support-menu .support-menu__item .icon {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item .icon {
    width: 145px;
    height: 145px;
  }
}
#top .support .support-inner .support-menu .support-menu__item .textarea {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item .textarea {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#top .support .support-inner .support-menu .support-menu__item .textarea .heading {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4117647059;
  letter-spacing: -0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item .textarea .heading {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.015em;
  }
}
#top .support .support-inner .support-menu .support-menu__item .textarea .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: -0.01em;
  margin-top: 30px;
  padding: 25px 25px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-menu .support-menu__item .textarea .text {
    font-size: 13px;
    line-height: 1.6923076923;
    margin-top: 10px;
    padding: 10px 0 0;
  }
}
#top .support .support-inner .support-menu .support-menu__item .textarea .text::before {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#top .support .support-inner .support-banner {
  margin: 100px auto 0;
  border: 1px solid #4e4e4e;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 40.5%;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner {
    grid-template-columns: 1fr;
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner {
    margin: 50px auto 0;
    border-radius: 5px;
    max-width: 375px;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea {
  display: flex;
  flex-direction: column;
}
#top .support .support-inner .support-banner .support-banner__textarea .heading {
  display: flex;
  border-bottom: 1px solid #4e4e4e;
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner .support-banner__textarea .heading {
    flex-direction: column;
    text-align: center;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .heading span {
  letter-spacing: -0.01em;
  color: #fff;
}
#top .support .support-inner .support-banner .support-banner__textarea .heading span:first-child {
  width: 37.2%;
  padding: 16px 0 20px;
  font-size: 22px;
  font-weight: 600;
  background-color: #fa0f00;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner .support-banner__textarea .heading span:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .heading span:first-child {
    width: 100%;
    padding: 11px 0 14px;
    font-size: 14px;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .heading span:last-child {
  padding: 20px 0 20px;
  width: 62.8%;
  font-size: 18px;
  font-weight: 500;
  padding-left: 34px;
  background-color: #4e4e4e;
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner .support-banner__textarea .heading span:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .heading span:last-child {
    width: 100%;
    padding: 9px 0 7px;
    font-size: 13px;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .text {
  background-color: #fff;
  padding: 20px 30px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .text {
    padding: 10px 15px 15px;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .text > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .text > p {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .text > a {
  display: inline-block;
  color: #000;
  font-size: 16px;
  line-height: 1;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .text > a {
    font-size: 11px;
    margin-top: 15px;
  }
}
#top .support .support-inner .support-banner .support-banner__textarea .text > a::after {
  content: "＞";
  display: inline;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__textarea .text > a::after {
    padding-left: 4px;
  }
}
@media screen and (min-width: 768px) {
  #top .support .support-inner .support-banner .support-banner__image {
    border-left: 1px solid #4e4e4e;
  }
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner .support-banner__image {
    border-left: none;
  }
}
#top .support .support-inner .support-banner .support-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1080px) {
  #top .support .support-inner .support-banner .support-banner__image img {
    max-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  #top .support .support-inner .support-banner .support-banner__image img {
    height: 137.5px;
  }
}
#top .contact {
  background-color: #f8f8f8;
  padding: 135px 0 125px;
  background-image: url("../img/contact-bg--pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #top .contact {
    padding: 50px 0 70px;
    background-image: url("../img/contact-bg--sp.jpg");
  }
}
#top .contact .contact-inner .contact-heading .title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-heading .title {
    font-size: 23px;
    line-height: 1.3043478261;
  }
}
#top .contact .contact-inner .contact-content {
  display: grid;
  grid-template: auto auto/repeat(2, 1fr);
  max-width: 860px;
  margin: 70px auto 0;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content {
    grid-template: none;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-width: 375px;
    margin: 35px auto 0;
    gap: 30px;
    padding: 0 10px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box {
  background-color: #fff;
  border-radius: 22px;
  padding: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box {
    border-radius: 12px;
    padding: 20px 30px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .illust {
  position: relative;
}
#top .contact .contact-inner .contact-content .contact-content__box .illust .wrapper {
  position: relative;
}
#top .contact .contact-inner .contact-content .contact-content__box .illust .stars img {
  position: absolute;
}
#top .contact .contact-inner .contact-content .contact-content__box .illust .stars img.--size-L {
  width: 28px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box .illust .stars img.--size-L {
    width: 22px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .illust .stars img.--size-M {
  width: 20px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box .illust .stars img.--size-M {
    width: 16px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .illust .stars img.--size-S {
  width: 12px;
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust, #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust {
  height: 173px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust, #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust {
    height: 130px;
  }
}
@media screen and (min-width: 768px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper, #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper {
    transform: translateY(-7px);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper {
  width: 103px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper {
    width: 81px;
    transform: translateY(-2px);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img {
  -webkit-animation: flashing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: flashing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@-webkit-keyframes flashing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flashing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars01 {
  left: calc(50% + 50px);
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars01 {
    left: calc(50% + 38px);
    bottom: -10px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars02 {
  right: calc(50% + 21px);
  top: -26px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars02 {
    right: calc(50% + 17px);
    top: -24px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars03 {
  right: calc(50% + 65px);
  top: 0px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars03 {
    right: calc(50% + 52px);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars04 {
  left: calc(50% + 80px);
  top: 40px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box01 .illust .wrapper .stars img.stars04 {
    left: calc(50% + 60px);
    top: 26px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper {
  width: 93px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper {
    width: 69px;
    transform: translateY(6px);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img {
  -webkit-animation: flashing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: flashing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes flashing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars01 {
  left: calc(50% + 25px);
  top: -42px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars01 {
    left: calc(50% + 16px);
    top: -32px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars02 {
  left: calc(50% + 58px);
  top: -43px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars02 {
    left: calc(50% + 40px);
    top: -35px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars03 {
  left: calc(50% + 75px);
  top: -40px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box02 .illust .wrapper .stars img.stars03 {
    left: calc(50% + 55px);
    top: -33px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box03 {
  width: 100%;
  height: calc(100% - 15px);
  padding: 30px 45px 0;
  display: grid;
  grid-template-areas: "text illust" "btn-wrap illust";
  grid-template-columns: 1fr 313px;
  grid-template-rows: auto auto;
  gap: 0 20px;
}
@media screen and (min-width: 768px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 {
    height: 100%;
    grid-template-areas: "text" "illust" "btn-wrap";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
    padding: 26px 30px 23px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box03 .illust {
  grid-area: illust;
  width: 313px;
  transform: translate(18px, -5px);
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 .illust {
    width: 189px;
    margin: 0 auto;
    transform: translate(3px, -3px);
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box03 .text {
  grid-area: text;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6363636364;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 1080px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 .text {
    font-size: 13px;
    line-height: 1.2857142857;
    text-align: center;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box.--box03 .btn-wrap {
  grid-area: btn-wrap;
}
#top .contact .contact-inner .contact-content .contact-content__box.--box03 .btn-wrap .btn {
  width: 100%;
  max-width: 320px;
  margin: 0;
  margin-left: -5px;
  margin-top: -37px;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box.--box03 .btn-wrap .btn {
    max-width: 100%;
    margin-left: 0;
    margin-top: -30px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  box-sizing: border-box;
  width: 100%;
  max-width: 330px;
  border-radius: 34px;
  padding: 25px;
  margin: 0 auto;
  transition: all 0.2s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box .btn {
    max-width: 100%;
    padding: 10px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  border-right: 0;
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box .btn:after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #fff;
    right: 12.5px;
  }
}
#top .contact .contact-inner .contact-content .contact-content__box .btn span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  #top .contact .contact-inner .contact-content .contact-content__box .btn span {
    font-size: 15px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  #top .contact .contact-inner .contact-content .contact-content__box .btn:hover {
    background-color: #fff;
  }
  #top .contact .contact-inner .contact-content .contact-content__box .btn:hover span {
    color: #000;
  }
  #top .contact .contact-inner .contact-content .contact-content__box .btn:hover:after {
    border-left: 7px solid #000;
  }
}
#top .faq {
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  #top .faq {
    margin-top: 20px;
    padding: 30px 0 70px;
  }
}
#top .faq .faq-inner .faq-heading .title {
  width: 68px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-heading .title {
    width: 47.5px;
  }
}
#top .faq .faq-inner .faq-boxes {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes {
    max-width: 375px;
    margin: 40px auto 0;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box {
  border: 1px solid #4e4e4e;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box {
    border-radius: 5px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box + .faq-box {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box + .faq-box {
    margin-top: 20px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head {
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  width: 100%;
  padding: 30px 30px 25px;
  cursor: pointer;
  transition: border-bottom 0.2s linear;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head {
    padding: 15px 45px 15px 15px;
    align-items: flex-start;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-align: left;
  display: flex;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head span {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head span:before {
  content: "";
  width: 21px;
  height: 25px;
  min-width: 21px;
  min-height: 25px;
  background-image: url("../img/common/icon-q.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 30px;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head span:before {
    width: 10px;
    height: 12.5px;
    min-width: 10px;
    min-height: 12.5px;
    margin-right: 15px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon {
    width: 12px;
    height: 12px;
    right: 15px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon:before, #top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #fa0f00;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon:before, #top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon:after {
    height: 2px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon::after {
  width: 4px;
  height: 100%;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__head .faq-box__head-icon::after {
    width: 2px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box.is-open .faq-box__head {
  border-bottom: 1px solid #4e4e4e;
}
#top .faq .faq-inner .faq-boxes .faq-box.is-open .faq-box__head .faq-box__head-icon:before {
  opacity: 0;
}
#top .faq .faq-inner .faq-boxes .faq-box.is-open .faq-box__head .faq-box__head-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea {
  background-color: #fff;
  text-align: left;
  display: flex;
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea:before {
  content: "";
  width: 21px;
  height: 20px;
  min-width: 21px;
  min-height: 20px;
  background-image: url("../img/common/icon-a.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: 30px;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea:before {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    margin: 15px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap {
  width: 100%;
  padding: 25px 75px 35px 0;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap {
    padding: 10px 25px 10px 0;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p {
    font-size: 12px;
    line-height: 1.6666666667;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p + p {
  margin-top: 20px;
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p.--resize {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p.--resize {
    font-size: 12px;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p span.--red {
  color: #fa0f00;
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p a {
  color: #737373;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea .wrap p a:hover {
    text-decoration: none;
  }
}
#top .faq .faq-inner .faq-boxes .faq-box__textarea .image {
  width: 447px;
  margin: 0 auto;
  -webkit-padding-before: 30px;
          padding-block-start: 30px;
  -webkit-padding-after: 50px;
          padding-block-end: 50px;
}
@media screen and (max-width: 767px) {
  #top .faq .faq-inner .faq-boxes .faq-box__textarea .image {
    width: 100%;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    -webkit-padding-after: 20px;
            padding-block-end: 20px;
  }
}
#top .fixed-btn {
  position: fixed;
  bottom: 60px;
  right: -10px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 767px) {
  #top .fixed-btn {
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
#top .fixed-btn.--fixed {
  opacity: 1;
  visibility: visible;
}
#top .fixed-btn .fixed-btn__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  #top .fixed-btn .fixed-btn__inner {
    flex-direction: row;
    gap: 10px;
    background-color: #fff;
    padding: 25px 20px;
  }
}
#top .fixed-btn .fixed-btn__inner a:first-child, #top .fixed-btn .fixed-btn__inner a:last-child {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  min-width: auto;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  #top .fixed-btn .fixed-btn__inner a:first-child, #top .fixed-btn .fixed-btn__inner a:last-child {
    max-width: 326px;
    width: calc(100% - 10px);
    height: auto;
    border-radius: 0;
    background-color: #000;
    padding: 20px;
  }
}
#top .fixed-btn .fixed-btn__inner a:first-child span, #top .fixed-btn .fixed-btn__inner a:last-child span {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
#top .fixed-btn .fixed-btn__inner a:first-child:after, #top .fixed-btn .fixed-btn__inner a:last-child:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  border-right: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) {
  #top .fixed-btn .fixed-btn__inner a:first-child:after, #top .fixed-btn .fixed-btn__inner a:last-child:after {
    display: none;
  }
  #top .fixed-btn .fixed-btn__inner a:first-child:before, #top .fixed-btn .fixed-btn__inner a:last-child:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.2s linear;
    transform-origin: center;
  }
  #top .fixed-btn .fixed-btn__inner a:first-child:hover:before, #top .fixed-btn .fixed-btn__inner a:last-child:hover:before {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media screen and (max-width: 767px) {
  #top .fixed-btn .fixed-btn__inner a:first-child {
    border-bottom-left-radius: 27.5px;
    border-top-left-radius: 27.5px;
  }
  #top .fixed-btn .fixed-btn__inner a:last-child {
    border-bottom-right-radius: 27.5px;
    border-top-right-radius: 27.5px;
  }
}
