@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------------------------------------------------------
*/
#header {
  position: fixed;
  z-index: 100;
  height: 0;
  top: 0; }
  #header .header-tilte {
    margin-top: 20px; }
    @media (min-width: 1024px) {
      #header .header-tilte {
        display: flex; } }
    #header .header-tilte .header-logo {
      margin-left: 10px; }
      #header .header-tilte .header-logo a {
        display: flex;
        align-items: center;
        height: 100%; }
        #header .header-tilte .header-logo a img {
          width: 130px;
          margin-right: 5px; }
          @media (min-width: 768px) {
            #header .header-tilte .header-logo a img {
              width: 150px;
              margin-right: 10px; } }
          @media (min-width: 1250px) {
            #header .header-tilte .header-logo a img {
              width: 220px; } }
    #header .header-tilte .pc-menu {
      display: none; }
      @media (min-width: 1250px) {
        #header .header-tilte .pc-menu {
          background-color: #BC1B21;
          height: 50px;
          display: flex;
          width: calc(100% - 370px); } }
      #header .header-tilte .pc-menu ul {
        display: flex;
        align-items: center;
        padding-left: 20px; }
        #header .header-tilte .pc-menu ul li {
          margin-right: 20px; }
          #header .header-tilte .pc-menu ul li:last-child {
            margin-right: 0; }
          #header .header-tilte .pc-menu ul li a {
            font-size: 0.85em;
            font-weight: 700;
            color: #fff; }
            #header .header-tilte .pc-menu ul li a span {
              display: inline-block; }
            #header .header-tilte .pc-menu ul li a:hover span {
              transform: rotateY(360deg);
              transition: .6s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(1) {
                transition-delay: .02s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(2) {
                transition-delay: .04s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(3) {
                transition-delay: .06s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(4) {
                transition-delay: .08s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(5) {
                transition-delay: .10s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(6) {
                transition-delay: .12s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(7) {
                transition-delay: .14s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(8) {
                transition-delay: .16s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(9) {
                transition-delay: .18s; }
              #header .header-tilte .pc-menu ul li a:hover span:nth-of-type(10) {
                transition-delay: .20s; }
      #header .header-tilte .pc-menu .common-btn-type2 {
        display: flex;
        margin-left: auto;
        padding-right: 10px; }
        #header .header-tilte .pc-menu .common-btn-type2 a p {
          font-size: 0.75em; }
  #header .copy {
    margin: 10px 0 0 10px; }
    #header .copy h3 {
      font-size: 0.6em;
      font-weight: 900;
      color: #BC1B21; }
      @media (min-width: 1024px) {
        #header .copy h3 {
          font-size: 1.0em; } }
  #header .openbtn {
    cursor: pointer;
    background-color: #BC1B21;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 100px;
    z-index: 1000;
    /*activeクラスが付与されると線が回転して×に*/ }
    @media (min-width: 768px) {
      #header .openbtn {
        top: 20px;
        right: 20px;
        width: 90px;
        height: 220px; } }
    #header .openbtn span {
      display: inline-block;
      transition: all .4s;
      /*アニメーションの設定*/
      position: absolute;
      left: 16px;
      height: 2px;
      background: #fff;
      width: 28px; }
      @media (min-width: 768px) {
        #header .openbtn span {
          left: 26px;
          width: 38px; } }
      #header .openbtn span:nth-child(1) {
        top: 30px; }
        @media (min-width: 768px) {
          #header .openbtn span:nth-child(1) {
            top: 86px; } }
      #header .openbtn span:nth-child(2) {
        top: 39px; }
        @media (min-width: 768px) {
          #header .openbtn span:nth-child(2) {
            top: 95px; } }
      #header .openbtn span:nth-child(3) {
        top: 48px; }
        @media (min-width: 768px) {
          #header .openbtn span:nth-child(3) {
            top: 104px; } }
      #header .openbtn span:nth-of-type(3)::after {
        content: "MENU";
        position: absolute;
        top: 4px;
        left: -1px;
        color: #fff;
        font-size: 0.85em;
        text-transform: uppercase;
        font-family: "Anton", sans-serif;
        font-weight: 400;
        font-style: normal; }
        @media (min-width: 768px) {
          #header .openbtn span:nth-of-type(3)::after {
            font-size: 1.125em; } }
    #header .openbtn.active span:nth-of-type(1) {
      top: 30px;
      transform: translateY(6px) rotate(-45deg); }
      @media (min-width: 768px) {
        #header .openbtn.active span:nth-of-type(1) {
          top: 92px; } }
    #header .openbtn.active span:nth-of-type(2) {
      opacity: 0; }
    #header .openbtn.active span:nth-of-type(3) {
      top: 42px;
      transform: translateY(-6px) rotate(45deg); }
      @media (min-width: 768px) {
        #header .openbtn.active span:nth-of-type(3) {
          top: 104px; } }
    #header .openbtn.active span:nth-of-type(3)::after {
      content: "CLOSE";
      transform: translateY(0) rotate(-45deg);
      top: 7px;
      left: 14px; }
      @media (min-width: 768px) {
        #header .openbtn.active span:nth-of-type(3)::after {
          top: 8px;
          left: 18px; } }

#footer {
  position: relative;
  padding: 40px 0 60px;
  width: 100%; }
  @media (min-width: 768px) {
    #footer {
      padding: 40px 0 0; } }
  @media (min-width: 1024px) {
    #footer {
      padding: 100px 0 0; } }
  #footer .footer-in .footer-logo {
    width: 200px;
    margin: auto; }
    @media (min-width: 1024px) {
      #footer .footer-in .footer-logo {
        width: 250px; } }
  #footer .footer-in .common-btn-type2 {
    display: flex;
    justify-content: center;
    margin-top: 60px; }
  #footer .footer-in .copy {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center; }
    #footer .footer-in .copy p {
      font-size: 0.8em;
      font-weight: 700; }

/*
---------------------------------------------------------------------------------------------------------------------
404
---------------------------------------------------------------------------------------------------------------------
*/
.post404 {
  text-align: center;
  height: 100vh;
  background-color: #fff; }
  .post404 .post404In {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }
    .post404 .post404In .post404Text {
      width: 90%;
      margin: 40px auto 0; }
      @media (min-width: 768px) {
        .post404 .post404In .post404Text {
          margin: 100px auto 0; } }
      .post404 .post404In .post404Text img {
        max-width: 350px;
        width: 70%;
        height: auto; }
      .post404 .post404In .post404Text h1 {
        color: #BC1B21;
        font-size: 1.35em;
        font-feature-settings: "palt";
        letter-spacing: 0.04em;
        margin-top: 10px; }
        @media (min-width: 768px) {
          .post404 .post404In .post404Text h1 {
            font-size: 1.5em;
            margin-top: 20px; } }
      .post404 .post404In .post404Text h6 {
        color: #BC1B21;
        font-size: 0.9em;
        font-feature-settings: "palt";
        letter-spacing: 0.04em;
        margin-top: 20px; }
        @media (min-width: 768px) {
          .post404 .post404In .post404Text h6 {
            font-size: 1.0em; } }
