@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  /*フォントのベース*/ }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3C3C3C;
  font-size: 1.6rem;
  /*フォントのベース*/
  line-height: 1.6em;
  /*行間のベース*/ }

a {
  color: #BFDF51;
  text-decoration: none; }

a:hover {
  color: #cfe77c;
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #BFDF51;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s; }
  .back-to-top i {
    font-size: 2.8rem;
    color: #fff;
    line-height: 0; }
  .back-to-top:hover {
    background: #cce573;
    color: #fff; }
  .back-to-top.active {
    visibility: visible;
    opacity: 1; }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important; } }
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: white;
  padding: 10px 0;
  font-size: 1.4rem; }
  #topbar .contact-info i {
    font-style: normal;
    color: #D4FF76; }
    #topbar .contact-info i a,
    #topbar .contact-info i span {
      padding-left: 5px;
      color: #BFDF51; }
    #topbar .contact-info i a {
      line-height: 0;
      transition: 0.3s; }
      #topbar .contact-info i a:hover {
        color: #D4FF76; }
  #topbar .social-links a {
    color: #dfefa7;
    line-height: 0;
    transition: 0.3s;
    margin-left: 15px; }
    #topbar .social-links a:hover {
      color: #D4FF76; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff; }
  #header.fixed-top {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1); }
  #header .logo {
    display: flex;
    justify-content: center; }
    #header .logo h1 {
      font-size: 2.6rem;
      margin: 0;
      padding: 10px 0;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: "M PLUS Rounded 1c", serif; }
      #header .logo h1 span {
        font-size: 3.4rem;
        font-weight: 900; }
    #header .logo h1 a,
    #header .logo h1 a:hover {
      color: #BFDF51;
      text-decoration: none; }
    #header .logo img {
      padding: 0;
      margin: 0;
      max-height: 40px; }

.scrolled-offset {
  margin-top: 70px; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.dummy-box {
  width: 30px; }

.navbar {
  padding: 0; }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center; }
  .navbar li {
    position: relative; }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-size: 1.3rem;
    color: #dfefa7;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s; }
    .navbar a i,
    .navbar a:focus i {
      font-size: 1.2rem;
      line-height: 0;
      margin-left: 5px; }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #D4FF76; }
  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #D4FF76;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff; }
    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
      color: #fff;
      background: #dcff90; }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s; }
    .navbar .dropdown ul li {
      min-width: 200px; }
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 1.3rem;
      text-transform: none;
      font-weight: 500;
      color: #97dc00; }
      .navbar .dropdown ul a i {
        font-size: 1.2rem; }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
      color: #D4FF76; }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible; }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden; }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible; }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%; }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%; } }

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
  display: none;
  padding: 0.1em;
  line-height: 0;
  background: #BFDF51;
  transition: 0.5s; }
  .mobile-nav-toggle.bi-x {
    color: #fff; }

.mobile-nav-toggle {
  display: block; }

.navbar ul {
  display: none; }

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(174, 214, 39, 0.9);
  transition: 0.3s;
  z-index: 999; }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px; }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .navbar-mobile ul {
        width: 700px; } }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: #97dc00; }
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #D4FF76; }
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px; }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); }
    .navbar-mobile .dropdown ul li {
      min-width: 200px; }
    .navbar-mobile .dropdown ul a {
      padding: 10px 20px; }
      .navbar-mobile .dropdown ul a i {
        font-size: 1.2rem; }
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover > a {
      color: #D4FF76; }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  position: relative;
  padding: 0; }
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }
  #hero .carousel-item {
    display: flex;
    align-items: center; }
  #hero .carousel-container {
    background: linear-gradient(to right, rgba(191, 223, 81, 0), rgba(191, 223, 81, 0.9) 50%, rgba(191, 223, 81, 0));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%; }
  #hero .carousel-content {
    padding: 20px 0;
    color: #fff;
    text-align: center;
    animation-duration: .5s;
    width: 100%; }
    #hero .carousel-content .catch_en {
      font-family: "M PLUS Rounded 1c", serif;
      font-size: 1.2rem;
      line-height: 1em;
      padding: 0; }
    #hero .carousel-content h2 {
      color: #fff;
      font-size: 3.8rem;
      font-weight: 500;
      line-height: 1em;
      padding: 0 0 10px;
      font-family: "Noto Sans JP", sans-serif; }
    #hero .carousel-content .catch_jp {
      font-size: 1.4rem;
      line-height: 1em;
      padding: 0; }
  #hero .carousel-inner .carousel-item {
    transition-property: opacity; }
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0; }
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s; }
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0); }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 10%; }
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 4.8rem;
    line-height: 1;
    width: auto;
    height: auto; }
  #hero .carousel-indicators li {
    cursor: pointer;
    display: none; }
  @media (min-width: 1024px) {
    #hero .carousel-content {
      width: 60%; }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
      width: 5%; } }
  @media (max-width: 992px) {
    #hero {
      height: calc(100vh - 70px); }
      #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 2.2rem; }
      #hero .carousel-content p {
        font-size: 1.5rem; } }
  @media (max-height: 500px) {
    #hero {
      height: 120vh; } }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden; }

