@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------------------------------------------------------
*/
#header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px; }
  @media (min-width: 1024px) {
    #header {
      height: 100px; } }
  #header .header-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    margin-top: -5px;
    transition: .5s; }
    @media (min-width: 1024px) {
      #header .header-logo {
        top: 20px;
        left: 20px; } }
    #header .header-logo img {
      width: 120px; }
      @media (min-width: 768px) {
        #header .header-logo img {
          width: 150px; } }
      @media (min-width: 1250px) {
        #header .header-logo img {
          width: 200px; } }

.pc-menu {
  display: none;
  /*hoverしたら表示*/ }
  @media (min-width: 1024px) {
    .pc-menu {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin: -10px 0 0 0;
      background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
      height: 100px;
      padding-right: 10px; } }
  .pc-menu nav {
    color: #fff;
    /*2階層目以降は横並びにしない*/ }
    .pc-menu nav ul {
      list-style: none;
      display: flex;
      justify-content: center; }
      .pc-menu nav ul li {
        position: relative; }
        .pc-menu nav ul li:nth-child(2) {
          margin-right: 10px; }
        .pc-menu nav ul li a {
          font-size: 0.85em;
          display: block;
          text-decoration: none;
          color: #fff;
          padding: 20px 8px;
          transition: all .3s; }
          @media (min-width: 1250px) {
            .pc-menu nav ul li a {
              padding: 20px 10px;
              font-size: 0.90em; } }
          .pc-menu nav ul li a:hover {
            color: #CB0211; }
            .pc-menu nav ul li a:hover svg > .st0 {
              fill: #CB0211; }
          .pc-menu nav ul li a svg {
            width: 10px; }
            .pc-menu nav ul li a svg .st0 {
              fill: #fff;
              transition: all .3s; }
        .pc-menu nav ul li li:nth-child(2) {
          margin-right: 0; }
        .pc-menu nav ul li li a {
          padding: 10px 10px; }
        .pc-menu nav ul li.has-child::before {
          content: '';
          position: absolute;
          right: 0;
          top: 28px;
          width: 6px;
          height: 6px;
          border-top: 2px solid #fff;
          border-right: 2px solid #fff;
          transform: rotate(135deg); }
    .pc-menu nav ul ul {
      display: block; }
    .pc-menu nav li.has-child ul {
      position: absolute;
      left: 0;
      top: 62px;
      z-index: 4;
      background-color: #fff;
      width: 100%;
      visibility: hidden;
      opacity: 0;
      transition: all .3s; }
      .pc-menu nav li.has-child ul li a {
        color: #000;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2); }
      .pc-menu nav li.has-child ul li:last-child > a {
        border-bottom: none; }
  .pc-menu nav li.has-child:hover > ul,
  .pc-menu nav li.has-child ul li:hover > ul,
  .pc-menu nav li.has-child:active > ul,
  .pc-menu nav li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1; }
  .pc-menu nav li.has-child ul li a:hover,
  .pc-menu nav li.has-child ul li a:active {
    background-color: #CB0211;
    color: #fff; }

.entry-btn.sp-btn {
  position: fixed;
  top: 5px;
  right: 70px;
  z-index: 20; }
.entry-btn a {
  font-weight: 700;
  font-size: 1.0em;
  color: #000;
  display: inline-block;
  width: 130px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  background-color: #fff;
  transition: .5s; }
  @media (min-width: 1200px) {
    .entry-btn a {
      height: 60px;
      line-height: 60px; } }
  .entry-btn a:hover {
    color: #fff;
    background-color: #CB0211; }

.entry-btn2 {
  margin-top: 40px; }
  .entry-btn2 a {
    font-weight: 700;
    font-size: 1.0em;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    background-color: #F1FF4D;
    transition: .5s; }

#you-come {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 210;
  opacity: 0;
  transform: translateY(100px);
  background-color: #F1FF4E;
  padding: 10px 0 0;
  width: 100%;
  text-align: center;
  height: 80px; }
  @media (min-width: 768px) {
    #you-come {
      font-size: 1.0em;
      width: 530px;
      height: 100px;
      padding: 15px 0 0;
      border-top-left-radius: 30px; } }
  #you-come h4 {
    font-size: 0.7em;
    display: inline-block;
    color: #000;
    background-color: #fff;
    padding: 6px 15px;
    border-radius: 20px; }
    @media (min-width: 768px) {
      #you-come h4 {
        font-size: 1.0em; } }
  #you-come ul {
    display: flex; }
    #you-come ul li {
      position: relative; }
      #you-come ul li:first-child {
        width: 67%; }
        @media (min-width: 768px) {
          #you-come ul li:first-child {
            width: 65%; } }
        #you-come ul li:first-child::after {
          position: absolute;
          top: 20%;
          left: 100%;
          margin: 0;
          content: "";
          width: 1px;
          height: 60%;
          background-color: #000; }
          @media (min-width: 768px) {
            #you-come ul li:first-child::after {
              font-size: 1.0em; } }
      #you-come ul li:last-child {
        width: 33%; }
        @media (min-width: 768px) {
          #you-come ul li:last-child {
            width: 35%; } }
      #you-come ul li a {
        color: #000; }
        #you-come ul li a:hover .meeting-btn > img {
          right: 10px; }
          @media (min-width: 768px) {
            #you-come ul li a:hover .meeting-btn > img {
              right: 15px; } }
        #you-come ul li a .meeting-btn {
          display: flex;
          align-items: center;
          padding: 10px; }
          @media (min-width: 768px) {
            #you-come ul li a .meeting-btn {
              padding: 15px; } }
          #you-come ul li a .meeting-btn .txt {
            display: flex;
            align-items: center; }
            #you-come ul li a .meeting-btn .txt h3 {
              font-size: 1.0em; }
              @media (min-width: 768px) {
                #you-come ul li a .meeting-btn .txt h3 {
                  font-size: 1.375em; } }
            #you-come ul li a .meeting-btn .txt h5 {
              font-size: 0.8em;
              font-feature-settings: "palt";
              letter-spacing: 0.04em; }
              @media (min-width: 768px) {
                #you-come ul li a .meeting-btn .txt h5 {
                  font-size: 1.0em; } }
          #you-come ul li a .meeting-btn img {
            width: 26px;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 10px;
            transition: .5s; }
            @media (min-width: 768px) {
              #you-come ul li a .meeting-btn img {
                right: 20px; } }

