@charset "utf-8";
/* CSS Document */


/******** ▼▼▼Reset▼▼▼*********/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p,form,fieldset,input,textarea,p,blockquote,th,td {
margin: 0;
box-sizing: border-box;
padding: 0;
}

#warp #contents { font-style: normal; }
strong,th { font-weight: normal; }
table {
border-collapse: collapse;
border-spacing: 0;
}


h1,h2,h3,h4,h5,h6 { font-size: 100%; }
img,fieldset { border: 0; }
li { list-style-type: none; }

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
    font-family: "Noto Sans JP", sans-serif;
}
input[type="submit"], input[type="button"],button{
  -webkit-appearance: none;
}

/* Fonts
------------------------------------------------------------*/
body {
	
font-size: 75%; /* IE */
font-family: "Noto Sans JP", sans-serif;}
html>/**/body { font-size: 16px; } /* Except IE */


/* clearfix
------------------------------------------------------------*/
.clearfix:after {  
  /*content: "."; */  
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden;  
} 

.clearfix { display: inline-table; }  

body {
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
	font-family: "メイリオ", sans-serif;
	font-size: 16px;	
}

a{
	text-decoration: none;
}


a:link {color:#000;} /*未訪問のリンクの色*/
a:visited {color:#000;} /*訪問済みのリンクの色*/
a:hover {color:#000; } /*カーソルが乗っているリンクの色*/
a:active {color:#fff;} /*クリック中のリンクの色*/


img, object, embed, video {
	max-width: 100%;
}
/******** ▲▲▲Reset▲▲▲*********/


/*
	nav
*****************************************************/

#menu-btn-check {
    display: none;
}
@media (max-width: 480px) {
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 35px;
    width: 35px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color:#466f84;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 6px;
}
.menu-btn span:after {
    top: 6px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

nav.menu-content{
    width: 90%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgb(0 0 0 / 80%);
    transition: .3s all;
    padding: 10%;
    box-shadow:0 0 5px #000;
    
}
    nav.menu-content ul  {
        margin-top: 3rem;
    }
    nav.menu-content ul li{
        margin: 0 auto;
        text-align: center;
    }


#menu-btn-check:checked ~ .menu-content {
    left: 10%;/*メニューを画面内へ*/
}
}
