@charset "UTF-8";
/* CSS Document */
/*================================================
  base
================================================*/
html {
}

body {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic";
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #000;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*================================================
  header
================================================*/
/*　ベース　------------------------- */
.siteHeader {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  -webkit-transition: .3s;
  transition: .3s;
}

.siteHeader.transform {
  background: #fff;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

.siteHeader__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 40px;
  height: 80px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　ロゴ　------------------------- */
.siteHeader__logo img {
  height: 30px;
  width: 114px;
  display: block;
}

.siteHeader__logo a:hover img {
  opacity: 0.85;
}

/*　PC用グローバルメニュー　------------------------- */
.siteHeader__gNav {
  width: 100%;
}

.siteHeader__gNav__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.siteHeader__gNav__menu__item {
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 20px;
}

.siteHeader__gNav__menu__item a {
  text-decoration: none;
}

.siteHeader__gNav__menu__item--sdg,
.siteHeader__gNav__menu__item--inquiry,
.siteHeader__gNav__menu__item--webinar {
  color: #fff;
  margin-right: 0;
}

.siteHeader__gNav__menu__item--sdg a,
.siteHeader__gNav__menu__item--inquiry a,
.siteHeader__gNav__menu__item--webinar a {
  display: block;
  background: #0f3c9d;
  height: 80px;
  line-height: 80px;
  padding: 0px 20px;
}

.siteHeader__gNav__menu__item--inquiry a {
  background: #0d3280;
}

.siteHeader__gNav__menu__item--webinar a {
  background: #062362;
}

.siteHeader__gNav__menu__item--sdg span,
.siteHeader__gNav__menu__item--inquiry span,
.siteHeader__gNav__menu__item--webinar span {
  vertical-align: middle;
}

.siteHeader__gNav__menu__item--sdg i,
.siteHeader__gNav__menu__item--inquiry i,
.siteHeader__gNav__menu__item--webinar i {
  font-size: 2rem;
  vertical-align: middle;
  padding-left: 10px;
}

/*　SP用グローバルメニュー　------------------------- */

.siteHeader__gNavSp {
  display: none;
}

/*================================================
  body
================================================*/

/*　フレックスボックス　------------------------- */
.common__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

.common__col:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.common__col:nth-of-type(even) > .common__col__2:nth-child(odd) {
  margin-right: 0;
}

.common__col:nth-of-type(even) > .common__col__2:nth-child(even) {
  margin-right: 3.906%;
}

.common__col:last-of-type {
  margin-bottom: 0;
}

.common__col__2 {
  width: 100%;
  max-width: 48.047%;
  margin-right: 3.906%;
  position: relative;
  min-height: 0%;
}

.common__col__2:nth-child(2n) {
  margin-right: 0;
}

.common__col__3 {
  width: 100%;
  max-width: 30.664%;
  margin-right: 3.906%;
  margin-bottom: 40px;
  min-height: 0%;
}

.common__col__3:nth-child(3n) {
  margin-right: 0;
}

/*　フェードイン アニメーション　------------------------- */
.fadeinUp {
  opacity: 0;
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.fadeinUp.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}


/*================================================
  footer
================================================*/
#siteFooter {
  color: #000;
  /*background: #333333;*/
  width: 100%;
}

.siteFooter__inner {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.siteFooter__logo img {
  width: 114px;
  height: 30px;
  margin-bottom: 10px;
}

.siteFooter__logo a:hover img {
  opacity: 0.8;
}

.siteFooter__copyright {
  font-size: 0.8rem;
  margin:20px auto;
}

.siteFooter__sns a {
  margin-right: 10px;
}

.siteFooter__sns a i {
  font-size: 3.0rem;
}

.siteFooter__sns a:last-of-type {
  margin-right: 0;
}

.pageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9998;
}

.pageTop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#94223E), to(#690E2A));
  background: linear-gradient(to right, #94223E, #690E2A);
  text-decoration: none;
  -webkit-box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.pageTop a::before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {

  .siteHeader__inner {
    padding: 0px 20px;
    height: 70px;
  }
  .siteHeader__logo img {
    height: 26px;
    width: 100px;
  }
  .siteFooter__inner {
    text-align: center;
    padding: 25px 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .siteFooter__logo img {
    width: 94px;
    height: 25px;
    margin-bottom: 5px;
  }
  .siteFooter__copyright {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .siteFooter__copyright {
    font-size: 1.0rem;
  }
  .siteFooter__sns a i {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {

  .siteFooter__inner {
    padding: 15px 20px 10px;
  }
  .siteFooter__logo img {
    width: 66px;
    height: 18px;
  }
  .siteFooter__sns a i {
    font-size: 1.8rem;
  }
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 1340px) {
  .siteHeader__gNav {
    display: none;
  }
  .siteHeader__gNavSp {
    display: block;
    color: #fff;
  }
  /*　ハンバガー　*/
  .siteHeader__gNavSp__toggle {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 32px;
    height: 26px;
  }
  .siteHeader__gNavSp__toggle span {
    width: 100%;
    height: 3px;
    display: block;
    background: #333333;
    position: absolute;
    left: 0;
    -webkit-transition: top .5s ease, -webkit-transform .5s ease-in-out;
    transition: top .5s ease, -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out, top .5s ease;
    transition: transform .5s ease-in-out, top .5s ease, -webkit-transform .5s ease-in-out;
  }
  .siteHeader__gNavSp__toggle span:nth-child(1) {
    top: 0px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(135deg);
            transform: translateY(11px) rotate(135deg);
  }
  .siteHeader__gNavSp__toggle span:nth-child(2) {
    top: 11.5px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .siteHeader__gNavSp__toggle span:nth-child(3) {
    top: 23px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-135deg);
            transform: translateY(-11px) rotate(-135deg);
  }
  /*　メニュー　*/
  .siteHeader__gNavSp__menu {
    background: #0d3280;
    padding: 10px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease;
  }
  .open .siteHeader__gNavSp__menu {
    visibility: visible;
    opacity: 1;
  }
  .siteHeader__gNavSp__menu__item {
    display: block;
    width: 100%;
    position: relative;
  }
  .siteHeader__gNavSp__menu__item a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 15px;
  }
  .siteHeader__gNavSp__menu__item:last-child a {
    border-bottom: none;
  }
  .siteHeader__gNavSp__menu__item a:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 9px;
    height: 9px;
    margin-top: -4.5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .open {
    overflow: hidden;
  }
  .mainVisual__scroll {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  /*.mainVisual__text__title, .mainVisual__text__subTitle {
    background: none;
    color: #0d3280;
  }
  .fontNoto, .fontNotoSerif {
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  }*/
}



/* ---------------------------------------
  soliton story style
---------------------------------------　*/

#Sstory {
  font-size:16px;
}

.Sstory__header--link:link,
.Sstory__header--link:visited,
.Sstory__header--link:active,
.Sstory__header--link:hover {
  color:#000;
  padding-left:20px;
  padding-top:10px;
  line-height:140%;
}

#Sstory_wrapper {
  padding:0 10px;
}

.common__inner {
}

#Sstory__frame {
  max-width: 1064px;
  margin: 80px auto 0 auto;
  padding:15px;
  position: relative;
  background-color:#F8EDCD;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
}

#Sstory__frame h1 {
  font-weight:bold;
  font-size:2rem;
  line-height:160%;
  margin-top:20px;
}

#Sstory__frame h2 {
  font-weight:bold;
  font-size:1.2rem;
  line-height:160%;
  margin-top:20px;
}

#Sstory__frame h2:before {
  margin-right: 0.8rem;
  border-left: 5px solid;
  content: '';
}

