@charset "UTF-8";
/* CSS Document */
/*
  font-family: "Noto serif JP", serif;
  font-family: "Noto Sans JP", sans-serif;
*/
*, ::before, ::after {
  box-sizing: border-box;
  z-index: 0;
  position: relative;
}
h1, h2, h3, h4, h5, p, th, td, dt, dd, li {
  font-family: "Noto serif JP", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.1em;
}
p, th, td, dt, dd, li {
  letter-spacing: 0.07em;
}
body {}
header, main {}
main {}
section {
  padding: 0 0 100px 0;
}
img {
  width: 100%;
  height: auto;
}
.inner {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
h2 {}
a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.8;
}
.pc-none {
  display: none;
}
@media screen and (max-width:780px) {
  .pc-none {
    display: inherit;
  }
  .sp-none {
    display: none;
  }
  section {
    padding: 0 0 80px 0;
  }
  .inner {
    width: 90%;
  }
  a:hover {
    opacity: 1;
  }
}
/*======================================
    共通ヘッダー＆フッター
======================================*/
/*ナビ共通*/
.trigger {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  z-index: 9;
  cursor: pointer;
}
#sub-page .trigger {
  background: rgba(0, 0, 0, 0.7);
}
.trigger:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.trigger span {
  display: block;
  width: 36px;
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 12px;
  transition: 0.3s;
}
.trigger span:first-child {
  top: 15px;
}
.trigger span:nth-child(2) {
  top: 29px;
}
.trigger span:nth-child(3) {
  bottom: 15px;
}
.trigger.active span:first-child {
  transform: rotate(45deg);
  top: 30px;
}
.trigger.active span:nth-child(2) {
  display: none;
}
.trigger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 28px;
}
nav {
  display: block;
  background: rgba(23, 24, 75, 0.9);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}
nav ul {
  margin: 100px 0 0 0;
  text-align: center;
}
nav li {
  font-size: 20px;
}
nav li + li {
  margin: 30px 0 0 0;
}
nav li a {
  color: #FFF;
}
nav li a:hover {
  opacity: 0.7;
}
/*フッター共通*/
footer {
  background: #000;
  color: #FFF;
  padding: 30px 0 10px 0;
}
footer .copyright {
  text-align: right;
  font-size: 13px;
}
/*フェードイン表示*/
.fadein-content {
  opacity: 0;
}
.fadein-content.fadein {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadein-l-content {
  opacity: 0;
}
.fadein-l-content.fadein {
  animation-name: fadeIn-L-Anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadein-r-content {
  opacity: 0;
}
.fadein-r-content.fadein {
  animation-name: fadeIn-R-Anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn-L-Anime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn-R-Anime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*SNS*/
.sns {
    background: #FFF;
    padding: 50px 0;
}
.sns .box-wrap {
    display: flex;
    justify-content: space-between;
}
.sns .left-box {
    width: 400px;
}
.sns .right-box {
    width: calc(100% - 430px);
  height: auto;
  aspect-ratio: 16 / 9;
}
.sns dt {
    font-size: 16px;
    margin: 0 0 7px 0;
    padding: 0 0 0 10px;
    border-left: 5px solid #a60037;
}
.sns dd+dt {
    margin: 20px 0 7px 0;
}
.sns dd {
    width: 90%;
    min-width: 340px;
    letter-spacing: 1px;
}
.sns dd+dd {
    margin: 5px 0 0 0;
}
.sns dd a {
    display: block;
    background:#eaedf7;
    color: #17184b;
    padding: 10px 15px 10px 10px;
}
.sns dd .ico {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    position: relative;
    top: -1px;
}
.more-btn {
    width: fit-content;
    margin: 30px 0 0 0;
}
#top .more-btn a {
    display: block;
    border: 1px solid #FFF;
    padding: 10px 10px 10px 20px;
}
#sub-page .more-btn a {
    display: block;
    background: #FFF;
    border: 1px solid rgba(23, 24, 75, 1);
    color: rgba(23, 24, 75, 1);
    padding: 10px 10px 10px 20px;
}
.more-btn a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 0 20px;
}
.more-btn a:hover {
    opacity: 0.7;
}
/*slick*/
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    font-size: 8px;
    color: #17184A;
}
.slick-dots li.slick-active button:before {
    color: #17184A;
}

