@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --color-base: #58BFC7;
}

@media screen and (min-width: 799px) {
  body:before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    background-color: transparent;
    transition: opacity 0.3s, z-index 0s 0.3s, background 0s 0.3s;
  }
  body.navopen:before {
    z-index: 1;
    opacity: 0.4;
    background-color: var(--color-base);
    transition: opacity 0.3s, z-index 0s, background 0s;
  }
}

.subnav a {
  text-decoration: none;
}
.glay_box {
  width: auto;
}





/* 追加 202504*/
.categorySummary {
  position: relative;
  padding-bottom: 60px;
}

.categorySummary .container {
  display: grid;
  grid-template-columns: 50% minmax(0, 1fr);
  grid-template-rows: repeat(2, auto);
  -moz-column-gap: 65px;
       column-gap: 65px;
  max-width: 1300px;
  padding-top: 50px;
}

.categorySummaryEn {
  position: absolute;
  top: 0;
  left: 50px;
  color: #ddd;
  font-family: "Figtree", sans-serif;
  font-size: 60px;
  font-style: italic;
  font-weight: bold;
  opacity: 0.3;
}

.categorySummaryPic {
  grid-area: 1/1/3/2;
}

.categorySummaryPic img {
  border-radius: 10px;
}

.categorySummaryTitle {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 40px;
  padding: 0 0 30px;
  font-size: 38px;
  font-weight: bold;
  grid-area: 1/2/2/3;
}

.categorySummaryTitle:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 56px;
  height: 6px;
  background: url(../images/common/h2_line.png) no-repeat 0 0/100% auto;
}

.categorySummaryGroup {
  grid-area: 2/2/3/3;
}

.categorySummaryGroup p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.categorySummarySubtitle {
  margin: 0 0 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.categoryAnchorTitle {
  margin: 0 0 60px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.categoryAnchorList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.categoryAnchorCol {
  width: calc(50% - 15px);
}

.categoryAnchorCol a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 5px 40px 5px 20px;
  font-size: 18px;
  font-weight: bold;
  background: #fff;
}

.categoryAnchorCol a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  display: block;
  width: 14px;
  height: 10px;
  margin-top: -5px;
  background: url(../images/common/ic_arw5.svg) no-repeat 0 0/100% auto;
}

.categoryAnchorCol .num {
  display: block;
  width: 100px;
  font-size: 50px;
  flex-shrink: 0;
}

.categoryBox {
  padding-top: 80px;
}

.categoryBoxTitle {
  position: relative;
  margin: 0 0 60px;
  padding: 0 0 40px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.categoryBoxTitle:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 56px;
  height: 6px;
  margin-left: -28px;
  background: url(../images/common/h2_line.png) no-repeat 0 0/100% auto;
}

.categoryBoxHead {
  display: flex;
  align-items: center;
  padding: 15px 60px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  background: #FAFAFA;
}

.categoryBoxHead .num {
  margin-right: 26px;
  font-size: 50px;
}

.categoryBoxGroup {
  margin-bottom: 80px;
  padding: 40px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #FAFAFA;
}

.categoryCheckList {
  position: relative;
  margin: 0 0 60px;
  padding: 30px 85px;
  background: #F6F6F6;
}

.categoryCheckList:before {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 50%;
  display: block;
  width: 110px;
  height: 38px;
  margin-left: -55px;
  background: #F6F6F6;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.categoryCheckList ul li {
  position: relative;
  padding: 0 0 0 31px;
  font-size: 14px;
}

.categoryCheckList ul li + li {
  margin-top: 12px;
}

.categoryCheckList ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 16px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}

.categorySolutionTitle {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.categorySolutionList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 35px;
}

.categorySolutionCol {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.categorySolutionCol .tag {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 8px 40px 7px 13px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  box-sizing: border-box;
}

.categorySolutionCol .tag:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #ddd;
  transform: scaleY(1.3) perspective(0.7em) rotateX(4deg);
  transform-origin: bottom left;
  border-radius: 10px 10px 0 0;
}

.categorySolutionCol .group {
  padding: 0 20px 15px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid #D9D9D9;
}

.categorySolutionCol .pic {
  margin: 0 -20px 15px;
  border-bottom: 1px solid #D9D9D9;
}

.categorySolutionCol .pic a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  aspect-ratio: 2/1;
  border-radius: 0 9px 0 0;
  transition: 0.5s;
	width: 100%;
}
.categorySolutionCol .pic a:hover img {
  opacity: 0.7;
}

.categorySolutionCol .head {
  margin: 0 0 8px;
  padding: 0 0 12px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #D9D9D9;
}

