@charset "UTF-8";

*{ margin:0; padding:0; }

h1 { font-size:12px; color: #000000; font-weight: normal;}
h2 { font-size:16px; color: #ffffff; background-color: #ffa500; padding-left:10px;}

a{text-decoration: none; color: #0000ff;}

.title{ color: #000000; }

img{border:0px;}

table{
	border: 0;
	cellpadding: 0;
	cellspacing: 0;
	}
td{font-size: 13px}

body {
	background:#ffffff;
	font-size:15px;
	text-align: center;
	}

#container {
	position:relative;
	margin:0 auto;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	padding-left:10px;
	padding-right:10px;
	width: 90%;
	background:#ffffff;
	text-align: left;
	line-height: 1.5;
	color: #333;
	font-size: 16px;

	}

#head{
	width: 98%;
	padding:5px;
	}

#head a {text-decoration: none;
		color: #000000; }


#main{
	padding:0px;
	width: 100%;
	font-size: 16px;
	}

#menu{
	width: 100%;
	}

/*
#submenu{
	width: 100%;
	padding-left: 10px;
	font-size: 18px;
	line-height: 2em
	}
*/


#foot{
	width:100%;
	clear:both;
	text-align:center;
	border-top: 1px solid #808080;
	}
#foot a{ color:#333; text-decoration: none; }


/*ハンバーガーメニュー*/

.menu-btn {
    position: fixed;
    top:  20px;
    right: 20px;
    display: flex;
    height: 35px;
    width: 35px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
 border: 2px solid #ff4500;
 border-radius: 10px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ff4500;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#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);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    overflow: scroll;
/*    -webkit-overflow-scrolling: touch;
    box-sizing: border-box; */
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #000;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/*ハンバーガーメニュー終了*/

	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}


.category{ float: left; width:50%;}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: normal;/*太字*/
}

.breadcrumb li:after {/* ▶を表示*/
  font-family: "Font Awesome 5 Free";
  content: '\f0da';
  padding: 0 0.2em;
  color: silver;
	font-weight: 900;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: "Font Awesome 5 Free";
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #f3948f;
	font-weight: 900;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}


.btn-link {
  position: relative;
  display: inline-block;
  font-weight: normal;
  padding: 0.2em 0.3em;
  text-decoration: none;
  color: #696969;
  background: #fff;
  transition: .4s;
}




 @media screen and (min-device-width: 768px) {
 /* PC用のCSS */

#container {
	width: 760px;
	position:relative;
	margin: 0 auto;
	text-align: left;
	border-left:  1px solid #808080;
	border-right: 1px solid #808080;
	}

#submenu{
	float:left;
	width:200px;
	padding-left: 0px;
	font-size:16px;
	line-height: 1.5em
	}



#main{
	float:right;
	width:520px;
	padding:10px;
	}

#menu{
	float:right;
	width:180px;
	font-size:14px;
	}


.menu-btn{display: none;  }

#foot{
	width:100%;
	clear:both; 
	background: #d3d3d3;
	text-align:center;
	}
#foot a{ color:#333; text-decoration: none; }


}







