﻿@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 2.6rem 8.2rem;
  background: #fff;
}
h1.logo a {
  display: block;
  max-width: 200px;
}

h1.logo a img {
  max-width: 200px;
  vertical-align: middle;
  margin-bottom: 0;
}
@media screen and (max-width: 769px){
  h1.logo {
    padding: 5%;
  }
  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: #006c60;
            padding: 0 0 10px;
}
#secMngNumber p {
    text-align: right;
    color: #fff;
}
 footer {
            background-color: #2d2d2d;
            position: relative;
            z-index: 100;
}

#c4Bk.c4Bk ,#secMngNumber{
  position: relative;
  z-index: 100;
}
/* 送信確認、完了ページ
---------------------------------------------------------- */
#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;
}
#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%;
  }
}

.contentBox {
  padding: 3%;
}
@media screen and (max-width: 769px){
  .contentBox {
    padding: 5%;
  }
}