.categorySolutionCol .text {
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 798px) {
  .categorySummary {
    padding:0  0 30px 0;
    background: none !important;
  }
  .categorySummary .container {
    display: block;
    padding-top: 0;
  }
  .categorySummaryEn {
    top: 60px;
    left: 10px;
    font-size: 36px;
  }
  .categorySummaryPic {
    margin-bottom: 30px;
    text-align: center;
  }
  .categorySummaryTitle {
    width: 100%;
    margin: 0 0 70px;
    padding: 0 0 20px;
    font-size: 24px;
    text-align: center;
	  display: block;
  }
  .categorySummaryTitle:before {
    width: 28px;
    left: 50%;
    margin-left: -14px;
  }
  .categorySummarySubtitle {
    margin: 0 0 20px;
    font-size: 16px;
  }
  .categoryAnchorTitle {
    margin: 0 0 40px;
    font-size: 18px;
  }
  .categoryAnchorList {
    flex-direction: column;
    gap: 20px;
  }
  .categoryAnchorCol {
    width: 100%;
  }
  .categoryAnchorCol a {
    min-height: 80px;
    font-size: 16px;
  }
  .categoryAnchorCol .num {
    width: 60px;
    font-size: 30px;
  }
  .categoryBox {
    padding-top: 50px;
  }
  .categoryBoxTitle {
    margin: 0 0 40px;
    padding: 0 0 20px;
    font-size: 24px;
  }
  .categoryBoxTitle:before {
    width: 28px;
    margin-left: -14px;
  }
  .categoryBoxHead {
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
  }
  .categoryBoxHead .num {
    margin-right: 13px;
    font-size: 25px;
  }
  .categoryBoxGroup {
    margin-bottom: 50px;
    padding: 20px 15px;
    border-width: 0 5px 5px 5px;
  }
  .categoryCheckList {
    margin: 0 0 60px;
    padding: 20px 25px;
  }
  .categoryCheckList:before {
    bottom: -25px;
    left: 50%;
    width: 60px;
    height: 26px;
    margin-left: -30px;
  }
  .categoryCheckList ul li {
    position: relative;
    padding: 0 0 0 26px;
    font-size: 14px;
    line-height: 1.6;
  }
  .categoryCheckList ul li + li {
    margin-top: 10px;
  }
  .categoryCheckList ul li:before {
    top: 7px;
    width: 12px;
    height: 9px;
  }
  .categorySolutionTitle {
    font-size: 22px;
  }
  .categorySolutionList {
    display: block;
  }
  .categorySolutionCol {
    margin-bottom: 20px;
  }
}
.categoryPink .categoryBoxHead {
  background-color: #FFF3EE;
}
.categoryPink .categoryCheckList ul li:before {
  background-image: url(../images/category/ic_check_p.svg);
}
.categoryPink .categoryAnchorCol .num,
.categoryPink .categoryBoxHead .num,
.categoryPink .categorySolutionTitle,
.categoryPink .categorySummaryEn {
  color: #E8896B;
}
.categoryBlue .categoryBoxHead {
  background-color: #E5F1F9;
}
.categoryBlue .categoryCheckList ul li:before {
  background-image: url(../images/category/ic_check_b.svg);
}
.categoryBlue .categoryAnchorCol .num,
.categoryBlue .categoryBoxHead .num,
.categoryBlue .categorySolutionTitle,
.categoryBlue .categorySummaryEn {
  color: #86B7D7;
}
.categoryGreen .categoryBoxHead {
  background-color: #E2F8E3;
}
.categoryGreen .categoryCheckList ul li:before {
  background-image: url(../images/category/ic_check_g.svg);
}
.categoryGreen .categoryAnchorCol .num,
.categoryGreen .categoryBoxHead .num,
.categoryGreen .categorySolutionTitle,
.categoryGreen .categorySummaryEn {
  color: #6ABC6D;
}

.categorySolutionCol .tag1:after {
  background-color: #E8896B;
}

.categorySolutionCol .tag2:after {
  background-color: #86B7D7;
}

.categorySolutionCol .tag3:after {
  background-color: #6ABC6D;
}

.categorySolutionCol .tag4:after {
  background-color: #D090B9;
}

.categorySolutionCol .tag5:after {
  background-color: #DAB16B;
}









/* 共通 */
.pageTitle {
    position: relative;
		display: block;
    margin: 0 0 60px;
    padding: 0 0 30px;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
}
.pageTitle:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 56px;
    height: 6px;
    margin-left: -28px;
    background: url(../images/common/h2_line.png) no-repeat 0 0 / 100% auto;
}

.hStyle01 {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.7;
}
.hStyle02 {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
}
.hStyle03 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}
.hStyle04 {
    margin-bottom: 45px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.hStyle05 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.5;
}
.hStyle06 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}
.hStyle07 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
.hStyle08 {
    margin-bottom: 40px;
    font-size: 23px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}

.leadBlock01 {
    margin-bottom: 80px;
}
.leadBlock02 {
    margin-bottom: 30px;
}
.leadBlock03 {
    margin-bottom: 50px;
}
.leadBlock04 {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 34px;
  padding: 30px 0 75px;
}
.leadBlock04 figure {
  width: 50%;
  flex-shrink: 0;
}
.leadBlock04 figure img {
  border-radius: 10px;
}
.leadBlock04 .group {
  flex-grow: 1;
}
.leadBlock04 h3 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}
.leadBlock01 p,
.leadBlock02 p,
.leadBlock03 p,
.leadBlock04 p {
    font-size: 14px;
    line-height: 1.5;
}
.leadBlock05 {
    margin-bottom: 40px;
}
.leadBlock05 p {
    font-size: 15px;
    line-height: 1.5;
}
.leadBlock06 {
    margin-bottom: 100px;
}
.leadBlock06 p {
  font-size: 18px;
  line-height: 1.5;
}
.leadBlock07 {
    margin-bottom: 100px;
}
.leadBlock07 p {
  font-size: 16px;
  line-height: 1.5;
}

.unitBlock01 {
    padding: 25px 40px;
    font-size: 14px;
}
.unitBlock01 p {
    margin-bottom: 5px !important;
    font-weight: bold;
}
.unitList01 {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 12px 0;
    padding: 25px 40px;
    font-size: 14px;
    line-height: 1.4;
}
.unitList01 dt {
    font-weight: normal;
}
.unitList02 {
    padding: 0 0 20px 20px;
}
.unitList02 li {
    list-style: disc;
}
.unitList03 {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 2px 0;
    font-size: 14px;
    line-height: 1.4;
}
.unitList03 dt {
    font-weight: normal;
}
.ic-map {
	display: inline-block;
	margin-left: 13px;
	vertical-align: bottom;
}
.ic-map a {
	display: flex;
	align-items: center;
	color: var(--color-base);
	text-decoration: underline;
}
.ic-map a:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 23px;
	margin-right: 3px;
	background: url(../images/common/ic_pin1.svg) no-repeat 0 0 / 100% auto;
}
.ic-map a:hover {
	text-decoration: none;
}

