@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');


/*******************************************
          共通
*********************************************/
html{
  font-family: "Noto Sans JP";
  color:#333;
}

p {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.cb{clear:both!important;}
.fl{float:left;}
.fr{float:right;}
.back-color{background: #f5f5f5;}

.pc_only{display:block;}
.sp_only{display:none;}

.pc_h{display:block;}
.sp_h{display:none;}

.w1400{
  width:1400px;
  margin-inline:auto;
}
.w1280{
  width:1280px;
  margin-inline:auto;
}
.w1200{
  width:1200px;
  margin-inline:auto;
}
.w1040{
  width:1040px;
  margin-inline:auto;
}
.w980{
  width:980px;
  margin-inline:auto;
}
.w900{
  width:900px;
  margin-inline:auto;
}

.w510{
  width:510px;
  margin-inline:auto;
}

/*******************************************
          header 
*********************************************/

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0; 
  background:#fff;

   transition: height 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
   /*box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);*/
}
header .inner {
  position: relative;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 100%;
}
/* .logo */
header .logo {
  position: relative;
  width: 100px;
  margin: 0;
  padding: 0;
  bottom: 5px;
}
header .logo a {
  font-weight: bold;
  text-decoration: none;
  color: #333;
  width:260px;
  display:block;
}

.span_rs{
  margin-left:19px;
   font-family: "Lato", sans-serif;
   font-size:14px;
   font-weight: 500;
   text-decoration: none;
}

/* scroll */
header.scroll {
  height: 60px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .logo {
  transition: width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
header.scroll .logo {
  width: 70px;
}

/* header-navi-box */
header .navi {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  list-style: none;
  letter-spacing: 1px;
}
header .navi li {
  margin: 5px 0 5px 40px;
}
header .navi li:first-child {
  margin-left: 0;
}
header .navi li a {
  box-sizing: border-box;
  font-size:16px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
}
.h_border::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #ff4824;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .4s;
}
.h_border:hover::after {
  transform: scale(1, 1);
}


.header_orange{
  color: #FFF;
  padding: 10px 25px;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #ff4824, #ff8737);
  transition: 0.2s;
}

.header_black{
  color: #FFF;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.2s;
  background:#000;
}

.header_orange:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.header_black:hover {
  opacity: 0.6;
   transition: 0.2s;
}



.dropdown__lists {
    position: absolute;
    top: 9px;
    left: -118%;
    display: none; 
    width: 270px;
}

.dropdown__lists ul{
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    z-index:999;
    padding: 5px 0 5px;
}


.gnavi__list:hover .dropdown__lists {
    display: block;
}

.dropdown__lists:hover .dropdown__lists {
    display: block;
}

.dropdown__list {
    transition: all .3s;
    position: relative;
    border-bottom: 1px solid #e4e4e4;
}

.dropdown__list a {
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 0 20px 20px;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 51px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: calc(50% - 18px);
    background: url(/common/images/h_arrow.png?{0|rand:99999});
    background-size: 20px;
    background-repeat: no-repeat;
}

.dropdown__list a:hover {
  color: #ff4824;
  transition : 0.4s;
}

header .navi li .dropdown__list{
  margin: 20px 0 0;
}

.gnavi__list {
  position:relative;
}
.dropdown__lists .dropdown__list a:after {
  height: 0px;
  color:#fff;
}
li .dropdown__list:last-child{
  border-bottom: none;
}

.empty{
  height: 32px;
  border-bottom: 3px solid #ff4824;
  position:relative;
  width: 90px;
  left: 90px;

  animation-name: fadeIn2s;
  animation-delay: 0.1s;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  transform: translateX(-50px);
  opacity: 0;
}



@keyframes fadeIn2s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}





/* open-button */
.sp-navi-toggle {
  display: none;
  margin: auto 0;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 40px;
  width: 16px;
  height: 25px;
  transition: all 0.4s;
  color: #464646;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: unset;
}
.sp-navi-toggle .menu,
.sp-navi-toggle .close {
  position: absolute;
  bottom: 0;
  left: -50%;
  display: block;
  width: 34px;
  height: 11px;
}
.sp-navi-toggle .close {
  display: none;
}
.sp-navi-toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #464646;
}
.sp-navi-toggle .bar:nth-of-type(1) {
  top: 0;
}
.sp-navi-toggle .bar:nth-of-type(2) {
  top: 5px;
}
.sp-navi-toggle .bar:nth-of-type(3) {
  top: 10px;
}

