/* スマホ用 */
@media screen and (max-width: 1000px) {
  header.header__allcontents_wrap {
    position: sticky;
    width: 100%;
    top: 0;
    box-shadow: 0px 2px 3px -2px #ECECEC;
    background-color: #FFF;
  }
  div.header__topbar {
    width: 100%;
    height: 15px;
    background-color: #C5956B;
    border-bottom: 3px solid #B27947;
  }
  div.header__logomenu_wrap {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  div.header__logotitle {
    width: 70%;
    height: 50px;
    line-height: 50px;
  }
  div.header__logotitle a {
    color: #542D24;
    text-decoration: none;
  }
  h1.header__logo_text {
    font-size: 6vw;
    font-weight: 600;
    color: #542D24;
    padding: 0;
    margin: 0 0 0 15px;
  }
  div.header__menu {
    width: 15%;
    height: 50px;
    font-weight: bold;
  }
  .menu {
    list-style: none;
    position: absolute;
    background-color: #9C6A3E;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 50px;
    padding: 0 0 10px 0;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
  }
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .menu a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    opacity: 0;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
  }
  .menu li {
    text-align: center;
    border-top: 1px solid rgb(75, 75, 75);
    width: 100%;
    padding: 15px 0;
    margin: auto;
    opacity: 0;
    transition: 0.5s;
    position: relative;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
  }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .menu-btn {
    display: none;
  }
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
}


/* パソコン用 */
@media screen and (min-width: 1000px) {
  header.header__allcontents_wrap {
    position: sticky;
    width: 100%;
    top: 0;
    box-shadow: 0px 2px 3px -2px #ECECEC;
    background-color: #FFF;
  }
  div.header__topbar {
    width: 100%;
    height: 15px;
    background-color: #C5956B;
    border-bottom: 3px solid #B27947;
  }
  div.header__logomenu_wrap {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  div.header__logotitle {
    width: 70%;
    height: 50px;
    line-height: 50px;
  }
  div.header__logotitle a {
    color: #542D24;
    text-decoration: none;
  }
  h1.header__logo_text {
    font-size: 35px;
    font-weight: 600;
    color: #542D24;
    padding: 0;
    margin: 0 0 0 15px;
  }
  div.header__menu {
    text-align: right;
    width: 15%;
    height: 50px;
    font-weight: bold;
  }
  .menu {
    list-style: none;
    position: absolute;
    background-color: #9C6A3E;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 50px;
    padding: 0 0 10px 0;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
  }
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .menu a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    opacity: 0;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
  }
  .menu li {
    text-align: center;
    border-top: 1px solid rgb(75, 75, 75);
    width: 100%;
    padding: 15px 0;
    margin: auto;
    opacity: 0;
    transition: 0.5s;
    position: relative;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
  }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .menu-btn {
    display: none;
  }
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
}