textarea@charset "UTF-8";

#title__main {
	padding-top:120px;
	text-align: center;
	
}
#title__main h2 {
	font-size: 6rem;
	padding-top: 130px;
	line-height: 1;
}
#title__main h2.text__jp {
	font-size: 2.2rem;
	padding-top: 100px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 30px;
}
#title__main h2.text__jp span {
	font-size: 1.4rem;
	display: block;
	margin-bottom: 20px;
}
.text__jp::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #6657a8;
  margin: 30px auto 0;
}








main {
	padding: 120px 0;
}
main#works__details {
	padding: 100px 0;
}


.area__back {
	margin-bottom: 250px;
}


.read {
	text-align: center;
	font-size: 1.4rem;
}




.title__default {
	text-align: center;
	line-height: 1.2;
	margin-bottom: 50px;
}
.title__default h3 {
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 10px;
}
.title__default p {
	font-size: 1.4rem;
}




#works {
}
#works dl {
	position: relative;
}
#works dl dt {
	width: 250px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
	text-align: center;
	font-size: 2.2rem;
	padding-top: 10px;
}


.flex .f01 {
	width: 66%;
	margin-right: 2%;
}
.flex .works01 {
	margin-bottom: 2%;

}
.flex .works02 {
	width: 49%;
	margin-right: 2%;

}
.flex .works03 {
	width: 49%;
}
.flex .works04 {
	width: 32%;
}
.work-card {
  position: relative;
  z-index: 1;
}

.work-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: visible;
}

/* 紫のフレーム */
.work-link::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 95px);
  background: #6b5bb8;

  opacity: 0;
  transform: scale(0.85);   /* 少し小さい状態から */
  transform-origin: center center;

  transition:
    opacity .3s ease,
    transform .45s cubic-bezier(.22, 1, .36, 1);

  z-index: 0;
  pointer-events: none;
}

.works01 .work-link::before {
  height: calc(100% + 75px);
}



.work-link:hover::before {
  opacity: 1;
  transform: scale(1);
}
/* 画像本体 */
.work-thumb {
  position: relative;
  z-index: 2;
}

.work-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* 通常時ラベル */
.work-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  padding: 5px 28px 22px 26px;
  background: #fff;
  color: #111;
  font-size: 1.4rem;;
  line-height: 1;
  transition:
    background .3s ease,
    color .3s ease,
    transform .4s cubic-bezier(.22, 1, .36, 1);
}

.work-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 33%;
  width: 20px;
  height: 1px;
  background: #e85a9c;
  transform: translateY(-50%);
}

/* 下の説明文は通常時非表示 */
.work-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px; /* 文章が2行になる分、少し下げる */
  z-index: 3;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 28px;

  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .25s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.work-meta__cat,
.work-meta__text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.work-meta__cat {
  position: relative;
  padding-right: 34px;
  white-space: nowrap;
}

.work-meta__cat::after {
  content: "";
  position: absolute;
  right: 0;
  top: .7em;
  width: 18px;
  height: 1px;
  background: #3db7ff;
}

.work-meta__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  line-height: 1.4;
  min-height: calc(1.4em * 2);
}/* hover */
.work-card:hover {
  z-index: 20;
}

