@charset "UTF-8";


section {
  position: relative;
}

section#entry .cta_button {
  width: 82%;
  height: 64px;
  -webkit-transition: all .15s;
  transition: all .15s;
  transition: opacity .1s, transform .1s;
  margin: auto;

  &:hover {
    opacity: .9;
  }

  &:active {
    transform: scale(.9);
  }
}

section#entry .cta_button {
  position: absolute;
  top: 30%;
  right: 0;
  left: 0;
}

section#block .wrap {
  position: absolute;
  top: 19%;
  right: 0;
  left: 0;
  gap: 24px;
}

section#block .link_button {
  width: 82%;
  -webkit-transition: all .15s;
  transition: all .15s;
  transition: opacity .1s, transform .1s;
  margin: auto;

  &:hover {
    opacity: .9;
  }

  &:active {
    transform: scale(.9);
  }
}


@media screen and (min-width: 600px) {

  main {
    width: 440px;
    margin: 0 auto 72px;
  }

  #navigation .cta_button {
    width: 440px !important;
  }
}


/*---------------------------------------------------------------*\
$header 
\*---------------------------------------------------------------*/

header {
  width: 100%;
  padding: 0 20px;
  height: 72px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 5;
}

/* logo */
header .logo_header {
  width: 140px;
}

/* PC main menu */
header .main_menu_pc {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .main_menu_pc li a {
  font-size: 15px;
  position: relative;
}

/* contact */
header .main_menu_pc .contact {
  width: 200px;
  height: 48px;
}

header .main_menu_pc .contact a {
  width: 100%;
  height: 100%;
  font-size: 14px;
  -webkit-transition: all .15s;
  transition: all .15s;
  transition: opacity .1s, transform .1s;

  &:hover {
    opacity: .9;
  }

  &:active {
    transform: scale(.9);
  }
}


@media screen and (max-width: 600px) {

  header {
    height: 56px;
    padding: 0 8px 0 16px;
  }

  header .logo_header {
    width: 120px;
  }

  header .main_menu_pc .contact {
    width: 110px;
    height: 38px;
  }

  header .main_menu_pc .contact a {
    font-size: 11px;
  }
}


/*---------------------------------------------------------------*\
$navigation
\*---------------------------------------------------------------*/

#navigation {
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, .8);
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 72px;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
  gap: 10px;
}

#navigation .buttons {
  gap: 12px;
}

#navigation .cta_button {
  width: 92%;
  height: 50px;
  margin: 0 auto;
  font-size: 14px;
  -webkit-transition: all .15s;
  transition: all .15s;
  transition: opacity .1s, transform .1s;

  &:hover {
    opacity: .9;
  }

  &:active {
    transform: scale(.9);
  }
}


@media screen and (max-width: 600px) {

  #navigation .cta_button {

    &:hover {
      opacity: 1;
    }

    &:active {
      transform: scale(1);
    }
  }
}


/*---------------------------------------------------------------*\
$firstview
\*---------------------------------------------------------------*/

#firstview {
  margin: 72px 0 0 0;
}


@media screen and (max-width: 600px) {

  #firstview {
    margin: 56px 0 0 0;
  }
}


/*---------------------------------------------------------------*\
$footer 
\*---------------------------------------------------------------*/

footer {
  padding: 24px 0;
}

footer .copyright {
  font-size: 12px;
}


@media screen and (max-width: 600px) {

  footer .copyright {
    font-size: 10px;
  }
}