@media screen and (max-width:780px) {
    
/*ナビ共通*/
.trigger {
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
}
.trigger span {
  width: 30px;
    left: 10px;
}
.trigger span:first-child {
  top: 12px;
}
.trigger span:nth-child(2) {
  top: 24px;
}
.trigger span:nth-child(3) {
  bottom: 12px;
}
.trigger.active span:first-child {
  transform: rotate(45deg);
  top: 25px;
}
.trigger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 23px;
}
  /*フェードイン表示*/  
.fadein-l-content.fadein {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadein-r-content.fadein {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
/*SNS*/
.sns .box-wrap {
    flex-direction: column;
}
.sns .left-box {
    width: 100%;
    margin: 0 0 30px 0;
}
.sns .right-box {
    width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
}
/*======================================
    TOPページのみ
======================================*/
/*背景CSSアニメーション*/
.mv {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.item-wrap {
  display: flex;
  overflow: hidden;
}
.item-box {
  animation: infinity-scroll 80s infinite linear 0.5s both;
}
.item {
  width: fit-content;
  height: 100vh;
}
.item > img {
  width: auto;
  height: 100vh;
  object-fit: cover;
}
/*header*/
#top header {
  height: 100vh;
  min-height: 800px;
}
/*h1*/
#top .ttl-wrap {
  background: linear-gradient(-45deg, rgba(70, 14, 68, 0.7), rgba(23, 24, 75, 0.9) 70%);
  color: #FFF;
  width: calc((50% - 500px) + 200px);
  min-width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
#top .ttl-inner {
  width: 200px;
  background: url("../img/logo.png") no-repeat top 20px center / 90px 90px;
  padding: 130px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  right: 0;
}
#top .description {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2em;
}
#top h1 {
  font-size: 26px;
  line-height: 50px;
  letter-spacing: 0.2em;
}
#top h1 span {
  font-size: 38px;
  line-height: 50px;
  margin: 20px 0 0 0;
}
#top .scroll {
  display: block;
  width: 20px;
  height: 150px;
  position: absolute;
  bottom: 20px;
  right: -25px;
  border-left: 1px solid #FFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 20px;
  text-shadow: 0 0 5px #000;
}
#top .scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #FFF;
  position: absolute;
  bottom: -1px;
  left: 2px;
  transform: rotate(30deg);
}
/*main*/
#top main {
  background: rgba(23, 24, 75, 1);
}
/*ごあいさつ*/
#top .top-box.lead {
    padding: 150px 0 100px 0;
}
#top .lead .inner {
  height: 320px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#top .top-box.lead h2 {
    font-size: 20px;
    margin: 0 0 0 30px;
}
#top .lead .inner p {
    text-align: justify;
    font-size: 16px;
}
#top .lead .inner p+p {
  margin: 0 20px 0 0;
}
#top .lead .name {
    padding: 70px 30px 0 0;
    position: relative;
    font-size: 15px;
}
#top .lead .name span {
    font-size: 22px;
    letter-spacing: 4px;
    position: absolute;
    bottom: 0;
    left: -36px;
}
/*プロフィール・教室について・演奏のご依頼*/
#top .top-box {
    color: #FFF;
    padding: 100px 0;
}
#top .top-box .box-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#top .top-box .box-wrap .img-box {
    width: 400px;
    height: auto;
    padding: 4px;
    border: 1px solid #FFF;
}
#top .top-box .box-wrap .txt-box {
    width: calc(100% - 450px);
}
#top .top-box .box-wrap .txt+.txt {
    margin: 10px 0 0 0;
}
#top .top-box h2 {
    font-size: 26px;
    margin: 0 0 30px 0;
}
#top .top-box.works {
    padding: 100px 0 200px 0;
}
#top .top-box.profile h2 span {
    font-size: 20px;
}
#top .top-box h2 span.en {
    font-size: 14px;
    letter-spacing: 1px;
    color: #eaedf7;
    display: block;
}