/* close-button */
html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(1) {
  top: 5px;
  transform: rotate(45deg);
}
html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(2) {
  top: 5px;
  transform: rotate(-45deg);
}
html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(3) {
  display: none;
}
html.sidebar-is-open .sp-navi-toggle .menu {
  display: none;
}
html.sidebar-is-open .sp-navi-toggle .close {
  display: block;
}


/* sp-navi */
.sp-navi-box {
  display: none;
}
.sp-navi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100vh;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.sp-navi li {
  padding: 20px 0;
}
.sp-navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: bold;
}
.sp-navi li a:hover {
  text-decoration: underline;
}

body {
  margin: 0;
  padding: 0;
}
a{
  color: #333;
}


/*******************************************
          footer
*********************************************/
ul {
  padding: 0;
  list-style: none;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #404040;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7rem;
  margin-bottom: 90px;
}

footer{
  background: #000;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #fff;
  width: 1280px;
  margin-inline: auto;
}
.footer a{
  color:#fff;
  text-decoration: none;
  font-size:14px;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  margin-top:10px;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__social a {
  display: inline-block;
  width: 24px;
  opacity: 0.7;
}

.footer__social a:not(:last-child) {
  margin-right: 16px;
}

.copyright{
  color:#7F7F7F;
  font-family: "Lato", sans-serif;
  font-size:13px;
}

.f_white_btn{
  background: #fff;
  color:#000;
  border-radius: 20px;
  text-align: center;
  padding: 8px 0;
  width: 150px;
  /*background-image: url(/common/images/arrow.png);*/
  background-position: 123px 7px;
    background-repeat: no-repeat;
    transition: 0.2s;
}
.f_white_btn a{
  color:#000;
  text-align:center;
}

.f_address{
  line-height:40px;
}
.f_address span{
  line-height:20px;
}

.link-out img{
  margin:0 40px 0 10px;
  position: relative;
  top: 2.5px;
}

.link-out{
  background-image: url(/common/images/Vector.svg);
  background-repeat: no-repeat;
  background-position: right;
  margin-right: 36px;
  background-position-x: 140px;
  width: 157px;
  float: left;
}
.link-out:hover{
  background-image: url(/common/images/Vector_h.svg);
  background-repeat: no-repeat;
  background-position: right;
  margin-right: 36px;
  background-position-x: 140px;
  width: 157px;
  float: left;
}

.link-out2{
  background-image: url(/common/images/Vector.svg);
  background-repeat: no-repeat;
  background-position: right;
  margin-right: 36px;
  background-position-x: 110px;
  width: 127px;
  float: left;
}
.link-out2:hover{
  background-image: url(/common/images/Vector_h.svg);
  background-repeat: no-repeat;
  background-position: right;
  margin-right: 36px;
  background-position-x: 110px;
  width: 127px;
  float: left;
}

.f_casual_btn{
  background-image: linear-gradient(90deg, #ff4824, #ff8737);
  color:#fff;
  border-radius: 20px;
  text-align: center;
  padding: 8px 0;
  width: 150px;
  /*background-image: url(/common/images/arrow.png);*/
  /*background-position: 123px 7px;*/
  background-repeat: no-repeat;
  margin-bottom: 16px !important;
  display: block;
  transition: 0.2s;
}

.f_underline:hover{
  color:#ff4824;
  text-decoration: underline;
  transition : 0.4s;
}

.f_casual_btn:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.f_white_btn:hover {
  opacity: 0.6;
  transition: 0.2s;
}



@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



/************************************************
    message
*************************************************/
#f_message{
    background: url(/index/images/message_back.png?{0|rand:99999});
    background-repeat: no-repeat;
    background: linear-gradient(rgba(255,72,36,0.3), rgba(255,72,36,0.3)), url(/index/images/message_back.png?{0|rand:99999});
    position: relative;
}
#f_message::before{
    content: '';
    position: absolute;
    z-index:1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #141414;
    opacity: 0.5;
}

.f_message_inner{
    color:#fff;
    position:relative;
    z-index:2;
    padding:80px 0 120px;
}

.f_message_left{
    float:left;
    width:560px;
}
.f_message_left p span{
    font-size:24px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
    letter-spacing:2px;
    margin-top: 0;
}
.f_message_left p{
    font-size:32px;
    font-weight:bold;
    margin-top: 10px;
}
.f_message_right{
    float:right;
    width:640px;
    font-size: 16px;
    line-height: 36px;
    padding-top: 55px;
}

#f_message button.learn-more .button-text{
    color:#fff;
    margin-left: 40px;
}

#f_message #container{
    position:absolute;
    top:320px;
}


/*******************************************
         main コンテンツ
*********************************************/
main{
  margin-top:90px;
}


