@charset "UTF-8";
header#global_header {
  min-width: 0 !important;
  width: 100%;
}

#contents_wrap {
  min-width: 0 !important;
  width: 100%;
}

#contents {
  width: 100%;
}

#main {
  width: 100%;
}

#main #col_main {
  float: none;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 834px) {
  #main #col_main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

footer#global_footer {
  min-width: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

body *:not(table *, i) {
  /* 
      font-weightは<b>タグが機能しなくなるので指定しない。
      line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
  */
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}

i {
  line-height: 1;
}

img {
  vertical-align: bottom;
}

body a {
  text-decoration: none;
}
body button {
  padding: 0;
  border: none;
  background-color: transparent;
}
body b {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
body span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", sans-serif;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}

.header > img {
  width: 240px;
  padding-left: 15px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #b6b1aa;
  border-radius: 5px;
}

@media screen and (max-width: 1200px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background-color: #ffffff;
    height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    width: 80%;
    transition: transform 0.8s ease;
    z-index: 10;
    position: fixed;
    top: 0;
    right: 100%;
    bottom: 0;
    overflow-x: hidden;
  }
  .nav .nav-link::after {
    display: none;
  }
}

.is-drawerActive .nav {
  transform: translateX(0);
}

.nav-items {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .nav-items {
    display: block;
  }
}

.nav-item {
  display: block;
  line-height: 1.1;
  align-items: center;
  margin-left: 32px;
  margin-right: 32px;
}
@media screen and (max-width: 1200px) {
  .nav-item {
    width: 80%;
    border-bottom: 1px solid #5f5e5e;
    margin-top: 25px;
    padding-bottom: 23px;
    margin-left: auto;
    margin-right: auto;
  }
}

.nav-link:visited {
  color: #333333 !important;
}

.nav-link {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 1200px) {
  .nav-link {
    margin: 0 auto;
  }
}

.nav-link::after {
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffba1d;
  bottom: -6px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

.nav-link:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.nav-link:hover {
  color: #ffba1d;
}

.nav-link {
  color: #626262;
}
@media screen and (max-width: 1200px) {
  .nav-link {
    margin-right: 0;
  }
}

nav ul {
  display: flex;
}

.nav-item-sp {
  width: 45%;
}

.nav-items-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .nav-items-sp {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    justify-content: center;
  }
}

.nav-link-sp1:visited {
  color: #ffffff;
}

.nav-link-sp2:visited {
  color: #ffffff;
}

.nav-link-sp1 {
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #bf0000;
  padding-top: 7px;
  margin-bottom: 12px;
  font-weight: bold;
}

.nav-link-sp2 {
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #dba959;
  padding-top: 7px;
  margin-left: 5px;
  margin-right: 5px;
  align-items: center;
  font-weight: bold;
}

.nav-item-img {
  width: 18px;
}

.contact-link {
  background-color: #626262;
}

.contact {
  padding-right: 15px;
}
@media screen and (max-width: 1200px) {
  .contact {
    display: none;
  }
}

.contact a {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.contact-items {
  display: grid;
  grid-template-columns: 145px 200px;
  gap: 2px 2px;
}

.to-form {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bf0000;
  grid-column: 2/3;
  grid-row: 1/3;
  padding: 12px 5px;
}

.contact span {
  font-size: 16px;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: inline-block;
    position: fixed;
    text-decoration: none;
    border: none;
    background-color: #ffba1d;
    cursor: pointer;
    top: 5px;
    right: 15px;
    width: 49px;
    height: 49px;
    margin: auto;
    border: 1px solid #ffba1d;
    transition: all 0.3s ease-in-out;
  }
}

.hamburger:hover,
.hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}

.hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  transition: inherit;
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: inherit;
}

.hamburger__line::before {
  top: -10px;
}

.hamburger__line::after {
  top: 10px;
}

.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before,
.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background-color: #f9d8ae;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-45deg);
}

.pagetop {
  height: 45px;
  width: 45px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  background: #ffba1d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border: 2px solid #ffffff;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    right: 15px;
    bottom: 50px;
  }
}

.pagetop-arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(20%) rotate(-45deg);
}

footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium";
}

.footer-contact {
  height: 235px;
  background-color: #ffba1d;
}
@media screen and (max-width: 1200px) {
  .footer-contact {
    width: 100vw;
    height: 100%;
    padding-bottom: 40px;
  }
}

.contact-inner {
  width: 820px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .contact-inner {
    width: 100vw;
  }
}