.work-card:hover .work-link::before {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover .work-title {
  background: #6b5bb8;
  color: #fff;
}

.work-card:hover .work-meta {
  opacity: 1;
  transform: translateY(0);
}





.area__feature {
	padding: 50px 30px;
	background: #e8edf4;
}
.area__feature .inner {
	width: 1220px;
}
.area__feature dl {
	width: 23%;
	margin: 0 1%;
	font-size: 1.4rem;
	text-align: center;
	
}
.area__feature dl:last-child {
	margin-right: 0%;
}
.area__feature dl dt {
	width: 40px;
	margin: 0 auto;
}
.area__feature dl dd {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.4;
}


.area__detail {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	
}
.detail__main {
	margin: 100px 0;
}
.detail__main ul {
	width: 40%;
	float: left;
}
.detail__main ul.one_layout {
	width: 100%;
	float: none;
}
.detail__main ul li {
	padding: 20px 50px;
	font-weight: 500;
	border-bottom: solid 1px #e8edf4;
	position: relative;
}
/* チェック画像 */
.detail__main ul li::before{
	content: "";
	position: absolute;
	left: 20px;
	top: 33px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url("../img/icon_check01.svg") no-repeat center / contain;
}

.detail__main img {
	width: 55%;
	float: right;
}
.detail__main .mv-video {
	width: 55%;
	float: right;
}
.mv-video video {
	width: 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.detail__sub {
	background: #e8edf4;
	padding: 40px;
}
.detail__sub dl {
}
.detail__sub dt {
	float: left;
	margin-right: 20px;
	border-bottom: solid 1px #000;
	line-height: 1;
}
.detail__sub dd {
	float: left;
	margin-right: 20px;
	line-height: 1;
}
.service {
	margin-right: 20px;
	padding-top: 12px;
}
.service dd li {
	position: relative;
	padding-left: 15px;
	display: inline-block;
	margin-right: 20px;
}
.service dd li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	transform: translateY(-50%);
	width: 10px;
	height: 9px;
	background: url("../img/icon_check02.svg") no-repeat center / contain;
}

.role dt {
	padding-top: 12px;
}
.role dd ul {
	padding-top: 6px;
}
.role dd li {
	background: #FFF;
	display: inline-block;
	height: 26px;
	font-size: 1.2rem;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 13px;
	margin-right: 10px;
	margin-bottom: 10px;
}








.area__read {
	background: #e8edf4;
	padding: 90px 0;
	margin-bottom: 130px;
}
.area__read .inner {
	width: 1200px;
}


.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 7.2vw;
  box-sizing: border-box;
}

.kv h3 {
	margin: 0;
	line-height: 1;
	font-size: 4rem;
}

.message {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
}

.message p {
  margin: 0;
}

.message p:last-child {
  margin-bottom: 0;
}



.area__member {
	position: relative;
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 260px;
}
.area__member ul {
	margin-top: 100px;
}
.area__member li {
	border-bottom: 1px solid #e8edf4;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 30px;
}
.area__member .cap {
	text-align: right;
	font-size: 1.2rem;
	margin-top: 20px;
}



.area__company {
	position: relative;
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 260px;
}
.area__company table {
	width: 100%;
	margin-top: 100px;
}
.area__company table  th {
	font-size: 1.4rem;
	font-weight: 500;
	
	vertical-align: top;
	text-align: left;
	padding: 30px;
	border-bottom: solid 1px #e8edf4;
	width: 20%;
}
.area__company table  td {
	font-size: 1.4rem;
	font-weight: 500;
	
	text-align: left;
	padding: 30px;
	border-bottom: solid 1px #e8edf4;
}
.area__company table  td p {
	margin-bottom: 30px;
}
.area__company table  td p:last-child {
	margin-bottom: 0;
}
.area__company table  td dl {
	margin-bottom: 10px;
}
.area__company table  td dt {
	font-size: 1.8rem;
	float: left;
	width: 35%;
}
.area__company table  td dd {
	font-weight: 500;
}






.area__clients {
	margin-bottom: 300px;
	text-align: center;
}

.area__clients img {
	margin: 0 auto;
	width: 1200px;
	max-width: 90%;
}





.area__read-service {
	text-align: center;
	margin-bottom: 50px;
}
.area__read-service p {
	font-size: 1.6rem;
	line-height: 2.2;
}
.area__read-service ul {
	margin-top: 40px;
}
.area__read-service ul li {
	background: #6356a3;
	color: #FFF;
	display: inline-block;
	height: 30px;
	font-size: 1.3rem;
	line-height: 30px;
	padding: 0 10px;
	border-radius: 15px;
	margin-right: 10px;
	margin-bottom: 10px;
}






