@charset "UTF-8";
/*------------------------------------------------
mixins
------------------------------------------------*/
/* sp-only ------------*/
/* tablet-only ------------*/
/* pc-only ------------*/
/* retina-only ------------*/
/* retina-sp-only ------------*/
/* flex ------------*/
/* hover ------------*/
/*------------------------------------------------
function
------------------------------------------------*/
/*------------------------------------------------
html,body
------------------------------------------------*/
/* purple */
/* light purple */
html {
  scroll-behavior: smooth;
  font-size: 10px; }
  @media screen and (max-width: 480px) {
    html {
      font-size: 2.0833333333vw; } }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto; } }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #000;
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  background: #fff; }

@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none; } }
/*------------------------------------------------
general
------------------------------------------------*/
/*---- animation ------------------*/
.anm-fade {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s; }

.anm-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 1s; }

.anm-fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition-property: opacity, transform;
  transition-duration: 1s; }

.anm-fadeL {
  opacity: 0;
  transform: translateX(-20px);
  transition-property: opacity, transform;
  transition-duration: 1s; }

.anm-fadeR {
  opacity: 0;
  transform: translateX(20px);
  transition-property: opacity, transform;
  transition-duration: 1s; }

.anm-visible {
  opacity: 1;
  transform: translateX(0) translateY(0); }

/* コンテナ */
.anm-wipe__mask {
  position: relative;
  display: inline-block; }

/* マスク（覆い） */
.anm-wipe__mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  /* 背景色と同じ */
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1); }

/* 表示時：マスクが上へ抜ける */
.anm-wipe.anm-visible .anm-wipe__mask::after {
  transform: translateX(100%); }

/* フェード（必要なら） */
.anm-wipe {
  opacity: 0;
  transition: opacity 0.4s ease; }

.anm-wipe.anm-visible {
  opacity: 1; }

.anm-scaleUp {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1); }

.anm-scaleUp.anm-visible {
  opacity: 1;
  transform: scale(1); }

.delay-03 {
  transition-delay: 0.3s; }

.delay-04 {
  transition-delay: 0.4s; }

.delay-06 {
  transition-delay: 0.6s; }

.delay-09 {
  transition-delay: 0.9s; }

.delay-12 {
  transition-delay: 1.2s; }

/*---- common ------------------*/
.w1100 {
  position: relative;
  width: 1100px;
  margin: 0 auto; }
  @media (min-width: 481px) and (max-width: 1100px) {
    .w1100 {
      width: calc( 100% - 60px ); } }
  @media screen and (max-width: 480px) {
    .w1100 {
      width: 100%; } }

.btn-apply {
  display: block;
  position: relative;
  width: 500px;
  margin-right: auto;
  margin-left: auto; }
  .btn-apply img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease; }
  .btn-apply:hover img {
    filter: brightness(0.7); }
  @media (min-width: 481px) and (max-width: 500px) {
    .btn-apply {
      width: 70%; } }
  @media screen and (max-width: 480px) {
    .btn-apply {
      width: 320px; } }

/*---- others ------------------*/
@media screen and (max-width: 480px) {
  .dn-n {
    display: none; } }
@media (min-width: 481px) and (max-width: 1100px) {
  .dn-m {
    display: none; } }
@media screen and (min-width: 1024px) {
  .dn-w {
    display: none; } }
@media (min-width: 481px) and (max-width: 768px) {
  .img-md img {
    width: 100%; } }