.contact-headline {
  font-size: 30px;
  color: #ffffff;
  padding-top: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .contact-headline {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.tel {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .tel {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

.tel-inner {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .tel-inner {
    justify-content: center;
    padding-bottom: 15px;
  }
}

.telnumver {
  font-size: 36px;
  color: #ffffff;
  margin-right: 40px;
}
@media screen and (max-width: 1200px) {
  .telnumver {
    font-size: 28px;
    justify-content: center;
  }
}

.tel-image {
  width: 33px;
  height: 33px;
  margin-top: 9px;
  margin-right: 15px;
}
@media screen and (max-width: 1200px) {
  .tel-image {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }
}

.contact-box {
  width: 450px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #ffffff;
  color: #ffffff;
  justify-content: center;
  padding-top: 15px;
  position: relative;
  display: block;
}
@media screen and (max-width: 1200px) {
  .contact-box {
    width: 100%;
    padding-bottom: 5px;
  }
}

.contact-box:visited {
  color: #ffffff;
}

.contact-box:hover {
  color: #ffba1d;
  background-color: #ffffff;
}

.contact-box::after {
  content: "";
  display: inline-block;
  margin-left: 3em;
  vertical-align: 1px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  top: 45%;
  right: 25px;
}

.contact-headline::before {
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 30px;
  vertical-align: middle;
  width: 100px;
  background: #ffffff;
}
@media screen and (max-width: 1200px) {
  .contact-headline::before {
    width: 50px;
  }
}

.contact-headline::after {
  content: "";
  display: inline-block;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  width: 100px;
  background: #ffffff;
}
@media screen and (max-width: 1200px) {
  .contact-headline::after {
    width: 50px;
  }
}

.address {
  margin: 0 auto;
  font-size: 14px;
}

.address-wrapper {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .address-wrapper {
    display: block;
    width: 100vw;
  }
}

.footer-logo {
  width: 1000px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .footer-logo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-logo-image {
  width: 315px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: right;
}
.address-main,
.address-tokyo,
.address-kanagawa {
  width: 320px;
  padding: 15px;
  background-color: #eeeeee;
}
@media screen and (max-width: 1200px) {
  .address-main,
  .address-tokyo,
  .address-kanagawa {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 15px;
    width: 80%;
  }
}

.headline {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 3px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .breadcrumbs {
    flex-wrap: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}

.breadcrumbs > a {
  margin-right: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 1200px) {
  .breadcrumbs > a {
    font-size: 16px;
  }
}

.breadcrumbs > a:visited {
  color: #333333;
}

.breadcrumbs > a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.copyright {
  height: 40px;
  padding-top: 12px;
  background-color: #ffba1d;
}

.copyright-inner {
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .copyright-inner {
    font-size: 16px;
  }
}

iframe {
  display: block;
}

.inner-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.greeting-h2,
.new-title {
  font-size: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 640px) {
  .greeting-h2,
  .new-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.greeting-h2 > article > h1::after, .greeting-h2 > article > h2::after,
.new-title > article > h1::after,
.new-title > article > h2::after {
  background: #333333;
  content: "";
  display: inline-block;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  width: 10%;
}
.greeting-h2 > article > h1::before, .greeting-h2 > article > h2::before,
.new-title > article > h1::before,
.new-title > article > h2::before {
  background: #333333;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 30px;
  vertical-align: middle;
  width: 10%;
}

.greeting-content .box > article {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .greeting-content .box > article {
    display: block;
  }
}
.greeting-content .box > article > img {
  width: 32% !important;
  margin-right: 30px;
}
@media screen and (max-width: 834px) {
  .greeting-content .box > article > img {
    display: block;
    width: 100% !important;
    max-width: 400px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }
}
.greeting-content .box > article > h3 {
  display: none;
}
.greeting-content .box > article > div {
  font-size: 18px;
  line-height: 1.3333333333;
}

.greeting-h3 {
  font-size: 30px;
}

.business {
  background-color: #ffba1d;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 60px;
  padding-bottom: 50px;
}

.business-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 834px) {
  .business-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.business-title {
  font-size: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 640px) {
  .business-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.business-title > article > h2 {
  color: #ffffff;
}

.business-title > article > h2::after {
  background: #ffffff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  width: 10%;
}

.business-title > article > h2::before {
  background: #ffffff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 30px;
  vertical-align: middle;
  width: 10%;
}

.business-contents {
  justify-content: center;
}
.business-contents .box {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .business-contents .box {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .business-contents .box {
    width: 100%;
    max-width: 400px;
    margin-right: auto !important;
    margin-left: auto;
    margin-right: 0;
  }
}
.business-contents .box:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .business-contents .box:nth-child(3n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .business-contents .box:nth-child(2n) {
    margin-right: 0;
  }
}
.business-contents .box > article > div {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 1.3333333333;
  margin-top: 20px;
}
.business-contents .box > article > img {
  width: 100% !important;
}
.business-contents .box > article > h3 {
  display: none;
}

.business2 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #ffba1d;
  margin-top: 30px;
  padding-top: 60px;
  padding-bottom: 50px;
}

.business-inner2 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 834px) {
  .business-inner2 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.business-title2 {
  font-size: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 640px) {
  .business-title2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.business-title2 > article > h2 {
  color: #ffffff;
}

.business-title2 > article > h2::before {
  background: #ffffff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 30px;
  vertical-align: middle;
  width: 10%;
}

.business-title2 > article > h2::after {
  background: #ffffff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  width: 10%;
}

.business-contants2 {
  justify-content: center;
}
.business-contants2 .box {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .business-contants2 .box {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .business-contants2 .box {
    width: 100%;
    max-width: 400px;
    margin-right: auto !important;
    margin-left: auto;
    margin-right: 0;
  }
}
.business-contants2 .box:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .business-contants2 .box:nth-child(3n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .business-contants2 .box:nth-child(2n) {
    margin-right: 0;
  }
}
.business-contants2 .box > article > div {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 1.3333333333;
  margin-top: 20px;
}
.business-contants2 .box > article > img {
  width: 100% !important;
}
.business-contants2 .box > article > h3 {
  display: none;
}

.new {
  margin-top: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .new {
    margin-bottom: 100px;
  }
}

.news {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  height: 220px;
  overflow-y: scroll;
}

div.form_wrap.news > dl {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 640px) {
  div.form_wrap.news > dl {
    display: block;
  }
}
div.form_wrap.news dl:last-of-type dt,
div.form_wrap.news dl:last-of-type dd {
  border-bottom: none;
}
div.form_wrap.news dl dt {
  background-color: #ffffff;
  border: none;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  div.form_wrap.news dl dt {
    width: 40% !important;
  }
}
div.form_wrap.news dl dd {
  border: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}
div.form_wrap.news dl {
  border-bottom: 1px dashed #ccc;
}

section {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.eyecatch {
  width: 100vw;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  background: no-repeat;
  background: no-repeat;
  background-size: cover;
  background-position: center;
}

.eyecatch > article > h1 {
  font-size: 36px;
  font-weight: bold;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
  max-width: 1000px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__divide {
  margin-left: 10px;
  margin-right: 10px;
  font-weight: bold;
}

.breadcrumb a:visited {
  color: #333333;
}

.breadcrumb > li:nth-child(1) > a:visited {
  color: #b78720;
}

.title-style1 {
  max-width: 1000px;
  background: rgba(27, 27, 27, 0.07);
  margin: 40px auto 20px;
}

.title-style1 h2 {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 3px 10px 3px 20px;
  position: relative;
}

.title-style1 h2::before {
  content: "";
  position: absolute;
  background: #b10b0f;
  width: 4px;
  height: 80%;
  left: 7px;
  top: 10%;
}

.text1 {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.button-style1 {
  border: 1px solid #ffa72a;
  background-color: #ffffff;
  padding: 15px 0;
  max-width: 300px;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.button-style1::after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.button-style1:visited {
  color: #ffa72a;
}

.title-style2 {
  max-width: 1000px;
  width: 100%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.title-style2 h2 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.title-style2 h2::after {
  position: absolute;
  content: "";
  border-bottom: solid 2px #b10b0f;
  bottom: -2px;
  display: block;
  width: 25%;
  left: 0;
}

.table1 {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.table-title > div {
  font-weight: bold;
}

.bid-style {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  margin-top: 80px;
  margin-bottom: 20px;
}

.table-title2 > div {
  font-weight: bold;
}

.bid-style > article > h2::after {
  position: absolute;
  content: "";
  background: #ccc;
  width: 60px;
  height: 2px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

.table-bid {
  margin-bottom: 80px;
}

table {
  table-layout: auto;
}

.privacy-inner {
  max-width: 1000px;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-inner p {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 30px;
}

.privacy-inner h2 {
  font-weight: bold;
  font-size: 17px;
  border-bottom: 2px solid #BBBBBB;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 5px;
}

.page-404 {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 80px;
}

.page-404 > div {
  font-size: 16px;
}

.page-404 span {
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #ccc;
  display: block;
  padding: 15px;
}

.page-404 span {
  padding: 1rem;
  box-shadow: 5px 5px 0 #ccc;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
}

.button-top {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  position: relative;
}

.button-top > div {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
}

.button-top div > a {
  text-align: center;
  width: 25%;
  border: 1px solid #ccc;
  padding: 15px 25px;
  display: block;
  margin-right: 0;
  margin-left: auto;
  font-weight: bold;
}

.button-top a::after {
  content: "\f35a";
  font-family: FontAwesome;
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.button-top a:hover {
  background-color: #ffba1d;
  color: #ffffff;
  border: 1px solid #ffffff;
}/*# sourceMappingURL=common_style.css.map */