@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------------------------------------------------------
*/
#header {
  position: fixed;
  z-index: 100;
  height: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #000; }
  @media (min-width: 1024px) {
    #header {
      height: 80px; } }
  #header .header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0 0 20px; }
    #header .header-logo a {
      display: flex;
      align-items: center; }
      @media (min-width: 1024px) {
        #header .header-logo a {
          display: block; } }
      @media (min-width: 1200px) {
        #header .header-logo a {
          display: flex; } }
      #header .header-logo a img:first-child {
        width: 140px; }
        @media (min-width: 1024px) {
          #header .header-logo a img:first-child {
            display: block;
            width: 130px; } }
        @media (min-width: 1200px) {
          #header .header-logo a img:first-child {
            width: 160px;
            display: flex; } }
      #header .header-logo a img:nth-child(2) {
        width: 110px;
        margin-left: 10px; }
        @media (min-width: 1024px) {
          #header .header-logo a img:nth-child(2) {
            margin: 4px 0 0 0;
            width: 130px; } }
        @media (min-width: 1200px) {
          #header .header-logo a img:nth-child(2) {
            margin: 0 0 0 10px; } }
  #header .main-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    display: flex;
    /*hoverしたら表示*/ }
    #header .main-menu nav {
      display: none;
      /*2階層目以降は横並びにしない*/ }
      @media (min-width: 1024px) {
        #header .main-menu nav {
          display: flex;
          align-items: center; } }
      #header .main-menu nav ul {
        display: flex;
        align-items: center; }
        #header .main-menu nav ul li {
          margin-right: 15px;
          position: relative; }
          @media (min-width: 1200px) {
            #header .main-menu nav ul li {
              margin-right: 18px; } }
          #header .main-menu nav ul li a {
            color: #fff;
            font-size: 0.85em;
            font-weight: 700;
            position: relative;
            display: inline-block;
            transition: .5s;
            text-decoration: none; }
            @media (min-width: 1200px) {
              #header .main-menu nav ul li a {
                font-size: 0.9em; } }
            @media (min-width: 1250px) {
              #header .main-menu nav ul li a {
                font-size: 1.0em; } }
            #header .main-menu nav ul li a:hover {
              color: #e6007e; }
          #header .main-menu nav ul li.has-child {
            padding-right: 15px; }
          #header .main-menu nav ul li.has-child::before, #header .main-menu nav ul li.has-child::after {
            content: "";
            position: absolute;
            top: 56%;
            right: 0;
            width: 10px;
            height: 2px;
            background: #ff2ea6; }
          #header .main-menu nav ul li.has-child::before {
            transform: translateY(-50%) rotate(90deg); }
          #header .main-menu nav ul li.has-child::after {
            transform: translateY(-50%); }
      #header .main-menu nav ul ul {
        display: block; }
      #header .main-menu nav li.has-child ul {
        position: absolute;
        left: 0;
        top: 44px;
        z-index: 4;
        background-color: #fff;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
        border-radius: 10px;
        padding: 6px 10px;
        height: auto; }
        #header .main-menu nav li.has-child ul li {
          position: relative;
          margin: 0; }
          #header .main-menu nav li.has-child ul li a {
            color: #000;
            border-bottom: solid 1px rgba(0, 0, 0, 0.2);
            width: 200px; }
            #header .main-menu nav li.has-child ul li a h6 {
              font-size: 0.9em;
              padding: 10px 0; }
          #header .main-menu nav li.has-child ul li::after {
            position: absolute;
            top: 50%;
            left: inherit;
            right: 8px;
            content: '';
            margin: -2px 0 0 16px;
            width: 6px;
            height: 6px;
            border: 0px;
            border-top: solid 1px #000;
            border-right: solid 1px #000;
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            transition: .5s; }
        #header .main-menu nav li.has-child ul li:last-child > a {
          border-bottom: none; }
    #header .main-menu nav li.has-child:hover > ul,
    #header .main-menu nav li.has-child ul li:hover > ul,
    #header .main-menu nav li.has-child:active > ul,
    #header .main-menu nav li.has-child ul li:active > ul {
      visibility: visible;
      opacity: 1; }
    #header .main-menu nav li.has-child ul li a:hover,
    #header .main-menu nav li.has-child ul li a:active {
      color: #e6007e; }
  #header .entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 140px;
    padding: 8px 10px;
    background-color: #e6007e;
    color: #000; }
    @media (min-width: 1200px) {
      #header .entry-btn {
        width: 160px;
        padding: 10px 15px; } }
    #header .entry-btn.sp-navi {
      width: 100%;
      opacity: 0; }
    #header .entry-btn span {
      font-size: 1.125em;
      font-weight: 700;
      line-height: 1.0em; }
      @media (min-width: 1200px) {
        #header .entry-btn span {
          font-size: 1.35em; } }
    #header .entry-btn i {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 36px;
      border-radius: 2px;
      background-color: #000;
      color: #fff;
      font-style: normal;
      font-size: 1.125em;
      line-height: 1;
      transition: transform 0.5s ease; }
    #header .entry-btn:hover i {
      transform: translateX(6px); }
  #header .openbtn {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: .5s;
    background-color: white;
    border-radius: 50px;
    /*activeクラスが付与されると線が回転して×に*/ }
    @media (min-width: 1024px) {
      #header .openbtn {
        top: 27px;
        right: 27px;
        display: none; } }
    #header .openbtn span {
      display: inline-block;
      transition: all .4s;
      /*アニメーションの設定*/
      position: absolute;
      left: 13px;
      height: 1.5px;
      background: #000;
      width: 36px; }
      #header .openbtn span:nth-child(1) {
        top: 20px; }
      #header .openbtn span:nth-child(2) {
        top: 28px; }
      #header .openbtn span:nth-of-type(2)::after {
        content: "MENU";
        position: absolute;
        top: 3px;
        left: 0px;
        color: #000;
        font-size: 0.7em;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-style: normal; }
    #header .openbtn.active span {
      width: 22px;
      left: 20px; }
    #header .openbtn.active span:nth-of-type(1) {
      top: 18px;
      transform: translateY(6px) rotate(-45deg); }
    #header .openbtn.active span:nth-of-type(2) {
      top: 30px;
      transform: translateY(-6px) rotate(45deg); }
    #header .openbtn.active span:nth-of-type(2)::after {
      content: "CLOSE";
      transform: translateY(0) rotate(-45deg);
      top: 5px;
      left: 2px; }

