@charset "UTF-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
#wrap, #contents {
  flex: 1;
}
.d-flex {
display: flex;
}
#mainmenu {
	float: left;
	width: 304px;
	height: 640px;
	background: url(../image/main_menu.png) no-repeat;
}

#mainmenu ul {
	font-size: 20px;
	margin: 0 70px;
	padding-top: 100px;
}
#mainmenu ul li.menu02 {
	list-style: none;
	height: 100px;
	margin: 0 auto 35px -20px;
}

#mainmenu ul li.menu01 {
	list-style: url(../image/mainmenu_li.png);
	height: 60px;
}
#mainmenu ul li a {
	color: #fff;
	text-decoration: none;
}
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    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%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    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-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/* footer */

#footer {
	letter-spacing: 0.3em;
	background: #FFE8B5;
	width:100%;
}
#footer a{
	text-decoration: none;
	color: #717171;
}

.Copyright {
	text-align: center;
	font-size: 13px;
	color: #036EB7;
}

#footercontents ul li {
	list-style: none;
}
.footerline {
	height: 20px;
	border-bottom: 1px solid #717171;
}
.btn-square-soft {
display: block;
position: relative;
text-decoration: none;
color: #FFF;
height: 80px;
padding:0 2rem;
margin: 0 auto;
line-height: 80px;
border-radius: 5px;
text-align: center;
background:  #FFC107;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.btn-square-soft:active {
  /*押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*沈むように*/
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-image:  #FFC107;
}
@media screen and ( min-width:768px ) {
.sp {
display: none;
}
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
#wrap {
	width:960px;
	margin:0 auto;
}
.btn-square-soft {
width:100%;
}
/* footer */

#footer {
	margin-top: 80px;
	height: 150px;
	font-size:0.8rem;
}

.Copyright {
	text-align: center;
	font-size: 13px;
	color: #036EB7;
}

#footercontents ul {
	width: 960px;
	height: 130px;
	margin: 10px auto;
	display: flex;
	justify-content: space-between;
}
#footercontents ul li {
	margin: 30px 0 0 30px;
	width: 120px;
	height: 100px;
}
}
/*sp*/
@media screen and ( max-width:767px ) {
.pc {
display: none;
}
#wrap {
width:100%;
}
#contents {
position: relative;
}
header {
position: absolute;
width:100%;
background-color: #3584bb;
top:0;
left:0;
}
.btn-square-soft {
width:auto;
}
/* footer */

#footer {
padding:2rem 0;
}

.Copyright {
	text-align: center;
	color: #036EB7;
}

#footercontents ul {
	width: 90%;
	margin: 0 auto;
}
#footercontents ul li {
	width: 100%;
	padding:1rem 0;
}
}