@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}


/*================================================
 *  一般・共通設定
 ================================================*/

body {
	background-color: #ffffff;
}

a[href="https://noface.jp/"] { display: none; }

.row {
	margin-right: 0px;
	margin-left: 0px;
}

.container {
	max-width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0rem;
}

p {
	margin-bottom: 0;
}

.bg-gra {
	background: linear-gradient(0deg, #dee2e6, #f8f9fa);
}

.bg-glass {
	box-shadow: 20px 20px 50px rgb(0 0 0 / 50%);
	background-color: rgb(255 255 255 / 10%);
	border-top: 1px solid rgb(255 255 255 / 50%);
	border-left: 1px solid rgb(255 255 255 / 50%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.btn:hover {
	color: #fff;
	opacity: 0.7;
}

.btn-shadow {
	box-shadow: 5px 5px 10px rgb(0 0 0 / 25%);
}


/*================================================
 *  
 ================================================*/

.jumbotron {
	position: relative;
	border-radius: 0;
	background-image: url(../img/top.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	/*background-position: top;
	background-attachment: fixed;
	padding: 5rem 2rem;*/
}

ul {
	list-style: none;
	/*padding-left: 0;*/
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}

/*================================================
 *  ヘッダー
 ================================================*/

.header {
	border-bottom: .25rem solid #ffe59e;
	margin-bottom: 1.5rem;
	margin-top: 1rem;
}

.headerbg {
	background: #211612;
}

.head_contents {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	flex-wrap: wrap;
	align-content: flex-start;
}

.head_item{
  	border-radius: 10px;
}
/*================================================
 *  login
 ================================================*/
.form_item{
	display: inline-flex;
	flex-wrap: wrap;
	/*flex: 1;*/
}
.form-group {
	display: inline-flex;
	margin-bottom: 0;
}

.login {
	background-image: url(../img/bg_login.png);
	background-repeat: no-repeat;
	background-position: 20px center;
	text-align: right;
}
.loginbox {
	width: 270px;
	height: 140px;
	padding: 20px;
	/*margin: 0 0 10px 30px;*/
	border: 3px solid #784621;
	color: #784621;
	background-color: #fff6da;
	border-radius: 10px;
}
.logintext {
	color: #2370e3;
	text-align: center;
	margin: 0 0 10px 0;
}
input {
	margin: 0;
	ont-family: revert;
	/*ffont-size: smaller;*/
	line-height: inherit;
}


/*================================================
 *  container
 ================================================*/
.contents {
	display: flex;
	flex-wrap: wrap;
}

.contents .item {
	flex: 1;
	/*「flex: 1;」は、「flex-grow: 1;」、「flex-shrink: 1;」、「flex-basis: 0;」の3つ同時に指定したことと同じ意味*/
	border-radius: 10px;
}

/*================================================
 *  フッター
 ================================================*/

/*
.footer {
	background-color: #fef6ea;
	height: 320px;
	width: 100%;
}

.footer a {
	color: #FFFFFF;
}

*/

/*================================================
 *  TOPへ戻る
 ================================================*/
#page_top {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 0;
	background: #000;
	opacity: 0.8;
	border-radius: 10px;
}

#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top a::before {
	font-family: "Font Awesome 6 Pro";
	content: '\f062';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 40px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	font-weight: 900;
}

/*================================================
 *  タブレット/スマートフォン向けデザイン
 ================================================*/
@media (max-width:960px) {
	.form_item{
		margin-bottom: 10px;
	}  
}

@media (max-width:720px) {
	h1, h2, h3, h4, h5, h6 {
		font-size: 1.25rem;
	}
	.contents {
		display: flex;
		flex-direction: column;
	}
	.contents .item {
		flex: 1;
	}
}