.area__service {
	position: relative;
	margin: 0 auto;
	width: 1220px;
	max-width: 90%;
	padding-top: 250px;
}
.area__service .btn__default {
	bottom: -80px;
	z-index: 1000;
}
.area__service .text__area {
	width: 45%;
	float: left;
	position: relative;
}
.area__service .text__area ul {
	margin-top: 20px;
}
.area__service .text__area li {
	background: #e8edf4;
	display: inline-block;
	height: 26px;
	font-size: 1.2rem;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 13px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.area__service .photo__area {
	width: 50%;
	float: right;
}




.pick {
	margin-top: 50px;
}
.pick .title_pick {
	width: 230px;
	background: url("../img/bg_pick.webp") no-repeat center;
	background-size: cover;
	text-align: center;
	color: #FFF;
	font-size: 2rem;
	line-height: 1.2;
	
	padding-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project {
	width: calc(100% - 230px);
}
.project .refresh {
	display: block;
	border-bottom: solid 1px #FFF;
	background: #e8edf4;
}
.project .refresh:hover {
	background: #fff;
}
.project .refresh:last-child {
	border-bottom: none;
}
.project .logo__area {
	float: left;
	width: 200px;
}
.project .de__area {
	position: relative;
	float: right;
	width: calc(100% - 200px);
	padding: 25px 40px 0 40px;
}
.de__area p {
	position: absolute;
	right: 40px;
	bottom: 0px;
}
.de__area ul {
	margin-top: 20px;
}
.de__area li {
	background: #FFF;
	display: inline-block;
	height: 26px;
	font-size: 1.2rem;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 13px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.de__area dl {
}
.de__area dl dt {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 10px;
}
.de__area dl dt::before {
	content: "";
	width: 36px;
	height: 1px;
	background: #ff5ca8;
}
.de__area dl dd {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 10px;
}
.de__area dl dd::before {
	content: "";
	width: 36px;
	height: 1px;
	background: #00b9ef;
}




.area__structure {
	background: url("../img/bg_project.webp") no-repeat center bottom;
	background-size: cover;
	text-align: center;
	margin-top: 200px;
	margin-bottom: 200px;
}
.area__structure .inner {
	width: 900px;
	max-width: 90%;
	margin: 0 auto;
	padding-top: 150px;
	padding-bottom: 200px;
}
.area__structure p.text {
	font-size: 1.6rem;
	line-height: 2.2;
}
.area__structure ul {
	margin-top: 40px;
}
.area__structure ul li {
	background: #e8edf4;
	display: inline-block;
	height: 30px;
	font-size: 1.3rem;
	line-height: 30px;
	padding: 0 10px;
	border-radius: 15px;
	margin-right: 10px;
	margin-bottom: 10px;
}



.area__llmo {
	background: url("../img/mv_llmo.webp") no-repeat center;
	background-size: cover;
	height: 420px;
	color: #FFF;
	text-align: center;
	line-height: 1.4;
	padding-top: 150px;
	margin-bottom: 150px;
}
.area__llmo dt {
	font-size: 4.6rem;
}
.area__llmo dd {
	font-size: 1.6rem;
}


.area__what {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 150px;
}
.area__what .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__what .tt h3 {
	font-size: 1.8rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__what .tt p {
	font-size: 1.6rem;
	color: #e8edf4;
}
.area__what .flex {
}
.area__what .flex dt {
	width: 30%;
	margin-right: 5%;
}
.area__what .flex dd {
	width: 65%;
}



.area__matters {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 150px;
}
.area__matters .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__matters .tt h3 {
	font-size: 1.8rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__matters .tt p {
	font-size: 1.6rem;
	color: #e8edf4;
}
.area__matters .flex {
}
.area__matters .flex dt {
	width: 30%;
	margin-right: 5%;
}
.area__matters .flex dd {
	width: 65%;
}




.area__initiatives {
	background: #e8edf4;
	padding: 130px 0;
}
.area__initiatives .inner {
	width: 900px;
	max-width: 90%;
	margin: 0 auto;
}
.area__initiatives .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__initiatives .tt h3 {
	font-size: 1.8rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__initiatives .tt p {
	font-size: 1.6rem;
	color: #fff;
}
.area__initiatives dl {
	border-bottom: solid 1px #fff;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
.area__initiatives dl dt {
	font-weight: 700;
	width: 30%;
}
.area__initiatives dl dd {
	width: 70%;
}
.area__initiatives dl dd strong {
	display: inline-block;
	background: #6356a3;
	color: #FFF;
	font-weight: 500;
	padding: 0 10px;
}








.area__recruit {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
}
.area__recruit dl {
	text-align: center;
	margin-bottom: 100px;
}
.area__recruit dl dt {
	margin-bottom: 100px;
}
.area__recruit dl dd {
	font-size: 1.6rem;
	line-height: 2.2;
}
.area__recruit table {
	width: 100%;
	text-align: left;
	font-size: 1.4rem;
}
.area__recruit table th {
	padding: 30px;
	font-weight: 500;
	vertical-align: top;
	border-bottom: solid 1px #e8edf4;
}
.area__recruit table td {
	padding: 30px;
	border-bottom: solid 1px #e8edf4;
}

.area__recruit p {
	text-align: center;
}


.btn__apply {
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
	margin-top: 100px;
}

.btn__apply a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #6657a8;
	color: #fff;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: opacity 0.3s ease;

	padding: 25px 0;
}

.btn__apply a::after {
  content: "";
  position: absolute;
  right: 40px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn__apply a:hover {
  opacity: 0.85;
}



.area__policy {
	width: 1150px;
	max-width: 90%;
	margin: 0 auto;
	font-size: 1.8rem;
}
.area__policy dl {
	margin-top: 80px;
}
.area__policy dt {
	font-size: 2.2rem;
	margin-bottom: 40px;
}






.area__contact dl {
	text-align: center;
	margin-bottom: 100px;
}
.area__contact dl dt {
	margin-bottom: 50px;
}
.area__contact .inner {
	width: 1150px;
}

    .form-group {
      margin-bottom: 50px;
    }

    label,
    .group-title {
      display: block;
      font-size: 1.4rem;;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .required {
      color: red;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
		width: 100%;
		background: #eef2f7;
		border: none;
		outline: none;
		padding: 0 24px;
		font-size: 1.4rem;
		color: #111;
		line-height: 1.6;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
      height: 74px;
    }

    textarea {
      padding: 24px;
      resize: none;
      min-height: 320px;
		width: 100% !important;
    }

    .row {
      display: flex;
      gap: 30px;
    }

    .col {
      flex: 1;
    }

    .checkbox-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.4rem;
    }

    .checkbox-item input {
      width: 28px;
      height: 28px;
      cursor: pointer;
    }

    .privacy {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .privacy label {
	  position: relative;
	  display: block;
	  padding-left: 40px;
	  line-height: 1.8;
      align-items: left;
      font-size: 1.4rem;
      font-weight: normal;
      margin-bottom: 0;
      flex-wrap: wrap;
    }

    .privacy input {
      width: 30px;
      height: 30px;
		margin-right: 10px;
    }



	.privacy input[type="checkbox"] {
	  position: absolute;
	  left: 0;
	  top: -0.2em;

	}



    .privacy a {
      color: #111;
      text-decoration: underline;
    }

    .submit-btn {
		border: none;
		width: 100%;
		max-width: 1860px;
		margin: 0 auto;
		margin-top: 100px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #6657a8;
		color: #fff;
		text-decoration: none;
		font-size: 2rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		transition: opacity 0.3s ease;

		padding: 25px 0;
		}

    .submit-btn:hover {
  opacity: 0.85;

    }

    .submit-btn::after {
  content: "";
  position: absolute;
  right: 40px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
    }



#mfp_button_send {
	border: none;
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #6657a8;
	color: #fff;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: opacity 0.3s ease;

	padding: 15px 0;
}
#mfp_button_cancel {
	border: none;
	width: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2f7;
	color: #999;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: opacity 0.3s ease;

	padding: 10px 0;
}



.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

select {
  width: 100%;
  height: 74px;
  padding: 0 24px;
  background: #eef2f7;
  border: none;
  outline: none;
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  appearance: none;
  cursor: pointer;
}

    @media (max-width: 768px) {
		.area__contact dl {
			text-align: left;
		}
		
      .row {
        flex-direction: column;
      }

      .submit-btn {
        font-size: 1.4rem;
      }
}


@media (max-width: 768px) {
  .kv {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .message {
    font-size: 16px;
    line-height: 1.9;
  }
}









/* 1200px */
@media screen and (max-width: 1350px) {


}





/* max 1023px */
@media screen and (max-width: 1023px) {

header h1 {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 120px;

}
	
	
	
#title__main {
	padding-top: 60px;
	text-align: center;
	
}
#title__main h2 {
	font-size: 3rem;
	padding-top: 80px;
}

#title__main h2.text__jp {
	font-size: 1.5rem;
	padding-top: 100px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 30px;
}
#title__main h2.text__jp span {
	font-size: 1.1rem;
	display: block;
	margin-bottom: 10px;
}
.text__jp::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #6657a8;
  margin: 30px auto 0;
}

#title__main .img_details {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 20px;
}
#title__main p {
	text-align: left;
	margin: 0 5%;
}
	
	
	
	
main {
	padding: 80px 0;
}
.area__back {
	margin-bottom: 150px;
}
	
.read {
	text-align: center;
	font-size: 1.1rem;
}
	
	

.title__default {
	text-align: center;
	line-height: 1.2;
	margin-bottom: 50px;
}
.title__default h3 {
	font-size: 4.4rem;
	line-height: 1;
	margin-bottom: 10px;
}
.title__default p {
	font-size: 1.1rem;
}
	
	
	
	
#works {
}
#works dl {
	position: relative;
}
#works dl dt {
	width: 250px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
	text-align: center;
	font-size: 2.2rem;
	padding-top: 10px;
}


	
.work-link:hover {
	opacity: 0.8;
}
	
	
.flex .f01 {
	width: 100%;
	margin-right: 0%;
}
.flex .works01 {
	margin-bottom: 20px;

}
.flex .works02 {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 20px;
}
.flex .works03 {
	width: 100%;
	margin-bottom: 20px;

}
.flex .works04 {
	width: 100%;
	margin-bottom: 20px;
}
	
	
/* 紫のフレーム */
.work-link::before {
  content: none !important;
}
.work-card:hover .work-title {
  background: #fff;
  color: #000;
}

