/* 共通 */
::placeholder {
	color: #ccc;
}

.mark {
	color: red;
}


/* ログイン前site */
/* loginフォルダ共通 */
.nav_login_h ul {
	padding: 0;
	margin: 0;
	display: flex;
}

.nav_login_h ul li {
	margin-right: 50px;
	font-size: 1.3em;
}

.nav_login_h ul li:last-child {
	margin-right: 0;
}

.nav_login_f ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.nav_login_f ul li {
	margin-right: 35px;
	font-size: 1.2em;
}

.nav_login_f ul li:last-child {
	margin-right: 0;
}


/* index.php */
#entrance {
	height: 100%;
	overflow: hidden;
}

#entrance main {
	height: 100vh;
}

#entrance .hida_box {
	position: absolute;
	top: -30%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}

#entrance .hida_box p {
	color: #fff;
	font-size: 1.3em;
	line-height: 1.2;
	user-select: none;
}

#entrance .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(33, 31, 27, 0.65);
	z-index: 998;
}

.container {
	position: relative;
}

.swiper-container .slide-img img {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	user-select: none;
}

h1.logo {
	z-index: 999;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
}

.content_box_login {
	z-index: 1000;
	position: absolute;
	top: 25%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 210px;
	height: 210px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 5px 25px -2px #ffffffab;
}

.login_form {
	z-index: 999;
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align:center;
	width: 100%;
	height: 400px;
}

.login_form input:first-of-type{
	margin-top:15px;
}

.login_form input {
    font-size: 1.2em;
    padding: 6px;
    line-height: 1.2em;
    border: 1px solid #cecece;
    background: #fff;
    color: #000;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
}
.login_form input[type="email"] {
    border-radius: 5px 5px 0 0;
}
.login_form input[type="password"] {
    border-radius: 0 0 5px 5px;
}
.login_form ::-webkit-input-placeholder {
	color: #aaa;
}

.login_form button {
	margin-top:40px;
	margin-bottom:25px;
	background-color:#053a55;
	padding: 12px 45px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	border: none;
	-webkit-transition: .5s;
	transition: .5s;
	display: inline-block;
	cursor: pointer;
	width:60%;
	color:#fff;
}