.discList01 li,
.discList02 li,
.discList06 li {
	position: relative;
	padding-left: 16px;
	font-size: 14px;
	line-height: 1.5;
}
.discList02 li {
  margin-bottom: 7px;
}
.discList02 li:last-child {
  margin-bottom: 0;
}
.discList06 li {
  margin-bottom: 15px;
}
.discList06 li:last-child {
  margin-bottom: 0;
}
.discList01 li:before,
.discList02 li:before,
.discList06 li:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-base);
}
.discList03 li {
	position: relative;
	padding-left: 16px;
	font-size: 15px;
	line-height: 1.5;
}
.discList03 li {
  margin-bottom: 7px;
}
.discList03 li:last-child {
  margin-bottom: 0;
}
.discList03 li:before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-base);
}
.discList04 li {
	position: relative;
	padding-left: 16px;
	font-size: 13px;
	line-height: 1.5;
}
.discList04 li:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-base);
}
.discList05 {
  font-size: 14px;
  line-height: 2;
}
.discList05 dt {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-weight: normal;
}
.discList05 dt:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-base);
}
.discList05 dd {
  padding-left: 20px;
}
.discList05 dd + dt {
  margin-top: 20px;
}

.numList01 li{
  font-size: 14px;
  line-height: 2;
}
.numList02 li{
  font-size: 15px;
  line-height: 2;
}

.dlList01 dt {
  margin-bottom: 10px;
}


.arwList01 li {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 19px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.arwList01 li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D9D9D9;
}
.arwList01 li a {
  text-decoration: none;
}
.arwList01 li a:hover {
  text-decoration: underline;
}
.arwList01 li a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  margin-left: 8px;
  vertical-align: middle;
  background: url(../images/common/ic_arw1.svg) no-repeat 0 0 / 100% auto;
  transition: 0.5s;
}

.noteList01 li {
  position: relative;
  margin: 10px 0 0;
  padding-left: 1em;
  font-size: 15px;
  line-height: 1.4;
  text-indent: -1em;
}
.noteList02 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.4;
  text-indent: -1em;
}

.anchorList01 {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: fit-content;
  max-width: 280px;
  text-align: left;
}
.anchorList01 li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 21px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.anchorList01 li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url(../images/common/ic_arw8.svg) no-repeat center 5px / 12px auto var(--color-base);
}
.anchorList01 li a {
  text-decoration: none;
}
.anchorList01 li a:hover {
  text-decoration: underline;
}

.btnList01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.btnStyle01 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: fit-content;
  min-width: 400px;
  min-height: 80px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 80px;
  border: 1px solid #000;
}
.btnStyle01:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/common/ic_arw9.svg) no-repeat 0 0 / 100% auto;
}



.frameStyle01 {
  padding: 24px 30px 24px 42px;
  background: #FAFAFA;
}
.frameStyle02 {
  padding: 24px 30px 24px 42px;
  border: 4px solid #D9D9D9;
}





.-alignC {
  text-align: center;
}
.-alignR {
  text-align: right;
}
.-imgRound5 {
  object-fit: cover;
  aspect-ratio: 19 / 13;
  border-radius: 5px;
}
.-secp80 {
  padding-block: 80px;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}



@media screen and (max-width: 798px) {
	
/* 共通 */	
.pageTitle {
	margin: 0 10px 30px;
    padding: 0 0 20px;
    font-size: 26px;
}
.leadBlock01 {
    margin-bottom: 40px;
}
	
.leadBlock03 {
    margin-bottom: 25px;
}
	
.leadBlock04 {
    display: block;
    padding: 30px 0 30px;
}
.leadBlock04 figure {
    width: 100%;
	}	
.leadBlock04 h3 {
    font-size: 16px;
    text-align: center;
}
	
.leadBlock06 {
    margin-bottom: 50px;
}	
	
.leadBlock06 p {
    font-size: 16px;
	text-align: left;
	}
	
.leadBlock07 {
    margin-bottom: 50px;
}	
.hStyle01 {
    margin-bottom: 20px;
    font-size: 22px;
	}
.hStyle02 {
    margin-bottom: 20px;
    font-size: 20px;
	}
.hStyle04 {
    margin-bottom: 20px;
    font-size: 18px;
	}	
.hStyle05 {
    margin-bottom: 20px;
    font-size: 18px;
	}
.hStyle06 {
    font-size: 18px;
    line-height: 1.5;
	}
.hStyle07 {
    font-size: 18px;
	}
	
.hStyle08 {
    margin-bottom: 25px;
    font-size: 16px;
}		
	
	.-secp80 {
  padding-block: 40px;
}
	

.btnList01 li {
  width: 90%;
}

.btnStyle01 {
  width: 100%;
  min-width: auto;
}
	

	
}















/* 企業情報 /about/ */
.aboutCompany {
  display: flex;
  align-items: center;
  column-gap: 60px;
  max-width: 914px;
  margin: 0 auto 40px;
}
.aboutCompanyLogo {
  width: 360px;
  flex-shrink: 0;
}
.aboutCompanyText h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
}
.aboutCompanyText p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.aboutCatch {
  margin-bottom: 110px;
}
.aboutCatch ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}
.aboutCatch ul li {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  border: 1px solid #E8896B;
  color: #E8896B;
}
.aboutCatch ul li span {
  font-size: 0.8rem;
  display: block;
  width: 100%;
  margin-top: 8px;
  font-family: var(--en);
  opacity: 0.6;
  font-weight: 600;
}
.aboutCatch ul li:nth-child(2) {
  border-color: #86B7D7;
  color: #86B7D7;
}
.aboutCatch ul li:nth-child(3) {
  border-color: #6ABC6D;
  color: #6ABC6D;
}