@media screen and (max-width:780px) {
  #top header {
    min-height: inherit;
  }
  /*h1*/
  #top .ttl-wrap {
    min-width: 140px;
  }
  #top .ttl-inner {
    width: 140px;
    background: url("../img/logo.png") no-repeat top 20px center / 80px 80px;
    padding: 120px 0 0 0;
  }
  #top .description {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.2em;
  }
  #top h1 {
    font-size: 26px;
    line-height: 50px;
    letter-spacing: 0.2em;
  }
  #top h1 span {
    font-size: 38px;
    line-height: 50px;
    margin: 20px 0 0 0;
  }
/*ごあいさつ*/
    #top .top-box.lead {
        padding: 100px 0;
    }
    #top .top-box.lead h2 {
        margin: 0 0 20px 0;
    }
    #top .lead .inner {
        height: auto;
        width: 90%;
        margin: 0 auto;
        writing-mode:inherit;
    }
    #top .lead .inner p+p {
        margin: 10px 0 0 0;
    }
    #top .lead .name {
        padding: 30px 0 0 0;
        text-align: right;
    }
    #top .lead p.name {
        text-align: right;
        font-size: 14px;
    }
    #top .lead .name span {
        position: static;
        margin: 10px 0 0 0;
        display: block;
        font-size: 20px;
    }
/*プロフィール・教室について・演奏のご依頼*/
#top .top-box {
    padding: 80px 0;
}
#top .top-box .box-wrap {
    flex-direction: column;
}
#top .top-box.about .box-wrap {
    flex-direction: column-reverse;
}
#top .top-box .box-wrap .img-box {
    width: 100%;
    margin: 0 0 20px 0;
}
#top .top-box .box-wrap .txt-box {
    width: 100%;
}
}

/*======================================
    下層ページ共通
======================================*/
#sub-page header {
    background: rgba(23, 24, 75, 1);
    height: 100px;
    padding: 10px 0 0 0;
}
#sub-page header .ttl-inner {
    background: url(../img/logo.png) no-repeat top 5px left -5px / 70px 70px;
    padding: 0 0 0 85px;
    color: #FFF;
}
#sub-page header .description {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1em;
    padding: 10px 0 0 0 ;
}
#sub-page header .ttl {
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
#sub-page header .ttl span {
    font-size: 30px;
    line-height: 50px;
    margin: 20px 0 0 0;
}

/*main*/
#sub-page main {
    background: #f7f7f7;
    padding: 100px 0 0 0;
}
/*h1*/
#sub-page h1 {
    font-size: 30px;
}
@media screen and (max-width:780px) {
    #sub-page header {
    height: 100px;
    padding: 20px 0 0 0;
}
    #sub-page header .inner {
        width: 95%;
    }
#sub-page header .ttl-inner {
    background: url(../img/logo.png) no-repeat top left / 60px 60px;
    padding: 0 0 0 70px;
}
#sub-page header .description {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.1em;
    padding: 5px 0 0 0 ;
}
#sub-page header .ttl {
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.1em;
}
#sub-page header .ttl span {
    font-size: 22px;
    line-height: 40px;
}

}
/*======================================
    プロフィール（.profile）
======================================*/
#sub-page.profile h1 {
    font-size: 28px;
    margin: 0 0 30px 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.profile .lead h1 span {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 0 0 0 20px;
    color: #a60037;
}
#sub-page.profile .box-wrap {
    display: flex;
    justify-content: space-between;
}
#sub-page.profile .lead .img-box {
    width: 200px;
    height: auto;
}
#sub-page.profile .lead .txt-box {
    width: calc(100% - 250px);
    height: auto;
    padding: 0 0 100px 50px;
}
#sub-page.profile .txt-box p {
    text-align: justify;
}
#sub-page.profile .txt-box p+p {
    margin: 10px 0 0 0;
}
#sub-page.profile .lead .txt-box ul {
    margin: 20px 0 0 0;
}
#sub-page.profile .lead .txt-box li {
    margin: 0 1px;
}
#sub-page.profile .lead .txt-box li img {
    border: 2px solid #FFF;
}
#sub-page.profile .tomoko h2 {
    font-size: 32px;
    margin: 10px 0 30px 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.profile .tomoko h2 span {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 0 0 0 20px;
    color: #a60037;
}
#sub-page.profile .tomoko .img-box {
    width: 400px;
    height: auto;
}
#sub-page.profile .tomoko .img-box img {
    border: 2px solid #FFF;
}
#sub-page.profile .tomoko .txt-box {
    width: calc(100% - 450px);
    height: auto;
    padding: 0 0 100px 50px;
}

