@charset "UTF-8";
/* CSS Document */
.site-header #global-nav {
  padding: 2rem 4rem;
  background-color: #000;
  align-items: center;
  justify-content: space-between; }
  .site-header #global-nav.m_fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999; }
  .site-header #global-nav .header-logo img {
    height: 35px;
    width: auto; }
  .site-header #global-nav ul {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .site-header #global-nav ul li a {
      font-size: 18px;
      font-size: 1.8rem;
      color: #fff;
      transition: 0.3s; }
      @media screen and (max-width: 991px) {
        .site-header #global-nav ul li a {
          font-size: 16px;
          font-size: 1.6rem; } }
      .site-header #global-nav ul li a:hover {
        color: #808080; }
    .site-header #global-nav ul li:first-child a::after {
      content: '｜';
      padding-left: 0.5em;
      padding-right: 0.5em; }
    .site-header #global-nav ul li:first-child a:hover::after {
      color: #fff; }
    .site-header #global-nav ul li:nth-child(2) a {
      margin-right: 1em; }
    .site-header #global-nav ul li:nth-child(3) a, .site-header #global-nav ul li:nth-child(4) a {
      background: #fff;
      padding: 0.5rem 1.5rem;
      margin-right: 0.5em;
      color: #000; }
      .site-header #global-nav ul li:nth-child(3) a:hover, .site-header #global-nav ul li:nth-child(4) a:hover {
        background: #808080;
        color: #fff; }
      .site-header #global-nav ul li:nth-child(3) a::after, .site-header #global-nav ul li:nth-child(4) a::after {
        content: none; }
    .site-header #global-nav ul li:nth-child(5) a {
      display: block;
      width: 50px; }
      .site-header #global-nav ul li:nth-child(5) a:hover {
        opacity: 0.5; }

@media screen and (max-width: 767px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: fixed;
    z-index: 2000;
    transition: 0.3s;
    background: #000; } }
@media screen and (max-width: 767px) {
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem; } }
@media screen and (max-width: 767px) {
  .header .header__inner .logo img {
    width: 250px; } }

.drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%); }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 1rem));
    transition: transform 0.3s ease; }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease; }

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg); }
.drawer__button.active > span:nth-child(2) {
  opacity: 0; }
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg); }

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }
  .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #000;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav .drawer__nav__inner .drawer__nav__menu {
      list-style: none;
      padding-left: 0;
      padding-top: 7.5rem; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
        font-size: 20px;
        font-size: 2rem;
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 2rem;
        border-bottom: solid 1px lightgray;
        transition: 0.3s; }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link:hover {
          background-color: #808080; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child {
        border-bottom: none; }

.drawer__nav.active {
  opacity: 1;
  visibility: visible; }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0); }

body.active {
  height: 100%;
  overflow: hidden; }

@media screen and (max-width: 575px) {
  .instagram-logo {
    width: 35px; } }