.section-bg {
  background-color: white; }

.section-title {
  padding-bottom: 30px;
  text-align: center; }
  .section-title h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #dfefa7; }
    .section-title h2 strong {
      font-weight: 700;
      font-family: "M PLUS Rounded 1c", serif; }
  .section-title p {
    margin-bottom: 0; }

.link_btn {
  font-size: 2rem;
  display: inline-block;
  background-color: #fff;
  padding: 0.6em 1em;
  color: #BFDF51;
  border: solid 2px #BFDF51;
  border-radius: 1.5em;
  transition: 0.3s; }
  .link_btn:hover {
    background: #BFDF51;
    color: #fff;
    border: solid 2px #fff; }

.bg_color {
  background-color: #D4FF76; }

.page_catch {
  padding: 60px 0 0;
  text-align: center; }
  .page_catch h2 {
    padding: .6em 0;
    border-top: solid 2px #BFDF51;
    border-bottom: solid 2px #BFDF51;
    display: inline-block;
    color: #3C3C3C;
    font-size: 2rem; }

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
  background: url("../img/border_bg.gif") top left repeat;
  min-height: 40px; }
  .breadcrumbs h2 {
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 4rem;
    font-weight: 700;
    color: #3C3C3C; }
    .breadcrumbs h2 span {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.6rem;
      font-weight: 400; }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white; }
    .breadcrumbs ol a {
      color: #f4ffdc; }
    .breadcrumbs ol li + li {
      padding-left: 10px; }
    .breadcrumbs ol li + li::before {
      display: inline-block;
      padding-right: 10px;
      color: white;
      content: "/"; }
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important; }
    .breadcrumbs ol {
      display: block; }
      .breadcrumbs ol li {
        display: inline-block; } }