.banner-links {
  padding: 60px 5%; }
  @media (min-width: 1024px) {
    .banner-links {
      padding: 120px 5%; } }
  .banner-links__inner {
    display: grid;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .banner-links__inner {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) {
      .banner-links__inner {
        gap: 40px; } }

.banner-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  z-index: 1; }
  .banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.5s ease; }
  .banner-card__image {
    position: absolute;
    inset: 0; }
    .banner-card__image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius: 10px; }
  .banner-card__copy1 {
    position: absolute;
    top: 25%;
    right: 10px;
    z-index: 10; }
    .banner-card__copy1 img {
      width: 200px; }
      @media (min-width: 1024px) {
        .banner-card__copy1 img {
          width: 250px; } }
      @media (min-width: 1200px) {
        .banner-card__copy1 img {
          width: 300px; } }
  .banner-card__copy2 {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10; }
    @media (min-width: 1200px) {
      .banner-card__copy2 {
        top: 15px;
        left: 15px; } }
    .banner-card__copy2 img {
      width: 100px; }
      @media (min-width: 1024px) {
        .banner-card__copy2 img {
          width: 120px; } }
      @media (min-width: 1200px) {
        .banner-card__copy2 img {
          width: 150px; } }
  .banner-card__bottom {
    position: absolute;
    z-index: 2;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px; }
    @media (min-width: 1024px) {
      .banner-card__bottom {
        left: 28px;
        right: 22px;
        bottom: 22px; } }
    .banner-card__bottom h2 {
      font-size: 1.5em;
      font-weight: 700;
      line-height: 1.2em; }
      @media (min-width: 1024px) {
        .banner-card__bottom h2 {
          font-size: 2em; } }
  .banner-card:hover::before {
    background: rgba(0, 0, 0, 0.4); }
  .banner-card:hover .banner-card__image img {
    transform: scale(1.02); }
  .banner-card:hover .banner-card__bottom i {
    transform: translateX(4px); }

