﻿@charset "UTF-8";


/* フォント設定
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');


/* 基本設定
---------------------------------------------------------- */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
  font-size: 10px;
}
@media screen and (max-width: 1024px){
  html {
    font-size: 0.977vw;
  }
}

body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f2f1f1;
}


header, footer {
	width: 100%;
}
footer p {
  font-size: 1.8rem;
  text-align: right;
}
p.copyright {
  font-size: 2.0rem;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  background: #2d2d2d;
}
@media screen and (max-width: 769px){
  p.copyright {
    font-size: 2.083vw;
    line-height: 1.8;
    margin-top: 35%;
  }
}


a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

p {
  text-align: justify;
}


/* 画像透過
---------------------------------------------------------- */
a img:hover {
  transition: 1.0s;
  opacity: 0.5;
}


/* レスポンシブ対応
---------------------------------------------------------- */
._sp {
  display: none;
}
@media screen and (max-width: 769px) {
  ._pc {
      display: none!important;
  }
  ._sp {
      display: block;
  }
}

/* telリンク（PC無効） */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  a[href^="tel:"] {
      pointer-events: auto;
  }
}

/* sp用改行 */
br._sp {
  display: none;
}
@media screen and (max-width: 769px){
  br._sp {
    display: block;
  }
}


/* 余白排除
---------------------------------------------------------- */
#wrap {
  width: 100%;
  overflow: hidden;
}


/* 共通レイアウト
---------------------------------------------------------- */
._flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 769px){
  ._flex {
    display: block;
  }
}

/* 順送り */
._row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

/*　中央寄せ */
._flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 左寄せ */
._flexRow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

/* 逆配置 */
._reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 769px){
  ._reverse {
    display: block;
  }
}


/* テキスト中央 */
._center {
  text-align: center!important;
}
@media screen and (max-width: 769px){
  ._center {
    text-align: justify!important;
  }
}


/* テキスト中揃え解除 */
._justify {
  text-align: justify!important;
}


/* position指定 */
._relative {
  position: relative;
}


/* コンテンツ
---------------------------------------------------------- */
.contentBox {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 769px){
  .contentBox {
    max-width: 95%;
  }
}


/* 追従ボタン
---------------------------------------------------------- */
#sideBtn {
  /*display: none;*/
  position: fixed;
  bottom: 7%;
  right: 0;
  width: 18.5rem;
  padding: 1.5rem 1.0rem 1.5rem 1.3rem;
  background: #30877d;
  border-radius: 2.0rem 0 0 2.0rem;
  z-index: 99;
}
#sideBtn a {
  display: block;
  padding: 0 0 1.0rem 0;
  font-size: 1.3rem;
  color: #fff;
  /*border-bottom: 1px solid #599f97;*/
}
#sideBtn a:nth-child(1):before {
  content: '';
  display: inline-block;
  background: url(../images/letter.png) no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto 0.8rem auto 0;
}
#sideBtn a:nth-child(2) {
  padding-bottom: 1.5rem;
}
#sideBtn a:nth-child(2):before {
  content: '';
  display: inline-block;
  background: url(../images/arr.png) no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto 0.8rem auto 0;
}
#sideBtn a:nth-child(3) {
  padding-bottom: 0;
}
#sideBtn a:nth-child(3):before {
  content: '';
  display: inline-block;
  background: url(../images/toTop.png) no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto 0.8rem auto 0;
}
@media screen and (max-width: 769px){
  #sideBtn {
    top: unset;
    bottom: 5%;
    width: 95%;
    padding: 2% 5%;
  }
  #sideBtn a {
    display: inline-block;
    margin: 0 5% 2% 0;
    font-size: 3.200vw;
  }
}



/* ファーストビュー
---------------------------------------------------------- */
h1.logo {
  display: block;
  padding: 2.6rem 0 1.3rem 8.2rem;
  background: #fff;
}
h1.logo a {
  display: block;
  max-width: 29.5rem;
}
@media screen and (max-width: 769px){
  h1.logo {
    padding: 20px;
  }
  h1.logo img {
    max-width: unset;
    width: auto;
    height: 100%;
  }
}

.fv {
  background: url(../images/fv.png) no-repeat 50% 50%;
  background-size: cover;
  padding: 4.3rem 0 3.7rem 0;
}
.fv h2 {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.0rem 0;
  font-size: 4.0rem;
  line-height: 1.0;
  text-align: center;
}
.fv h2 span {
  display: block;
  font-size: 1.6rem;
  line-height: 3.8rem;
}
.fv h3 {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 769px){
  .fv h2 {
    padding: 3.3rem 0;
  }
  .fv h2 span, .fv h3 {
    font-size: 2.917vw;
  }
}

