@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-brown {
	background-color: #e19964;
}

.btn-brown {
	color: #fff;
	background-color: #e19964;
	border-color: #e19964;
}

.text-brown {
	color: #9f2c2c;
}
.text-rblue {
	color: #3DACD7;
}
.text-green {
	color: #62A62D;
}
.text-purple {
	color: #7565c1;
}
.text-pink {
	color: #e95383;
}
.bg-beige {
	background-color: #f9dec5;
}
.bg-pink {
	background-color: #f9c5c5;
}

.btn-purple {
	color: #fff;
	background-color: #7565c1;
	border-color: #7565c1;
}

.btn-rblue {
	color: #fff;
	background-color: #21AEE5;
	border-color: #21AEE5;
}

.btn-green {
	color: #fff;
	background-color: #4bbd33;
	border-color: #4bbd33;
}

.btn-yellow {
	color: #fff;
	background-color: #ffa700;
	border-color: #ffa700;
}

.btn-pink {
	color: #fff;
	background-color: #e95383;
	border-color: #e95383;
}


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

.border-pink {
    border-color: #e95383!important;
}


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

.jumbotron {
    position: relative;
    border-radius: 0;
    background-image: url(../img/top.png);
    background-repeat: no-repeat;
    /* background-size: inherit; */
    background-attachment: fixed;
    background-position: top 75px center;
}

.bg_mask {
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
}

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

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

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

.headerbg {
	background: #f9c5c5;
    border-radius: 10px;
}

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

.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;
    /*font-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;
}

.contents .item_menu {
    border-radius: 10px;
}

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

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

.footer a {
	color: #FFFFFF;
}

.footer hr {
	background-color: #211612;
	height: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	margin-top: 0px;
}

address {
	text-align: center;
	color: #634b12;
}

.logo {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


/*================================================
 *  TOPへ戻る
 ================================================*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 0;
    background: #ff3d3d;
    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: #ffffff;
    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;
	}
}