/* buttonの動き */ 
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 16.5rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 4rem;
  height: 4rem;
  background-image: linear-gradient(90deg, #ff4824, #ff8737);
  border-radius: 2.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 1.225rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.3rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 2.6;
  text-align: center;
  text-transform: uppercase;
  color: #ff4824;
  letter-spacing: 2px;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}
@supports (display: grid) {
  #container {
      grid-area: main;
      align-self: center;
      justify-self: center;
  }
}

/*****************************************
    scroll
******************************************/
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}

.scroll-infinity__item {
    width: 2870px;
    font-size:130px;
    color:#f4f4f4;
    font-family: "Lato", sans-serif;
    font-weight:bold;
}
.scroll-infinity__item>img {
    width: 100%;
}


.scroll-infinity__item {opacity: 0.2;}
.top_sub_area .t2 {color:#fff;}
.top_sub_area p {color:#fff;}
.scroll-infinity__item {
    margin-top: 107px!important;
    height: 114px;
}


.top_area::before {
  content: '';
  background-color: rgba(0,0,0,.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}



/*****************************************
  ページトップ　画像背景
******************************************/



/*****************************************
  pankuzu
******************************************/
.pankuzu{
  width: 1200px;
  text-align: right;
  margin: 0 auto 20px;
  font-size:13px;
}
.pankuzu a{text-decoration: none;}
.pankuzu span{margin: 0 15px;}



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

  .pc_h{display:none;}
  .sp_h{display:block;}

  /*******************************************
          header 
  *********************************************/
  header .logo {padding: 0;}
  header .navi {display: none;}
  .sp-navi-toggle{display: block;}
  html.sidebar-is-open .sp-navi-box {display: block;}

  html.sidebar-is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
  }


    header{
        height: 75px;
        padding: 0px 4%;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
        text-decoration: none;
    }
    .sp-header_logo{
        position:relative;
        top:24px;
    }

    .menu_txt{
      position: absolute;
        right: 8.1%;
        top: 46%;
        font-size: 12px;
    }
    .close_txt{
      position:absolute;
      color:#fff;
      font-size: 12px;
      right: 1%;
      top: 5%;
    }
    .hamburger-menulist{position:relative;}

    /*.ham_logo{padding-top:16px;text-align:center;}*/

    .input-hidden{display: none;}
    .hamburger-switch{
        cursor: pointer;
        position: absolute;
        right: 7%;
        top: 3%;
        z-index: 10005;
        width: 4em;
        height: 4em;
    }
    #hamburger-1:checked ~ .hamburger-switch{
      position: fixed; 
      right: 0;
      top: 0;
    }
    .hamburger-switch-line1, .hamburger-switch-line1-before, .hamburger-switch-line1-after{
        width: 30px;
        height: 2px;
        background: #101010;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        content: "";
    }
    
    .hamburger-switch-line1{
            transform: translate(-50%, -50%);
    }
    .hamburger-switch-line1-before{
        transform: translate(-50%, -300%);
    }
    .hamburger-switch-line1-after{
        transform: translate(-50%, 0%);
    }
    #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1{
        width: 0;
    }
    #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1-before{
        transform: rotate(45deg) translate(-30%, 400%);
        background:#fff;
    }
    #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1-after{
        transform: rotate(-45deg) translate(-25%, -500%);
        background:#fff;
    }
    .hamburger-menuwrap{
        position: fixed;
        height: 100%;
        background: #202020;
        padding: 4.2em 0 0;
        z-index: 10004;
        transition: .3s;
        overflow-y: scroll;
        top: 0;
        left: 100%;
        width: 100%;
    }
    .hamburger-menulist{
        list-style: none;
        position:relative;
        top:-45px;
        width: 90%;
        margin:auto;
    }
    .hamburger-menulist li a{
        text-decoration: none;
        color: #fff;
        display: block;
        padding: 20px 10px;
        font-size: 14px;
        border-bottom: 1px solid #ffffff42;
    }

    .hamburger-menulist li a span{
        font-weight: 300 !important;
    }

    .service_ham{
        border-bottom: none!important;
        padding:10px 20px!important;
    }

    .service_ham_top{
        border-bottom: none!important;
        padding: 20px 10px 10px!important;
    }

    .service_ham_bottom{
        border-bottom: 1px solid #ffffff42;
        padding:10px 20px 20px!important;
    }

    #hamburger-1:checked ~ .hamburger-menuwrap{
        left: 0%;
    }
    #hamburger-1:checked ~ .hamburger-cover{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10003;
        display: block;
    }

    .privacy_ham{
        color:#fff;
        font-size:12px;
        font-weight:300;
        position:absolute;
        left:0;
        right:0;
        text-decoration: underline !important;
    }

    .ham_logo .span_rs{
      color:#fff;
      position:relative;
      bottom:1px;
    }

    .header_black {
      float:right;
      background: #fff;
      color: #000;
      text-decoration: none;
      padding:10px 48px;
    }

    .header_orange {
      float:left;
      text-decoration: none;
    }

    .hamburger-menulist a p{
      color:#cbcbcb;
      font-size:14px;
      margin-bottom:20px;
    }
    .hamburger-menulist a p img{
      margin-left:8px;
      position:relative;
      top:2px;
    }




    /* アコーディオン */
    .accordion{
      width: 100%;
      margin: 0;
    }
    .accordion_header,
    .accordion_content{
      display: flex;
      align-items: center;
      width: 100%;
      font-weight: 400;
      margin-inline-start: 0;
    }
    .accordion_header {
      cursor: pointer;
      color: #fff;
      position: relative;
    }
    .accordion_content {
      display: none;
      margin:20px 0;
    }
    
    .accordion_header::before{
      position: absolute;
      content: '';
      top: 50%;
      right: 0;
      width: 20px;
      height: 1px;
      background-color:#fff;
      transform: rotate(90deg);
      transition: all .3s ease-in-out;
    }
    .accordion_header::after{
      position: absolute;
      content: '';
      top: 50%;
      right: 0;
      width: 20px;
      height: 1px;
      background-color:#fff;
      transition: all .3s ease-in-out;
    }
    .accordion_header.open::before {
      transform: rotate(180deg);
    }
    .accordion_header.open::after {
      opacity:0;
    }

}