.work-card:hover .work-meta {
  opacity: 0;
  transform: translateY(0);
}
	
	
	
	
	
.area__feature {
	padding: 50px 0;
	background: #e8edf4;
}
.area__feature dl {
	width: 100%;
	margin-right: 0%;
	font-size: 1.4rem;
	margin: 0;
	margin-bottom: 10%;
}
.area__feature dl:last-child {
	margin-bottom: 0%;
}
.area__feature dl dt {
	width: 40px;
	float: left;
	margin-right: 20px;
}
.area__feature dl dd {
	float: left;
	width: calc(100% - 60px);
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: left;
	margin: 0;
}


.area__detail {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	
}
.detail__main {
	margin: 10% 5%;
}
.detail__main ul {
	width: 100%;
	float: none;
}
.detail__main ul li {
	padding: 20px 50px;
	font-weight: 500;
	border-bottom: solid 1px #e8edf4;
	position: relative;
}
/* チェック画像 */
.detail__main ul li::before{
	content: "";
	position: absolute;
	left: 20px;
	top: 33px;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background: url("../img/icon_check01.svg") no-repeat center / contain;
}

.detail__main img {
	width: 55%;
	float: right;
}

.detail__sub {
	background: #e8edf4;
	padding: 40px 5%;
}
.detail__sub dl {
	width: 100%;
}
.detail__sub dt {
	float: left;
	margin-right: 20px;
	border-bottom: solid 1px #000;
	line-height: 1;
}
.detail__sub dd {
	float: right;
	margin-right: 0;
	line-height: 1;
	width: 80%;
}
.service {
	margin-right: 0;
	margin-bottom: 20px;
	padding-top: 8px;
}
.service dd li {
	position: relative;
	padding-left: 15px;
	display: block;
	margin-right: 20px;
}
.service dd li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	transform: translateY(-50%);
	width: 10px;
	height: 9px;
	background: url("../img/icon_check02.svg") no-repeat center / contain;
}