#you-come.UpMove {
  animation: UpAnime 0.5s forwards; }

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@media (min-width: 768px) {
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px); }
    to {
      opacity: 1;
      transform: translateY(0); } } }
/*　下に下がる動き　*/
#you-come.DownMove {
  animation: DownAnime 0.5s forwards; }

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 1;
    transform: translateY(100px); } }
@media (min-width: 768px) {
  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(0); }
    to {
      opacity: 1;
      transform: translateY(100px); } } }
/*
---------------------------------------------------------------------------------------------------------------------
フッター
---------------------------------------------------------------------------------------------------------------------
*/
#footer {
  padding: 60px 0 0;
  position: relative; }
  @media (min-width: 1024px) {
    #footer {
      padding: 90px 0 0; } }
  #footer .footer-entry {
    background-color: #CB0211;
    max-width: 1200px;
    margin: auto;
    height: 120px;
    width: 90%;
    position: relative;
    border-radius: 10px; }
    @media (min-width: 1024px) {
      #footer .footer-entry {
        height: 190px; } }
    #footer .footer-entry.line {
      background-color: #39ae36; }
    #footer .footer-entry a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; }
      #footer .footer-entry a .txt {
        text-align: center;
        color: #fff; }
        #footer .footer-entry a .txt h3 {
          font-family: "Anton", sans-serif;
          font-weight: 400;
          font-style: normal;
          font-size: 3.25em;
          line-height: 1.0em; }
          @media (min-width: 1024px) {
            #footer .footer-entry a .txt h3 {
              font-size: 6.25em; } }
        #footer .footer-entry a .txt p {
          font-size: 1.0em;
          line-height: 1.2em; }
          @media (min-width: 1024px) {
            #footer .footer-entry a .txt p {
              font-size: 1.25em; } }
      #footer .footer-entry a img {
        width: 35px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 25px;
        margin: auto;
        transition: .5s; }
        @media (min-width: 1024px) {
          #footer .footer-entry a img {
            width: 50px; } }
      #footer .footer-entry a:hover img {
        right: 15px; }
  #footer .footer-menu {
    margin: auto;
    margin: 50px 0 0 0; }
    @media (min-width: 768px) {
      #footer .footer-menu {
        max-width: 1200px; } }
    @media (min-width: 1024px) {
      #footer .footer-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 60px auto 30px;
        width: 90%; } }
    #footer .footer-menu .logo {
      margin: 0 auto 10px;
      text-align: center; }
      @media (min-width: 1024px) {
        #footer .footer-menu .logo {
          margin: 0; } }
      #footer .footer-menu .logo img {
        width: 300px; }
        @media (min-width: 1024px) {
          #footer .footer-menu .logo img {
            width: 330px; } }
    #footer .footer-menu .logo-copy ul {
      display: flex;
      justify-content: center; }
      @media (min-width: 1024px) {
        #footer .footer-menu .logo-copy ul {
          justify-content: flex-end;
          margin-bottom: 5px; } }
      #footer .footer-menu .logo-copy ul .line {
        display: none; }
        @media (min-width: 1024px) {
          #footer .footer-menu .logo-copy ul .line {
            display: block; } }
      #footer .footer-menu .logo-copy ul li {
        margin-bottom: 5px; }
        #footer .footer-menu .logo-copy ul li a {
          font-size: 0.8em;
          line-height: 1.2em;
          position: relative;
          color: #fff; }
          @media (min-width: 1024px) {
            #footer .footer-menu .logo-copy ul li a {
              font-size: 0.9em; } }
          #footer .footer-menu .logo-copy ul li a::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 .footer-menu .logo-copy ul li a:hover::after {
            transform-origin: left top;
            transform: scale(1, 1); }
          #footer .footer-menu .logo-copy ul li a img {
            width: 10px;
            margin: 0 0 5px 2px; }
    #footer .footer-menu .logo-copy p {
      font-size: 0.7em;
      line-height: 1.2em;
      text-align: center;
      margin-top: 15px; }
      @media (min-width: 1024px) {
        #footer .footer-menu .logo-copy p {
          font-size: 0.8em;
          text-align: left;
          margin: 0 0 0 20px; } }