.error_msg {
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.error_msg p {
	font-size:1em;
	font-weight:bold;
	color: #f20a0a;
}

.login_form button {
	position: absolute;
	top: 150%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.login_form button:hover {
	background:#03324a;
}

.sign_up {
	position: absolute;
	top: 62%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.sign_up a {
	text-decoration: underline;
	font-size:1.3em;
	color: #fff;
}

.forgot_password {
	position: absolute;
	top: 73%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.forgot_password a {
	text-decoration: underline;
	font-size:1.1em;
	color: #fff;
}


/* パスワードを忘れた方はこちら */
.tb_reset {
	width: 100%;
}

.reset_th {
	width: 39%;
	text-align:left;
	padding-right: 1.5em;
}

.reset_td {
	width: 61%;
}

.tb_reset input[type="email"] {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 2px 10px;
	box-sizing: border-box;
	background: #fff;
}

.tb_reset input#submit {
	width: 60%;
	margin: 50px 0 0 0;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_reset input#submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.tb_reset input.reset_send_submit {
	width: 60%;
	margin: 30px 0 5px 0px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.2em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_reset input.reset_send_submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.tb_reset_password {
	width: 100%;
	margin: 0 auto;
}

.reset_th_password {
	width: 30%;
	text-align:right;
	padding-right: 1.5em;
}

.reset_td_password {
	width: 40%;
}

.tb_reset_password input[type="password"] {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 2px 10px;
	box-sizing: border-box;
	background: #fff;
}

.tb_reset_password input.reset_password_submit {
	width: 80%;
	margin: 30px 0 5px 30px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.2em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_reset_password input.reset_password_submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.tb_reset .reset_th_submit {
	text-align: center;
}

.error_msg_reset{
	text-align:right;
	color: red;
}


/* 新規登録 */
.signup_comment_1 {
	text-align: right;
	font-size: 1em;
}

.signup_comment_2 {
	text-align: right;
	font-size: 1em;
	margin-bottom: 4em;
}

.tb_signup {
	width: 100%;
}

.tb_signup tr {
	width: 100%;
	display: block;
}

.tb_signup th {
	width: 100%;
	display: block;
	margin-bottom: -20px;
	text-align: left;
}

.tb_signup td {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}

.tb_signup input[type="text"], .tb_signup input[type="password"], .tb_signup input[type="tel"], .tb_signup input[type="email"] {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 2px 5px;
	box-sizing: border-box;
	background: #fff;
}

.tb_signup input[type="date"] {
	border: 1px solid #ddd;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #fff;
}

.tb_signup select {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 5px;
}

.tb_signup input#submit {
	width: 70%;
	text-align: center;
	margin-top: 30px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_signup input#submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.tb_signup input#submit_reg {
	width: 60%;
	text-align: center;
	margin-top: 30px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #b8e4f6;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_signup input#submit_reg:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.error_msg_signup {
	color: red;
	text-align: center;
}


/* ログイン後site */
/* header共通 */


/* header */
nav.nav_member {
	width: 65%;
	max-width: 450px;
	margin: 0 0 0 auto;
}

nav.nav_member ul {
	margin: 0;
	display: flex;
	justify-content: space-between;
}

nav.nav_member ul li i, nav.nav_f ul li i {
	font-size: 1.3em;
}

.responsive_name {
	color: #fff;
	margin-top:5px;
	margin-bottom: 20px;
}

/* header2 */
.navbar-brand img.header-logo {
    width: 120px;
    height: auto;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    list-style: none;
    padding-top: 15px;
    margin: 0;
}

.nav-item {
    margin-top: 0.5rem;
}

.responsive_name_h2 {
	display: block;
	color: #fff;
	margin-bottom: 10px;
}

.nav_name_area_h2 {
    display: none;
}


/* mypage */
.mypage_comment_1 {
	text-align: left;
	font-size: 1em;
}

.mypage_comment_2 {
	text-align: right;
	font-size: 1em;
	margin-bottom: 4em;
}

.form_mypage {
    margin-top: 30px;
}

.tb_mypage input:disabled {
	color: #000;
	opacity: 1.0;
}

.tb_mypage {
	width: 100%;
}

.tb_mypage tr {
	width: 100%;
	display: block;
}

.tb_mypage th {
	width: 100%;
	display: block;
	margin-bottom: -15px;
	text-align: left;
}

.tb_mypage td {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}

.tb_mypage input[type="text"], .tb_mypage input[type="password"], .tb_mypage input[type="tel"], .tb_mypage input[type="email"] {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 2px 10px;
	box-sizing: border-box;
}

.tb_mypage input[type="date"] {
	border: 1px solid #ddd;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #fff;
}

.tb_mypage select {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 5px;
}

.tb_mypage input#submit {
	width: 70%;
	text-align: center;
	margin-top: 30px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_mypage input#submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.tb_mypage input#submit.mypage_reg {
	width: 70%;
	text-align: center;
	margin-top: 30px;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #cae9f6;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_mypage input#submit.mypage_reg:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

.error_msg_mypage {
	color: red;
	text-align: center;
}

.tb_mypage .bg-change {
	background: #f6bfbc;
}

.tb_mypage .update_p {
	font-size: 1em;
}

/* contact */
.tb_contact tr td a {
	font-size: 1.2em;
}

.contact_shading {
	background-color: #ffb4b4;
	border-radius: 5px;
}

/* resign */
.resign_message {
	text-align: center;
}

.tb_resign {
	width: 100%;
}

.tb_resign tr {
	width: 100%;
	display: block;
}

.tb_resign th {
	width: 100%;
	display: block;
	text-align: left;
}

.tb_resign td {
	width: 100%;
	display: block;
	margin-bottom: 0;
}

.tb_resign select {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 12px 10px;
	box-sizing: border-box;
	background: #fff;
}

.tb_resign input[type="checkbox"] {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding-top: 0;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.tb_resign input.submit {
	width: 100%;
	margin: 25px auto 0;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

.tb_resign input.submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}