.aboutFeature {
  padding-bottom: 20px;
}
.aboutFeatureRow {
  display: flex;
  column-gap: 50px;
  margin-bottom: 60px;
}
.aboutFeaturePic {
  width: 41%;
  max-width: 410px;
  flex-shrink: 0;
  padding-top: 10px;
}
.aboutFeaturePic img {
  border-radius: 5px;
}
.aboutFeatureText .num {
  margin-bottom: 30px;
  color: var(--color-base);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.aboutFeatureText .num em {
  margin-left: 10px;
  font-size: 45px;
  font-style: normal;
}
.aboutFeatureText h3 {
  margin-bottom: 30px;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.5;
}
.aboutFeatureText p {
  font-size: 14px;
  line-height: 1.5;
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-bottom: 80px;
}
.serviceList .serviceCol {
  width: calc(33.333% - 27px);
}
.serviceList .serviceCol figure img {
  aspect-ratio: 7 / 5;
  object-fit: cover;
  transition: all .4s;
}
.serviceList .serviceCol figcaption {
  padding-top: 10px;
  font-size: 16px;
}
.serviceList .serviceCol figure a {
  display: block;
  overflow: hidden;
}
.serviceList .serviceCol figure a:hover img {
  transform: scale(1.1);
}
.serviceList .serviceMenu {
  padding: 0 0 0 10px;
  border-left: 1px solid #D9D9D9;
  aspect-ratio: 7 / 5;
}
.serviceList .serviceMenu h4 {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 798px) {
.aboutCatch {
    margin-bottom: 80px;
}	
.aboutCompany {
    display: block;
}
.aboutCompanyLogo {
    width: 180px;
    margin: 0 auto;
	}
	
.aboutCompanyText h2 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
}
	.aboutCompanyText p {
    font-size: 16px;
	}
.aboutCatch ul li {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 10px;
    font-size: 24px;
}
.aboutCatch ul li span {
	margin-top: 0;
	}
.aboutFeatureRow {
    display: block;
	margin-bottom: 30px;
	}
.aboutFeaturePic {
    width: 100%;
    margin-bottom: 20px;
	}
.aboutFeatureText h3 {
    margin-bottom: 10px;
    font-size: 18px;
	}
.serviceList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
    justify-content: space-between;
    margin-bottom: 50px;
}	
.serviceList .serviceCol {
    width: 48%;
}
	.aboutBannerUnit .topBannerList figure {
		width: 48%;
	}	
	
}
/* ごあいさつ /about/message/ */
.messageLead {
	margin-bottom: 80px;
}
.messageBox {
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 5px;
    background-color: #fafafa;
}
.messageProfile {
    display: flex;
    column-gap: 40px;
    margin-bottom: 50px;
}
.messageProfilePic {
    width: 51%;
    max-width: 460px;
    flex-shrink: 0;
}
.messageProfilePic img {
    border-radius: 5px;
}
.messageProfileText {
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}
.messageProfileText .name {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: bold;
}
.messageProfileText .name em {
    margin-left: 15px;
    font-size: 25px;
    font-style: normal;
}

.messageUnit + .messageUnit {
    padding-top: 60px;
}
.messageUnitTitle {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}
.messageUnitText {
    font-size: .9rem;
    line-height: 1.6;
}
.messageUnitBook {
    display: flex;
    justify-content: center;
    text-align: center;
}
.messageUnitBook figure {
    max-width: 246px;
}
.messageUnitBook figcaption {
    padding-top: 18px;
    font-size: 14px;
}

.messageUnitToggle {
    border-bottom: 1px solid #D9D9D9;
}
.messageUnitToggle .tgl {
    position: relative;
    padding: 22px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #D9D9D9;
}
.messageUnitToggle .tgl:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    display: block;
    width: 13px;
    height: 14px;
    margin-top: -7px;
    background: url(../images/common/ic_arw6.svg) no-repeat 0 0 / 100% auto;
}
.messageUnitToggle .tgl.is-open:before {
    transform: scale(1, -1);
}
.messageUnitToggle .text {
    margin-bottom: 15px;
    border-radius: 5px;
    background: #fff;
}

@media screen and (max-width: 798px) {
	.messageBox {
    margin-bottom: 50px;
    padding: 30px;
}
.messageProfile {
    display: block;
    margin-bottom: 50px;
}	
.messageProfilePic {
    width: 100%;
    margin-bottom: 20px;
	}
	
.messageProfileText .name {
    margin-bottom: 25px;
    font-size: 14px;
	}
.messageProfileText .name em {
    margin-left: 10px;
    font-size: 20px;
	}
}


/* wiwiwのミッション /about/mission/ */
.missionBlock {
    padding-bottom: 100px;
}
.missionRow {
    display: flex;
    margin-bottom: 50px;
}
.missionTitle {
    width: 220px;
    padding: 0 40px 0 30px;
    flex-shrink: 0;
    text-align: center;
}
.missionTitle h3 {
    font-size: 32px;
    font-weight: bold;
}
.missionTitle p {
    margin-bottom: 0 !important;
    font-size: 16px;
}
.missionText {
    padding: 0 0 0 50px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 1px solid #D9D9D9;
}
.missionDiversity h3 {
    color: #E7896A;
}
.missionEquity h3 {
    color: #6ABC6D;
}
.missionInclusion h3 {
    color: #86B7D7;
}

