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

body,h1,h2,h3,h4,p,img,table,a,li,ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}
img{
	width: 100%;
}
.clear{
	clear: both
}
body{
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
}.drawer{
	position: fixed;
	top: -7px;
	right: 5px;
    z-index: 9999999;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 56px;
  width: 45px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999999;/* 重なり順を一番上に */
  cursor: pointer;
}
h1 span{
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-indent: 100%;
    white-space: nowrap;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #BD3D37;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #BD3D37;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #BD3D37;
}
  
/* メニューのデザイン*/
.drawer-content {
  width: calc(80% - 40px);
	padding: 10px 20px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -83%;/* メニューを画面の外に飛ばす */
  z-index: 999;
	background: white;
  transition: .5s;
	box-shadow: 0px 0px 10px gray;
	overflow-y: scroll
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  right: 0;/* メニューを画面に入れる */
}
.drawer-item{
	list-style: none;
	width:90%;
	margin-left: auto;
	margin-right: auto;
}
.drawer_contact{
	list-style: none;
}
.drawer-item a{
	color: white;
	font-weight: bold;
	margin-bottom: 7px;
	display: block;
	text-decoration: none
}
.drawer-logo{
	display: block;
	width: 45%;
	padding-top: 10px;
	margin-left: auto;
	margin-right: auto;
        margin-bottom: 10px;
}
.drawer_title{
    background: #BD3D37;
    padding: 3px 6px;
        color: white;
        font-size: 14px;
}
.drawer-list{
	padding-bottom: 30px;
}
.drawer-list li{
    border-bottom: 1px solid #f4f4f4;
        padding-left: 10px;
        padding-top: 5px;
        font-size: 12px;
        padding-bottom: 5px;
}
.drawer-list li a{
    color: #535560
}
.drawer-list li .fa-circle-chevron-right{
    color: #BD3D37;
    font-size: 14px;
    margin-right: 5px;
}
.mgt30{
	margin-top: 30px;
}
.header_nav{
	width:100%;
	padding-top:5px;
	padding-bottom:2px;
	position:fixed;
	background-color:white;
	box-shadow:0px 0px 6px gray;
}
.header_nav_area{
	width:980px;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.header_logo{
	width:140px;
    padding-left: 20px;
}
.header_ul{
	width:320px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
        padding-top: 12px;
}
.header_ul li{
    font-size: 12px;
}
.header_ul li a{
	color:black;
	text-decoration:none;
}
.pad{
    padding-top: 100px
}
.wrap_area{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.side_bar{
    display: none;
}
.main_contents{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.contents_day{
    color: gray;
    text-align: right;
    font-size: 12px;
}
.contents_textarea{
    border-top: 1px solid #f4f4f4;
    margin-top: 10px;
    padding-top: 20px;
}
.contents_textarea img{
    width: 100%;
    height: auto;
}

.footer{
    background:#3c3c3c;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 80px;
}
.copy{
    color: #939393;
    text-align: center;
    font-size: 12px;
}
.category_name{
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
.category_menu li{
    border-bottom: 1px solid #f4f4f4;
    padding: 10px;
}
.category_title{
    display: block;
    font-weight: bold;
    color: #535560
}
.update_day{
    display: block;
    text-align: right;
    font-size: 12px;
    color: #535560
}