@charset "utf-8";
/*===================
  ログイン画面
====================*/
/* ログインページ */
.login {
	padding-top: 50px;
	padding-bottom: 50px;
	min-height: 70vh;
}

.login form {
    background: #fff;
    border: 1px solid #ddd;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 20px;
	max-width: 400px;
	border-radius: 5px;
	margin: 0 auto;
    margin-bottom: 30px;
}

.login h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: #333;
}

.login form div {
	margin-bottom: 15px;
}

.login label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #444;
}

.login input[type="email"],
.login input[type="password"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.login button {
	width: 100%;
	padding: 12px;
	background: #3b8e3b;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: 0.2s;
}

.login button:hover {
	background: #2f6f2f;
}

.login p {
	text-align: center;
}
.login p + p {
	margin-top: 15px;
}

.login a {
	color: #3b8e3b;
	text-decoration: none;
}

.login a:hover {
	text-decoration: underline;
}


/*===================
  新規登録
====================*/
/*== 新規登録 ==*/
.sing_up {
	position: relative;
	background-color: #dbdeab;
	padding-top: 80px;
	padding-bottom: 80px;
}
.sing_up .inner {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	margin-top: 80px;
	transform: translateY(0);
	padding: 50px 20px;
	box-sizing: border-box;
}
.sing_up form {
	background-color: #fefbf4;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	opacity: 1;
	max-width: 730px;
	margin: 0 auto;
	margin-top: 80px;
	transform: translateY(0);
}
.sing_up form .content_box {
	padding: 20px;
}
.sing_up form .content_box dl {
}
.sing_up form .content_box dl + dl {
	margin-top: 30px;
}
.sing_up form .content_box dl dt {
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
}
.sing_up form .content_box dl dt .required {
	background-color: #ed1c24;
	color: #fff;
	font-size: 24px;
	padding: 5px 10px 3px;
	border-radius: 5px;
	margin-right: 15px;
}
.sing_up form .content_box dl dd {
	margin-top: 15px;
}
.sing_up form .content_box dl dd input {
	width: 100%;
	background-color: #e6e6e6;
	height: 70px;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 2px solid #999;
	font-size: 28px;
	border: none;
}
.sing_up form .content_box dl dd input[type="date"] {
  font-size: 21px;
  padding: 8px 12px;
  color: #333;
}

.sing_up form .content_box dl dd input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(40%) sepia(90%) saturate(200%) hue-rotate(90deg); 
  cursor: pointer;
}