@media screen and (max-width: 798px) {
.missionRow {
    display: block;
    margin-bottom: 30px;
}	
	.missionTitle {
    padding: 0;
    text-align: left;
		margin-bottom: 10px;
}
.missionText {
    padding: 0;
    font-size: 14px;
    border-left: none;
}	
}


/* 認定・受賞 /about/award/ */
.awardList01 {
    padding-bottom: 40px;
}
.awardList01 .awardRow {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
    margin-bottom: 40px;
}
.awardList01 .awardLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    min-height: 200px;
    padding: 30px;
    border: 1px solid #C4C4C4;
    flex-shrink: 0;
}
.awardList01 .awardLogo img {
    width: 128px;
}
.awardList01 .awardText h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}
.awardList01 .awardText .lead {
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 500;
}
.awardList01 .awardText .text {
    font-size: 14px;
    line-height: 1.5;
}

.awardList02 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 40px;
}
.awardList02 .awardCol {
    width: calc(33.333% - 33px);
}
.awardList02 .awardLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid #C4C4C4;
    flex-shrink: 0;
}
.awardList02 .awardLogo img {
    width: 128px;
}
.awardList02 .awardText h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
}
.awardList02 .awardText .text {
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 798px) {
.awardList01 .awardText h3 {
    font-size: 20px;
	}
.awardList01 .awardRow {
    display: block;
}	
.awardList01 .awardLogo {
    margin: 0 auto 20px;	
}
.awardList02 .awardCol {
    width: 100%;
    margin-bottom: 30px;
}
}

/* 会社概要 /about/outline/ */
.outlineTable {
	margin-bottom: 80px;
}
.outlineTable table {
    width: 100%;
		border-bottom: 1px solid #C4C4C4;
}
.outlineTable table th,
.outlineTable table td {
	padding-block: 15px;
	font-size: 14px;
	line-height: 1.5;
	border-top: 1px solid #C4C4C4;
}
.outlineTable table th {
	width: 22%;
	min-width: 160px;
	padding-right: 15px;
	font-weight: normal;
}
@media screen and (max-width: 798px) {
.outlineTable table th, .outlineTable table td {
    display: block;
	width: 100%;
}
	.outlineTable table th {
		font-weight: bold;
	}
	}	



/* 一般事業主行動計画 /about/plan/ */
.planBlock {
  display: flex;
  column-gap: 120px;
  margin-bottom: 80px;
  background: url(../images/company/re_arrow.png) no-repeat center center / 70px auto;
}
.planBlock .planBox {
  width: calc(50% - 60px);
  padding: 20px;
  border-radius: 5px;
  background: #E7F7F8;
}
.planBlock .planBox h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  background: #fff;
}
.planBlock .planBox h3 em {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
  font-style: normal;
}
.planBlock .planBox ol {
  margin: 0 20px;
  padding: 0 0 10px 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  list-style: decimal;
}
.planBlock .planBox ol li {
  margin-bottom: 5px;
}


.planDetail {
  margin-bottom: 80px;
}
.planDetail .planRow {
	display: flex;
	column-gap: 20px;
	margin-bottom: 50px;
}
.planDetail .planTitle {
	width: 180px;
  padding-left: 1em;
  text-indent: -1em;
	flex-shrink: 0;
	font-size: 20px;
	font-weight: bold;
  line-height: 1.5;
}
.planDetail .planText {
  font-size: 14px;
  line-height: 1.5;
}
.planDetail .planText p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}
.planDetail .planText p + dl {
  margin-top: 20px;
  margin-bottom: 40px;
}
.planDetail .planDate {
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}
.planList01 {
  display: grid;
  grid-template-columns: 93px 1fr;
  align-items: start;
  gap: 9px 15px;
  font-size: 14px;
  line-height: 1.4;
}
.planList01 .head {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-base);
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--color-base);
}
.planList01 .text {
  padding-top: 1px;
}
.planList02 {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 9px 20px;
  font-size: 14px;
  line-height: 1.4;
}
.planList02 dt {
  font-weight: normal;
}
.planButton {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
.planButton .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  min-height: 80px;
  background-color: #fff;
  border: solid 1px #111;
  padding: 25px 30px;
  color: #111;
  border-radius: 70px;
  font-size: 20px;
  font-weight: 600;
}
.planButton .btn a::after {
  content: "\f1c1";
  color: #E8896B;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-left: 16px;
}

@media screen and (max-width: 798px) {
	.planBlock {
    display: block;
		margin-bottom: 50px;
	}
	.planBlock .planBox {
    width: 100%;
	}
	.planBlock .planBox h3 em {
    font-size: 18px;
	}
	.planDetail .planRow {
    display: block;
    margin-bottom: 30px;
}
	.planDetail .planTitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.planButton {
    gap: 20px;
	}
}


/* wiwiwのサービス /service/ */

.service_bg {
  padding-block: 70px;
}

.serviceTitle01 {
  position: relative;
  width: fit-content;
  margin: 0 auto 45px;
  padding: 0 38px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.serviceTitle01:before,
.serviceTitle01:after {
  content: "";
  position: absolute;
  bottom: 2px;
  display: block;
  width: 25px;
  height: 27px;
  background: url(../images/common/ic_line01.svg) no-repeat 0 0 / 100% auto;
}
.serviceTitle01:before {
  left: 0;
}
.serviceTitle01:after {
  right: 0;
  transform: scale(-1, 1);
}
.serviceTitle02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
  margin-bottom: 45px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.serviceTitle03 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}
.serviceTitle03 img {
  margin: -5px 12px 0 0;
  vertical-align: middle;
}
.serviceTitle04 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.serviceTitle05 {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.serviceTitle05 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: #888;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  border-radius: 50%;
  background: #F6F6F6;
}

