@charset "UTF-8";
/* CSS Document */

section {
	margin: 10px auto;
	display: inline-block;
}

.contents {
	width: 1024px;
	margin: 0 auto;
}
.Info__h3-ttl {
  position: relative;
  padding-left: 9px;
  font-weight: 600;
  font-size: 18px;
}

.Info__h3-ttl::before,
.Info__h3-ttl::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
}

.Info__h3-ttl::before {
  transform: translateY(-100%);
  background: var(--corporate-color);
}

.Info__h3-ttl::after {
  background: var(--sub-corporate-color);
}

.note-item {
	margin-top: 5px;
	font-weight: 600;
	color: var(--sub-corporate-color);
}

.note-txt {
	margin-top: 5px;
}

.Info__qa {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.Info__qa ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.qa-item {
	padding: 10px 0;
	width: calc(100% / 2 - 40px);
	border-bottom: 1px dotted #888;
}

.qa-item:last-child, .qa-item:nth-last-child(2) {
	border: none;
}

.Info__qa-link {
  color: var(--textLink-color);
}

.Info__qa-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 2px;
}

.Info__qa-link:hover {
  text-decoration: underline;
}

.reg__wapper{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 35px;
}

.reg__article {
  width: 100%;
}

.reg__article-ttl {
	color: var(--corporate-color);
	font-weight: 600;
	text-align: center;
	margin-bottom: 10px;
}

.reg__article-description {
	margin-bottom: 80px;
	line-height: 1.5;
}

.reg__article-description span {
	font-size: 13px;
	line-height: 1.2;
}

.reg__link {
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.Info__reg {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reg__ttl {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.reg__article {
  display: flex;
  justify-content: space-between;
  width: calc((100% - 30px) / 2);
  position: relative;
  padding: 20px;
  box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}

.reg__article:hover {
  box-shadow: 0px 0px 0px 2px #007cb5 inset;
}

.reg__article-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.Common21__line-btn {
  display: inline-block;
  position: relative;
  padding: 15px 55px 15px 20px;
  border: 1px solid var(--corporate-color);
  background-color: #f2fafe;
  border-radius: 4px;
  transition: border-color 0.3s, background-color 0.3s;
  width: 350px;
}

.reg__article:hover .Common21__line-btn {
  border-color: var(--corporate-color);
  background-color: var(--corporate-color);
  color: #fff;
}

.Common21__line-btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: var(--corporate-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.Common21__line-btn::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}

.reg__article:hover .Common21__line-btn::before{
  background: #fff;
}

.reg__article:hover .Common21__line-btn::after {
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
}


/*入力画面*/
.Register__group {
  border: solid 1px #e5e5e5;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 30px 30px 20px;
  width: 1024px;
}

.Reguster__heading {
	background-color: var(--corporate-color);
	color: #fff;
	width: 260px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 3px;
	margin-right: 15px;
}

.Register__group-inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}

.Form__input-text-block {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.Register__group input[type="text"],
.Register__group input[type="password"] {
  width: 570px;
  font-size: 16px;
  padding: 10px 15px;
}

.text_con {
  width: 550px;
  position: relative;
  border: solid 1px #333;
  background-color: #fff;
  border-radius: 3px;
  margin-right: 15px;
}

input[type=checkbox]{
  width: 20px;
  height: 20px;
  margin-top: -2px;
}

.search_text {
	display: flex;
	align-items: center;
}

.search_text_link {
	color: var(--corporate-color);
	margin-left: 30px;
	text-decoration: underline;
}

.search_text_link:hover {
	opacity: 0.6;
}

.autologin {
	margin-left: 275px;
	display: flex;
}

.Common-button {
	display: inline-block;
	position: relative;
	border-radius: 4px;
	transition: border-color 0.3s, background-color 0.3s;
	background-color: var(--caution-color);
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}

.Common-button:hover {
	opacity: 0.6;
}

.Common__btn-link {
	padding: 10px 55px;
	width: 350px;
}

.Common-button__group {
	margin: 30px auto 0;
	text-align: center;
}

.error_wapper {
	border: 2px solid #ff0000;
	background-color: #FFFEF0;
	width: 1024px;
	padding: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}

.error_icon img {
	width: 26px;
	height: 26px;
	margin-right: 10px;
}

.error {
	color: #ff0000;
	line-height: 1.2;
	font-size: 16px;
}


/*ログアウト*/
.logout__btn {
	display: flex;
	justify-content: space-between;
	margin: 50px 130px 0;
	text-align: center;
}

.logout__btn .logout__link:first-child {
	margin-right: 20px;
}


/* 240625追加_start CZ032424400 */

.line_login {
  width: 1024px;
  background-color: #f8f3ec;
  padding: 24px 9px;
}

.line_login p {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.line_login p:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #121212;
  border-right: 2px solid #121212;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 10px;
}

.line_login_btn .img_wrap {
  padding-right: 9px;
  border-right: 2px solid rgb(0 0 0 / 8%);
  height: 50px;
  display: flex;
  align-items: center;
}


.line_login_btn {
  background: #06C755;
  color: #fff;
  font-size: 18px;
  padding: 0 32px 0 9px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 10px;
  gap: 81px;
  height: 50px;
  width: 350px;
  font-weight: 500;
  margin: 0 auto;
}

.line_login_btn:hover {
  background: #05B34D;
}

.line_login_btn:active {
  background: #048C3C;
}


/* 240625追加_end CZ032424400 */