.role dt {
	padding-top: 12px;
}
.role dd li {
	font-size: 1.1rem;
	position: relative;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #FFF;
	padding: 0 20px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
}
	
	
	
	
	
	
	
.area__read {
	background: #e8edf4;
	padding: 0;
	margin-bottom: 130px;
}
.area__read .inner {
	width: 1200px;
	max-width: 100%;
}


.kv {
	display: block;
}

.kv h3 {
	margin: 0;
	line-height: 1;
	font-size: 2rem;
	margin-bottom: 50px;

}

.message {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.4;
}

.message p {
  margin: 0;
}

.message p:last-child {
  margin-bottom: 0;
}



.area__member {
	position: relative;
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 150px;
}
.area__member ul {
	margin-top: 50px;
}
.area__member li {
	border-bottom: 1px solid #e8edf4;
	font-size: 1.3rem;
	padding: 20px 0;
}



.area__company {
	position: relative;
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 150px;
}
.area__company table {
	width: 100%;
	margin-top: 50px;
}
.area__company table  th {
	font-size: 1.3rem;
	
	vertical-align: top;
	text-align: left;
	padding: 20px 0;
	border-bottom: solid 1px #e8edf4;
	width: 25%;
}
.area__company table  td {
	font-size: 1.3rem;
	
	text-align: left;
	padding: 20px 0;
	border-bottom: solid 1px #e8edf4;
}
.area__company table  td p {
	margin-bottom: 30px;
}
.area__company table  td p:last-child {
	margin-bottom: 0;
}
.area__company table  td dl {
	margin-bottom: 20px;
}
.area__company table  td dt {
	font-size: 1.5rem;
	float: none;
	width: 100%;
}
.area__company table  td dd {
	font-weight: 500;
}






