@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*************************************************************
 /css/base.css
**************************************************************
1) html, body, #container
2) flexbox
3) img
4) a
5) fonts
6) pagetop
-------------------------------------------------------------*/


/* 1) html, body, #container
-------------------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	position: relative;
	font-size: 1.6rem;
	line-height: 1.75;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', sans-serif;
	font-weight: normal;
	font-weight: 400;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
	color: #000;
	background: url(../images/lp/bg.jpg) repeat-x center top/1200px auto;
}
 #container {
	width: 950px;
	margin: 0 auto;
 } 

/* 2) flexbox
-------------------------------------------------------------*/
.flexbox {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* 3) img
-------------------------------------------------------------*/
img {
	max-width: 100%;
	vertical-align: top;
}

/* 4) a
-------------------------------------------------------------*/
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	transition: 0.3s linear;
}
.btn {
	text-align: center;
	border: #611000 solid 3px;
}
.btn a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(to bottom,  rgba(163,42,0,1) 0%,rgba(163,42,0,1) 30%,rgba(137,23,0,1) 100%);
	border: #a32a00 solid 3px;
}
.btn a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* 5) fonts
-------------------------------------------------------------*/
.gothic {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', sans-serif;
}
.mincho {
	font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', serif;
	font-weight: bold;
	font-weight: 700;
	letter-spacing: 0;
}
.f_400, normal {
	font-weight: normal;
	font-weight: 400;
}
.f_500 {
	font-weight: normal;
	font-weight: 500;
}
.f_600 {
	font-weight: bold;
	font-weight: 600;
}
.f_700, bold {
	font-weight: bold;
	font-weight: 700;
}
.brown { color: #73420e; }

/* 6) pagetop
-------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: -40px;
	right: 50px;
}
.pagetop a {
	display: block;
	width: 60px;
	height: 40px;
	background-color: #000;
	border-radius: 8px 8px 0 0;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 40px;
	opacity: 0.3;
}