#sub-page.profile .works h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #a60037;
    border-bottom: 2px solid #a60037;
}
#sub-page.profile .works .img-box {
    width: 400px;
    height: auto;
}
#sub-page.profile .works .img-box img {
    border: 2px solid #FFF;
}
#sub-page.profile .works .txt-box {
    width: calc(100% - 450px);
    height: auto;
    padding: 0 50px 100px 0;
}
#sub-page.profile .works .more-btn {
    margin: 30px 0 0 0;
}

@media screen and (max-width:780px) {
    #sub-page.profile .box-wrap {
        flex-direction: column;
    }
#sub-page.profile .lead .img-box {
    margin: 0 auto 40px auto;
}
#sub-page.profile .lead .txt-box {
    width: 100%;
    padding: 0;
}
#sub-page.profile .tomoko .img-box {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
}
#sub-page.profile .tomoko .txt-box {
    width: 100%;
    padding: 0;
}
#sub-page.profile .works .img-box {
    width: 100%;
}
#sub-page.profile .works .txt-box {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
}
}

/*======================================
    教室について（.about）
======================================*/
#sub-page.about h1 {
    font-size: 28px;
    margin: 0 0 30px 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.about .title-box {
    padding: 0 0 50px 0;
}
#sub-page.about .title-box .box-wrap {
    display: flex;
    justify-content: space-between;
}
#sub-page.about .title-box .txt-box {
    width: calc(100% - 390px);
}
#sub-page.about .title-box .txt-box p {
    text-align: justify;
}
#sub-page.about .title-box .txt-box p+p {
    margin: 20px 0 0 0;
}
#sub-page.about .title-box .img-box {
    width: 300px;
}
#sub-page.about .title-box .img-box li {
    position: relative;
}
#sub-page.about .title-box .img-box li img {
border: 2px solid #FFF;
}
#sub-page.about .title-box .img-box li span {
    display: block;
    width: calc(100% - 4px);
  font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: rgba(23,24,75,0.8);
    color: #FFF;
    padding: 5px 10px;
    position: absolute;
    bottom: 2px;
    left: 2px;
}
.slick-prev, .slick-next {
    transform: rotate(45deg);
}
.slick-prev {
    border-left: 1px solid #17184b;
    border-bottom: 1px solid #17184b;
}
.slick-next {
    border-right: 1px solid #17184b;
    border-top: 1px solid #17184b;
}
.slick-prev::before, .slick-next::before {
    content: none;
}
#sub-page.about h2{
        font-size: 24px;
    margin: 10px 0 30px 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.about .detail .box-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#sub-page.about .detail .box {
    width: calc(100% / 2 - 15px);
    background: #FFF;
    padding: 5px 20px 20px 20px;
    margin: 0 0 30px 0;
}
#sub-page.about h3 {
        font-size: 20px;
    margin: 10px 0 20px 0;
    border-bottom: 2px solid #a60037;
    position: relative;
}
#sub-page.about h3 span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    color: #a60037;
    position: absolute;
    right: 0;
    bottom: 3px;
}
#sub-page.about .detail .box li {
    letter-spacing: 1px;
}
#sub-page.about .detail .box li+li {
    margin: 10px 0 0 0;
}
#sub-page.about .detail .box li span.midashi {
  font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #a60037;
    color: #FFF;
    padding: 0 7px 1px 7px;
    margin: 0 10px 0 0;
}
#sub-page.about .detail .box li span.map-link {
  font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    color: #a60037;
    margin: 0 0 0 10px;
}
#sub-page.about .detail .box li span.map-link::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: bold;
    font-size: 12px;
    margin: 0 5px 0 0;
}
#sub-page.about .detail .box li.attention {
    font-size: 14px;
    color: #a60037;
}

