@charset "utf-8";

html, body, input, textarea, select, button,a {
    font-family: 'メイリオ', sans-serif;
	font-weight: 400;	
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    color: #333;
	font-size : 15px;
}

@media screen and (max-width: 1100px) {
	html, body, input, textarea, select, button,a {
		font-size : 14px;

	}
}

/***************** blog ***********************/
html, body {
background: #F6F6F6;
}


h3{
font-family: 'メイリオ', sans-serif;
	font-weight: medium;
	font-size:30px;
	margin-top:130px;
letter-spacing: 0.1em;
}



/***************** blog ***********************/

p{
    line-height: 2.4;
}
.noto {
    transform-origin: top;
    transform: scale(1,0.9);
}
.roboto {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

a {
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}
img {
    vertical-align: bottom;
}
button:focus {
    outline: none;
}


.body{
    overflow-x: hidden;
    position: relative;


}
.content {
	text-align : center;
/*    position: relative; */
    z-index: 2;

}
	@media screen and (min-width: 976px) {
		.content {
		}
	}
.content_inner {
	max-width : 976px;
	margin : 0 auto;

}
	@media screen and (max-width: 976px) {
		.content_inner {
			min-width:100%;
			padding-left: 7%;
			padding-right: 7%;
		}
	}
.body.nav_open,
.body.pop_open {
    overflow: hidden;
}


/* header */
.header {
    width: 100%;
	height: 85px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 20;
	background: #ffffff;

}
@media screen and (max-width: 976px) {
	.header {
		height:70px;
	}
}

.header_logo a {
    display: block;
}
.header_logo img {
    vertical-align: baseline;
}
.nav_btn {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    position: relative;
}
.nav_open .nav_btn_txt {
    color: transparent;
}
.nav_btn_line {
    min-width: 20px;
    min-height: 13px;
    position: relative;
}
.nav_btn_line::before,
.nav_btn_line span,
.nav_btn_line::after {
    height: 1px;
    background: #666666;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.nav_btn_line::before,
.nav_btn_line::after {
    content: '';
    width: 100%;
    transition: 0.3s;
}
.nav_btn_line::before {
    top: 0;
}
.nav_btn_line::after {
    bottom: 0;
}

.nav_btn_line span {
    width: 100%;
    margin: auto 0;
    top: 0;
    bottom: 0;
}
.nav_open .nav_btn_line span {
    transform: scale(0);
}
.nav_open .nav_btn_line::before,
.nav_open .nav_btn_line::after {
    margin: auto 0;
    width: 100%;
    top: 0;
    bottom: 0;
}
.nav_open .nav_btn_line::before {
    transform: rotate(45deg);
}
.nav_open .nav_btn_line::after {
    transform: rotate(-45deg);
}
.nav {
    height: 100vh;
    background: #e30b20;
    position: absolute;
    top: 0;
    right: -100vw;
    z-index: 9;
    transition: right 0.3s linear;
}
.nav.nav_open {
    right: 0;
}

.nav_list li{
	display:block;
	color : #fff;
}
.nav_list a{
	text-decoration:none;
	display:block;
    line-height: 2;
	color : #fff;
}

.nav_list li { 
    padding-left: 24px;
    position: relative;
}
.nav_list li::before { 
    content: '';
    width: 12px;
    height: 1px;
    margin: auto 0;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.nav_sns {
    margin-top: 40px;
    padding-top: 40px;
    position: relative;
}
.nav_sns::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.nav_sns_list {
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.nav_sns_list li + li {
    margin-left: 20px;
}
.nav_sns_link {
    width: 31px;
    height: 28px;
    display: block;
}
.nav_img {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}
.nav_img {
    width: 195px;
    bottom: 40px;
}

.header_logo {
	width: 304px;
	padding: 10px 20px 2px;
}



@media screen and (max-width: 1100px) {
	.header_logo {
		width: 280px;
		padding: 15px 20px 2px;
	}

    .nav_btn {
        width: 60px;
        padding: 22px 0;
    }
    .nav_btn_txt {
        font-size: 14px;
    }
    .nav_btn_line {

    }
    .nav {
        width: 100%;
        padding: 80px 40px 0;
    }
    .nav_img {
        left: 40px;
        right: auto;
    }
    .nav_sns {
        color : #fff;
    }

    .nav_sns_ttl {
        font-size: 12px;
    }
    .nav_btn:hover .nav_btn_line::before,
    .nav_btn:hover .nav_btn_line::after {
        width: 100%;
    }
    .nav_open .nav_btn_txt {
        width: 37px;
        color: transparent;
        background: url(../images/nav_close.png) no-repeat center / contain;
    }
    .nav_sns_link {
        width: 25px;
        height: 23px;
    }
    .nav_sns_list {
        margin-top: 10px;
    }
}

.pcnav{
	width: 100%;
    text-align:center;
	position:absolute;
}
@media screen and (min-width: 1100px) {
	.pcnav{
		margin-top:68px;
	}
}

@media screen and (max-width: 1100px) {
	.pcnav{
		margin-top:60px;
	}
}


.nav_pclist{
	margin-right:1%;
	text-align:right;
	margin-top:-1.5em;
}
.nav_pclist ul{
	width:100%;
	display:inline-block;


}
.nav_pclist ul li{

	display:inline-block;
	padding:0 1.2em;


}
.nav_pclist li a{
	text-decoration:none;
}

	@media screen and (max-width: 960px) {
		.nav_pclist ul li{
			padding:0 0.8em;
		}
	}
	@media screen and (max-width: 740px) {  /* ハンバーガーボタン表示 */
		.pcnav{
			display:none;
		}
	}
	@media screen and (max-width: 740px) {  /* ハンバーガーボタン表示 */
		.spnav{
			display:none;
		}
	}

	@media screen and (min-width: 1100px) {
		.nav,
		.nav_btn{
			display:none;
		}
		main{
			margin-top:69px; /* header分 */
		}
	}


/***************** blog ***********************/
main{
	padding-bottom : 140px;
	margin-top:70px;  /* header分 */


}
@media screen and (max-width: 976px) {
	main{
		padding-bottom : 70px;
		margin-top:70px; /* header分 */
	}
}
/***************** blog ***********************/



/* footer */
.footer {
    background: #000000;
    position: relative;
    z-index: 20;
	padding-bottom:60px;
}



/***************** blog ***********************/

.footer_inner{
	padding-top:40px;
	text-align:center;
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
        background: #000000;
	padding-bottom:60px;


}

/***************** blog ***********************/



ul.footer_menu ,
ul.footer_sns_list {
	display:inline-block;
	margin:0 auto;
}

ul.footer_menu li{
	display:inline-block;
	padding:0px 1em;
	line-height:1;
	border-right:1px solid #fff;
	font-size: 14px;
	color : #fff;
}

.footer_sns{
	margin-top:40px;
}
.footer_sns_ttl{
	margin-bottom:20px;
	color : #fff;
}
ul.footer_sns_list li{
	display:inline-block;
	padding:0px 0em;
    margin:0 8px;
	line-height:1;
	width:30px;
}

ul.footer_menu li:last-child{
	border-right:none;
}
ul.footer_menu li a{
	text-decoration:none;
	color : #fff;
}
ul.footer_sns_list li a{
}

ul.footer_sns_list li img{
	width:100%;
}
.footer_copy p{
	font-size:12px;
	color : #fff;
}
@media screen and (max-width: 375px) {
	ul.footer_sns_list li{
		width:40px;
	}
}

/* ページ内TOPへナビゲーション */
.footer_top_arrow_wrap {
    width: 30px;
    height: 70px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    right: 20px;
    z-index: 2;
}
.footer_top_arrow {
    width: 10px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.footer_top_arrow_wrap:hover {
    opacity: 1;
}
.footer_top_arrow_wrap:hover .footer_top_arrow {
    animation: top_arrow 1s both;
}


.footer_copy {
	margin-top: 30px;
	text-align: center;
}

/* 円ボタン */

.button {
  display: block;
  position: relative;
  background: #e30b20;
  width: 400px;
  padding: 1.0rem;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: .1rem;
  transition: .5s;
}

@media screen and (max-width: 976px) {
	.button {
	width: 80%;
	}
}


.button:before {
  content: "";
  position: absolute;
  top: 46%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.button:after {
  content: "";
  position: absolute;
  top: 54%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}




/***************** common ***********************/
@media screen and (min-width: 640px) {
	pc_only {
		display: block;
	}
	.sp_only {
		display: none;
	}
}
@media screen and (max-width: 640px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}