@charset "UTF-8";
/* CSS Document */
main {
  overflow: hidden;
  scroll-padding-top: 100px;
  padding-top: 80px; }
  @media screen and (max-width: 767px) {
    main {
      margin-top: 70px; } }

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

.color-blue {
  color: #50beff; }

header {
  background-color: transparent;
  transition: background-color .5s, color .5s; }

.site-header {
  overflow: visible; }
  .site-header .header-flex {
    position: fixed;
    max-width: 100%;
    width: 100%;
    height: 80px;
    z-index: 999;
    background-color: transparent;
    transition: background-color .5s, color .5s;
    display: flex !important;
    justify-content: space-between;
    align-items: center; }
    .site-header .header-flex .logo {
      margin-left: 3rem; }
      .site-header .header-flex .logo img {
        width: 200px; }
    .site-header .header-flex .header-inner {
      display: flex;
      justify-content: flex-end; }
      .site-header .header-flex .header-inner ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 80px;
        text-align: right;
        padding-right: 3rem;
        margin: 0; }
        .site-header .header-flex .header-inner ul li {
          display: inline-block;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: bold;
          padding-left: 3rem; }
          @media screen and (max-width: 991px) {
            .site-header .header-flex .header-inner ul li {
              padding-left: 2rem; } }
          .site-header .header-flex .header-inner ul li a {
            display: block;
            color: #505050;
            transition: 0.3s; }
            .site-header .header-flex .header-inner ul li a:hover {
              color: #1ec3ff; }
      .site-header .header-flex .header-inner .contact a {
        background-color: #50beff;
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transition: 0.3s; }
        .site-header .header-flex .header-inner .contact a::before {
          content: "";
          background-image: url("../img/contact-white.svg");
          height: 24px;
          width: 35.6px;
          margin: auto; }
        .site-header .header-flex .header-inner .contact a:hover {
          background-color: #505050; }
    @media screen and (max-width: 767px) {
      .site-header .header-flex {
        display: none !important; } }

/* headerの色を変える */
.header-flex.change-color {
  background: #fff !important; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 999; }
  .header .logo {
    display: flex; }
    .header .logo a img {
      width: 155px; }
      .header .logo a img:hover {
        opacity: 0.5; }
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem; }

.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: #505050;
    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: #e5f5ff;
    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: #505050;
        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: #50beff; }
      .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; }

.site-footer {
  background-color: #505050;
  padding-top: 7rem; }
  @media screen and (max-width: 575px) {
    .site-footer {
      padding-top: 5rem; } }
  .site-footer .footer-flex {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 4rem; }
    @media screen and (max-width: 767px) {
      .site-footer .footer-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem; } }
    .site-footer .footer-flex .footer-left a {
      display: block;
      width: 275px;
      margin-bottom: 3.4rem; }
      @media screen and (max-width: 575px) {
        .site-footer .footer-flex .footer-left a {
          margin-bottom: 3rem; } }
    .site-footer .footer-flex .footer-left p {
      color: #fff;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.5; }
      @media screen and (max-width: 767px) {
        .site-footer .footer-flex .footer-left p {
          margin-bottom: 2rem; } }
      .site-footer .footer-flex .footer-left p a {
        color: #fff;
        margin-bottom: 0; }
    .site-footer .footer-flex .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end; }
      @media screen and (max-width: 767px) {
        .site-footer .footer-flex .footer-right {
          align-items: center; } }
      .site-footer .footer-flex .footer-right .contact-button a {
        background-color: #50beff;
        display: inline-block;
        color: #fff;
        transition: 0.2s;
        border-radius: 5px;
        padding: 1rem 7rem;
        margin-bottom: 2rem; }
        .site-footer .footer-flex .footer-right .contact-button a:hover {
          color: #50beff;
          background-color: #fff; }
      .site-footer .footer-flex .footer-right ul {
        display: flex; }
        @media screen and (max-width: 575px) {
          .site-footer .footer-flex .footer-right ul {
            flex-direction: column; } }
        .site-footer .footer-flex .footer-right ul li {
          margin-left: 2em; }
          @media screen and (max-width: 991px) {
            .site-footer .footer-flex .footer-right ul li {
              margin-left: 1.2em; } }
          @media screen and (max-width: 767px) {
            .site-footer .footer-flex .footer-right ul li {
              margin-left: 2em; } }
          @media screen and (max-width: 575px) {
            .site-footer .footer-flex .footer-right ul li {
              margin-left: 0; } }
          .site-footer .footer-flex .footer-right ul li a {
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            transition: 0.2s; }
            .site-footer .footer-flex .footer-right ul li a:hover {
              color: #50beff; }
  .site-footer .copyright {
    color: #fff;
    text-align: left;
    padding-bottom: 1.5rem;
    font-size: 12px;
    font-size: 1.2rem; }
    @media screen and (max-width: 767px) {
      .site-footer .copyright {
        text-align: center; } }

h4 {
  font-size: 30px;
  font-size: 3rem;
  color: #50beff;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 7.6rem; }
  @media screen and (max-width: 1199px) {
    h4 {
      margin-bottom: 5rem; } }
  @media screen and (max-width: 767px) {
    h4 {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 767px) {
    h4 {
      letter-spacing: 0.2rem;
      font-size: 27px;
      font-size: 2.7rem; } }
  h4 span {
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 00; }

/* トップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  margin-bottom: 0; }
  #page-top a {
    width: 56px;
    display: block;
    transition: 0.3s; }
  #page-top a:hover {
    transform: scale(1.1); }