.serviceNav {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 20px));
  gap: 40px;
  margin-bottom: 120px;
}
.serviceNav .navCol {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  border-radius: 5px;
  background: #F5F5F5;
}
.serviceNav .navCol a {
  position: relative;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  row-gap: 30px;
  padding: 30px 30px 60px;
}
.serviceNav .navCol a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 0 0 10px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--color-base);
}
.serviceNav .navCol a:after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 10px;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../images/common/ic_arw7.svg) no-repeat 0 0 / 100% auto;
}
.serviceNav .navCol h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
	flex-direction: column;
}
.serviceNav .navCol h3 span {
	font-size: 14px;
	font-weight: normal;
}
.serviceNav .navCol figure img {
 object-fit: cover;
    height: 180px;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 5px;
    object-position: left top;
}
.serviceNav .navCol p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}


.serviceMenuA {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 40px;
}
.serviceMenuA .menuCol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 320px;
  height: 320px;
  padding: 20px 0;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.serviceMenuA .menuCol .num {
  margin-bottom: 12px;
  color: var(--color-base);
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
}
.serviceMenuA .menuCol h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
}

.serviceMenuB {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.serviceMenuB .menuCol {
  width: calc(33.333% - 14px);
}
.serviceMenuB .menuCol a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 40px 15px 20px;
  background: url(../images/common/ic_arw4.svg) no-repeat right 20px center / 13px auto #fff;
}
.serviceMenuB .menuCol .num {
  color: var(--color-base);
  margin-right: 16px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}
.serviceMenuB .menuCol .ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.serviceMenuC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.serviceMenuC .menuCol {
  width: calc(50% - 15px);
  max-width: 400px;
}
.serviceMenuC .menuCol a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 15px 40px 15px 20px;
  font-size: 20px;
  font-weight: 500;
  background: url(../images/common/ic_arw4.svg) no-repeat right 20px center / 13px auto #F5F5F5;
}

.serviceBlock {
  padding: 30px;
  border-radius: 5px;
  background: #E5F1F9;
}

.serviceBlockCategory {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 2px 30px;
  min-height: 50px;
  color: var(--color-base);
  font-size: 24px;
  font-weight: bold;
  border-radius: 30px;
  background: #fff;
}

.serviceBlockBox + .serviceBlockCategory {
  margin-top: 60px;
}

.serviceBlockBox {
  position: relative;
  margin-bottom: 30px;
  padding: 30px 30px 20px;
  border-radius: 10px;
  background: #fff;
}
.serviceBlockBox .boxHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.serviceBlockBox .boxHead h4 {
  color: var(--color-base);
  font-size: 20px;
  font-weight: bold;
  flex-grow: 1;
}
.serviceBlockBox .boxHead .tag {
  display: flex;
  gap: 10px;
}
.serviceBlockBox .boxHead .tag li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 25px;
  padding: 0 5px;
  color: #E8896B;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  border: 1px solid #E8896B;
}
.serviceBlockBox .boxHead.boxNum {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: repeat(2, auto);
  row-gap: 5px;
}
.serviceBlockBox .boxHead.boxNum .num {
  color: var(--color-base);
  font-size: 40px;
  font-weight: bold;
  grid-area: 1 / 1 / 3 / 2;
}
.serviceBlockBox .boxHead.boxAlpha {
  display: grid;
  grid-template-columns: 37px 1fr;
  grid-template-rows: repeat(2, auto);
  row-gap: 5px;
}
.serviceBlockBox .boxHead.boxAlpha .alpha {
  color: var(--color-base);
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  align-self: self-end;
  grid-area: 1 / 1 / 3 / 2;
}
.serviceBlockBox .boxHead.boxNum .catch,
.serviceBlockBox .boxHead.boxAlpha .catch {
  color: #636363;
  font-size: 14px;
  font-weight: 500;
  grid-area: 1 / 2 / 2 / 3;
}
.serviceBlockBox .boxHead.boxNum h4,
.serviceBlockBox .boxHead.boxAlpha h4 {
  grid-area: 2 / 2 / 3 / 3;
}
.serviceBlockBox .boxHead .group p {
  margin: 0 0 3px;
  color: var(--color-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.serviceBlockBox .boxText {
  font-size: 15px;
  line-height: 1.5;
}
.serviceBlockBox .boxText p {
  font-size: 15px;
  line-height: 1.5;
}
.serviceBlockBox .boxLead {
  font-size: 14px;
  line-height: 1.5;
}
.serviceBlockBox .boxLead p {
  font-size: 14px;
  line-height: 1.5;
}
.serviceBlockBox .boxThumb {
  display: grid;
  grid-template-columns: repeat(4, calc(25% - 15px));
  gap: 20px;
  padding-top: 10px;
}
.serviceBlockBox .boxThumb .boxCol a {
  display: block;
  height: 100%;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
}
.serviceBlockBox .boxThumb figure img {
  object-fit: cover;
  aspect-ratio: 128 / 63;
  border-radius: 10px 10px 0 0;
}
.serviceBlockBox .boxThumb figcaption {
  padding: 12px 10px 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.serviceBlockBox .boxFrame {
  margin: 30px 0 20px;
  padding: 20px 30px;
  border: 1px solid #ccc;
  background: #FAFAFA;
}
.serviceBlockBox .boxFrame.-mtb01 {
  margin-top: 10px;
  margin-bottom: 30px;
}
.serviceBlockBox .boxFrame .frameTitle {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}
.serviceBlockBox .boxRow {
  display: flex;
  column-gap: 20px;
  margin-bottom: 10px;
}
.serviceBlockBox .boxRow .boxText {
  flex-grow: 1;
}
.serviceBlockBox .boxRow .boxImg {
  max-width: 45%;
  flex-shrink: 0;
}
.serviceBlockBox .boxImgList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.serviceBlockBox .boxImgList figcaption {
  margin-top: 10px;
  font-size: 12px;
}
.serviceBlockBox .boxCourse {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.serviceBlockBox .boxCourse li {
  padding: 7px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}
.serviceBlockBox .boxCourse li.mycareer {
  background: #E98E6A;
}
.serviceBlockBox .boxCourse li.nextleader {
  background: #95C0DC;
}
.serviceBlockBox .boxSummary {
  display: flex;
  column-gap: 60px;
  margin-bottom: 30px;
}
.serviceBlockBox .boxSummary .boxCol {
  width: calc(50% - 30px);
}
.serviceBlockBox .boxSummary .boxCol h5 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.serviceBlockBox .boxSummary .boxCol h5 img {
  width: 30px;
  margin-right: 10px;
  vertical-align: bottom;
  flex-shrink: 0;
}
.serviceBlockBox .boxSummary .boxCol p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}
.serviceBlockBox .boxTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.serviceBlockBox .boxTable th {
  width: 85px;
  padding: 7px 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}
.serviceBlockBox .boxTable td {
  padding: 7px 5px 7px 15px;
  font-size: 14px;
  border-left: 4px solid #E5F1F9;
}
.serviceBlockBox .boxTable td p {
  font-size: 14px;
}

.serviceBlockBox .boxLink {
  height: 40px;
}
.serviceBlockBox .boxLink a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 0 0 10px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--color-base);
}
.serviceBlockBox .boxLink a:before {
  content: "";
  position: absolute;
  top: 32px;
  right: 10px;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../images/common/ic_arw7.svg) no-repeat 0 0 / 100% auto;
}