.area__clients {
	margin-bottom: 150px;
	text-align: center;
}

.area__clients img {
	margin: 0 auto;
	max-width: 90%;
}





.area__read-service {
	text-align: left;
	margin-bottom: 50px;
	padding: 0 5%;
}
.area__read-service p {
	font-size: 1.3rem;
	line-height: 2.2;
}
.area__read-service ul {
	margin-top: 40px;
}
.area__read-service ul li {
	background: #6356a3;
	color: #FFF;
	display: inline-block;
	height: 30px;
	font-size: 1.1rem;
	line-height: 30px;
	padding: 0 10px;
	border-radius: 15px;
	margin-right: 5px;
	margin-bottom: 10px;
}






.area__service {
	margin: 0 auto;
	width: 1220px;
	max-width: 90%;
	padding-top: 150px;
}
.area__service .text__area {
	width: 100%;
	float: none;
}
.area__service .btn__default {
	bottom: -30px;
	z-index: 1000;
}

.area__service .text__area ul {
	margin-top: 20px;
}
.area__service .text__area li {
	background: #e8edf4;
	display: inline-block;
	height: 26px;
	font-size: 1.1rem;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 13px;
	margin-right: 5px;
	margin-bottom: 10px;
}
.area__service .photo__area {
	width: 100%;
	float: none;
	margin-bottom: 10px;
}

