<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(animate.css);
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&amp;amp;display=swap");
/* reset
-------------------------------------------------*/
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

a:link {
  color: #0f0f0f;
}

a:visited {
  color: #0f0f0f;
}

ins {
  color: #000;
  text-decoration: none;
}

mark {
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* common
-------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

#page {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
  font-weight: normal;
}

.txt a {
  text-decoration: underline;
}

/* animation */
.anim {
  width: inherit;
  height: inherit;
  opacity: 0;
  display: block;
}

.mask,
.mask2,
.mask3 {
  -webkit-animation-name: play;
  animation-name: play;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
  z-index: 1;
}

.mask:before,
.mask2:before,
.mask3:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mask:before {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  background-color: #FFF;
}

.mask2:before {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  background-color: #FFF;
}

.mask3:before {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  background-color: #FFF;
}

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*  header  
-------------------------------------------------*/
.header {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

.header_inner {
  position: absolute;
  top: 25%;
  left: 10%;
  z-index: 10;
  overflow: hidden;
}

.header_logo {
  margin-bottom: 50px;
}

.header_logo img {
  width: 795px;
}

.header_lead {
  font-size: 1.4rem;
  line-height: 2.2em;
  font-family: 'Noto Sans', sans-serif;
  z-index: 10;
  overflow: hidden;
  color: #FFF;
  width: 700px;
}

.header_kv {
  margin: 0 auto;
  width: 90vw;
  height: 75vh;
  text-align: center;
  top: 75px;
  left: 50px;
  right: 50px;
  position: absolute;
  z-index: 3;
  background: url(../../img/header_kv.png) no-repeat center top;
  overflow: hidden;
}

.header_left_bg {
  width: 50%;
  height: 80%;
  background-color: #b6111c;
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
}

.header_right_bg {
  width: 50%;
  height: 80%;
  background: url(../../img/header_bg.png) repeat center top;
  z-index: 1;
  top: 20%;
  right: 0;
  position: absolute;
}

.header_tfm {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.header_tfm img {
  width: 110px;
}

.header_biz {
  position: absolute;
  top: 20px;
  left: 160px;
  z-index: 10;
}

.header_biz img {
  width: 150px;
}

.header_txt {
  position: absolute;
  top: 30%;
  left: 2%;
  z-index: 10;
}

.header_per {
  position: absolute;
  bottom: 0;
  right: 15%;
  z-index: 5;
  overflow: hidden;
}

@media screen and (max-width: 899px) {
  .header {
    height: 72vh;
    margin-bottom: 30px;
  }
  .header_tfm {
    top: 10px;
    left: 10px;
  }
  .header_tfm img {
    width: 70px;
  }
  .header_biz {
    top: 5px;
    left: 95px;
  }
  .header_biz img {
    width: 100px;
  }
  .header_inner {
    top: 18%;
    max-width: 520px;
    width: 80%;
  }
  .header_logo {
    margin-bottom: 20px;
  }
  .header_logo img {
    max-width: 90%;
  }
  .header_lead {
    font-size: 1.0rem;
    line-height: 1.6em;
    width: 100%;
  }
  .header_kv {
    width: 90vw;
    top: 45px;
    left: 15px;
    background: url(../../img/header_kv.png) no-repeat left top;
  }
  .header_left_bg {
    width: 70%;
  }
  .header_per {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
  }
  .header_per img {
    width: 70%;
    max-width: 274px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.kv_detail {
  z-index: 10;
  padding-bottom: 50px;
}

.kv_detail ul {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.kv_detail ul li {
  outline: 4px solid #FFF;
  width: 300px;
}

@media screen and (max-width: 899px) {
  .kv_detail {
    z-index: 10;
    padding-bottom: 50px;
  }
  .kv_detail ul {
    margin: 0 auto;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
  }
  .kv_detail ul li {
    outline: 2px solid #FFF;
    width: 50%;
  }
}

/*  interview  
-------------------------------------------------*/
.iv {
  margin: 0 0 50px;
}

.iv_inner {
  margin: 0 auto;
  width: 1000px;
}

.iv_ttl {
  margin: 0 auto;
  padding-bottom: 25px;
  background: url(../../img/ttl_line.png) no-repeat left bottom;
}

.iv_subttl {
  font-weight: 300;
  font-size: 4.0rem;
  line-height: 1.8;
  margin: 10px 0 10px 0;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: 'Noto Sans', sans-serif;
}

.iv_subttl em {
  font-style: normal;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: 'Noto Sans', sans-serif;
  padding-left: 5px;
}

.iv_subttl span {
  font-weight: 300;
  color: #ccc;
  float: right;
  font-size: 5.0rem;
  line-height: 1.4;
  font-family: 'Noto Sans', sans-serif;
}

.iv_secttl {
  font-weight: 300;
  font-size: 2.0rem;
  line-height: 1.8;
  margin: 10px 0 5px 0;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: 'Noto Sans', sans-serif;
}

.iv_name {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.8;
  margin: 15px 0 20px;
  color: #000;
  letter-spacing: 0.3rem;
  font-family: 'Noto Sans', sans-serif;
}

.iv_name em {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: 'Noto Sans', sans-serif;
  padding-left: 15px;
  letter-spacing: 0.1rem;
}

.iv_prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.iv_prof ul {
  max-width: 470px;
  margin-bottom: 0;
  padding: 0;
}

.iv_prof ul li {
  font-size: 1.4rem;
}

.iv_prof ul li:nth-child(1) {
  margin: 0 auto 25px;
}

.iv_prof ul li:nth-child(1) img {
  max-width: 470px;
}

.iv_prof ul li:nth-child(2) {
  font-weight: bold;
  text-indent: -0.5em;
}

.iv_prof ul li:nth-child(3) {
  height: 86px;
  overflow: hidden;
}

.iv_year {
  width: 13%;
}

.iv_txt {
  padding-bottom: 38px;
}

.iv_more {
  display: inline-block;
  padding-right: 10px;
  margin-top: 5px;
  margin-bottom: 30px;
  cursor: pointer;
  float: right;
  line-height: 2.0;
  position: relative;
}

.iv_more::before {
  line-height: 2.0;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
}

.iv_link {
  margin: 25px 0;
}

.iv_link ul {
  margin: 0 auto;
  width: 830px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.iv_link ul li {
  width: 371px;
  text-align: center;
  -webkit-box-shadow: 0 6px 0 0 #ddd;
          box-shadow: 0 6px 0 0 #ddd;
}

.iv_link01 {
  background-color: #b6111c;
  position: relative;
  overflow: hidden;
  border: solid 2px #b6111c;
}

.iv_link01 span {
  padding: 25px 20px;
  display: block;
  color: #FFF;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  background: url(../../img/arrow_w.svg) no-repeat 95% center;
  background-size: 13px 25px;
}

.iv .se {
  margin-top: 35px;
}

.iv_link01 span {
  position: relative;
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
}

.iv_link01:hover span {
  color: #b6111c;
  display: block;
  background: url(../../img/arrow_red.svg) no-repeat 95% center;
  background-size: 13px 25px;
}

.iv_link01:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: .3s;
  transition: .3s;
}

.iv_link01:hover:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.iv_link02 {
  margin: 15px 0;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  border: solid 2px #b6111c;
}

.iv_link02 span {
  padding: 25px 20px;
  display: block;
  color: #b6111c;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  background: url(../../img/arrow_red.svg) no-repeat 95% center;
  background-size: 13px 25px;
}

.iv_link02 span {
  position: relative;
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
}

.iv_link02:hover span {
  color: #FFF;
  display: block;
  background: url(../../img/arrow_w.svg) no-repeat 95% center;
  background-size: 13px 25px;
}

.iv_link02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #b6111c;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: .3s;
  transition: .3s;
}

.iv_link02:hover:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.iv_nolink {
  background-color: #ccc;
  position: relative;
  overflow: hidden;
  border: solid 2px #ccc;
}

.iv_nolink span {
  padding: 25px 20px;
  display: block;
  color: #FFF;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  background: url(../../img/arrow_w.svg) no-repeat 95% center;
  background-size: 13px 25px;
}

@media screen and (max-width: 899px) {
  .iv {
    margin: 0 0 50px;
    padding: 0 15px;
  }
  .iv_inner {
    width: 100%;
  }
  .iv_ttl {
    padding-bottom: 15px;
    background: url(../../img/ttl_line.png) no-repeat center bottom;
  }
  .iv_ttl img {
    max-width: 250px;
    width: 40%;
  }
  .iv_subttl {
    font-weight: 300;
    font-size: 2.0rem;
    line-height: 1.8;
    margin: 10px 0 10px 0;
    color: #000;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-family: 'Noto Sans', sans-serif;
  }
  .iv_subttl em {
    font-style: normal;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.8;
    font-family: 'Noto Sans', sans-serif;
    padding-left: 5px;
  }
  .iv_subttl span {
    font-weight: 300;
    color: #ccc;
    float: right;
    font-size: 3.0rem;
    line-height: 1.4;
    font-family: 'Noto Sans', sans-serif;
  }
  .iv_name {
    font-size: 2.0rem;
    line-height: 1.4;
    margin: 15px 0 0;
    color: #000;
    letter-spacing: 0.1rem;
    font-family: 'Noto Sans', sans-serif;
  }
  .iv_name em {
    display: block;
    font-size: 1.2rem;
    padding-left: 0;
    padding-top: 5px;
  }
  .iv_prof {
    display: initial;
  }
  .iv_prof ul {
    margin: 0 auto 30px;
    padding: 0;
    max-width: 900px;
    text-align: center;
  }
  .iv_prof ul li {
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: left;
  }
  .iv_prof ul li:nth-child(1) {
    text-align: center;
    margin-bottom: 25px;
  }
  .iv_prof ul li:nth-child(1) img {
    margin: 0 auto;
    width: 100%;
    max-width: 470px;
  }
  .iv_prof ul li:nth-child(2) {
    font-weight: bold;
    text-indent: -0.5em;
  }
  .iv_more {
    margin: 15px 0;
  }
  .iv_more::before {
    margin-top: -4px;
  }
  .iv_link {
    margin: 15px 0;
  }
  .iv_link ul {
    margin: 0 auto;
    width: 100%;
    display: initial;
  }
  .iv_link ul li {
    width: 100%;
  }
  .iv_nolink span {
    padding: 15px 20px;
    background: url(../../img/arrow_w.svg) no-repeat 95% center;
    background-size: 13px 25px;
  }
  .iv_link01 span {
    padding: 15px 20px;
    background: url(../../img/arrow_w.svg) no-repeat 95% center;
    background-size: 13px 25px;
  }
  .iv_link02 span {
    padding: 15px 20px;
    background: url(../../img/arrow_red.svg) no-repeat 95% center;
    background-size: 13px 25px;
  }
  .iv .se {
    margin-top: 0;
  }
}

.ph {
  height: 360px;
  background: url(../../img/footer_ph.jpg) no-repeat center bottom;
}

@media screen and (max-width: 899px) {
  .ph {
    height: 180px;
    background: url(../../img/footer_ph.jpg) no-repeat center bottom;
    background-size: cover;
  }
}

/*  bnr  
-------------------------------------------------*/
.bnr {
  text-align: center;
  margin: 120px auto 60px;
}

.bnr img {
  max-width: 1000px;
}

.bnr_audee {
  text-align: center;
  margin: 0 auto 30px;
}

.bnr_audee img {
  max-width: 1000px;
}

@media screen and (max-width: 899px) {
  .bnr {
    margin: 0 auto 30px;
  }
  .bnr img {
    width: 60%;
    max-width: 276px;
  }
  .bnr_audee img {
    width: 90%;
    max-width: 576px;
  }
}

/*  detail 
-------------------------------------------------*/
.detail {
  background-color: #FFF;
}

.detail_tx {
  width: 1000px;
  margin: 0 auto 20px;
  background-color: #FFF;
}

.detail_tx h2 {
  color: #000;
  text-align: center;
  font-size: 2.4rem;
  font-family: 'Noto Sans', sans-serif;
  padding: 40px 0;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  /*border-bottom:1px solid #666 ;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail_tx h2:before,
.detail_tx h2:after {
  border-top: 1px solid;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.detail_tx h2:before {
  margin-right: 1.5rem;
}

.detail_tx h2:after {
  margin-left: 1.5rem;
}

.detail_tx ul {
  font-family: 'Noto Sans', sans-serif;
  font-weight: normal;
  color: #000;
  padding-bottom: 30px;
  line-height: 1.6;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
}

.detail_tx ul li:nth-child(1) {
  /*width: 70px;*/
  padding-right: 20px;
}

.detail_tx ul li:nth-child(1) img {
  max-width: 90px;
}

.detail_tx ul em {
  font-style: normal;
  font-weight: bold;
  padding-right: 5px;
  color: #b6111c;
}

.detail_tx p {
  padding-top: 100px;
  font-size: 1.4rem;
}

.detail_tx p a {
  text-decoration: underline;
}

.detail_ph {
  margin: 30px auto;
  width: 600px;
  height: auto;
}

.detail_per {
  position: absolute;
  bottom: 0;
  right: 15%;
  z-index: 5;
  overflow: hidden;
}

.detail_per img {
  width: 400px;
}

@media screen and (max-width: 899px) {
  .detail_tx {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
  .detail_tx h2 {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  .detail_tx h2 span {
    display: none;
  }
  .detail_tx ul {
    text-align: left;
    font-size: 1.4rem;
  }
  .detail_tx ul li:nth-child(1) {
    padding-right: 10px;
  }
  .detail_tx ul li:nth-child(1) img {
    max-width: 70px;
  }
  .detail_tx p {
    padding-top: 40px;
    font-size: 1.2rem;
  }
  .detail_cn {
    max-width: 640px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
  .detail_cn h2 {
    padding-top: 15px;
    font-size: 1.8rem;
  }
  .detail_cn .lead {
    font-size: 1.4rem;
  }
  .detail_ph {
    margin: 0 auto 30px;
    width: 100%;
    text-align: center;
  }
  .detail_per {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
  }
  .detail_per img {
    width: 70%;
    max-width: 274px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.parallax {
  height: 240px;
}

.parallax_img {
  background: url(../../img/header_kv.png) no-repeat center center;
  background-attachment: fixed;
}

@media screen and (max-width: 899px) {
  .parallax {
    height: 140px;
  }
  .parallax_img {
    background-size: 1000px auto;
    background-attachment: inherit;
  }
}

/* sns
------------------------------------------------------------*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.sns li {
  padding: 0 4px;
}

.sns li a img {
  width: 35px;
  height: auto;
}

@media screen and (max-width: 899px) {
  .sns {
    margin: 0 auto;
    width: 95px;
    padding-top: 20px;
  }
}

/* footer
------------------------------------------------------------*/
.footer_inner {
  height: 71px;
  background-color: #b6111c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer_inner address {
  font-size: 1.0rem;
  font-style: normal;
  color: #FFF;
  letter-spacing: 0.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 899px) {
  .footer {
    text-align: center;
  }
  .footer_inner {
    height: auto;
    display: inherit;
  }
  .footer_inner address {
    padding: 10px 20px 20px 20px;
    line-height: 1.6;
  }
}

.go-top a {
  position: fixed;
  bottom: 0;
  right: 0;
  background: url(../../img/top.png) no-repeat 0 top;
  width: 71px;
  height: 71px;
  z-index: 3;
}

@media screen and (max-width: 899px) {
  .go-top a {
    background: url(../../img/top.png) no-repeat 0 top;
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
  }
}

/* -- UTILITY -- */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 899px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */</pre></body></html>