.programMovie {
  max-width: 700px;
  margin: 0 auto 80px;
}
.programMovie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.programServiceList {
  display: grid;
  grid-template-columns: repeat(3, calc(33.333% - 23px));
  gap: 35px;
  margin: 70px 0 100px;
}
.programServiceList .listItem {
  padding: 20px 10px;
  border-radius: 10px;
  background: #E7F7F8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.programServiceList .listBalloon {
  position: relative;
  margin-bottom: 33px;
  padding: 24px 17px;
  border-radius: 10px;
  background: #fff;
}
.programServiceList .listBalloon:before {
  content: "";
  position: absolute;
  top: -27px;
  left: 50%;
  width: 34px;
  height: 37px;
  margin-left: -17px;
  background: url(../images/service/program/ic_people01.svg) no-repeat 0 0 / 100% auto;
}
.programServiceList .listBalloon:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 32px;
  height: 16px;
  margin-left: -16px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.programServiceList .listBalloon p {
  color: var(--color-base);
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.programServiceList .listAnchor {
  padding: 0 10px;
}
.programServiceList .listAnchor .anchorList01 li {
  margin-bottom: 12px;
}

.programServiceFeature {
  position: relative;
  padding: 50px 40px 30px;
  border-radius: 10px;
  border: 10px solid #E7F7F8;
  background: #fff;
}
.programServiceFeature .featureBalloon {
  position: absolute;
  top: -80px;
  left: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #EBFFD7;
}
.programServiceFeature .featureBalloon:after {
  content: "";
  width: 40px;
  height: 60px;
  background: url(../images/service/program/ic_people02.svg);
}
.programServiceFeature .featureBalloon p {
  margin: 0;
  color: var(--color-base);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.programServiceFeature h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 0 60px;
  color: var(--color-base);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.programServiceFeature h3:before,
.programServiceFeature h3:after {
  content: "";
  position: absolute;
  top: -20px;
  display: block;
  width: 44px;
  height: 38px;
  background: url(../images/common/ic_line02.svg) no-repeat 0 0 / 100% auto;
}
.programServiceFeature h3:before {
  left: 0;
}
.programServiceFeature h3:after {
  right: 0;
  transform: scale(-1, 1);
}
.programServiceFeature ol {
  display: grid;
  grid-template-columns: repeat(3, 33.333%);
}
.programServiceFeature ol li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 5px;
  padding: 0 10px;
  text-align: center;
}
.programServiceFeature ol li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin: 0 auto;
  color: var(--color-base);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  border-radius: 50%;
  background: #E7F7F8;
}
.programServiceFeature ol li p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  align-self: center;
}
.programServiceFeature ol li figure {
  align-self: center;
}

.programTarget {
  display: flex;
  gap: 35px;
}
.programTarget .targetItem {
  width: calc(33.333% - 23px);
  padding: 20px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 10px;
  background: #F5F5F5;
}
.programTarget .targetItem h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 140px;
  min-height: 42px;
  margin: 0 auto 20px;
  color: #E8896B;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 30px;
  background: #fff;
}
.programTarget .targetItem p {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
}
.programTarget .targetItem dl {
  padding: 5px 0 0;
  border-top: 1px dashed #E8896B;
}
.programTarget .targetItem dl dt {
  padding: 15px 0 0;
  font-weight: bold;
}
.programTarget .targetItem dl dd .fs {
  font-size: 12px;
}

