<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
.ec_header {
  border-bottom: solid 1px #ebe9e3;
  width: 100%;
  min-width: 1200px;
}

.ec_header_inner {
  width: 1200px;
  height: 125px;
  margin: 0 auto;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_logo {
  width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_logo a {
  display: block;
}

.header_logo img {
  width: 250px;
  display: block;
}

.link_btn {
  width: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.link_btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  color: #555555;
  text-decoration: none;
}

.link_btn a img {
  display: block;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}

.home_link img {
  width: 40px;
}

.back_link img {
  width: 37px;
}

.link_btn a span {
  display: block;
  font-size: 11px;
}

@media screen and (max-width: 991px) {
  .ec_header {
    min-width: auto;
  }
  .ec_header_inner {
    width: 80%;
    height: auto;
    padding: 10px 0;
  }
  .header_logo {
    width: 50%;
  }
  .link_btn {
    width: 88px;
  }
  .link_btn a {
    width: 44px;
    height: 50px;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .link_btn a span {
    display: none;
  }
  .home_link img {
    width: 28px;
  }
  .back_link img {
    width: 26px;
  }
}

/**トップへ戻るボタン**/
.gotop_btn {
  position: fixed;
  z-index: 9998;
  bottom: 40px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ebe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /*box-shadow: 0 1px 3px rgba(0,0,0,0.3);*/
  opacity: 0;
}

.gotop_btn img {
  width: 66%;
  height: 66%;
}

.gotop_btn.fadein {
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

@media screen and (max-width: 640px) {
  .ec_header_inner {
    width: 100%;
    padding: 0 15px;
  }

  /**トップへ戻るボタン**/
	.gotop_btn{
		width: 48px;
		height: 48px;
		bottom: 10px;
		right: 10px;
	}
}
</pre></body></html>