@media screen and (max-width: 1025px) {
      .close_txt {right:1%;}
}



/*****************************************
  レスポンシブ
******************************************/
@media screen and (max-width: 980px) {

  .pc_only{display:none;}
  .sp_only{display:block;}

  .fl{float:none;}
  .fr{float:none;}

  .w1400{width:100%;}
  .w1280{ width:100%;}
  .w1200{width:100%;}
  .w1040{width:100%;}
  .w980{width:100%;}
  .w900{width:100%;}
  .w510{width:100%;}



  /* button */
  button.learn-more .circle {
    width: 3rem;
    height: 3rem;
  }
  button.learn-more .circle .icon.arrow {left: 0.7rem;}
  button.learn-more .button-text {line-height:1.8;}


  /* pankuzu */
  .pankuzu {
    width: 100%;
  }


  /* header */
  .menu_txt{right: 9%;}
  .close_txt{right: 2%; top:4%;}
   #hamburger-1:checked ~ .hamburger-switch{top:0;}
 


  /*******************************************
          footer
  *********************************************/
  .grid {
    display: grid;
    grid-template-columns: none;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  footer{
    background:#000; 
    width:100%;
    overflow: auto;
    padding-bottom:80px;
  }
  footer ul{
    width:90%;
    margin-inline:auto;
    padding-top:30px;
  }
  footer a{
    color:#fff;
    text-decoration: none;
    font-size:14px;
  }
  footer .header_orange {padding:10px 32px;}
  footer .header_black {padding:10px 52px;}

  .footer_inner li {
      text-decoration: none;
      color: #fff;
      display: block;
      padding: 20px 10px;
      font-size: 14px;
      border-bottom: 1px solid #ffffff42;
  }

  footer .accordion p{
    margin:20px 0;
  }
  .cs{
    color: #cbcbcb;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cs img{
    margin-left:10px;
    position:relative;
    top:1px;
  }


  /*********************************
    MESSAGE
  ***********************************/
  .f_message_inner {width:90%!important;padding: 30px 0;}
  #f_message #container {top:0; position:relative;}

  .f_message_left{
    float:none;
    width:100%;
  }
  .f_message_right{
    float:none;
    width:100%;
    padding-top:0;
    line-height: 32px;
  }
  .f_message_right p{font-size:14px;line-height: 30px;}
  
  .f_message_left p span {font-size:20px;}
  .f_message_left p {font-size: 24px; margin-top:0;}
  .f_message_left #container{margin: 15px 0;display:block;} 




  /*********************************
    
  ***********************************/
  .top_area{background:none!important;}
  .scroll-infinity__item {opacity: 1;}
  .top_sub_area .t2 {color:#000;}
  .top_sub_area p {color:#000;}
  .scroll-infinity__item {
    margin-top: 27px!important;
    height: auto;
  }
  .top_area::before {background-color: rgba(0,0,0,.0);}

}



@media screen and (max-width: 480px) {
   /* header */
  .menu_txt{right: 11%;}
  .close_txt{right: 4%; top:6%;}
   #hamburger-1:checked ~ .hamburger-switch{top:0;}
}