@media screen and (max-width: 798px) {
.serviceTitle02 {
    row-gap: 10px;
    margin-bottom: 30px;
    font-size: 20px;		
}
	
.serviceNav {
    display: block;
    margin-bottom: 50px;
	}
	
.serviceNav .navCol {
    display: block;
	margin-bottom: 25px;
	}
	
.serviceNav .navCol h3 {
    font-size: 18px;
	}
	
.serviceNav .navCol figure img {
    margin: 20px 0;
	object-fit: contain;
    height: fit-content;
    aspect-ratio: inherit;
}	
.serviceNav .navCol h3 span {
    font-size: 12px;
    margin-top: 10px;
}	
	
.programServiceList {
    display: block;
    margin: 30px 0 100px;
}	
	
.programServiceList .listItem {
    margin-bottom: 30px;
	}
	
.programServiceFeature .featureBalloon {
	left: 0;
	right: 0;
	margin: auto;
	}
.programServiceFeature {
    padding: 90px 40px 30px;
	}
.programServiceFeature ol {
    display: block;
	}
.programServiceFeature ol li {
    margin-bottom: 10px;
}	
.programTarget {
    display: block;
	}
.programTarget .targetItem {
    width: 100%;
}
.serviceBlockBox .boxHead {
    display: block;
}
.serviceBlockBox .boxHead h4 {
    text-align: center;
	}
.serviceBlockBox .boxHead .tag {
    justify-content: center;
	margin-top: 10px;
}
.serviceBlockBox .boxThumb {
	display: flex;
   flex-direction: column;
	}
	
.serviceBlockBox .boxRow {
    display: block;
	}
	
.serviceBlockBox .boxRow .boxImg {
    max-width: 100%;
	margin-top: 20px;
	text-align: center;
	}
.serviceBlockBox .boxSummary {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    flex-direction: column;
}	
.serviceBlockBox .boxSummary .boxCol {
    width: 100%;
}	
	
.serviceTitle01 {
    font-size: 20px;
	}
	
.serviceMenuA {
    display: block;
	}
.serviceMenuA .menuCol {
	margin: 20px auto;
	}
.service_bg {
    padding-block: 50px;
}
.serviceBlockCategory {
	font-size: 18px;
	}
.serviceMenuB .menuCol {
    width: 100%;
}
	
	.serviceBlockBox .boxHead.boxNum {
    display: block;
    text-align: center;
	}
	
.serviceBlockBox .boxHead.boxNum .num {
    font-size: 30px;
    margin-bottom: 10px;
	}
	
.serviceBlockBox .boxHead.boxNum .catch, .serviceBlockBox .boxHead.boxAlpha .catch {
    margin-bottom: 10px;
	}
	
.serviceTitle03 {
    margin-bottom: 20px;
	}
	
.serviceBlockBox .boxImgList,	
.serviceBlockBox .boxImgList figure {
    text-align: center;
	width: 100%;
}	
	
.serviceBlockBox .boxHead.boxAlpha {
    display: block;
    text-align: center;
	}
.serviceMenuC {
    gap: 20px;
}	
.serviceMenuC .menuCol {
    width: 100%;
	}


}


/* 導入企業一覧 /company/ */
.companyHead {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 28px;
  margin-bottom: 70px;
  color: var(--color-base);
  font-size: 24px;
  font-weight: 500;
}
.companyHead h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 35px;
  border-radius: 50px;
  border: 1px solid var(--color-base);
}
.companyHead .num em {
  font-size: 64px;
  font-style: normal;
}

.companyList {
  padding: 80px 0;
}
.companyArea {
  display: flex;
  padding: 18px 0;
  border-top: 1px solid #C4C4C4;
}
.companyArea:last-child {
  border-bottom: 1px solid #C4C4C4;
}
.companyArea h3 {
  width: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  flex-shrink: 0;
}
.companyArea .companyItem {
  flex-grow: 1;
}
.companyArea .companyItem ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 50px;
}
.companyArea .companyItem ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
}
.companyArea .companyItem ul li .link {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3px;
  margin-left: 5px;
  padding: 0 10px;
  color: var(--color-base);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid var(--color-base);
}
.companyArea .companyItem ul li .link:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  background: url(../images/common/ic_arw9.svg) no-repeat 0 0 / 100% auto;
}

.companyBtn a,.btmBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: fit-content;
  min-width: 400px;
  min-height: 80px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 80px;
  border: 1px solid #000;
}
.companyBtn a:after,.btmBtn a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/common/ic_arw9.svg) no-repeat 0 0 / 100% auto;
}

.handbookFeature {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.handbookFeature .featureItem {
  display: flex;
  gap: 20px;
  width: calc(50% - 20px);
  padding: 30px 30px 30px 20px;
  border-radius: 10px;
  background: #fff;
}
.handbookFeature .featureIcon {
  width: 80px;
  flex-shrink: 0;
}
.handbookFeature .featureText {
  flex-grow: 1;
}
.handbookFeature .featureText h3 {
  margin-bottom: 25px;
  color: var(--color-base);
  font-size: 20px;
  font-weight: bold;
}
.handbookFeature .featureText p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 798px) {
.companyBtn a, .btmBtn a {
    min-width: 100%;		
}
	
.handbookFeature {
    gap: 20px;
}
.handbookFeature .featureItem {
    width: 100%;
	}

.companyHead {
    display: block;
    margin-bottom: 50px;
    text-align: center;
}	
.companyArea {
    display: block;
	}
.companyArea h3 {
    margin-bottom: 10px;
	}
.companyArea .companyItem ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}	
.companyArea .companyItem ul li {
    display: flex;
    align-items: center;
    font-size: 12px;
	}
.companyArea .companyItem ul li .link {
    font-size: 11px;
	}
    .page_link_s ul li {
        padding: 6px;
    }
}	



/* wiwiwL!VE /service/wiwiwLiVE/ */
.wiwiwliveBanner {
  max-width: 677px;
  margin: 0 auto;
}
.wiwiwliveBanner a {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
}
.wiwiwliveBanner a:before {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 0 0 10px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--color-base);
}
.wiwiwliveBanner a:after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 10px;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../images/common/ic_arw7.svg) no-repeat 0 0 / 100% auto;
}
.wiwiwliveBanner a img {
  border-radius: 10px;
}

