/*--------------------------------------------------------------
# Top
--------------------------------------------------------------*/
.top_sec01 {
  padding: 28px 0 20px;
  background-color: #D4FF76; }
  .top_sec01 h3 {
    font-size: 3rem;
    font-weight: 800;
    font-family: "M PLUS Rounded 1c", serif; }
  .top_sec01 p {
    font-size: 1.8rem; }

.top_sec02 {
  background-image: url(../img/top/fukidashi.png);
  background-repeat: no-repeat;
  background-position: 10% -3px; }
  @media (min-width: 992px) {
    .top_sec02 {
      background-position: 20% -3px; } }
  .top_sec02 dl {
    width: 100%; }
    .top_sec02 dl dt h3 {
      font-size: 2rem;
      font-weight: 700; }
      .top_sec02 dl dt h3 span {
        color: #BFDF51; }

.top_sec03 {
  background: url("../img/border_bg.gif") top left repeat; }
  .top_sec03 .section-title h2 {
    color: #3C3C3C; }
    .top_sec03 .section-title h2 strong {
      font-weight: 700; }
    .top_sec03 .section-title h2 span {
      display: block;
      font-size: 1.6rem; }
  .top_sec03 .section-title p {
    background-color: #fff;
    display: inline-block;
    padding: 0.3em 0.8em; }
  .top_sec03 .b_list {
    background-color: #fff;
    padding: 8px; }
    .top_sec03 .b_list h3 {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      padding: 14px 10px 6px;
      text-align: center; }
      .top_sec03 .b_list h3 span {
        color: #BFDF51; }
    .top_sec03 .b_list p {
      padding: 0 10px; }

.top_sec04 .section-title h2 {
  color: #BFDF51; }
  .top_sec04 .section-title h2 strong {
    font-weight: 700; }
  .top_sec04 .section-title h2 span {
    color: #3C3C3C;
    display: block;
    font-size: 1.6rem; }
.top_sec04 table {
  border-collapse: collapse; }
  .top_sec04 table th,
  .top_sec04 table td {
    border: solid 1px #ccc;
    white-space: nowrap;
    padding-top: 12px;
    padding-right: 15px;
    padding-bottom: 12px;
    padding-left: 15px;
    background-color: #FFF;
    text-align: center; }
.top_sec04 .map_canvas {
  position: relative;
  padding: 0 0 56%;
  height: 0;
  overflow: hidden; }
  .top_sec04 .map_canvas iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }

/*--------------------------------------------------------------
# Business
--------------------------------------------------------------*/
.business_sec .disc_box {
  width: 100%;
  margin: 0 0 1em; }
  @media (min-width: 992px) {
    .business_sec .disc_box {
      width: 49%;
      margin: 0; } }
  .business_sec .disc_box ol {
    /* デフォルトのリストマークを非表示 */
    list-style: none;
    counter-reset: numlist;
    padding: 0; }
    .business_sec .disc_box ol li {
      padding: .3em 0; }
      .business_sec .disc_box ol li::before {
        counter-increment: numlist;
        content: counter(numlist);
        font-size: 1.4rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        vertical-align: baseline;
        width: 1.4em;
        height: 1.4em;
        background-color: #BFDF51;
        color: white;
        border-radius: 100%;
        margin-right: 4px; }
  .business_sec .disc_box div {
    width: 100%;
    height: 100%;
    background-color: #fff; }
    .business_sec .disc_box div h3 {
      font-size: 2.4rem;
      font-weight: 700;
      padding: 0 0 .8em;
      border-bottom: solid 1px #BFDF51; }
      .business_sec .disc_box div h3 span {
        color: #BFDF51; }
    .business_sec .disc_box div h4 {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.4em;
      padding: .8em 0 .8em;
      border-bottom: solid 1px #BFDF51;
      color: #3C3C3C; }
    .business_sec .disc_box div p {
      font-size: 1.4rem;
      padding: .8em 0 0; }
  .business_sec .disc_box .white_box {
    background-color: #D4FF76; }
    .business_sec .disc_box .white_box h3 {
      color: #3C3C3C;
      border-bottom: solid 1px #3C3C3C; }
      .business_sec .disc_box .white_box h3 span {
        color: #3C3C3C; }
    .business_sec .disc_box .white_box h4 {
      border-bottom: solid 1px #3C3C3C;
      color: #3C3C3C; }
    .business_sec .disc_box .white_box p {
      color: #3C3C3C; }
    .business_sec .disc_box .white_box .red_txt {
      color: #D31A1A;
      padding: 0;
      margin: 0; }
    .business_sec .disc_box .white_box ul {
      list-style: none;
      padding: 0; }
      .business_sec .disc_box .white_box ul li {
        padding: 6px 0; }
        .business_sec .disc_box .white_box ul li .btn {
          font-size: 1.6rem; }
.business_sec .image_box {
  width: 100%; }
  @media (min-width: 992px) {
    .business_sec .image_box {
      width: 49%; } }
.business_sec .box_bg div {
  background-color: #f3f3f3; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact_sec_01 .address {
  list-style: none;
  padding: 0; }
  .contact_sec_01 .address li {
    margin-top: 10px; }
    .contact_sec_01 .address li span {
      display: block;
      width: 6em; }
    .contact_sec_01 .address li .w_8m {
      width: 7.2em; }
      @media (min-width: 1200px) {
        .contact_sec_01 .address li .w_8m {
          width: 8em; } }
      @media (min-width: 1400px) {
        .contact_sec_01 .address li .w_8m {
          width: 7.6em; } }
.contact_sec_01 .form-control {
  font-size: 1.6rem; }
.contact_sec_01 .form-group a {
  color: #3C3C3C;
  border-bottom: dotted 1px #3C3C3C; }
  .contact_sec_01 .form-group a:hover {
    color: #BFDF51; }

.thanks_sec_01 p {
  font-size: 1.8rem; }

/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
.privacy_sec_01 {
  padding-bottom: 0; }

.privacy_sec_02 {
  padding-top: 20px; }
  .privacy_sec_02 h3 {
    color: #BFDF51;
    font-size: 2.2rem;
    font-weight: 700;
    border-bottom: solid 2px #BFDF51;
    padding-bottom: 5px;
    margin-bottom: 8px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #3C3C3C;
  font-size: 1.6rem;
  box-shadow: 0px 2px 15px rgba(191, 223, 81, 0.08); }
  #footer .footer-top {
    padding: 40px 0;
    background: url("../img/border_bg_02.gif") top left repeat; }
    #footer .footer-top .box_left {
      text-align: center;
      padding: 1.5em 0 0; }
      #footer .footer-top .box_left h3 {
        color: #BFDF51;
        font-size: 3.8rem;
        margin: 0 0 10px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700; }
        #footer .footer-top .box_left h3 span {
          color: #3C3C3C;
          font-size: 1.6rem;
          font-weight: 400;
          display: block;
          padding: 5px; }
      #footer .footer-top .box_left p {
        font-size: 1.4rem;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "M PLUS Rounded 1c", serif;
        color: #6f6f6f;
        font-weight: 600; }
        @media (max-width: 991px) {
          #footer .footer-top .box_left p .sp_disp_none {
            display: none; } }
        @media (min-width: 992px) {
          #footer .footer-top .box_left p .pc_disp_none {
            display: none; } }
    #footer .footer-top .box_center {
      background-color: #fff;
      padding: 2em;
      color: #BFDF51;
      text-align: center; }
      #footer .footer-top .box_center .icon {
        border-radius: 50%;
        border: solid 2px #BFDF51;
        padding: 0.2em 0.35em;
        display: inline-block;
        font-size: 2rem;
        font-weight: 900; }
      #footer .footer-top .box_center h4 {
        font-weight: 700;
        padding-bottom: 5px; }
      #footer .footer-top .box_center .tel {
        font-size: 3rem;
        font-weight: 700; }
        #footer .footer-top .box_center .tel a {
          color: #BFDF51; }
      #footer .footer-top .box_center .time {
        font-size: 1.4rem;
        color: #3C3C3C; }
    #footer .footer-top .box_right {
      background-color: #fff;
      padding: 2em 2em 2.5em;
      color: #BFDF51;
      text-align: center; }
      #footer .footer-top .box_right .icon {
        border-radius: 50%;
        border: solid 2px #BFDF51;
        padding: 0.2em 0.35em;
        display: inline-block;
        font-size: 2rem;
        font-weight: 900; }
      #footer .footer-top .box_right h4 {
        font-weight: 700;
        padding-bottom: 14px; }
      #footer .footer-top .box_right .link_btn {
        color: #fff;
        background: #BFDF51;
        border: solid 2px #BFDF51; }
        #footer .footer-top .box_right .link_btn:hover {
          color: #BFDF51;
          background: #fff;
          border: solid 2px #BFDF51; }
  #footer .footer-bottom {
    background: #D4FF76;
    font-size: 1.4rem;
    padding: 60px 0 20px;
    color: #3C3C3C; }
    #footer .footer-bottom h4 {
      font-size: 1.8rem;
      font-weight: bold;
      color: #3C3C3C;
      position: relative;
      padding-bottom: 12px; }
      #footer .footer-bottom h4 span {
        font-size: 1.4rem;
        display: block;
        font-weight: bold; }
    #footer .footer-bottom .gmap-area {
      margin: 1em 0 2em; }
      @media (min-width: 1200px) {
        #footer .footer-bottom .gmap-area {
          margin-top: -.4em; } }
      #footer .footer-bottom .gmap-area .gmap {
        color: #3C3C3C;
        border: solid 2px #3C3C3C;
        padding: .3em .8em;
        border-radius: 20px;
        font-size: 1.4rem;
        font-weight: 700;
        transition: 0.3s;
        display: inline-block; }
        #footer .footer-bottom .gmap-area .gmap:hover {
          border: solid 2px #7a8793;
          color: #7a8793; }
        @media (max-width: 575px) {
          #footer .footer-bottom .gmap-area .gmap {
            margin: 5px 0 0; } }
    #footer .footer-bottom .footer_link {
      color: #343a40;
      font-weight: 700;
      display: block;
      padding: 0 0 1em;
      transition: 0.3s; }
      #footer .footer-bottom .footer_link span {
        display: block;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1em; }
    #footer .footer-bottom .footer_link:hover {
      color: #7a8793;
      text-decoration: none; }
  #footer .copyright {
    font-size: 1.3rem; }
  #footer .credits {
    padding-top: 5px;
    font-size: 1.3rem;
    color: #3C3C3C; }
