@charset "UTF-8";

/* CSS Document */
#sidebarMenu,
.openSidebarMenu,
.sidebarIconToggle {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 640px) {
  .hdr-r {
    display: none;
  }

  .hdr-nav {
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 100;
    background-color: #F5FAFF;
    transform: translateY(-140%);
    transform: translateX(100%);
    /*transform: translateX(0);*/
    transition: all 0.3s;
  }

  .hdr-nav ul.hnav-list {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: block;
    justify-content: space-between;
    font-size: 90%;
    font-weight: normal;
    letter-spacing: 0.05em;
  }

  .hdr-nav ul.hnav-list li {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
    font-weight: bold;
    border-bottom: solid 1px #cecece;
  }

  .hdr-nav ul.hnav-list a {
    display: flex;
    width: 90%;
    padding: 5px 5%;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0F4377;
    transition: all 0.3s ease-in-out;
  }

  .hdr-nav ul.hnav-list a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("/_themes/sinfuzen/css/images/hdr-link-arr.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  #openSidebarMenu:checked~.hdr-nav {
    transform: translateX(0);
  }

  input#openSidebarMenu[type="checkbox"] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
  }

  .sidebarIconToggle {
    display: inline;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 300;
    height: 30px;
    width: 30px;
    top: 0;
    right: 0;
  }

  .spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 60%;
    margin: 5px auto 0;
    background-color: #1A2141;
    border-radius: 10px;
  }

  .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    width: 60%;
    margin-top: 5px;
  }

  .diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
  }

  .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    margin-top: 5px;
  }

  input#openSidebarMenu[type="checkbox"]:checked~.sidebarIconToggle .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
  }

  input#openSidebarMenu[type="checkbox"]:checked~.sidebarIconToggle .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 10px;
  }

  input#openSidebarMenu[type="checkbox"]:checked~.sidebarIconToggle .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
  }

  .hnav-other {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .hnav-other ul.bnr-list {
    list-style: none;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }

  .hnav-other ul.bnr-list li {
    width: 100%;
    margin: 0 0 20px;
    background-color: #FFF;
    color: #1A2141;
    font-weight: bold;
  }

  .hnav-other ul.bnr-list li a {
    width: 90%;
    margin: 0 auto;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1A2141;
  }

  .hnav-other ul.bnr-list li a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("/_themes/sinfuzen/css/images/nav_sp-arr.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .hnav-other ul li {
    transition: all 0.3s;
  }

  .hnav-other ul li:hover {
    opacity: 0.5;
  }

  .hnav-other ul.icon-list {
    list-style: none;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-around;
  }

  .hnav-other ul.icon-list li {
    width: 15%;
  }
}