.fvBox {
  max-width: 900px;
  margin: 4.0rem auto 2.0rem auto;
}
.fvBox > div {
  width: 13.5%;
  max-width: 16.4rem;
  margin: 0 0 1.3rem 0;
}


/* コンテンツ： 共通
---------------------------------------------------------- */
h2.ttl {
  font-size: 3.5rem;
  text-align: center;
}
h2.ttl span {
  background: url(../images/deco.png) no-repeat bottom 0 left 0;
  background-size: auto 2.3rem;
}
@media screen and (max-width: 769px){
  h2.ttl {
    font-size: 4.167vw;
  }
}

/* スペース調整 */
.mb40 {
  margin-bottom: 4.0rem;
}
.mb60 {
  margin-bottom: 6.0rem;
}
.mb80 {
  margin-bottom: 8.0rem!important;
}
.mb110 {
  margin-bottom: 11.0rem!important;
}
.mt50 {
  margin-top: 5.0rem;
}
._pt30 {
  padding-top: 3.0rem!important;
}

/* 文字サイズ調整 */
._fSize24 {
  font-size: 2.4rem!important;
}
._fSize50 {
  font-size: 5.0rem!important;
  letter-spacing: -0.4rem;
}
@media screen and (max-width: 769px){
  ._fSize24 {
    font-size: 3.33vw!important;
  }
  ._fSize50 {
    font-size: 4.167vw!important;
  }
}


/* コンテンツ： 対応が求められる理由
---------------------------------------------------------- */
.c1 {
  padding: 12.0rem 0 5.5rem 0;
}
.c1 p {
  font-size: 2.0rem;
  line-height: 2.0;
  padding: 6.0rem 0 0 0;
}
.c1 p span:before {
  content: '';
  display: inline-block;
  background: url(../images/check.png) no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  width: 2.6rem;
  height: 2.0rem;
  margin: auto 2.0rem auto 0;
}
.c1 p._light {
  font-weight: lighter;
}
@media screen and (max-width: 769px){
  .c1 p {
    font-size: 3.33vw;
  }
}

.c1Box {
  max-width: 126.0rem;
  margin: 0 auto 8.6rem auto;
}
.c1Box > div {
  width: 49%;
}
@media screen and (max-width: 769px){
  .c1Box > div {
    width: 100%;
    margin: 0 0 5% 0;
  }
}


/* コンテンツ： MS＆ADインターリスク総研 コンサルティングサービスの特長
---------------------------------------------------------- */
h2.c2Ttl {
  display: block;
  margin: 0 0 5.6rem 0;
  padding: 4.5rem 0;
  font-size: 3.0rem;
  color: #fff;
  text-align: center;
  background: #006c60;
}
@media screen and (max-width: 769px){
  h2.c2Ttl {
    font-size: 4.167vw;
  }
}


.c2 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 2.0rem 0;
  font-size: 2.3rem;
  line-height: 1.8;
}
.c2 h3 span {
  display: block;
  width: 5.0rem;
  margin: 0 1.0rem 0 0;
}
.c2 h3.mb70 {
  margin-bottom: 7.0rem;
}
.c2 p {
  font-size: 2.4rem;
  text-align: center;
  padding: 4.5rem 0 6.0rem 0;
}
@media screen and (max-width: 769px){
  .c2 h3, .c2 p {
    font-size: 3.33vw;
  }
}