footer {
  background: #000;
  color: #fff;
  padding: 8rem 0 4rem 0; }
  @media screen and (max-width: 767px) {
    footer {
      padding: 5rem 0 2rem; } }
  footer .flex-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem; }
    @media screen and (max-width: 767px) {
      footer .flex-container {
        flex-wrap: wrap; } }
    footer .flex-container .footer-about {
      width: 70%; }
      @media screen and (max-width: 767px) {
        footer .flex-container .footer-about {
          width: 100%; } }
      footer .flex-container .footer-about a.footer-logo {
        display: block;
        margin-bottom: 2rem; }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-about a.footer-logo {
            text-align: center; } }
        footer .flex-container .footer-about a.footer-logo img {
          height: 35px;
          width: auto; }
      footer .flex-container .footer-about p {
        line-height: 1.75; }
        footer .flex-container .footer-about p a {
          line-height: 1.75;
          color: #fff;
          font-size: 30px;
          font-size: 3rem;
          font-weight: bold; }
          @media screen and (max-width: 575px) {
            footer .flex-container .footer-about p a {
              font-size: 20px;
              font-size: 2rem; } }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-about p span {
            display: block; } }
      footer .flex-container .footer-about ul {
        display: flex;
        align-items: center;
        margin-top: 2rem; }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-about ul {
            margin-top: 0; } }
        footer .flex-container .footer-about ul li {
          position: relative; }
          footer .flex-container .footer-about ul li a {
            color: #fff;
            font-size: 18px;
            font-size: 1.8rem;
            transition: 0.3s; }
            @media screen and (max-width: 575px) {
              footer .flex-container .footer-about ul li a {
                font-size: 14px;
                font-size: 1.4rem; } }
            footer .flex-container .footer-about ul li a::after {
              content: '｜';
              padding-left: 0.5em;
              padding-right: 0.5em; }
              @media screen and (max-width: 575px) {
                footer .flex-container .footer-about ul li a::after {
                  padding-left: 0.1em;
                  padding-right: 0.1em; } }
            footer .flex-container .footer-about ul li a:hover {
              color: #808080; }
              footer .flex-container .footer-about ul li a:hover::after {
                color: #fff; }
          @media screen and (max-width: 575px) {
            footer .flex-container .footer-about ul li:last-child a img {
              width: 70%; } }
          footer .flex-container .footer-about ul li:last-child a::after {
            content: none; }
          footer .flex-container .footer-about ul li:last-child a:hover {
            opacity: 0.5; }
    footer .flex-container .footer-link {
      width: 30%; }
      @media screen and (max-width: 767px) {
        footer .flex-container .footer-link {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 3rem; } }
      @media screen and (max-width: 575px) {
        footer .flex-container .footer-link {
          margin-top: 1rem; } }
      footer .flex-container .footer-link li {
        text-align: right;
        margin-bottom: 2rem; }
        @media screen and (max-width: 767px) {
          footer .flex-container .footer-link li {
            margin-bottom: 0; } }
        footer .flex-container .footer-link li a {
          display: inline-block;
          background: #fff;
          transition: 0.3s; }
          footer .flex-container .footer-link li a img {
            width: 270px; }
            @media screen and (max-width: 767px) {
              footer .flex-container .footer-link li a img {
                width: 100%; } }
          footer .flex-container .footer-link li a:hover {
            opacity: 0.5; }
        @media screen and (max-width: 767px) {
          footer .flex-container .footer-link li:first-child {
            margin-right: 0.5rem; } }
        @media screen and (max-width: 767px) {
          footer .flex-container .footer-link li:last-child {
            margin-left: 0.5rem; } }
  footer p.copyright {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center; }

section {
  padding: 8rem 0; }
  @media screen and (max-width: 767px) {
    section {
      padding: 5rem 0; } }

.inner {
  width: 85%;
  margin: auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 100%; } }
  @media screen and (max-width: 575px) {
    .inner {
      width: 90%; } }

@media screen and (max-width: 767px) {
  #ul-header {
    margin-top: 60px; } }
@media screen and (max-width: 575px) {
  #ul-header {
    margin-top: 75px; } }
#ul-header h2 {
  font-size: 65px;
  font-size: 6.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  padding: 14rem 0 12rem;
  letter-spacing: 0.2em; }
  @media screen and (max-width: 991px) {
    #ul-header h2 {
      font-size: 55px;
      font-size: 5.5rem;
      padding: 10rem 0 9rem; } }
  @media screen and (max-width: 575px) {
    #ul-header h2 {
      font-size: 40px;
      font-size: 4rem;
      padding: 6rem 0 5rem; } }
  #ul-header h2 span {
    display: block;
    font-size: 20px;
    font-size: 2rem;
    margin-top: 2rem; }
    @media screen and (max-width: 575px) {
      #ul-header h2 span {
        font-size: 18px;
        font-size: 1.8rem;
        margin-top: 1.5rem; } }

.main-midashi {
  font-size: 6.5rem;
  font-size: 65px;
  font-weight: bold;
  letter-spacing: 1px; }
  @media screen and (max-width: 1399px) {
    .main-midashi {
      font-size: 60px;
      font-size: 6rem; } }
  @media screen and (max-width: 1199px) {
    .main-midashi {
      font-size: 55px;
      font-size: 5.5rem; } }
  @media screen and (max-width: 991px) {
    .main-midashi {
      font-size: 50px;
      font-size: 5rem; } }
  @media screen and (max-width: 767px) {
    .main-midashi {
      font-size: 45px;
      font-size: 4.5rem; } }
  @media screen and (max-width: 575px) {
    .main-midashi {
      font-size: 40px;
      font-size: 4rem;
      letter-spacing: 0; } }