.pick {
	margin-top: 20px;
}
.pick .title_pick {
	width: 100%;
	background: url("../img/bg_pick.webp") no-repeat center;
	background-size: cover;
	text-align: center;
	color: #FFF;
	font-size: 1.4rem;
	line-height: 1.2;
	
	padding-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pick .title_pick br {
	display: none;
}

.project {
	width: 100%;
}
.project .refresh {
	border-bottom: solid 1px #FFF;
	background: #e8edf4;
	padding: 15px;
}
.project .refresh:last-child {
	border-bottom: none;
}
.project .logo__area {
	float: left;
	width: 35%;
}
.project .de__area {
	position: relative;
	float: right;
	width: 60%;
	padding: 0;
}
.project .refresh {
	position: relative;
}
.project .refresh p {
	position: absolute;
	right: 40px;
	bottom: 0px;
}
.project .refresh ul {
	clear: both; 
	margin-top: 20px;
}
.project .refresh li {
	background: #FFF;
	display: inline-block;
	height: 26px;
	font-size: 1.1rem;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 13px;
	margin-right: 5px;
	margin-top: 10px;
	margin-bottom: 0;
}

.de__area dl {
	font-size: 1.2rem;
}
.de__area dl dt {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 10px;
}
.de__area dl dt::before {
	content: "";
	width: 15px;
	height: 1px;
	background: #ff5ca8;
}
.de__area dl dd {
	display: flex;
	align-items: flex-start; /* center → flex-start */
	justify-content: left;
	gap: 10px;
}
.de__area dl dd::before {
	content: "";
	width: 15px;
	height: 1px;
	background: #00b9ef;
	margin-top: 0.7em; /* 1行目の文字中央あたりに調整 */
	flex-shrink: 0;
}




.area__structure {
	text-align: left;
}
.area__structure p.text {
	font-size: 1.3rem;
	line-height: 2.2;
}
.area__structure ul {
	margin-top: 20px;
}
.area__structure ul li {
	background: #e8edf4;
	display: inline-block;
	height: 30px;
	font-size: 1.1rem;
	line-height: 30px;
	padding: 0 10px;
	border-radius: 15px;
	margin-right: 5px;
	margin-bottom: 10px;
}

	

	

	
	
	
.area__llmo {
	background: url("../img/mv_llmo.webp") no-repeat center;
	background-size: cover;
	height: 160px;
	color: #FFF;
	text-align: center;
	line-height: 1.4;
	padding-top: 60px;
	margin-bottom: 50px;
}
.area__llmo dt {
	font-size: 2rem;
}
.area__llmo dd {
	font-size: 1.2rem;
}


.area__what {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 100px;
}
.area__what .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__what .tt h3 {
	font-size: 1.4rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__what .tt p {
	font-size: 1.1rem;
	color: #e8edf4;
}
.area__what .flex {
}
.area__what .flex dt {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 5%;
}
.area__what .flex dd {
	width: 100%;
}



.area__matters {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 100px;
}
.area__matters .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__matters .tt h3 {
	font-size: 1.4rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__matters .tt p {
	font-size: 1.1rem;
	color: #e8edf4;
}
.area__matters .flex {
}
.area__matters .flex dt {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 5%;
}
.area__matters .flex dd {
	width: 100%;
}




.area__initiatives {
	background: #e8edf4;
	padding: 80px 0;
}
.area__initiatives .inner {
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
}
.area__initiatives .tt {
	text-align: center;
	margin-bottom: 50px;
}
.area__initiatives .tt h3 {
	font-size: 1.4rem;
	border-bottom: solid 1px #e8edf4;
	margin-bottom: 0;
}
.area__initiatives .tt p {
	font-size: 1.1rem;
	color: #fff;
}
.area__initiatives dl {
	border-bottom: solid 1px #fff;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
.area__initiatives dl dt {
	font-weight: 700;
	width: 100%;
	margin-bottom: 20px;
}
.area__initiatives dl dd {
	width: 100%;
}
.area__initiatives dl dd strong {
	display: inline-block;
	background: #6356a3;
	color: #FFF;
	font-weight: 500;
	padding: 0 10px;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.area__recruit {
	max-width: 100%;
	margin: 0 auto;
}
.area__recruit dl {
	text-align: left;
	margin-bottom: 40px;
}
.area__recruit dl dt {
	margin-bottom: 40px;
}
.area__recruit dl dd {
	padding: 0 5%;
	font-size: 1.2rem;
	line-height: 2.2;
}
.area__recruit table {
	width: 90%;
	text-align: left;
	font-size: 1.2rem;
	margin: 0 auto;
}
.area__recruit table th {
	width: 20%;
	padding: 30px 0;
	font-weight: 500;
	vertical-align: top;
	border-bottom: solid 1px #e8edf4;
}
.area__recruit table td {
	padding: 30px 0;
	border-bottom: solid 1px #e8edf4;
}
	
.area__recruit p {
	text-align: left;
	margin-left: 5%;
}
	
	
	

.btn__apply {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
	margin-top: 40px;
}

.btn__apply a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6657a8;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
	
	padding: 30px 0;
}

.btn__apply a::after {
  content: "";
  position: absolute;
  right: 40px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn__apply a:hover {
  opacity: 0.85;
}

	
	
    .privacy {
      display: flex;
      justify-content: flex-start;
      margin-top: 40px;
    }
	.privacy input[type="checkbox"] {
	  position: absolute;
	  left: 0;
	  top: 0em;
	}
	
	
.area__policy {
	width: 1150px;
	max-width: 90%;
	margin: 0 auto;
	font-size: 1.4rem;
}
.area__policy dl {
	margin-top: 50px;
}
.area__policy dt {
	font-size: 1.8rem;
	margin-bottom: 30px;
}

	
	
	
	
}