@charset "UTF-8";


/*SPメニュー*/
.sp-menu{
        display: block;
    }

.drop-arrow{
	margin-top:-53px;
}
.sp-menu{
		display: block;
        width: 100%;
        height: 70px;
        position: fixed;
        z-index: 9998;
        /*background-color: #fff;
		border-bottom:solid 1px #3D3D3D;*/
    }
    .sp-menu-1{
        width: 250px;
        left: 20px;
        top: 20px;
        position:absolute;
    }
	.sp-menu-1 a{
		display:flex;
		align-items:center;
		font-weight:bold;
		color:#000;
    }
	.sp-menu-1 a .header-1-img{
		width:80px;
		margin-right:10px;
    }
	.sp-menu-1 a .header-1-img img{
		width:100%;
    }
	.sp-menu-1-logo{
        font-weight:bold;
		font-size:20px;
		margin:10px 0 0 0;
    }
    #overlay-button {
        right: 15px;
        top: 10px;
        padding: 20px 10px;
        z-index: 9999;
        cursor: pointer;
        user-select: none;
        border-radius: 50vh;
        position: fixed;
    }
	
    #overlay-button span {
        height: 3px;
        width: 25px;
        border-radius: 2px;
        background-color: #B18C6C;
        position: relative;
        display: block;
        transition: all .2s ease-in-out;
    }
    #overlay-button span:before {
        top: -10px;
        visibility: visible;
    }
    #overlay-button span:after {
        top: 10px;
    }
    #overlay-button span:before, #overlay-button span:after {
        height: 3px;
        width: 25px;
        border-radius: 2px;
        background-color: #B18C6C;
        position: absolute;
        content: "";
        transition: all .2s ease-in-out;
    }
    #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
/*        background: #fff;*/
    }

    input[type=checkbox] {
        display: none; 

    }

    input[type=checkbox]:checked ~ #overlay {
        visibility: visible; 
    }

    input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
      background: transparent;


    }
    input[type=checkbox]:checked ~ #overlay-button span:before {
      transform: rotate(45deg) translate(7px, 7px);

    }
    input[type=checkbox]:checked ~ #overlay-button span:after {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    #overlay {
      height: 100vh;
      width: 100%;
      background: #FFF8F2;
      z-index: 3;
      visibility: hidden;
      position: fixed;
	  /*height: auto;
	  max-height: 100vh;*/
	  overflow-y: auto;

    }
    #overlay.active {
    }
    #overlay .hm-menu {
      display: flex;
      align-items: center;
      flex-direction: column;
      text-align: left;
      padding-left: 0;
      list-style-type: none;
    }
	#overlay .hm-menu a{
      font-weight:bold;
    }
    #overlay .hm-menu .sp-header-logo{
        width: 100px;
        margin-bottom: 20px;
    }
	#overlay .hm-menu .sp-header-logo img{
        width: 100%;
    }
	#overlay .hm-menu .sp-header-logo:hover{
        opacity:0.7;
    }
    #overlay .hm-menu li {
      padding: 0.5em 1em;
    }
    #overlay .hm-menu li a {
        color: #603916;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
		
    }
	#overlay .hm-menu li a:hover{
        opacity:0.8;
    }