/*
  Bankme専用 page.css
*/

/*------------------------------------------
  Contact
------------------------------------------*/
.page-contact {
	padding: 3rem 0 10rem;
}
.page-contact .inner {
  width: 95%;
  margin: auto;
	display: flex;
	flex-direction: column;
	gap: 3rem 0;
}
.page-contact .page-title {
  text-align: center;
  font-size: 28px;
}

.page-contact .form-block {
	border: 3px solid #2c2c2c;
	border-radius: 10px;
	padding: 3rem 2rem;
}
.page-contact .form-block dl {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
}
.page-contact .form-block .required-text {
	font-size: 14px;
}
.page-contact .form-block dt,
.page-contact .form-block dd {
  width: 100%;
  text-align: left;
}
.page-contact .form-block dt .required {
	display: inline-block;
	color: #ff0000;
	line-height: 1;
	margin-left: .5rem;
}
.page-contact .form-block dd {
  width: 100%;
	font-weight: 400;
}
.page-contact .form-block input[type="text"],
.page-contact .form-block textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 1rem;
}
.page-contact .form-block .submit input[type="submit"] {
	max-width: 490px;
	width: 100%;
	height: 78px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: auto;
	border: 1px solid #000;
	border-radius: 64px;
	box-shadow: 0 4px 0 #002D5C;
	background: #FAA927;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.page-contact .form-block .submit input[type="submit"]:hover {
	box-shadow: none;
}

.page-contact .thanks-content {
  text-align: center;
}
@media (min-width: 600px) {
  .page-contact .inner {
    max-width: 1000px;
  }
  .page-contact .form-block {
		padding: 5rem;
	}
	.page-contact .form-block dl {
  	flex-direction: row;
  	margin-bottom: 3rem;
	}
	.page-contact .form-block dt {
	  width: 170px;
    text-align: right;
  }
  .page-contact .form-block dd {
    width: calc(100% - 220px);
  }
  .page-contact .form-block .submit input[type="submit"] {
		font-size: 30px;
	}
}
@media (min-width: 1024px) {
  .page-contact {
    padding: 5rem 0 15rem;
  }
  .page-contact .inner {
    gap: 5rem 0;
  }
  .page-contact .page-title {
    font-size: 36px;
  }
}

/*------------------------------------------
	News List
------------------------------------------*/
.page-news {
	padding: 3rem 0 10rem;
}
.page-news .inner {
  width: 95%;
  margin: auto;
	display: flex;
	flex-direction: column;
	gap: 3rem 0;
}
.page-news .page-title {
  text-align: center;
  font-size: 28px;
}
.page-news .tags {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0 10px;
	width: 338px;
	margin-bottom: 5rem;
}
.page-news .tags a {
	font-size: 14px;
	font-weight: 400;
	width: 100px;
	height: 30px;
	line-height: 28px;
	border: 1px solid #1F1F1F;
	border-radius: 15px;
	text-align: center;
}
.page-news .tags a.active {
	color: #fff;
	background: #1F1F1F;
}
.page-news .tags a:nth-of-type(1) {
	margin-right: auto;
	position: relative;
}
.page-news .tags a:nth-of-type(1):after {
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background: #A7A7A7;
	position: absolute;
	right: -15px;
	top: 0;
}
.page-news .tags a:nth-of-type(2).active {
	background: #FF6600;
}
.page-news .tags a:nth-of-type(3).active {
	background: #0066FF;
}
.page-news .list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
.page-news .item {
	border-bottom: 1px solid #A7A7A7;
	padding-bottom: 10px;
}
.page-news .label {
	margin-bottom: 10px;
}
.page-news .label a {
	font-size: 14px;
	font-weight: 400;
	border: 1px solid;
	border-radius: 12px;
	width: 100px;
	height: 24px;
	line-height: 22px;
	display: inline-block;
	text-align: center;
	margin-left: 10px
}
.page-news .label a.information {
	color: #FF6600;
	border-color: #FF6600;
}
.page-news .label a.media {
	color: #0066FF;
	border-color: #0066FF;
}
.page-news .label .media {
	font-size: 14px;
	font-weight: 400;
	border: 1px solid;
	border-radius: 12px;
	width: 100px;
	height: 24px;
	line-height: 22px;
	display: inline-block;
	text-align: center;
	margin-left: 10px;
	color: #0066FF;
	border-color: #0066FF;
}
.page-news .not-post {
  text-align: center;
}
@media (min-width: 1024px) {
  .page-news {
    padding: 5rem 0 15rem;
  }
  .page-news .inner {
    max-width: 1280px;
    gap: 5rem 0;
  }
  .page-news .page-title {
    font-size: 36px;
  }
}

/*------------------------------------------
  Terms
------------------------------------------*/
.page-terms {
	font-weight: 400;
	padding: 3rem 0 10rem;
	line-height: 1.8;
}
.page-terms .inner {
  width: 95%;
  margin: auto;
	display: flex;
	flex-direction: column;
	gap: 3rem 0;
}
.page-terms .page-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
.page-terms .subtitle {
	font-size: 18px;
	font-weight: 600;
}
.page-terms .terms-content {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.page-terms .block > *:not(:last-child) {
  margin-bottom: 1rem;
}
.page-terms .ul01 {
	padding-left: 2rem;
	text-indent: -2rem;
}
.page-terms .ul02 {
	padding-left: 2.5rem;
	text-indent: -2.5rem;
}
@media (min-width: 600px) {
  .page-terms .inner {
    max-width: 1000px;
  }
}
@media (min-width: 1024px) {
  .page-terms {
    padding: 5rem 0 15rem;
  }
  .page-terms .inner {
    gap: 5rem 0;
  }
  .page-terms .page-title {
    font-size: 36px;
  }
  .page-terms .subtitle {
		font-size: 20px;
	}
	.page-terms .terms-content {
  	gap: 5rem 0;
	}
}

/*------------------------------------------
	
------------------------------------------*/
/**/
@media (min-width: 600px) {
}
@media (min-width: 1024px) {
}