.entry-banner {
  background-color: #e6007e;
  padding: 30px 20px; }
  @media (min-width: 768px) {
    .entry-banner {
      padding: 40px 40px; } }
  @media (min-width: 1200px) {
    .entry-banner {
      padding: 80px 80px; } }
  .entry-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto; }
    @media (min-width: 1024px) {
      .entry-banner__inner {
        flex-direction: row;
        align-items: center;
        gap: 48px; } }
    @media (min-width: 1200px) {
      .entry-banner__inner {
        gap: 64px; } }
  .entry-banner__heading {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0; }
    @media (min-width: 768px) {
      .entry-banner__heading {
        gap: 8px; } }
  .entry-banner__lead-arrow {
    font-size: 1.25em;
    font-weight: 700;
    color: #000000;
    line-height: 1; }
    @media (min-width: 768px) {
      .entry-banner__lead-arrow {
        font-size: 1.5em; } }
    @media (min-width: 1200px) {
      .entry-banner__lead-arrow {
        font-size: 1.75em; } }
  .entry-banner__title {
    position: relative;
    top: -5px;
    font-size: 3.5em;
    font-weight: 900;
    color: #000000;
    line-height: 1.0em;
    letter-spacing: -0.02em;
    margin: 0; }
    @media (min-width: 768px) {
      .entry-banner__title {
        font-size: 5em; } }
    @media (min-width: 1200px) {
      .entry-banner__title {
        font-size: 6.0em; } }
  .entry-banner__body {
    flex: 1;
    min-width: 0; }
  .entry-banner__catch {
    font-size: 1.125em;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin: 0 0 8px; }
    @media (min-width: 768px) {
      .entry-banner__catch {
        font-size: 1.25em;
        margin: 0 0 10px; } }
    @media (min-width: 1200px) {
      .entry-banner__catch {
        font-size: 1.375em; } }
  .entry-banner__desc {
    font-size: 0.8em;
    color: #000000;
    line-height: 1.4em;
    letter-spacing: -0.02em; }
    @media (min-width: 768px) {
      .entry-banner__desc {
        font-size: 0.9em; } }
    @media (min-width: 1200px) {
      .entry-banner__desc {
        font-size: 1.0em; } }
  .entry-banner__action {
    width: 100%;
    flex-shrink: 0; }
    @media (min-width: 1024px) {
      .entry-banner__action {
        width: auto; } }
  .entry-banner__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px 24px;
    width: 100%;
    background-color: #000000;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s ease; }
    @media (min-width: 1024px) {
      .entry-banner__btn {
        width: auto;
        min-width: 220px;
        padding: 22px 32px;
        gap: 40px; } }
    @media (min-width: 1200px) {
      .entry-banner__btn {
        min-width: 260px;
        padding: 26px 40px; } }
    .entry-banner__btn:hover .entry-banner__btn-arrow {
      transform: translateX(5px); }
  .entry-banner__btn-label {
    font-size: 0.9375em;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap; }
    @media (min-width: 768px) {
      .entry-banner__btn-label {
        font-size: 1em; } }
    @media (min-width: 1200px) {
      .entry-banner__btn-label {
        font-size: 1.0625em; } }
  .entry-banner__btn-arrow {
    font-size: 0.9em;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.5s ease; }
    @media (min-width: 768px) {
      .entry-banner__btn-arrow {
        font-size: 1.0em; } }

