@charset "UTF-8";

/**
* ======================================================
* ヘッダー周り
* ======================================================
*/  

.simple_app .global_header .logo_container .site_logo {
	height: 80px;
	text-align: center;
}
.simple_app .site_logo img {
	width: auto;
	height: 100%;
}
.simple_app .nav_container .lang_container {
	right: 100px;
}
.simple_app .nav_container .lang_container .lang_btn {
	color: #b0b0b0;
}
.simple_app .nav_container .lang_container .lang_btn.active {
	color: #fff;
	background: #646464;
}

/**
* ======================================================
* フッター周り
* ======================================================
*/  

.simple_app .footer_container {
	background: #f0f0f0;
	color: #555;
}
.simple_app .footer_container .contact_container,
.simple_app .footer_container .contact_container a {
	font-size: 15px !important;
	color: #555;
}
.simple_app .footer_container .contact_container h4 {
	font-size: 16px !important;
	font-weight: bold !important;
}
.simple_app .footer_container .contact_container a {
	text-decoration: underline !important;
}


/**
* ======================================================
* BODY周り
* ======================================================
*/  

.simple_app .signup_step ul li .round {
    margin-right: 10px;
}
.simple_app .signup_step ul li .round.current {
	background: #4b4b4b;
    color: #fff;
}
.simple_app .input_area .otp_container {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.simple_app .input_area .otp_container input[type="text"] {
	width: 180px;
	height: 65px;
	padding: 0;
	padding-left: 8px;
	font-size: 30px;
	text-align: center;
	border: 2px solid #ccc;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s;
	background: #fff;
	letter-spacing: 10px;
}
.simple_app .input_area .otp_container input[type="text"]::placeholder {
    color: #cdcdcd;  
    opacity: 1; 
}
.simple_app .input_area .otp_container input[type="text"]::-moz-placeholder {
    color: #cdcdcd;
    opacity: 1;
}
.simple_app .input_area .otp_container:focus-within input[type="text"] {
	border-color: #007BFF;
}
.simple_app .email_icon {
    margin: 0 auto;
    margin-bottom: 30px;
    width: fit-content;
    height: fit-content;
    padding: 25px 25px;
    font-size: 40px;
    background: #00BCD4;
    color: #fff;
    border-radius: 70px;
}
.simple_app select#selected_category {
	height: 60px;
	background: #ebefff;
	border-radius: 30px;
	border: 1px solid #b8c5ff;
}

/***
 * ===============================================================
 * スマホ対応
 * ===============================================================
 * */

@media screen and (max-width:1160px){

	.simple_app .global_header .logo_container .site_logo {
		height: 100%;
	}
	.simple_app .nav_container .lang_container {
		right: 30px;
	}
	.simple_app .body_main {
		margin-top: 0;
        padding: 0 15px;
        padding-top: 10px;
	}
	.simple_app .signup_step ul {
		display: flex;
		margin-left: 0;
		font-size: 12px;
	}
	.simple_app .signup_step ul li {
		flex: 1;
		margin: 0;
		text-align: center;
	}
	.simple_app .signup_step ul li .round {
		display: block;
		margin: 0 auto;
		height: 25px;
	    width: 25px;
	    line-height: 25px;
	}
}