* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
	background-image: url(../image/b015.jpg);
    line-height: 1.7;
    /* background: #fff; */
}

/* Header */
.sp-header {
    text-align: center;
    padding: 10px;
}

.sp-logo {
    width: 200px;
}

/* Menu */
.sp-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
	background: #660000;
}

/* Images */
.full-img {
    width: 100%;
    height: auto;
}

.content-img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 15px auto;
}

/* Content */
h2 {
    background: #660000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 22px;
}

h3 {
	font-size: 20px;
}

.content {
    padding: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    padding-left: 10px;
    border-left: 3px solid #ccc;
}

/* Footer */
.sp-footer {
    text-align: center;
    padding-top: 20px;
	padding-bottom: 10px;
    /* background: #f5f5f5; */
	background:rgba(0,0,0,0.8);
}

.sp-footer p {
	color: white;
	font-size: 120%;
	font-weight: bold;
}

.contact{
	text-align: center;
    padding: 10px 10px;
	color: white;
	font-style: normal;
	font-weight: bold;
    background: #660000;
}

.contact a {
	color: white;
	font-size: 24px;
}

.mon {
    width: 80px;
    margin-top: 10px;
}

/*============================================
ハンバーガーメニュー
============================================*/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #660000;
}

.logo {
  font-size: 24px;
}

/*   ここから下がハンバーガーメニューに関するCSS   */
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  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);
}

#drawer-check:checked ~ .drawer-open span:after {
  top: 0;
  transform: rotate(-45deg);
}
  
.drawer-item a {
	color: white;
	font-size: 24px;
}
 
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #660000;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}