@charset "UTF-8";

/*-------------------------------------------
00.common
-------------------------------------------*/
html {
  font-size: 100%;
}
body {
	background-color: #000;
  color: #efefef;
  font-size: 1rem;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
/* h2タグ用 */
.section-title {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  margin-top: 40px;
	margin-bottom: 20px;
  border-bottom: solid 2px #efefef;
}
/* h3タグ用 */
.message-box_title {
  font-size: 1.6rem;
  margin: 10px 0;
}
/* 画面の最大幅を指定。共通で使用します */
.wrapper {
	margin: 120px auto 60px auto;
	padding: 0 4%;
	text-align: center;
	/*background-image: url("../../assets/img/background.png"); 
	background-size: cover;*/
}

/*-------------------------------------------
01.Mainvisual
-------------------------------------------*/
.mainvisual {
  margin-bottom: 80px;
	margin-top: 60px;
}
.mainvisual img {
	margin-top: 60px;
  width: 100%;
  max-width: 2560px;  /* 画像の横幅サイズにあわせて最大幅を指定します */
  height: 300px;
  object-fit: cover; 
}

@media screen and (max-width: 768px) {
.mainvisual img {
	height: 200px;
  }
}
/*-------------------------------------------
02.message
-------------------------------------------*/
#message message-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#message .text {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
 #message .mesage-box {
    flex-direction: column;
	}
 #message img {
    margin-right: 0;
  }
}
/*-------------------------------------------
03.service
-------------------------------------------*/
.service-list {
	display: flex;
	justify-content: space-around;
}
.flex-item {
	border: 1px solid #fff;
	padding: 10px;
	margin: 10px;
	flex-basis: 30%;
}
.flex-item img {
	width: 40px;
	height: 40px;
	margin-top: 10px;
}
.flex-item dt {
	margin-bottom: 10px;
	font-size: 1em;
}
.flex-item dl {
	color: #efefef;
}
@media screen and (max-width:769px){
.service-list {
	flex-direction: column;
	margin: 0 1em 1em;
	}
}

#company .table {
	margin-bottom: 40px;
}

table{
  width: 100%;
	background-image: url("../../assets/img/cat.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}
table tr {
	border-bottom: solid 2px #fff;
}
table th {
  position: relative;
  text-align: right;
  width: 45%;
  padding:7px 25px 7px 0px;
}

/*table th:after{
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top:calc(50% - 1px);
  right:-15px;
}*/

table td{
  text-align: left;
  padding:7px 0 7px 25px;
  width: 55%;
}


dd {
	margin: 5px;
}
.Form {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 616px;
	padding: 0 4%;
}
@media screen and (max-width: 769px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 769px) {
  .Form-Item {
    padding-left: 4%;
    padding-right: 2%;
    flex-wrap: wrap;
  }
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 769px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 769px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 16px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #a09bd8;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 769px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 769px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 769px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #545454;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 769px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.Form-Item input[type="text"] {
	width: 80%;
	height: 30px;
	text-align: left;
}
.Form-Item textarea {
	width: 86%;
}
@media screen and (max-width: 390px) {
.Form-Item input[type="text"] {
	width: 85%;
	height: 30px;
	text-align: left;
}
.Form-Item textarea {
	width: 86%;
}
}
.mwform-tel-field {
	width: 100%;
}

.btnWrap {
	text-align: center;
	margin-top: 40px;
}
	.btnWrap button[type="submit"]{
    content: "";
	width: 180px;
	height: 60px;
    background: linear-gradient(-90deg, #44009c 0%, #a09bd8 100%);
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.bkbtn {
	text-align:center;
	font-size:1.2rem;
	width: 100px;
	margin-left:auto;
	margin-right:auto;
}
.bkbtn :hover {
	text-align:center;
	font-size:1.2rem;
	color: #a09bd8;
	border-bottom: solid 1px #a09bd8;
	width: 100px;
}
.bkbtn a {
	color: #fff !important;
}
.bkbtn :hover {
	color: #a09bd8 !important;
}