/*------------------------------------------------
header
------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1002; }
  @media screen and (max-width: 580px) {
    .header {
      height: 60px; } }
  .header-wrap {
    height: 100%;
    margin: 0 auto;
    padding-left: 40px; }
    @media screen and (max-width: 1400px) {
      .header-wrap {
        padding-left: 30px;
        padding-right: 0; } }
    @media screen and (max-width: 580px) {
      .header-wrap {
        display: flex;
        align-items: center;
        padding: 0 20px 0 0; } }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%; }
    @media screen and (max-width: 580px) {
      .header-nav {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        height: 100vh;
        margin-right: 0;
        padding: 0 14%;
        background: transparent;
        transition: opacity .2s ease, filter .5s ease;
        overflow-y: auto;
        pointer-events: none;
        opacity: 0;
        filter: blur(5px);
        z-index: 2; } }
    .header-nav__gnav {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-start; }
      @media screen and (max-width: 580px) {
        .header-nav__gnav {
          display: block;
          transition: opacity 0.3s ease, filter 0.3s ease;
          opacity: 0;
          filter: blur(5px); } }
      .header-nav__gnav li {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        color: #fff; }
        .header-nav__gnav li:not(:last-child) {
          margin-right: 25px; }
          @media screen and (max-width: 580px) {
            .header-nav__gnav li:not(:last-child) {
              margin-right: auto;
              margin-bottom: 15px; } }
        @media screen and (max-width: 580px) {
          .header-nav__gnav li {
            font-size: 15px;
            letter-spacing: 0.2em;
            margin-top: 0; } }
        .header-nav__gnav li a {
          display: block;
          text-decoration: none;
          position: relative;
          transition: all .3s; }
          .header-nav__gnav li a:hover {
            color: #662D80; }
      .header-nav__gnav-sp {
        display: none; }
        @media screen and (max-width: 580px) {
          .header-nav__gnav-sp {
            display: block;
            margin-top: 30px;
            transition: opacity 0.3s ease, filter 0.3s ease;
            opacity: 0;
            filter: blur(5px); }
            .header-nav__gnav-sp li {
              font-size: 12px;
              letter-spacing: 0.1em;
              color: #fff; }
              .header-nav__gnav-sp li:not(:last-child) {
                margin-bottom: 15px; } }
    .header-nav__apply {
      display: block;
      position: relative; }
      @media screen and (max-width: 580px) {
        .header-nav__apply {
          width: 100%;
          max-width: 200px;
          height: auto;
          margin: 40px auto 0 0;
          transition: opacity 0.3s ease, filter 0.3s ease;
          opacity: 0;
          filter: blur(5px); } }
      .header-nav__apply a img {
        display: block;
        width: 100%;
        height: auto;
        transition: filter 0.3s ease; }
      .header-nav__apply a:hover img {
        filter: brightness(0.7); }
  .header_toggle {
    display: none; }
    @media screen and (max-width: 580px) {
      .header_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 60px;
        margin-left: auto;
        position: relative;
        z-index: 11; }
        .header_toggle span {
          position: absolute;
          left: 0;
          width: 20px;
          height: 1px;
          background: #fff;
          transition: transform .3s, opacity .2s; }
          .header_toggle span:nth-of-type(1) {
            top: 50%;
            transform: translateY(-8px); }
          .header_toggle span:nth-of-type(2) {
            top: 50%;
            transform: translateY(0); }
          .header_toggle span:nth-of-type(3) {
            top: 50%;
            transform: translateY(8px); } }
  @media screen and (max-width: 580px) {
    .header-open .header_toggle span {
      width: 20px; }
      .header-open .header_toggle span:nth-of-type(1) {
        transform: translateY(0) rotate(-45deg); }
      .header-open .header_toggle span:nth-of-type(2) {
        opacity: 0; }
      .header-open .header_toggle span:nth-of-type(3) {
        transform: translateY(0) rotate(45deg); }
    .header-open .header-nav {
      width: 80vw;
      background: rgba(0, 0, 0, 0.9);
      opacity: 1;
      pointer-events: auto;
      filter: blur(0); }
      .header-open .header-nav__gnav, .header-open .header-nav__gnav-sp, .header-open .header-nav__apply {
        opacity: 1;
        filter: blur(0); }
    .header-open .header_overlay {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100%;
      background: transparent;
      z-index: 1; } }
  .header_overlay {
    display: none; }

/*------------------------------------------------
main
------------------------------------------------*/
#main {
  overflow: hidden; }
  @media screen and (min-width: 1024px) {
    #main {
      display: block;
      /*IE対策*/ } }