.sub-midashi {
  font-size: 50px;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.75; }
  @media screen and (max-width: 1399px) {
    .sub-midashi {
      font-size: 45px;
      font-size: 4.5rem; } }
  @media screen and (max-width: 1199px) {
    .sub-midashi {
      font-size: 40px;
      font-size: 4rem; } }
  @media screen and (max-width: 991px) {
    .sub-midashi {
      font-size: 35px;
      font-size: 3.5rem; } }
  @media screen and (max-width: 767px) {
    .sub-midashi {
      font-size: 30px;
      font-size: 3rem; } }
  @media screen and (max-width: 575px) {
    .sub-midashi {
      font-size: 25px;
      font-size: 2.5rem;
      letter-spacing: 0; } }
  .sub-midashi span {
    font-size: 20px;
    font-size: 2rem;
    margin-left: 0.5em; }
    @media screen and (max-width: 991px) {
      .sub-midashi span {
        font-size: 18px;
        font-size: 1.8rem; } }
    @media screen and (max-width: 575px) {
      .sub-midashi span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0; } }

.link-button {
  font-size: 1.6rem;
  font-size: 16px;
  position: relative;
  display: block;
  width: 360px;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 991px) {
    .link-button {
      width: 320px; } }
  @media screen and (max-width: 767px) {
    .link-button {
      width: 300px; } }
  @media screen and (max-width: 575px) {
    .link-button {
      width: 200px; } }

.link-flat {
  overflow: hidden;
  padding: 1rem 3rem;
  color: #fff;
  background: #000;
  position: relative;
  text-align: left;
  margin: 5rem auto 0; }
  @media screen and (max-width: 767px) {
    .link-flat {
      margin: 3rem auto 0; } }
  .link-flat::after {
    content: '';
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    padding-right: 2rem;
    color: #fff;
    position: absolute;
    right: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .link-flat::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #808080; }
  .link-flat span {
    position: relative; }
  .link-flat:hover {
    background: #808080; }
    .link-flat:hover::before {
      -webkit-transform: translateX(0%);
      transform: translateX(0%); }
    .link-flat:hover::after {
      right: 0; }

#page-top {
  position: fixed;
  right: 0;
  bottom: 15%;
  z-index: 4; }
  @media screen and (max-width: 1399px) {
    #page-top {
      right: -3%; } }
  @media screen and (max-width: 1199px) {
    #page-top {
      right: -5%; } }
  @media screen and (max-width: 991px) {
    #page-top {
      right: -3%;
      bottom: 9%; } }
  @media screen and (max-width: 767px) {
    #page-top {
      display: none !important; } }
  #page-top .arrow-up {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 2rem;
    height: 50px;
    width: 210px;
    font-size: 20px;
    font-size: 2rem;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    line-height: 2rem;
    color: #fff;
    background: #000;
    transition: 0.3s; }
    @media screen and (max-width: 991px) {
      #page-top .arrow-up {
        padding: 0rem 2rem;
        width: 150px;
        font-size: 15px;
        font-size: 1.5rem; } }
    #page-top .arrow-up:hover {
      background: #808080; }
    #page-top .arrow-up::before {
      content: "";
      display: block;
      position: absolute;
      top: 30px;
      left: 20px;
      width: 20px;
      border-top: solid 2px #fff;
      transform: rotate(325deg);
      transform-origin: left top; }
      @media screen and (max-width: 991px) {
        #page-top .arrow-up::before {
          top: 29px;
          left: 19px;
          width: 15px; } }
    #page-top .arrow-up::after {
      content: "";
      display: block;
      position: absolute;
      height: 50px;
      width: 60px;
      top: 60%;
      left: 10%;
      margin: auto;
      border-top: solid 2px #fff; }
      @media screen and (max-width: 991px) {
        #page-top .arrow-up::after {
          height: 40px;
          width: 40px;
          top: 57%;
          left: 13%; } }
