@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 1080px) {
.pc { display: none !important; }
.sp { display: block !important; }
header{
	z-index: 100000000000000000;
	width: 100%;
	background-color: rgba(255,255,255,0.5);
	box-shadow:0px 0px 5px -3px #333;
	height:60px;
	position: relative;
}
.block01,
.block02{
    background: none;
}
.block01 h2 {
	font-size: 24px;
	margin: 0 0 2% 0;
}
.block01 h3,
.block02 h3{
	font-size: 18px;
	margin: 0 0 15px 0;
}
.block01 p,
.block02 p{
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.block02 {
	height: 13vw;
	padding: 2% 2% 0 2%;
	margin: 0 0 2vw 0;
}
p.logo_f {
	margin: 0px auto;
	float: none;
	display: block;
	text-align: center;
	width: 250px;
}
p.mail_f {
	margin: 0px auto;
	float: none;
	width: 150px;
	padding: 0;
}
p.logo img{
	height:40px;
}
h1 {
    font-size: 9px!important;
    color: #81b5d8;
    font-weight: normal;
    width: auto;
	padding-left:10px;
	padding-right:10px;
    margin: 22px auto;
}
h1 img {
	width:240px;
}
.spnone{
	display:none!important;
}
h1{
	font-size:11px;
}
p {
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 2%;
    padding-left: 0px;
	font-size:14px;
}



/* ドロワーメニュー
------------------------------ */
nav ul {
	list-style:none;
}
nav ul li a {
	display: block;
	text-decoration: none;
	background:#1260b1;
	color: #fff !important;
	padding: 1em;
	margin-bottom: 1px;
}
.contents {
	display: table;
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}
/* ------------------------------------------------ drawer menu */
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	padding: 0;
	background: #0052a8;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
}
.drawer-menu ul {
	margin:0px;
	padding:0px;
}
.drawer-menu li {
	text-align: left;
	padding:0px 0px 0px 0px;
	list-style-type:none;
}
.drawer-menu li a {
	display: block;
	line-height: 28px;
	padding: 6px 0px 6px 10px;
	font-size: 14px;
	color: #fff;
	-webkit-transition: all .8s;
	transition: all .8s;
}
.drawer-menu li a:hover {
}

/* ------------------------------------------------ checkbox */
.check {
	display: none;
}

/* ------------------------------------------------ menu button */
.menu-btn {
	position:absolute;
	display: block;
	top: 10px;
	right: 10px;
	display: block;
	width: 32px;
	height: 30px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 300;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 32px;
	height: 3px;
	background: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
.menu-btn__text {
	position: absolute;
	bottom:-14px;
	left: 0;
	right: 0;
	margin: auto;
	color: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
	font-size: 12px;
}
.menu-btn:hover .bar {
	background: #999;
}
.menu-btn:hover .menu-btn__text {
	color: #999;
}
.close-menu {
	position: fixed;
	top: 0;
	right: 300px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(../images/cross.svg),auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}
/* ------------------------------------------------ checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 200;
}
.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
	width: 56px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 56px;
	top: 40px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 100;
}
.block01 p span, .block02 p span{
}
.block01 {
	display: list-item;
	height: auto;
	padding: 0 2% 0 0;
}
.block02 {
    height: auto;
}
}
@media screen and (max-width: 599px) {
.block01 h2 {
    font-size: 20px;
    margin: 0 0 2% 0;
}
.block01 h3, .block02 h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
}
.block01 p, .block02 p {
    font-size: 14px;
}
.block02 {
    height: auto;
}
}