.c2Box {
  position: relative;
  max-width: 45.5rem;
  aspect-ratio: 455 / 457;
  margin: auto;
}
.c2Box a {
  display: block;
  position: absolute;
  max-width: 21.7rem;
}
.c2Box a.link1 {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c2Box a.link2 {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c2Box a.link3 {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c2Box a.link4 {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 480px){
  .c2Box {
    max-width: 68.2rem;
    aspect-ratio: 682 / 685;
  }
  .c2Box a {
    max-width: 32.5rem;
  }
}


/* コンテンツ： 「ビジネスと人権に関する指導原則」に対応！
---------------------------------------------------------- */
.c3 {
  padding: 5.0rem 0;
}

h2.ttl.mb160 {
  margin-bottom: 16.0rem;
}

.c3Box {
  position: relative;
  margin: 0 0 12.0rem 0;
  padding: 10.0rem 0 7.0rem 0;
  background: #fff;
  border: 3px solid #000;
}
.c3Box h3 {
  display: block;
  position: absolute;
  top: -6.0rem;
  left: 50%;
  width: 70%;
  padding: 1.5rem 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  border: 3px solid #000;
}
.c3Box h3.w86 {
  width: 86%;
}
.c3Box h3._green1 {
  background: #006c60;
}
.c3Box h3._green2 {
  background: #22af93;
}
.c3Box h4 {
  font-size: 2.4rem;
  line-height: 2.0;
  text-align: justify;
}
.c3Box h5 {
  display: block;
  width: 93%;
  margin: 0 auto 5.0rem auto;
  padding: 2.0rem 0;
  font-size: 3.5rem;
  text-align: center;
  border: 3px solid #f8b62b;
  border-radius: 5.0rem;
}
.c3Box img {
  margin: 4.0rem 0;
}
@media screen and (max-width: 769px){
  .c3Box._spAdjust {
    padding: 20.0rem 0 7.0rem 0;
  }
  .c3Box h3, .c3Box h5 {
    font-size: 4.167vw;
  }
  .c3Box h4 {
    font-size: 3.33vw;
  }
}


.c3InBox {
  padding: 0 8.0rem;
}
.c3InBox2 {
  background: #f2f1f1;
  padding: 3.5rem;
}
.c3InBox2 p {
  font-size: 2.4rem;
  line-height: 1.7;
}
.c3InBox2 p b {
  font-size: 3.0rem;
  color: #006c60;
  line-height: 2.0;
  padding: 1.0rem 3.0rem;
  background: #beddd7;
  border-radius: 5.0rem;
}
.c3InBox3 {
  width: 91.5%;
  margin: 0 auto 8.0rem auto;
  padding: 5.5rem 8.5rem;
  background: #e0f0e9;
  border-radius: 3.0rem;
}
.c3InBox3 p {
  font-size: 2.0rem;
  line-height: 1.7;
}
.c3InBox3 p b {
  display: block;
  padding: 0 0 4.0rem 0;
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 769px){
  .c3InBox {
    padding: 0 5%;
  }
  .c3InBox2 p {
    font-size: 2.708vw;
  }
  .c3InBox3 p {
    font-size: 2.917vw;
  }
  .c3InBox3 p b {
    font-size: 3.33vw;
  }
}

img.w93 {
  width: 93%;
  margin: auto;
}

.pointBox {
  position: relative;
  width: 91%;
  margin: 7.0rem auto 0 auto;
  padding: 5.5rem 8.5rem;
  background: #006c60;
  border-radius: 3.0rem;
}
.pointBox img {
  position: absolute;
  top: 0;
  left: -2.5rem;
  width: 27.7%;
}
.pointBox h2 {
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.0;
  padding: 0 0 4.0rem 0;
}
.pointBox p {
  font-size: 2.4rem;
  color: #fff;
  line-height: 4.7rem;
}
@media screen and (max-width: 769px){
  .pointBox h2 {
    font-size: 4.792vw;
  }
  .pointBox p {
    font-size: 3.33vw;
  }
}


/* コンテンツ： お問合せ・お申込みについて
---------------------------------------------------------- */
.c4Bk {
  background: #006c60;
  padding: 5% 0;
}

.c4 {
  background: #fff;
  padding: 5% 3% 1% 3%;
  border-radius: 5.0rem;
}
.c4 h2 {
  padding: 0 0 6.0rem 0;
}
.c4 p {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px){
  .c4Bk {
    padding: 10% 0;
  }
  .c4 p {
    font-size: 3.33vw;
  }
}

.boxPrivacy {
  width: 100%;
  height: 400px;
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #d6d6db;
  overflow-y: scroll;
}

/* -------------------------- */
/* 23.08追記　　　　　　　 */
/* -------------------------- */
#secMngNumber {
            background-color: #2d2d2d;
            color: #000;
            padding: 10px 0;
}
#secMngNumber p {
    text-align: right;
    color: #fff;
}
 footer {
            background-color: #2d2d2d;
}

/* 送信確認、完了ページ
---------------------------------------------------------- */
#pageConfirm #contactForm,
#pageThanks #contactForm{
  background-color: #006c60;
}
#pageConfirm #contactForm h2,
#pageThanks #contactForm h2{
    margin-bottom: 20px;
}
#pageConfirm header,
#pageThanks header{
  background: #fff;
}
#pageConfirm header img,
#pageThanks header img{
    width: auto;
}
#pageConfirm form {
  margin-bottom: 0;
}

@media screen and (max-width: 769px){
#contactForm h2 {
  font-size: 5.33vw;
}
.c2 h3 span img {
    padding-top: 1.0rem;
  max-width: unset;
    width: 4.0vw;
}
#secMngNumber {
    padding-right: 1.0vw;
    background-color: #f2f1f1;
}
#secMngNumber p {
    text-align: right;
    color: #333333;
    font-size:2.708vw;
}
 footer {
     padding: 0;
}
p.copyright {
    margin-top: 0;
  }

/* TOPページ
---------------------------------------------------------- */
#pageIndex h1.logo {
    height: auto;
    padding: 0;
    width: 100%;
    background-color: #fff;
  }
#pageIndex h1.logo a {
    max-width: unset;
    width: 80vw;
    padding: 5vw;
  }
  #pageIndex h1.logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0;
}
#pageIndex p.copyright {
   margin-top: 35%;
  }
}