#Sstory__frame h2 span {
  font-size:1.2rem;
}

#Sstory__frame p {
  line-height:160%;
  margin-top:15px;
}

#Sstory__contents .common__inner *:first-child {
  margin-top: 0;
}

#Sstory__frame a {
  text-decoration:underline;
}

#Sstory__frame a:link,
#Sstory__frame a:visited,
#Sstory__frame a:active,
#Sstory__frame a:hover {
  color:#000;
}

#Sstory__frame a:hover {
  opacity: 0.5 ;
}

.Sstory__text--info {
  font-size:0.8rem;
}

.Sstory__text--sup {
  vertical-align: super;
  font-size: 0.8rem;
}

.Sstory__text--em {
  background-color: #f8e469;
}

.Sstory__text--prospect {
  font-size:1.2rem;
  font-weight:bold;
}

.Sstory__text--note {
  text-align:right;
  line-height:130% !important;
}

.Sstory__img {
  max-width:700px;
  margin:15px auto 0 auto;
}

.Sstory__img img {
  width:100%;
}

#Sstory__pager {
  text-align:center;
}

.Sstory__pager--next {
  margin:50px auto 0 auto;
}

.Sstory__pager--next li {
  display:inline-block;
  margin:0 5px;
}

.Sstory__pager--number {
  margin:10px auto 0 auto;
}

.Sstory__pager--number li {
  display:inline-block;
  margin:0 5px;
}

.siteFooter__inner {
  display:block;
  text-align:center;
}

.siteFooter__print {
  margin-top:10px;
  line-height:160%;
}

.siteFooter__print a:link,
.siteFooter__print a:visited,
.siteFooter__print a:active,
.siteFooter__print a:hover {
  color:#000;
}


@media screen and (min-width: 500px) {

  #Sstory {
    font-size:18px;
  }

  .Sstory__header--link:link,
  .Sstory__header--link:visited,
  .Sstory__header--link:active,
  .Sstory__header--link:hover {
    padding-top:20px;
  }


  #Sstory_wrapper {
    padding:0 20px;
  }

  #Sstory__frame {
    padding:30px;
    box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  }

  #Sstory__frame h1 {
    font-size:2.5rem;
    line-height:180%;
    margin-top:40px;
  }

  #Sstory__frame h2 {
    font-size:1.5rem;
    line-height:180%;
    margin-top:30px;
  }

  #Sstory__frame h2:before {
    margin-right: 1rem;
    border-left: 6px solid;
  }

  #Sstory__frame p {
    line-height:180%;
    margin-top:20px;
  }

  .Sstory__img {
    margin:20px auto 0 auto;
  }

  .Sstory__text--prospect {
    font-size:1.3rem;
  }

  .Sstory__text--note {
    line-height:150% !important;
  }

}

@media screen and (min-width: 768px) {

  #Sstory {
    font-size:19px;
  }

  #Sstory__frame {
    margin: 120px auto 0 auto;
    padding:50px;
  }

  #Sstory__frame h1 {
    font-size:3rem;
  }

  #Sstory__frame h2 {
    font-size:1.8rem;
    margin-top:40px;
  }

  #Sstory__frame h2:before {
    margin-right: 1.5rem;
  }

}

@media screen and (min-width: 1025px) {

  .Sstory__header--link {
    margin-right:40px;
  }

  #Sstory__frame {
    margin: 120px auto 0 auto;
    padding:60px 100px;
  }

}