#sub-page.about .detail .info {
    background: #FFF;
    border: 1px solid #a60037;
    padding: 20px;
}
#sub-page.about .detail .info h3 {
    color: #a60037;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px dotted #a60037;
    margin: 30px 0 10px 0;
}
#sub-page.about .detail .info h3:first-child {
    margin: 0 0 10px 0;
}
#sub-page.about .detail .info dt {
    width: fit-content;
font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #a60037;
    color: #FFF;
    padding: 0 7px 1px 7px;
    margin: 20px 0 10px 0;
}#sub-page.about .detail .info dd {
    margin: 0 0 5px 0;
    text-align: justify;
    letter-spacing: normal;
}
#sub-page.about .detail .info dd.attention {
    font-size: 14px;
    color: #a60037;
    margin: 0;
    padding: 0 0 0 15px;
    position: relative;
}
#sub-page.about .detail .info dd.attention::before {
    content: "・";
    position: absolute;
    left: 0;
    
}
#sub-page.about .other .txt-box{
    margin: 0 0 20px 0;
    max-width: 680px;
}
@media screen and (max-width:780px) {
    #sub-page.about .title-box .box-wrap,
    #sub-page.about .detail .box-wrap {
        flex-direction: column;
    }
    #sub-page.about .title-box .txt-box {
        width:100%;
        margin: 0 0 30px 0;
    }
    #sub-page.about .title-box .img-box {
        width: calc(100% - 60px);
        max-width: 300px;
        margin: 0 auto;
    }
    #sub-page.about .detail .box {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 5px 10px 10px 10px;
    }
#sub-page.about .detail .box li {
    letter-spacing: normal;
}
#sub-page.about .detail .box li+li {
    margin: 5px 0 0 0;
}
#sub-page.about h2 {
        font-size: 22px;
    }
}

/*======================================
    演奏のご依頼（.works）
======================================*/
#sub-page.works h1 {
    margin: 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.works .box-wrap {
    display: flex;
    justify-content: space-between;
}
#sub-page.works .txt-box {
    width: calc(100% - 450px);
}
#sub-page.works .img-box {
    width: 400px;
}
#sub-page.works .img-box img {
    border: 2px solid #FFF;
}
#sub-page.works .more-btn+.more-btn {
    margin: 20px 0 0 0;
}
#sub-page.works .more-btn .ico {
display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    position: relative;
    top: -1px;
}
@media screen and (max-width:780px) {
#sub-page.works .box-wrap {
    flex-direction: column;
}
#sub-page.works .txt-box {
    width: 100%;
    margin: 0 0 20px 0;
}
#sub-page.works .img-box {
    width: 100%;
}  
}

/*======================================
   　お問合せ（.contact）
======================================*/
#sub-page.contact h1 {
    margin: 0;
    border-bottom: 2px solid #a60037;
}
#sub-page.contact h2 {
    font-size: 20px;
    border-bottom: 1px solid #a60037;
    margin: 0 0 20px 0;
}
#sub-page.contact .box {
    margin: 0 0 40px 0;
}
#sub-page.contact .box .txt {
    margin: 0 0 10px 0;
}
#sub-page.contact .box li {
    max-width: 340px;
    letter-spacing: 1px;
}
#sub-page.contact .box li+li {
    margin: 5px 0 0 0;
}
#sub-page.contact .box li a {
    display: block;
    background:#eaedf7;
    color: #17184b;
    padding: 10px 15px 10px 10px;
}
#sub-page.contact .box li .ico {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    position: relative;
    top: -1px;
}
@media screen and (max-width:780px) {
}