/*------------------------------------------------
hero
------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 1080px;
  background-image: url(../img/top/hero/bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out forwards; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .hero {
      background-image: url(../img/top/hero/bg@2x.jpg); } }
  @media screen and (max-width: 480px) {
    .hero {
      height: 667px;
      background-image: url(../img/top/hero/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .hero {
      background-image: url(../img/top/hero/sp/bg@2x.jpg); } }
  .hero-con {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%; }
    .hero-con__ttl {
      width: 286.35px;
      margin-top: 40px;
      margin-left: 70px;
      opacity: 0;
      animation: heroFadeIn 1.2s ease-out forwards;
      animation-delay: 0.3s; }
      @media screen and (max-width: 480px) {
        .hero-con__ttl {
          width: 181px;
          margin-top: 40px;
          margin-left: 45px; } }
      .hero-con__ttl img {
        width: 100%;
        height: auto;
        display: block; }

@keyframes heroFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-con__ttl {
    animation: none;
    opacity: 1; } }
/*------------------------------------------------
introduction
------------------------------------------------*/
.intro {
  position: relative;
  width: 100%;
  height: 1300px;
  background-image: url(../img/top/intro/bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-color: #000; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .intro {
      background-image: url(../img/top/intro/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .intro {
      height: 1250px; } }
  @media screen and (max-width: 480px) {
    .intro {
      height: 1060px;
      background-image: url(../img/top/intro/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .intro {
      background-image: url(../img/top/intro/sp/bg@2x.jpg); } }
  .intro-wrap {
    padding-top: 145px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .intro-wrap {
        padding-top: 35px; } }
    .intro-wrap h2 {
      margin-bottom: 70px; }
      @media screen and (max-width: 480px) {
        .intro-wrap h2 {
          display: none; } }
  .intro__bnr {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50%;
    display: inline-block;
    z-index: 1; }
    @media (min-width: 481px) and (max-width: 768px) {
      .intro__bnr {
        bottom: -35%; } }
    @media screen and (max-width: 480px) {
      .intro__bnr {
        bottom: -66%; } }
    @media (min-width: 481px) and (max-width: 1100px) {
      .intro__bnr img {
        width: 100%; } }

/*------------------------------------------------
contents01
------------------------------------------------*/
.content01 {
  position: relative;
  width: 100%;
  height: 1980px;
  background-image: url(../img/top/content01/bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-color: #fff; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .content01 {
      background-image: url(../img/top/content01/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .content01 {
      aspect-ratio: 1980 / 2820;
      height: auto;
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .content01 {
      height: 2400px;
      background-image: url(../img/top/content01/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .content01 {
      background-image: url(../img/top/content01/sp/bg@2x.jpg); } }
  .content01-wrap {
    padding-top: 270px;
    text-align: center; }
    @media (min-width: 481px) and (max-width: 768px) {
      .content01-wrap {
        padding-top: 120px; } }
    @media screen and (max-width: 480px) {
      .content01-wrap {
        padding-top: 280px;
        margin-left: 15px; } }
    .content01-wrap h2 {
      margin-bottom: 50px; }
      @media screen and (max-width: 480px) {
        .content01-wrap h2 {
          display: none; } }
  .content01__txt {
    margin-bottom: 50px; }
    @media screen and (max-width: 480px) {
      .content01__txt {
        display: none; } }

/*------------------------------------------------
contents02
------------------------------------------------*/
.content02 {
  position: relative;
  width: 100%;
  height: 1900px;
  background-image: url(../img/top/content02/bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-color: #fff; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .content02 {
      background-image: url(../img/top/content02/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .content02 {
      aspect-ratio: 1900 / 2820;
      height: auto;
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .content02 {
      height: 2500px;
      background-image: url(../img/top/content02/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .content02 {
      background-image: url(../img/top/content02/sp/bg@2x.jpg); } }
  .content02-wrap {
    padding-top: 140px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .content02-wrap {
        padding-top: 75px; } }
    .content02-wrap h2 {
      margin-bottom: 50px; }
      @media screen and (max-width: 480px) {
        .content02-wrap h2 {
          display: none; } }
  .content02__txt {
    margin-top: 35px;
    margin-bottom: 35px; }
    @media screen and (max-width: 480px) {
      .content02__txt {
        margin-top: 15px;
        margin-bottom: 0; } }

/*------------------------------------------------
contents03
------------------------------------------------*/
.content03 {
  position: relative;
  width: 100%;
  height: 2820px;
  background-image: url(../img/top/content03/bg.jpg);
  background-size: cover;
  background-position: center top;
  background-color: #000; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .content03 {
      background-image: url(../img/top/content03/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .content03 {
      aspect-ratio: 1920 / 2820;
      height: auto;
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .content03 {
      height: 4840px;
      background-image: url(../img/top/content03/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .content03 {
      background-image: url(../img/top/content03/sp/bg@2x.jpg); } }
  .content03-wrap {
    padding-top: 140px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .content03-wrap {
        padding-top: 80px; } }
    .content03-wrap h2 {
      margin-bottom: 50px; }
      @media screen and (max-width: 480px) {
        .content03-wrap h2 {
          display: none; } }
      .content03-wrap h2 .anm-wipe__mask::after {
        background: #000; }
    @media screen and (max-width: 480px) {
      .content03-wrap-sp {
        margin-left: 20px; } }
  .content03__txt {
    margin-top: 35px;
    margin-bottom: 50px; }
    @media screen and (max-width: 480px) {
      .content03__txt {
        margin-top: 25px;
        margin-bottom: 45px;
        margin-left: -35px; } }
  .content03-list {
    text-align: left; }
    @media screen and (max-width: 480px) {
      .content03-list {
        text-align: center; } }
    .content03-list li:not(:last-child) {
      margin-bottom: 50px; }
      @media screen and (max-width: 480px) {
        .content03-list li:not(:last-child) {
          margin-bottom: 20px; } }
    .content03-list li:nth-child(2) {
      transition-delay: 0.3s; }
    .content03-list li:nth-child(3) {
      transition-delay: 0.6s; }
    @media (min-width: 481px) and (max-width: 1100px) {
      .content03-list li img {
        width: 100%; } }
  .content03-step {
    margin-top: 125px; }
    @media screen and (max-width: 480px) {
      .content03-step {
        margin-top: 60px; } }
    .content03-step h3 {
      margin-bottom: 60px; }
      @media screen and (max-width: 480px) {
        .content03-step h3 {
          margin-bottom: 30px; } }
      .content03-step h3 .anm-wipe__mask::after {
        background: #000; }
    .content03-step__list li:not(:last-child) {
      margin-bottom: 30px; }
      @media screen and (max-width: 480px) {
        .content03-step__list li:not(:last-child) {
          margin-bottom: 20px; } }
    .content03-step__list li:last-child {
      display: none; }
      @media screen and (max-width: 480px) {
        .content03-step__list li:last-child {
          display: block; } }
    .content03-step__list li:nth-child(2) {
      transition-delay: 0.3s; }
    .content03-step__list li:nth-child(3) {
      transition-delay: 0.6s; }
    @media (min-width: 481px) and (max-width: 1100px) {
      .content03-step__list li img {
        width: 100%; } }

/*------------------------------------------------
lecturer
------------------------------------------------*/
.lecturer-intro {
  position: relative;
  width: 100%;
  height: 1240px;
  background-image: url(../img/top/lecturer/bg_lecturer.jpg);
  background-size: cover;
  background-position: center;
  background-color: #fff; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .lecturer-intro {
      background-image: url(../img/top/lecturer/bg_lecturer@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .lecturer-intro {
      height: 960px; } }
  @media screen and (max-width: 480px) {
    .lecturer-intro {
      height: 1900px;
      background-image: url(../img/top/lecturer/sp/bg_lecturer.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .lecturer-intro {
      background-image: url(../img/top/lecturer/sp/bg_lecturer@2x.jpg); } }
  .lecturer-intro-wrap {
    height: 100%;
    padding-top: 145px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .lecturer-intro-wrap {
        padding-top: 60px; } }
    .lecturer-intro-wrap h2 {
      margin-bottom: 45px; }
      @media screen and (max-width: 480px) {
        .lecturer-intro-wrap h2 {
          display: none; } }
  .lecturer-intro-con {
    margin-top: 45px; }
    @media screen and (max-width: 480px) {
      .lecturer-intro-con {
        margin-top: 30px; } }
    @media screen and (max-width: 480px) {
      .lecturer-intro-con h2 {
        display: block; } }
    .lecturer-intro-con__list {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -27%;
      z-index: 1; }
      @media (min-width: 481px) and (max-width: 768px) {
        .lecturer-intro-con__list {
          bottom: auto; } }
      @media screen and (max-width: 480px) {
        .lecturer-intro-con__list {
          bottom: -9.5%; } }
      .lecturer-intro-con__list li {
        transition-delay: 0.3s; }
        .lecturer-intro-con__list li:last-child {
          transition-delay: 0.6s; }
          @media screen and (max-width: 480px) {
            .lecturer-intro-con__list li:last-child {
              margin-top: 20px; } }
        @media (min-width: 481px) and (max-width: 1100px) {
          .lecturer-intro-con__list li img {
            width: 100%; } }
.lecturer-talk {
  position: relative;
  width: 100%;
  height: 1320px;
  background-image: url(../img/top/lecturer/bg_talk.jpg);
  background-size: cover;
  background-position: center;
  background-color: #fff; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .lecturer-talk {
      background-image: url(../img/top/lecturer/bg_talk@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .lecturer-talk {
      aspect-ratio: 1920 / 1320;
      height: auto;
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .lecturer-talk {
      height: 2040px;
      background-image: url(../img/top/lecturer/sp/bg_talk.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .lecturer-talk {
      background-image: url(../img/top/lecturer/sp/bg_talk@2x.jpg); } }
  .lecturer-talk-wrap {
    padding-top: 405px;
    text-align: center; }
    @media (min-width: 591px) and (max-width: 768px) {
      .lecturer-talk-wrap {
        padding-top: 360px; } }
    @media (min-width: 481px) and (max-width: 590px) {
      .lecturer-talk-wrap {
        padding-top: 100px; } }
    @media screen and (max-width: 480px) {
      .lecturer-talk-wrap {
        padding-top: 240px; } }
    .lecturer-talk-wrap h2 {
      margin-bottom: 20px; }
      @media screen and (max-width: 480px) {
        .lecturer-talk-wrap h2 {
          display: none; } }
  .lecturer-talk-list {
    margin-top: 60px; }
    @media screen and (max-width: 480px) {
      .lecturer-talk-list {
        margin-top: 15px; }
        .lecturer-talk-list li:not(:last-child) {
          margin-bottom: 20px; } }
    .lecturer-talk-list li {
      transition-delay: 0.4s; }
      .lecturer-talk-list li:nth-child(2) {
        transition-delay: 0.6s; }
      .lecturer-talk-list li:nth-child(3) {
        transition-delay: 0.8s; }
    @media (min-width: 481px) and (max-width: 1100px) {
      .lecturer-talk-list img {
        width: 100%; } }

#lecturer {
  padding-top: 80px;
  margin-top: -80px; }
  @media screen and (max-width: 480px) {
    #lecturer {
      padding-top: 60px;
      margin-top: -60px; } }

/*------------------------------------------------
benefits
------------------------------------------------*/
.benefits {
  position: relative; }
  .benefits-intro {
    padding-top: 95px;
    padding-bottom: 55px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .benefits-intro {
        padding-top: 60px;
        padding-bottom: 30px; } }
    .benefits-intro h2 {
      margin-bottom: 20px; }
      @media screen and (max-width: 480px) {
        .benefits-intro h2 {
          display: none; } }
    .benefits-intro h3 {
      margin-bottom: 30px; }
      @media screen and (max-width: 480px) {
        .benefits-intro h3 {
          display: none; } }
    .benefits-intro .txt {
      transition-delay: 0.6s; }
  .benefits-con__head {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #000; }
    @media (min-width: 481px) and (max-width: 768px) {
      .benefits-con__head {
        aspect-ratio: 1920 / 450;
        height: auto;
        padding-bottom: 40px; } }
    @media screen and (max-width: 480px) {
      .benefits-con__head {
        height: 820px;
        text-align: center; } }
    .benefits-con__head--01 {
      background-image: url(../img/top/benefits/bg_01.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
        .benefits-con__head--01 {
          background-image: url(../img/top/benefits/bg_01@2x.jpg); } }
      @media screen and (max-width: 480px) {
        .benefits-con__head--01 {
          background-image: url(../img/top/benefits/sp/bg_01.jpg); } }
      @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
        .benefits-con__head--01 {
          background-image: url(../img/top/benefits/sp/bg_01@2x.jpg); } }
    .benefits-con__head--02 {
      background-image: url(../img/top/benefits/bg_02.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
        .benefits-con__head--02 {
          background-image: url(../img/top/benefits/bg_02@2x.jpg); } }
      @media screen and (max-width: 480px) {
        .benefits-con__head--02 {
          background-image: url(../img/top/benefits/sp/bg_02.jpg); } }
      @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
        .benefits-con__head--02 {
          background-image: url(../img/top/benefits/sp/bg_02@2x.jpg); } }
    .benefits-con__head--03 {
      background-image: url(../img/top/benefits/bg_03.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
        .benefits-con__head--03 {
          background-image: url(../img/top/benefits/bg_03@2x.jpg); } }
      @media screen and (max-width: 480px) {
        .benefits-con__head--03 {
          background-image: url(../img/top/benefits/sp/bg_03.jpg); } }
      @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
        .benefits-con__head--03 {
          background-image: url(../img/top/benefits/sp/bg_03@2x.jpg); } }
    .benefits-con__head-wrap {
      padding-top: 45px; }
      @media screen and (max-width: 480px) {
        .benefits-con__head-wrap {
          padding-top: 60px; } }
  .benefits-con__in {
    padding-top: 20px;
    padding-bottom: 60px;
    background: #1A1A1A; }
    @media screen and (max-width: 480px) {
      .benefits-con__in {
        padding-top: 40px;
        padding-bottom: 55px;
        text-align: center; } }
    .benefits-con__in .anm-wipe__mask::after {
      background: #1A1A1A; }
    @media (min-width: 481px) and (max-width: 1100px) {
      .benefits-con__in img {
        width: 100%; } }

/*------------------------------------------------
overview
------------------------------------------------*/
.overview {
  position: relative;
  width: 100%;
  height: 960px;
  background-image: url(../img/top/overview/bg.jpg);
  background-size: cover;
  background-position: center; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .overview {
      background-image: url(../img/top/overview/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .overview {
      aspect-ratio: 1920 / 960;
      height: auto;
      padding-bottom: 60px; } }
  @media screen and (max-width: 480px) {
    .overview {
      height: 1050px;
      background-image: url(../img/top/overview/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .overview {
      background-image: url(../img/top/overview/sp/bg@2x.jpg); } }
  .overview-wrap {
    padding-top: 85px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .overview-wrap {
        padding-top: 55px; } }
    .overview-wrap h2 {
      margin-bottom: 50px; }
      @media screen and (max-width: 480px) {
        .overview-wrap h2 {
          display: none; } }
  .overview__txt {
    margin-bottom: 60px; }
    @media screen and (max-width: 480px) {
      .overview__txt {
        margin-left: 20px; } }
    @media (min-width: 481px) and (max-width: 1100px) {
      .overview__txt img {
        width: 100%; } }

/*------------------------------------------------
ps
------------------------------------------------*/
.ps {
  position: relative;
  width: 100%;
  height: 2200px;
  background-image: url(../img/top/ps/bg.jpg);
  background-size: cover;
  background-position: center; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .ps {
      background-image: url(../img/top/ps/bg@2x.jpg); } }
  @media (min-width: 481px) and (max-width: 768px) {
    .ps {
      aspect-ratio: 1920 / 2200;
      height: auto;
      padding-bottom: 100px; } }
  @media screen and (max-width: 480px) {
    .ps {
      height: 1900px;
      background-image: url(../img/top/ps/sp/bg.jpg); } }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px), only screen and (min-resolution: 2dppx) and (max-width: 480px) {
    .ps {
      background-image: url(../img/top/ps/sp/bg@2x.jpg); } }
  .ps-wrap {
    padding-top: 135px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .ps-wrap {
        padding-top: 40px; } }
  .ps__txt {
    margin-bottom: 10px; }
    @media screen and (max-width: 480px) {
      .ps__txt {
        margin-bottom: 5px; } }
  .ps__notice {
    margin-top: 30px; }
    @media (min-width: 481px) and (max-width: 768px) {
      .ps__notice {
        margin-top: 15px; }
        .ps__notice img {
          max-width: 160px; } }
    @media screen and (max-width: 480px) {
      .ps__notice {
        margin-top: 25px; } }
  .ps__txt02 {
    margin-top: 80px;
    margin-bottom: 40px; }
    @media screen and (max-width: 480px) {
      .ps__txt02 {
        margin-top: 25px;
        margin-bottom: 20px; } }

/*------------------------------------------------
footer
------------------------------------------------*/
.footer {
  position: relative;
  background: #000;
  padding: 55px 0 30px 0;
  color: #fff; }
  @media screen and (max-width: 580px) {
    .footer {
      padding-top: 70px; } }
  .footer-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column; }
  .footer-logo {
    width: 69px;
    margin-bottom: 30px; }
    .footer-logo img {
      display: block;
      width: 100%;
      height: auto;
      transition: filter 0.3s ease; }
    .footer-logo:hover img {
      filter: brightness(0.7); }
    @media screen and (max-width: 580px) {
      .footer-logo {
        width: 55px;
        margin-bottom: 15px; } }
  .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px; }
    @media screen and (max-width: 580px) {
      .footer-nav {
        display: none; } }
    .footer-nav li {
      font-size: 1.4rem;
      letter-spacing: 0.05em; }
      .footer-nav li:not(:last-child) {
        margin-right: 20px;
        padding-right: 20px;
        border-right: 1px solid #fff; }
      .footer-nav li a {
        display: block;
        text-decoration: none;
        position: relative;
        transition: all .3s; }
        .footer-nav li a:hover {
          color: #BA07DD; }
  .footer-copy {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-align: center; }
    .footer-copy a {
      transition: all .3s; }
      .footer-copy a:hover {
        color: #BA07DD; }
    @media screen and (max-width: 580px) {
      .footer-copy {
        font-size: 10px; } }

/*------------------------------------------------
pagetop
------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 4.6%;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px); }
  #pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    transition: background 0.4s ease, opacity 0.4s ease; }
    @media screen and (max-width: 580px) {
      #pagetop a {
        width: 50px;
        height: 50px; } }
    #pagetop a img {
      transition: opacity 0.4s ease; }
    #pagetop a:hover {
      background: #333333; }
      #pagetop a:hover img {
        opacity: 0.8; }
  #pagetop.UpMove {
    animation: UpAnime 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }
  #pagetop.DownMove {
    animation: DownAnime 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }

/* 上に上がる動き */
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 下に下がる動き */
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(20px); } }
/*------------------------------------------------
loading
------------------------------------------------*/
.loading {
  position: fixed;
  inset: 0;
  z-index: 1003;
  background: #fff;
  overflow: hidden; }

.loading-bg {
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(100%);
  animation: bg-up 1.6s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  animation-delay: 0.6s; }

.loading-logo {
  position: absolute;
  inset: 0;
  background: url("../img/common/loading.svg") center no-repeat;
  background-size: 160px;
  z-index: 2;
  opacity: 0;
  filter: grayscale(100%) brightness(70%);
  animation: logo-fade-in 1.2s ease forwards, logo-color 1s ease forwards;
  animation-delay: 0.4s, 1.4s; }

@media (max-width: 580px) {
  .loading-logo {
    background-size: 100px; } }
@keyframes bg-up {
  to {
    transform: translateY(0); } }
@keyframes logo-fade-in {
  to {
    opacity: 1; } }
@keyframes logo-color {
  to {
    filter: brightness(0) invert(1); } }
.loading.is-hidden {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none; }

/* ====== 下層ページ ============================= */
/*------------------------------------------------
page-title
------------------------------------------------*/
.page-title {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: url(../img/common/bg_pagettl.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFadeIn 0.5s ease-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .page-title {
      background-image: url(../img/common/bg_pagettl@2x.jpg); } }
  @media screen and (max-width: 480px) {
    .page-title {
      height: 250px; } }
  .page-title-wrap {
    padding-top: 80px;
    text-align: center;
    color: #fff; }
    @media screen and (max-width: 480px) {
      .page-title-wrap {
        padding-top: 60px; } }
    .page-title-wrap h1 {
      font-size: 24px;
      font-weight: 500;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
      opacity: 0;
      animation: heroFadeIn 0.8s ease-out forwards;
      animation-delay: 0.2s; }
      @media screen and (max-width: 480px) {
        .page-title-wrap h1 {
          font-size: 20px; } }
    .page-title-wrap p {
      font-size: 14px;
      opacity: 0;
      animation: heroFadeIn 1s ease-out forwards;
      animation-delay: 0.4s; }
      @media screen and (max-width: 480px) {
        .page-title-wrap p {
          font-size: 12px; } }

/*------------------------------------------------
term
------------------------------------------------*/
.term {
  padding-top: 135px;
  padding-bottom: 140px; }
  @media screen and (max-width: 480px) {
    .term {
      padding-top: 70px;
      padding-bottom: 150px; } }
  .term__inner {
    width: 800px;
    margin: 0 auto; }
    @media screen and (max-width: 800px) {
      .term__inner {
        width: calc(100% - 60px); } }
  .term-list {
    display: flex;
    flex-direction: column;
    gap: 30px; }
  .term-item {
    letter-spacing: 0.1em; }
    .term-item dt {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px; }
      @media screen and (max-width: 480px) {
        .term-item dt {
          font-size: 14px; } }
    .term-item dd {
      font-size: 14px;
      line-height: 1.8; }
      @media screen and (max-width: 480px) {
        .term-item dd {
          font-size: 12px; } }
  .term-section {
    margin-top: 60px; }
    @media screen and (max-width: 480px) {
      .term-section {
        margin-top: 40px; } }
  .term-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 35px; }
  .term-text {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8; }
    @media screen and (max-width: 480px) {
      .term-text {
        font-size: 12px; } }
    .term-text span {
      font-weight: 700; }
  .term-intro {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8; }
    @media screen and (max-width: 480px) {
      .term-intro {
        font-size: 12px; } }
    .term-intro span {
      font-weight: 700; }
  .term a {
    text-decoration: underline; }

.term-sale .term-item dd,
.term-sale .term-text {
  font-size: 16px; }
  @media screen and (max-width: 480px) {
    .term-sale .term-item dd,
    .term-sale .term-text {
      font-size: 14px; } }
