@charset "UTF-8";

/*=================================
web font
==================================*/
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
  
/* ---------- Noto+Sans+JP ---------- */
b {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
strong {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
/*=================================
scroll animation
==================================*/
.fadein {
  opacity : 0;
  transform : translate(0, 150px);
  transition : all 0.3s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}
/*=================================
menu-btn
==================================*/
.menu-btn {
	background: #888;
	/*position: absolute;*/
	position: fixed;
	top: 0px;
	right: 0px;
	display: flex;
	height: 45px;
	width: 45px;
	justify-content: center;
	align-items: center;
	z-index: 1100;
	transition: all ease 0.8s;
	border: 1px solid #888;/*余白対策*/
}
.menu-btn span,
.menu-btn span:after{
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
}
.menu-btn span:before{
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
}
.menu-btn span:after{
    top:10px;
}
#menu-btn-check:checked ~ .menu-btn{
    right: 0px;
}
#menu-btn-check:checked ~ .menu-btn span{
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before{
    width: 24px;
    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 {
	background-color: rgba(51,51,51,0.85);
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	right: -100%;
    z-index: 1000;
	transition: all 0.8s;
	overflow-y: auto;
	white-space: nowrap;
}
@media screen and (min-width: 641px) and (max-width: 899px) {
.menu-content {
	width: 50%;
}
}
@media screen and (min-width: 900px) {
.menu-content {
	width: 30%;
}
}
#menu-btn-check:checked ~ .menu-content{
    right: 0;
}
.menu-content .linklist{
    margin: 70px auto auto;
    padding: 0;
}
.menu-content .linklist li {
    border-bottom: 1px solid #fff;
    padding: 0 0 0;
    width: 100%;
	position: relative;
	font-weight: 700;
}
.menu-content .linklist li:hover {
	background-color: #fe5757;
}
.menu-content .linklist li a {
    font-size: 14px;
	text-decoration: none;
    color: #FFF;
    padding: 10px 5% 10px 5%;
	display: block;
}
.menu-content .linklist li:before{
	content: "»";
	font-size: 14px;
	color: #FFF;
    position: absolute;
    top: calc(50% - 14px);
    right: 5%;
}
.menu-content .linklist li a i{
	font-style: normal;
    padding: 0 0 0 20px;
}

/*=================================
common
==================================*/
* {
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
body {
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	-webkit-text-size-adjust: 100%;/*sp用 */
}
body, div {
	margin: 0;
	padding: 0;
}
p, ul, ul li, ol, ol li, dl, dt, dd {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, li, em, strong {
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
img {
	width: 100%;
}
img, a img {
	border-width: 0px;
	border-style: none;
	vertical-align: bottom;
}
a {
	overflow: hidden;
	cursor: pointer;
	cursor: hand;
	color: #333;
}
a:hover, a img:hover {
	opacity: .75;
	filter: alpha(opacity=75); /* IE lt 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-khtml-opacity: .75; /* Safari 1.x */
	-moz-opacity: .75; /* FF lt 1.5, Netscape */
}
.clear {
	clear: both;
	font-size: 0px;
	line-height: 0px;
	margin: 0px;
	padding: 0px;
	height: 0px;
}
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
form {
	margin: 0px;
	padding: 0px;
}
label {
	cursor: pointer;
}
.hd {
	display: none;
}
.center {
	text-align: center;
}
/*文字色*/
.c_red {color: #fe5757;}
.c_blue {color: #5271fe;}
.c_l_blue {color: #86dbe7;}
.c_yellow {color: #fedd59;}
.c_wh {color: #FFF;}

/*背景色*/
.bg_red {background-color: #fe5757;}
.bg_blue {background-color: #5271fe;}
.bg_l_blue {background-color: #86dbe7;}
.bg_l_l_blue {background-color: #e0f1f4;}/*さらに薄いブルー*/
.bg_yellow {background-color: #fedd59;}
.bg_wh {background-color: #FFF;}

/*罫枠見出し*/
.kei_red {
	border: 2px solid #fe5757;
	color: #fe5757;
	font-weight: 700;
	padding: 10px 15px;
	text-align: center;
	width: auto;
	margin: 20px auto;
	font-size: 20px;
}
/*大見出し*/
.center_copy {
	font-size: 36px;
	line-height: 140%;
	font-weight: 700;
	margin: 50px auto 50px auto;
	text-align: center;
}
@media all and (max-width: 640px) {
.center_copy {
	font-size: 26px;
	margin: 30px auto 30px auto;
}
}
/*左側ライン*/
.L_line {
	border-left: 5px solid #fe5757;
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	color: #fe5757;
	padding: 0 0 0 10px;
	margin: 0 0 10px 0;
}
/*画像ライン*/
.line_1_long {
	width: 100%;
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	background-image: url("/sumabee/images/line_1_long.png");
	background-size: 100% 5px;
	background-position: left bottom;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}
.line_1 {
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	background-image: url("/sumabee/images/line_1.png");
	background-size: 100% 5px;
	background-position: left bottom;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}
.line_2 {
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	background-image: url("/sumabee/images/line_2.png");
	background-size: 100% 5px;
	background-position: left bottom;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}
.line_3 {
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	background-image: url("/sumabee/images/line_2.png");
	background-size: 100% 5px;
	background-position: left bottom;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}
