@charset "utf-8";
* {
	margin:0;
	padding:0;
	font-style:normal;
	line-height:1.5;
	list-style:none;
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
	color: #222;
}
*:lang(en) {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.header-block{
	background: #E4007F;
	height:24px;
}
.header-block .box{
  margin:0 auto;
  width: 100%;
  padding-left: 20px;
}
.header-block .box a{
	color: #FFF;
}
a {
	text-decoration:none;
}
a:hover {
	text-decoration: underline;
	color:#FF4415;
}
a img:hover {
	opacity:0.7;
}
img {
	vertical-align: middle;
	height: auto;
	max-width: 100%;
}
table {
	border-collapse: collapse;
}
ul.disc > li{
	list-style-type:disc;
	margin-left:1.5em;
	padding-bottom:0.5em;
	line-height:1.4em;
}
.new-line span{
	display: inline-block;
}
.list-none{
	list-style: none;
}
/*************************** menu ******************************/
.nav_toggle {
	display: block;
	position: relative;
	width: 40px;
	height:20px;
	/* width: 44px;
	height: 37px; */
	position: fixed;
	top: 29px;
	right: 15px;
	z-index: 111;
}
@media screen and (min-width: 768px) {
	.nav_toggle {
		width: 75px;
		height: 37px;
		top: 35px;
	}
}
.nav_toggle:hover {
	cursor: pointer;
}

.nav_toggle i {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #222;
	position: absolute;
	transition: transform 0.5s, opacity 0.5s, width 0.5s;
}
@media screen and (min-width: 768px) {
	.nav_toggle i {
		height: 6px;
	}
}


.nav_toggle i:nth-child(1) {
	top: 0;
}

.nav_toggle i:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.nav_toggle i:nth-child(3) {
	bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
	transform: translateY(9px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
	.nav_toggle.show i:nth-child(1) {
		transform: translateY(16px) rotate(-45deg);
	}
}

.nav_toggle.show i:nth-child(2) {
	opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
	transform: translateY(-8px) rotate(45deg); 
}
@media screen and (min-width: 768px) {
	.nav_toggle.show i:nth-child(3) {
		transform: translateY(-16px) rotate(45deg);
	}
}
.nav_toggle::before{
	position: absolute;
	content: "MENU";
	font-size: 13px;
	left: 0;
	bottom: -25px;
}
@media screen and (min-width: 768px) {
	.nav_toggle::before{
		font-size: 20px;
		left: 8px;
		bottom: -34px;
	}
}

nav {
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
	background:rgba(255,255,255,0.9);
	z-index:110;
	width:100%;
	height:100%;
	overflow-y: auto;
	display:flex;
	flex-direction: column;
	align-items: center;
}
nav ul {
	padding-bottom:0;
	margin:auto;
}
nav ul li {
	text-align:center;
	padding:10px 0;
}
nav ul li a {
	color: #222;
	font-size:28px;
	transition: color .3s;
}
nav ul li.sf a {
	font-size: 20px;
}
nav ul li a span {
	font-size:30px;
	color:#FF4415;
}
nav ul li a:hover {
	color:#FF4415;
	text-decoration:none;
}
nav ul li .blank-icon{
	width: 30px;
	height:30px;
	margin-left: 15px;
}
.nav.show {
	opacity: 1;
	visibility: visible;
}
#home main ul.sns {
	position:fixed;
	padding:0;
	height: 56px;
	top:35px;
	right: 130px;
	display: flex;
	align-items: center;
	z-index:10;
}
#home main ul.sns li{
	margin: 0 10px;
}

.sp{
	display:block;
}
@media screen and (min-width: 768px) {
	.sp{
		display:none;
	}
}
.bg-footer{
	background: #444;
}
.bg-footer ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.bg-footer ul li{
	margin: 3px 15px 0;
}
.bg-footer ul li img{
	width: 308px;
	height: 38px;
	margin-bottom: 10px;
}
@media screen and (min-width:676px) {
	.bg-footer ul li img{
		margin-bottom: 0;
	}
}
@media screen and (min-width: 768px) {
	.bg-footer ul li{
		margin: 10px 30px ;
	}
}
.bg-copyright{
	background: #333;
	color: #707070;
	font-size: 12px;
	margin: 0;
	padding:5px 15px;
	text-align: center;
}