#footer {
  color: #fff; }
  #footer .footer__inner {
    width: 100%; }
  #footer .footer__main {
    display: grid;
    gap: 40px;
    padding: 60px 5% 48px;
    border-bottom: 1px solid #222; }
    @media (min-width: 1024px) {
      #footer .footer__main {
        grid-template-columns: 170px 1fr;
        gap: 60px;
        padding: 80px 30px 90px; } }
  #footer .brand {
    display: grid;
    gap: 24px;
    align-content: start; }
    #footer .brand a.logo {
      display: flex;
      align-items: center; }
      @media (min-width: 1024px) {
        #footer .brand a.logo {
          display: block; } }
      #footer .brand a.logo img:nth-child(1) {
        width: 140px; }
        @media (min-width: 1024px) {
          #footer .brand a.logo img:nth-child(1) {
            display: block;
            width: 140px; } }
        @media (min-width: 1200px) {
          #footer .brand a.logo img:nth-child(1) {
            width: 150px; } }
      #footer .brand a.logo img:nth-child(2) {
        width: 140px;
        margin-left: 10px; }
        @media (min-width: 1024px) {
          #footer .brand a.logo img:nth-child(2) {
            margin: 10px 0 0 0;
            width: 140px; } }
        @media (min-width: 1200px) {
          #footer .brand a.logo img:nth-child(2) {
            width: 150px; } }
    #footer .brand a.corp {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      width: fit-content;
      color: #fff;
      font-size: 0.75em;
      line-height: 1.2em; }
      @media (min-width: 1024px) {
        #footer .brand a.corp {
          font-size: 0.8em; } }
      #footer .brand a.corp img {
        width: 15px; }
      #footer .brand a.corp::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .3s; }
      #footer .brand a.corp:hover::after {
        transform-origin: left top;
        transform: scale(1, 1); }
  #footer .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px; }
    @media (min-width: 768px) {
      #footer .footer__nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 28px; } }
    @media (min-width: 1200px) {
      #footer .footer__nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px; } }
  #footer .footer__group {
    position: relative;
    padding-top: 14px; }
    #footer .footer__group::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: #333; }
    #footer .footer__group h3 {
      margin: 0; }
      #footer .footer__group h3 a {
        color: #fff;
        text-decoration: none;
        font-size: 0.75em;
        font-weight: 400;
        line-height: 1.6em;
        transition: .5s; }
        @media (min-width: 1024px) {
          #footer .footer__group h3 a {
            font-size: 0.8em; } }
        #footer .footer__group h3 a:hover {
          color: #ff2ea6; }
    #footer .footer__group ul {
      list-style: none;
      margin: 10px 0 0 0;
      padding: 0; }
      #footer .footer__group ul li {
        margin-top: 8px; }
        #footer .footer__group ul li:first-child {
          margin-top: 0; }
        #footer .footer__group ul li a {
          color: #777;
          font-size: 0.70em;
          line-height: 1.6em;
          transition: .5s; }
          @media (min-width: 1200px) {
            #footer .footer__group ul li a {
              font-size: 0.8em; } }
          #footer .footer__group ul li a:hover {
            color: #fff; }
  #footer .footer__bottom {
    display: grid;
    gap: 16px;
    padding: 20px 5% 24px; }
    @media (min-width: 768px) {
      #footer .footer__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px; } }
    @media (min-width: 1024px) {
      #footer .footer__bottom {
        padding: 18px 30px 24px; } }
    #footer .footer__bottom a, #footer .footer__bottom small {
      margin: 0;
      color: #fff;
      font-size: 0.7em;
      line-height: 1.6em;
      text-decoration: none;
      transition: .5s; }
    #footer .footer__bottom small {
      margin: 0 60px 0 0; }
    #footer .footer__bottom a {
      width: fit-content; }
      #footer .footer__bottom a:hover {
        text-decoration: underline; }