.sing_up form .content_box dl dd textarea {
	width: 100%;
	background-color: #e6e6e6;
	min-height: 300px;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 2px solid #999;
	font-size: 28px;
	border: none;
}
.sing_up form .content_box dl dd .upload_box button {
    width: 100%;
    height: 300px;
    background-color: #e6e6e6;
	border: 2px solid #999;
	border-radius: 10px;
	cursor: pointer;
	border: none;
}
.sing_up form .content_box dl dd .upload_box button span {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    padding-top: 75px;
    position: relative;
}
.sing_up form .content_box dl dd .upload_box button span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-image: url(../images/common/pc/icon_up.svg);
	background-repeat: no-repeat;
	background-size: 72px;
	width: 72px;
	height: 72px;
}
.sing_up form .content_box dl.pass dd {
	position: relative;
}
.sing_up form .content_box dl.pass dd input {
	padding-right: 40px;
}
.sing_up form .content_box dl.pass dd button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	cursor: pointer;
}
.sing_up form .content_box dl.pass dd button:before {
	content: "";
	position: absolute;
	top: -5px;
	right: 0;
	background-image: url(../images/common/pc/icon_eye.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	width: 30px;
	height: 22px;
}

.sing_up form .content_box h3 {
	font-size: 36px;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 30px;
	display: flex;
	align-items: center; /* ← これで上下中央揃え */
	gap: 10px;    
}
.sing_up form .content_box h3 .check_btn {
	display: inline-block;
	position: relative;
	font-size: 0;
}
.sing_up form .content_box h3 .check {
	display: none;
}
.sing_up form .content_box h3 .click_btn {
	display: inline-block;
	font-weight: bold;
	border-radius: 10px;
	padding: 10px 24px;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	background-color: #ccc;
	color: #333;
}
.sing_up form .content_box h3 .click_btn::after {
	content: "OFF";
}
.sing_up form .content_box h3 .check:checked + .click_btn {
	background-color: #f7931e;
	color: #fff;
}
.sing_up form .content_box h3 .check:checked + .click_btn::after {
	content: "ON";
}
.sing_up form .content_box dl dd select {
	width: 100%;
	background-color: #e6e6e6;
	min-height: 70px;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 2px solid #999;
	font-size: 28px;
	border: none;
}
.sing_up .btn_box {
    padding: 50px 20px;
	text-align: center;
	gap: 50px;
	display: flex;
    justify-content: center;
}
.sing_up .back_btn {
}
.sing_up .back_btn a {
	display: inline-block;
	width: 270px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	border: 1px solid #000;
	border-radius: 50px;
	padding-left: 10px;
	box-sizing: border-box;
}
.sing_up .back_btn a span {
	position: relative;
}
.sing_up .back_btn a span:before {
	content: "";
	position: absolute;
	top: 5px;
	left: -28px;
	background-image: url(../images/common/pc/icon_back.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
}
.sing_up .send_btn {
}
.sing_up .send_btn button {
	display: inline-block;
	width: 270px;
	height: 80px;
	line-height: 80px;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	background-color: #2b8838;
	border-radius: 50px;
	border: none;
	padding-left: 20px;
	box-sizing: border-box;
	cursor: pointer;
}
.sing_up .send_btn button span {
	position: relative;
}
.sing_up .send_btn button span:before {
	content: "";
	position: absolute;
	top: 5px;
	left: -33px;
	background-image: url(../images/common/pc/icon_save.svg);
	background-repeat: no-repeat;
	background-size: 24px;
	width: 24px;
	height: 28px;
}

@media screen and (max-width:1024px) {
/*== 新規登録 ==*/
	.sing_up {
	    padding-top: 50px;
	    padding-bottom: 50px;
	    padding-left: 5%;
	    padding-right: 5%;
	}
	.sing_up form {
	    margin-top: 30px;
	}
	.sing_up form .content_box dl dt {
	    font-size: 20px;
	}
	.sing_up form .content_box dl dt .required {
        font-size: 16px;
        padding: 4px 6px;
        border-radius: 5px;
        margin-right: 7px;
	}
	.sing_up form .content_box dl dd input {
	    height: 55px;
	    font-size: 20px;
	}
	.sing_up form .content_box dl dd textarea {
	    font-size: 20px;
        min-height: 250px;
	}
	.sing_up form .content_box dl dd .upload_box button span {
	    font-size: 28px;
	}
	.sing_up form .content_box h3 {
	    font-size: 24px;
	    margin-top: 0;
	    margin-bottom: 30px;
	}
	.sing_up form .content_box dl dd select {
	    min-height: 55px;
	    font-size: 20px;
	}
	.sing_up .btn_box {
	    padding: 20px 0 30px;
	    flex-wrap: wrap;
	    gap: 30px;
	}
	.sing_up .btn_box .back_btn a {
		width: 250px;
		height: 65px;
		line-height: 65px;
		font-size: 20px;
	}
	.sing_up .btn_box .back_btn a span:before {
		top: 3px;
	}
	.sing_up .btn_box .send_btn {
	}
	.sing_up .btn_box .send_btn button {
		width: 250px;
		height: 65px;
		line-height: 65px;
		font-size: 20px;
	}
	.sing_up .btn_box .send_btn button span:before {
		top: 2px;
	}
}


/* =============================
   パスワード再設定メール送信用ページ専用
============================= */
.password_reset_request_page {
	min-height: 80vh;
	background-color: #dde0ae;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 20px;
	box-sizing: border-box;
}

.password_reset_request_page .inner {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.password_reset_request_page .page_title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.8em;
	color: #333;
}

/*カードエリア（視覚統一用）*/
.password_reset_request_page .password_request_card {
	background-color: #fdfdeb;
	padding: 30px 25px;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 500px;
	margin: 0 auto 40px;
	text-align: left;
}

.password_reset_request_page .password_request_card p {
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
	margin-bottom: 25px;
}

.password_reset_request_page .password_request_card label {
	display: block;
	font-weight: bold;
	color: #333;
	font-size: 1rem;
	margin-bottom: 8px;
}

.password_reset_request_page .password_request_card input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	background: #fff;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-sizing: border-box;
}

.password_reset_request_page .password_request_card input:focus {
	border-color: #2b8838;
	box-shadow: 0 0 5px rgba(43, 136, 56, 0.2);
	outline: none;
}

/*ボタン共通スタイル*/
.password_reset_request_page .btn_box {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}



/* 📱 スマホ対応 */
@media screen and (max-width:1024px) {
	.password_reset_request_page .password_request_card {
		padding: 25px 20px;
	}
}


/* =============================
   パスワード再設定フォーム（カードデザイン + 目アイコン）
============================= */
.password_reset_page .password_card {
	background-color: #fdfdeb;
	padding: 30px 25px;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 500px;
	margin: 0 auto 40px;
	text-align: left;
}

.password_reset_page .password_card dl {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.password_reset_page .password_card dl dt {
	font-weight: bold;
	color: #333;
	font-size: 1rem;
}

.password_reset_page .password_card dl dd {
	margin: 0;
}

.password_reset_page .password_card .input_wrap {
	position: relative;
}

.password_reset_page .password_card .input_wrap input[type="password"],
.password_reset_page .password_card .input_wrap input[type="text"] {
	width: 100%;
	padding: 12px 40px 12px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	background: #fff;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-sizing: border-box;
}

.password_reset_page .password_card .input_wrap input:focus {
	border-color: #2b8838;
	box-shadow: 0 0 5px rgba(43, 136, 56, 0.2);
	outline: none;
}

/* 👁 ボタン */
.password_reset_page .password_card .input_wrap button.toggle-pass {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 24px;
	height: 24px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.password_reset_page .password_card .input_wrap button.toggle-pass:hover {
	opacity: 1;
}

.password_reset_page .password_card .input_wrap button.toggle-pass img {
	width: 22px;
	height: 22px;
	vertical-align: middle;
}

.password_reset_page .password_card .input_wrap button.toggle-pass.visible img {
	opacity: 0.6;
}

/* 📱 スマホ対応 */
@media screen and (max-width:1024px) {
	.password_reset_page .password_card {
	padding: 25px 20px;
	}
}