/* TOPページ
---------------------------------------------------------- */
@media screen and (min-width: 770px) {
  header h1.logo {
    width: auto;
    display: flex;
    align-items: center;
  }
}

.header-logo-image {
  display: inline-block;
  height: auto;
}

.header-logo-image:first-of-type {
  max-width: 200px;
  display: block;
}

.header-logo-image:last-of-type {
  width: 182px;
  margin-left: 24px;
}

@media screen and (max-width: 769px){
  .header-logo-image:last-of-type {
    display: none;
  }
}

.kv-area {
  position: relative;
}

.kv-button-wrap {
  position: absolute;
  top: 33.02vw;
  left: 5.57vw;
}

@media screen and (max-width: 769px){
  .kv-button-wrap {
    top: 80.8vw;
    left: 6.4vw;
  }
}

.kv-button-wrap a {
  display: inline-block;
  padding: 1.15vw 5.21vw 1.25vw;
  color: #FFF;
  font-size: 1.67vw;
  font-weight: 700;
  background: #F17015;
  border-radius: 9999px;
  transition: .3s;
}

@media screen and (max-width: 769px){
  .kv-button-wrap a {
    padding: 2.4vw 8.53vw 2.93vw;
    font-size: 4.27vw;
  }
}

.kv-button-wrap a:hover {
  opacity: .8;
}

.video-group {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 0 auto 100px;
}

@media screen and (max-width: 769px){
  .video-group {
    width: auto;
    flex-direction: column-reverse;
    padding: 0;
    margin-bottom: 10vw;
  }
}

.section.video-text-wrap {
  width: 55%;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 769px){
  .section.video-text-wrap {
    width: 90%;
    margin: 0 auto;
  }
}

.section.video-wrap {
  width: 45%;
}

@media screen and (max-width: 769px){
  .section.video-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 769px){
  div.section:nth-last-of-type(1).video-wrap {
    margin-bottom: 10vw;
  }
}

.index3 .video-wrap .video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 736 / 413;
}

@media screen and (max-width: 769px){
  .index3 .video-wrap .video iframe {
    height: auto;
    aspect-ratio: 606 / 342;
  }
}

.ttlheader.ttl-header-fort {
  margin-bottom: 0;
}

.fort-group {
  max-width: 1064px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media screen and (max-width: 769px){
  .fort-group {
    grid-template-columns: 1fr;
  }
}

.fort-wrap {
  padding: 24px 16px;
  border: 1px solid #07917E;
  border-radius: 8px;
}

.fort-wrap::after {
  content: '';
  clear: both;
  display: block;
}

.fort-num {
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 58px;
  height: 58px;
  font-size: 28px;
  font-weight: 700;
  color: #006C60;
  background: rgba(7, 145, 126, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 769px){
  .fort-num {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

.fort-num-large {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 88px;
  padding-bottom: 4px;
  font-size: 50px;
  font-weight: 700;
  color: #006C60 !important;
  background: rgba(7, 145, 126, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 769px){
  .fort-num-large {
    min-width: auto;
    width: 16.13vw;
    height: 16.13vw;
    padding-bottom: 0.53vw;
    font-size: 10vw;
  }
}

.fort-title,
.fort-title-lead {
  float: right;
  width: calc(100% - 68px);
  margin-left: 10px;
  color: #1A1B1C;
  font-weight: 700;
}

.fort-title {
  font-size: 24px;
}

@media screen and (max-width: 769px){
  .fort-title {
    width: calc(100% - 48px);
    padding-top: 5px;
    font-size: 20px;
  }
}

.fort-title-lead {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 769px){
  .fort-title-lead {
    float: left;
    width: 100%;
    margin: 8px 0 0;
    font-size: 15px;
  }
}

.fort-text {
  float: left;
  margin-top: 16px;
  color: #1A1B1C;
  font-size: 16px;
}

@media screen and (max-width: 769px){
  .fort-text {
    font-size: 14px;
  }
}

.fort-link {
  float: right;
  margin-top: 16px;
}

@media screen and (max-width: 769px){
  .fort-link {
    width: 100%;
    text-align: center;
  }
}

.fort-link a {
  display: inline-block;
  padding: 7px 24px 9px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  background: #07917E;
  border-radius: 9999px;
}


@media screen and (min-width: 770px) {
  .index4.index4-action:before,
  .index5.index5-action:before {
    content: none;
  }
}

@media screen and (max-width: 769px){
  .index4.index4-action:before,
  .index5.index5-action:before {
    content: none;
  }
}

@media screen and (min-width: 770px) {
  .index4.index4-action {
    padding: 100px 0;
  }
}

@media screen and (min-width: 770px) {
  .index5.index5-action {
    padding-top: 100px;
  }
}

@media screen and (max-width: 769px){
  .index5.index5-action {
    padding-top: 0;
  }
}

