@charset "UTF-8";
/*   Common Setting
----------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul, ol, li {
  list-style: none;
}

/* FadeIn Animation */
.effect-fade {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.effect-fade:nth-of-type(2) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.effect-fade:nth-of-type(3) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.effect-fade:nth-of-type(4) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.effect-fade:nth-of-type(5) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.effect-fade:nth-of-type(6) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/**================================= Link Setting =================================**/
a {
  color: #FE0143;
  text-decoration: none;
}

a:visited {
  color: #FE0143;
  text-decoration: none;
}

a:hover {
  color: #FE0143;
  text-decoration: none;
}

a:active {
  color: #FE0143;
  text-decoration: none;
}

a[href^="tel:"] {
  color: #666;
  text-decoration: none;
  cursor: text;
}

/* Link Anime */
.linkLineAnime span {
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
}
.linkLineAnime span::before, .linkLineAnime span::after {
  content: "";
  background-color: #000;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.linkLineAnime span::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.linkMultiLineAnime {
  padding-bottom: 0.25em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#1a1a1a));
  background-image: -webkit-linear-gradient(#1a1a1a, #1a1a1a);
  background-image: linear-gradient(#1a1a1a, #1a1a1a);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/**================================= Common Setting =================================**/
html {
  height: 100%;
}

body {
  background: #FFF;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, sans-serif;
  color: #444444;
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow: hidden;
  font-weight: 500;
}

/**================================= Header Setting =================================**/
.blockHeader {
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blockHeader.is-scr {
  background-color: rgba(255, 255, 255, 0.8);
}

.blockHeader__inner {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 4%;
}

.glogoBox {
  width: 148px;
  height: 32px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.glogoBox .glogo {
  width: 140px;
  height: 100%;
}
.glogoBox .glogo a > span, .glogoBox .glogo span {
  width: 100%;
  height: 100%;
  display: inline-block;
  background: url(../images/common/logo_b.svg) no-repeat center center/82px 32px;
}
.glogoBox .glogo-mori {
  width: 110px;
  height: 100%;
}
.glogoBox .glogo-mori a span {
  width: 100%;
  height: 100%;
  display: inline-block;
  background: url(../images/common/logo_mori.svg) no-repeat center right/contain;
  border-left: 1px solid #AAA;
  margin-left: 12px;
}
.glogoBox img {
  vertical-align: top;
}

.headRight {
  display: none;
}

/*開閉ボタン*/
.menuBox {
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav_toggle {
  width: 40px;
  height: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 6px;
  z-index: 2000;
  cursor: pointer;
}
.nav_toggle div {
  position: relative;
  -webkit-animation-name: rotatey;
          animation-name: rotatey;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.nav_toggle div span {
  display: block;
  height: 2px;
  background: #000;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.nav_toggle div span:nth-child(1) {
  top: 0px;
}
.nav_toggle div span:nth-child(2) {
  top: 11px;
}
.nav_toggle div span:nth-child(3) {
  top: 22px;
}

/* 通常アニメーション */
@-webkit-keyframes rotatey {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  5% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
@keyframes rotatey {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  5% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
/*開閉ボタンopen時*/
.open .nav_toggle div span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open .nav_toggle div span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open .nav_toggle div span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Under */
.blockHeader--under {
  background-color: rgba(255, 255, 255, 0.5);
}

/**================================= Navi Setting =================================**/
.gNaviSpWrap {
  background-color: #EDEDE2;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gNaviSpWrap.is-open {
  visibility: visible;
  opacity: 1;
}
.gNaviSpWrap .gNaviSpWrap__inner {
  padding-bottom: 10%;
}
.gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop {
  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;
  padding: 0 3% 0 4%;
  height: 70px;
}
.gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop .navSpClose {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 40px;
  height: 40px;
  position: relative;
}
.gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop .navSpClose::before, .gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop .navSpClose::after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}
.gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop .navSpClose::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.gNaviSpWrap .gNaviSpWrap__inner .gNaviSpTop .navSpClose::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp a, .gNaviSpWrap .gNaviSpWrap__inner .gnaviSp span {
  color: #444444;
  display: block;
  height: 48px;
  line-height: 48px;
  padding: 0 4%;
  position: relative;
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp a::after, .gNaviSpWrap .gNaviSpWrap__inner .gnaviSp span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: #E8341C solid 2px;
  border-bottom: #E8341C solid 2px;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li {
  border-bottom: #CCC solid 1px;
  max-height: 48px;
  overflow-y: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li:first-of-type {
  border-top: #CCC solid 1px;
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li.is-accr > span::after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li.is-accr.is-open {
  max-height: 1000px;
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li.is-accr.is-open > span::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.gNaviSpWrap .gNaviSpWrap__inner .gnaviSp > ul > li > ul > li > a {
  border-top: #999 dotted 1px;
  text-indent: 1rem;
}
.gNaviSpWrap .gNaviSpWrap__inner .hContactBoxSp {
  margin-top: 20px;
  text-align: center;
  padding: 0 6%;
}
.gNaviSpWrap .gNaviSpWrap__inner .hContactBoxSp a {
  display: inline-block;
  background-color: #E8341C;
  padding: 15px 0;
  width: 100%;
  max-width: 300px;
  color: #FFF;
}
.gNaviSpWrap .gNaviSpWrap__inner .hLangBoxSp {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.gNaviSpWrap .gNaviSpWrap__inner .hLangBoxSp li {
  width: 50%;
}
.gNaviSpWrap .gNaviSpWrap__inner .hLangBoxSp li a {
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  background-color: #948F82;
  color: #FFF;
}
.gNaviSpWrap .gNaviSpWrap__inner .hLangBoxSp li.cur a {
  background-color: #FFF;
  color: #E8341C;
}
.gNaviSpWrap .gNaviSpWrap__inner .navSpCloseBtm {
  margin-top: 40px;
  text-align: center;
}
.gNaviSpWrap .gNaviSpWrap__inner .navSpCloseBtm span {
  display: inline-block;
  border: #E8341C solid 1px;
  padding: 15px 20px;
  max-width: 300px;
  color: #E8341C;
}

/**================================= Breadcrumb Setting =================================**/
.breadcrumb {
  padding: calc(60px + 14px) 4% 0;
  background-color: #F3F3F3;
}
.breadcrumb ul {
  font-size: 0.75rem;
}
.breadcrumb ul li {
  display: inline-block;
}
.breadcrumb ul li:nth-of-type(n+2) {
  padding-left: 13px;
  position: relative;
}
.breadcrumb ul li:nth-of-type(n+2)::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 3px;
  border-left: #666 solid 1px;
  border-bottom: #666 solid 1px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.breadcrumb ul li > a {
  color: #444444;
}

/**================================= Contents Setting =================================**/
/**================================= Footer Setting =================================**/
.blockFooter {
  /* fLinkBox */
}
.blockFooter .fBoxInner {
  max-width: 1160px;
  margin: 0 auto;
}
.blockFooter .fLinkBox,
.blockFooter .fBodyBox {
  padding: 8% 6%;
}
.blockFooter .fLinkBox .flogoWrap .flogo {
  width: 50%;
  max-width: 300px;
  margin: 0 auto 8%;
}
.blockFooter .fLinkBox .fLinkItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner {
  width: 47%;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(2n) {
  margin-left: 6%;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(n+3) {
  margin-top: 6%;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dt {
  font-size: 0.9375rem;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dt a {
  color: #000;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd {
  margin-top: 10px;
  font-size: 0.8125rem;
  padding-left: 10px;
  border-left: #CCC solid 1px;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd li:nth-of-type(n+2) {
  margin-top: 5px;
}
.blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd li a {
  color: #666666;
}
.blockFooter .fBodyBox {
  background-color: #EDEDE2;
}
.blockFooter .fBodyBox .fBodyTopInner {
  text-align: center;
}
.blockFooter .fBodyBox .fBodyTopInner .fBodyLaforet span {
  display: block;
  margin-top: 10px;
  font-size: 0.875rem;
}
.blockFooter .fBodyBox .fBodyTopInner .fBodyLaforet .logoBox img {
  width: 150px;
}
.blockFooter .fBodyBox .fBodyTopInner .fBodyMori {
  margin-top: 20px;
}
.blockFooter .fBodyBox .fBodyTopInner .fBodyMori .logoBox {
  width: 200px;
  margin: auto;
}
.blockFooter .fBodyBox .fBodyTopInner .fBodyCouncil {
  text-align: center;
  margin-top: 20px;
}
.blockFooter .fBodyBox .fBodyTopInner2 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: #CCC solid 1px;
}
.blockFooter .fBodyBox .fcontact {
  text-align: center;
}
.blockFooter .fBodyBox .address {
  font-style: normal;
  font-size: 0.75rem;
  color: #666;
}
.blockFooter .fBodyBox .ftel span {
  font-size: 0.75rem;
  display: block;
}
.blockFooter .fBodyBox .ftel a {
  font-size: 1.3125rem;
  padding-left: 25px;
  position: relative;
  color: #E8341C;
  margin-top: 5px;
  font-weight: bold;
}
.blockFooter .fBodyBox .ftel a::before {
  content: "";
  width: 22px;
  height: 21px;
  background: url(../images/common/fdial_r.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blockFooter .fBodyBox .fsns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.blockFooter .fBodyBox .fsns li {
  margin: 0 10px;
  font-size: 1.5rem;
}
.blockFooter .fBodyBox .fsns li a {
  color: #000;
}
.blockFooter .fBodyBox .fBrandLink {
  margin-top: 30px;
}
.blockFooter .fBodyBox .fBrandLink li {
  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;
}
.blockFooter .fBodyBox .fBrandLink li:nth-of-type(n+2) {
  margin-top: 20px;
}
.blockFooter .fBodyBox .fBrandLink li figure {
  width: 40%;
}
.blockFooter .fBodyBox .fBrandLink li dl {
  width: 56%;
}
.blockFooter .fBodyBox .fBrandLink li dl dt {
  font-size: 0.9375rem;
  letter-spacing: 0;
}
.blockFooter .fBodyBox .fBrandLink li dl dt a {
  color: #000;
}
.blockFooter .fBodyBox .fBrandLink li dl dt br {
  display: none;
}
.blockFooter .fBodyBox .fBrandLink li dl dd {
  font-size: 0.75rem;
  margin-top: 10px;
  color: #666;
}
.blockFooter .fBtmBox {
  padding: 6%;
}
.blockFooter .fBtmBox .fBtmLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blockFooter .fBtmBox .fBtmLink li {
  width: 48%;
  font-size: 0.625rem;
}
.blockFooter .fBtmBox .fBtmLink li:nth-of-type(n+3) {
  margin-top: 4%;
}
.blockFooter .fBtmBox .fBtmLink li:nth-of-type(2n) {
  margin-left: 4%;
}
.blockFooter .fBtmBox .fBtmLink li a {
  color: #666;
}

.copyright {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 20px;
  color: #666;
}

@media print, screen and (min-width: 600px) {
  /**================================= Footer Setting =================================**/
}
@media screen and (max-width: 920px) {
  .pcOnly {
    display: none;
  }
  /**================================= Header Setting =================================**/
}
@media print, screen and (min-width: 921px) {
  .spOnly {
    display: none;
  }
  .fadeT {
    -webkit-transform: translate(0, -80px);
            transform: translate(0, -80px);
  }
  .fadeB {
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
  }
  .fadeL {
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
  .fadeR {
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
  /* Link Anime */
  .linkLineAnime:hover span::before {
    -webkit-transition: 0.5s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .linkLineAnime:hover span::after {
    -webkit-transition: 0.5s 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .linkMultiLineAnime:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
  a[href*="tel:"] {
    pointer-events: none;
  }
  /**================================= Header Setting =================================**/
  .blockHeader__inner {
    height: 70px;
    padding: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .glogoBox {
    width: auto;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0 0 0 3%;
    margin-top: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .glogoBox .glogo {
    width: 90px;
    height: 100%;
  }
  .glogoBox .glogo a > span, .glogoBox .glogo span {
    width: 90px;
    height: 100%;
    max-height: 40px;
    background-size: 90px 40px;
  }
  .glogoBox .glogo-mori a span {
    width: 82px;
    height: 100%;
    max-height: 40px;
  }
  .glogoBox img {
    width: 100%;
  }
  .headRight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .gnaviPc {
    height: 70px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .gnaviPc > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .gnaviPc > ul::after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
  }
  .gnaviPc > ul > li {
    height: 100%;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .gnaviPc > ul > li > a {
    color: #E8341C;
    padding: 0 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    font-size: 0.875rem;
  }
  .gnaviPc > ul > li:hover, .gnaviPc > ul > li.cur {
    z-index: 101;
  }
  .gnaviPc > ul > li:hover > a, .gnaviPc > ul > li.cur > a {
    background-color: #E8341C;
    color: #FFFFFF;
  }
  .gnaviPc > ul > li .megaMenu {
    background-color: #FFF;
    position: absolute;
    top: 70px;
    left: 50%;
    min-width: 100%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .gnaviPc > ul > li .megaMenu.is-show {
    visibility: visible;
    opacity: 1;
  }
  .gnaviPc > ul > li .megaMenu > ul {
    margin: 0 auto;
    white-space: nowrap;
  }
  .gnaviPc > ul > li .megaMenu > ul > li {
    width: 100%;
    padding: 15px 15px 15px 35px;
    position: relative;
  }
  .gnaviPc > ul > li .megaMenu > ul > li:nth-of-type(n+2) {
    border-top: #DDD solid 1px;
  }
  .gnaviPc > ul > li .megaMenu > ul > li ::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #FE0143;
    position: absolute;
    top: 21px;
    left: 15px;
    border-radius: 50%;
  }
  .gnaviPc > ul > li .megaMenu > ul > li ::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 23px;
    left: 21px;
  }
  .gnaviPc > ul > li .megaMenu > ul > li > a {
    font-size: 0.875rem;
    line-height: 1;
    color: #444444;
  }
  .gnaviPc > ul.is-megashow::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hContactBox {
    height: 70px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hContactBox a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    color: #FFF;
    padding: 0 20px;
    background-color: #E8341C;
    font-size: 0.875rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hContactBox a:hover {
    color: #E8341C;
    background-color: #FFF;
  }
  .hLangBox {
    width: calc(70px / 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hLangBox li {
    height: calc(70px / 2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hLangBox li a {
    display: block;
    line-height: calc(70px / 2);
    text-align: center;
    font-size: 0.8125rem;
    background-color: #948F82;
    color: #FFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hLangBox li a:hover {
    background-color: #FFF;
    color: #C82E23;
  }
  .hLangBox li.cur a {
    background-color: #FFF;
    color: #C82E23;
  }
  .blockHeader.is-scr {
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.4);
  }
  .blockHeader.is-scr .blockHeader__inner {
    height: 50px;
  }
  .blockHeader.is-scr .glogoBox {
    margin-top: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .blockHeader.is-scr .glogoBox .glogo {
    padding: 1% 0;
  }
  .blockHeader.is-scr .glogoBox .glogo-mori {
    padding: 1% 0;
  }
  .blockHeader.is-scr .gnaviPc {
    height: 50px;
  }
  .blockHeader.is-scr .gnaviPc > ul > li > a {
    color: #E8341C;
  }
  .blockHeader.is-scr .gnaviPc > ul > li .megaMenu {
    top: 50px;
  }
  .blockHeader.is-scr .gnaviPc > ul > li > ul {
    top: 50px;
  }
  .blockHeader.is-scr .gnaviPc > ul > li:hover > a, .blockHeader.is-scr .gnaviPc > ul > li.cur > a {
    color: #FFF;
  }
  .blockHeader.is-scr .hContactBox {
    height: 50px;
  }
  .blockHeader.is-scr .hLangBox {
    width: calc(50px / 1);
  }
  .blockHeader.is-scr .hLangBox li {
    height: calc(50px / 2);
  }
  .blockHeader.is-scr .hLangBox li a {
    line-height: calc(50px / 2);
  }
  .menuBox {
    display: none;
  }
  .gNavSpWrap {
    display: none;
  }
  /* Under */
  .blockHeader--under {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .blockHeader--under .gnaviPc > ul > li > a {
    color: #E8341C;
  }
  .blockHeader--under .gnaviPc > ul > li:hover > a, .blockHeader--under .gnaviPc > ul > li.cur > a {
    color: #FFF;
  }
  /**================================= Breadcrumb Setting =================================**/
  .breadcrumb {
    padding: calc(70px + 10px) 20px 0;
  }
  .breadcrumb ul {
    font-size: 0.75rem;
  }
  .breadcrumb ul li {
    display: inline-block;
  }
  .breadcrumb ul li:nth-of-type(n+2) {
    padding-left: 13px;
    position: relative;
  }
  .breadcrumb ul li:nth-of-type(n+2)::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 3px;
    border-left: #666 solid 1px;
    border-bottom: #666 solid 1px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  /**================================= Contents Setting =================================**/
  /**================================= Footer Setting =================================**/
  .blockFooter {
    /* fLinkBox */
  }
  .blockFooter .fLinkBox,
  .blockFooter .fBodyBox {
    padding: 60px 40px;
  }
  .blockFooter .fLinkBox .flogoWrap .flogo {
    max-width: 187px;
    margin: 0 auto 60px;
  }
  .blockFooter .fLinkBox .fLinkItem {
    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;
    height: 340px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner {
    width: auto;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(2n) {
    margin-left: 0;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(n+3) {
    margin-top: 0%;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl {
    margin-bottom: 1.2rem;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dt {
    font-size: 1rem;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd {
    margin-top: 15px;
    font-size: 0.875rem;
    padding-left: 15px;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd li:nth-of-type(n+2) {
    margin-top: 10px;
  }
  .blockFooter .fBodyBox .fBodyTopInner {
    text-align: left;
    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;
    max-width: 1000px;
    margin: 0 auto;
  }
  .blockFooter .fBodyBox .fBodyTopInner .fBodyLaforet .logoBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blockFooter .fBodyBox .fBodyTopInner .fBodyLaforet .logoBox span {
    display: inline-block;
    margin-top: 0;
    margin-left: 20px;
  }
  .blockFooter .fBodyBox .fBodyTopInner .fBodyLaforet .logoBox img {
    width: 128px;
  }
  .blockFooter .fBodyBox .fBodyTopInner .fBodyMori {
    margin-top: 0;
    margin-left: 60px;
  }
  .blockFooter .fBodyBox .fBodyTopInner .fBodyCouncil {
    margin-top: 0;
    margin-left: 60px;
  }
  .blockFooter .fBodyBox .fBodyTopInner2 {
    text-align: left;
    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;
    max-width: 1000px;
    margin: 30px auto 0;
    padding-top: 30px;
  }
  .blockFooter .fBodyBox .fcontact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blockFooter .fBodyBox .address {
    font-style: normal;
    margin-left: 1rem;
    font-size: 0.8125rem;
  }
  .blockFooter .fBodyBox .ftel {
    font-size: 1.5rem;
    margin: -6px auto 0;
  }
  .blockFooter .fBodyBox .ftel span {
    line-height: 0.6;
  }
  .blockFooter .fBodyBox .ftel a {
    font-size: 1.5rem;
    padding-left: 34px;
  }
  .blockFooter .fBodyBox .ftel a::before {
    width: 30px;
    height: 20px;
  }
  .blockFooter .fBodyBox .fsns {
    margin-top: 0;
  }
  .blockFooter .fBodyBox .fsns li {
    font-size: 1.25rem;
  }
  .blockFooter .fBodyBox .fBrandLink {
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .blockFooter .fBodyBox .fBrandLink li {
    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;
    width: 32%;
  }
  .blockFooter .fBodyBox .fBrandLink li:nth-of-type(n+2) {
    margin-top: 0;
  }
  .blockFooter .fBodyBox .fBrandLink li figure {
    width: 46%;
  }
  .blockFooter .fBodyBox .fBrandLink li dl {
    width: 50%;
  }
  .blockFooter .fBodyBox .fBrandLink li dl dt {
    font-size: 0.75rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .blockFooter .fBodyBox .fBrandLink li dl dd {
    letter-spacing: 0;
  }
  .blockFooter .fBtmBox {
    padding: 20px 40px 40px;
    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;
  }
  .blockFooter .fBtmBox .fBtmLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .blockFooter .fBtmBox .fBtmLink li {
    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
    width: auto;
    line-height: 1;
    font-size: 0.75rem;
  }
  .blockFooter .fBtmBox .fBtmLink li:nth-of-type(n+3) {
    margin-top: 0;
  }
  .blockFooter .fBtmBox .fBtmLink li:nth-of-type(2n) {
    margin-left: 0;
  }
  .blockFooter .fBtmBox .fBtmLink li:nth-of-type(n+2) {
    margin-left: 40px;
  }
  .copyright {
    font-size: 0.75rem;
    text-align: right;
    margin-top: 0;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1320px) {
  /**================================= Footer Setting =================================**/
  .blockFooter .fBodyBox .fBrandLink li {
    width: 30%;
  }
  .blockFooter .fBodyBox .fBrandLink li dl dt {
    font-size: 0.8125rem;
  }
}
@media print, screen and (min-width: 1041px) {
  .gnaviPc > ul > li > a {
    font-size: 0.875rem;
    padding: 0 20px;
  }
  .hContactBox a {
    font-size: 0.875rem;
    padding: 20px;
  }
}
@media print, screen and (min-width: 1321px) {
  /**================================= Header Setting =================================**/
  .blockHeader .glogoBox {
    padding: 0 20px 0 5%;
  }
  .blockHeader .gnaviPc > ul > li > a {
    padding: 0 30px;
  }
  .blockHeader .hContactBox a {
    padding: 0 30px;
  }
  /**================================= Footer Setting =================================**/
  .blockFooter {
    /* fLinkBox */
  }
  .blockFooter .fLinkBox .fBoxInner {
    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;
  }
  .blockFooter .fLinkBox .flogoWrap {
    width: 20%;
  }
  .blockFooter .fLinkBox .flogoWrap .flogo {
    width: 100%;
    max-width: 226px;
    margin: 0 auto;
    padding: 0 35px;
  }
  .blockFooter .fLinkBox .fLinkItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 80%;
    height: 340px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner {
    width: auto;
    margin-bottom: 1rem;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(2n) {
    margin-left: 0;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner:nth-of-type(n+3) {
    margin-top: 0%;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dt {
    font-size: 0.9375rem;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd {
    margin-top: 15px;
    padding-left: 15px;
  }
  .blockFooter .fLinkBox .fLinkItem .fLinkItemInner dl dd li:nth-of-type(n+2) {
    margin-top: 10px;
  }
  .blockFooter .fBodyBox .fBrandLink li {
    width: 30%;
  }
  .blockFooter .fBodyBox .fBrandLink li dl dt {
    font-size: 0.9375rem;
  }
}
/**================================= common =================================**/
.blockContents {
  padding: 30px 0;
}
.blockContents.pb0 {
  padding-bottom: 0;
}
.blockContents.blockContents--localLink {
  padding: 60px 0 30px;
}

.blockContents--bg {
  background-color: #EDEDE2;
}

.blockContents--bggry {
  background-color: #F3F3F3;
}

.blockContents--bt {
  border-top: #CCC solid 1px;
}

.blockContents--w100 {
  padding-left: 0;
  padding-right: 0;
}

.contInner {
  padding: 0 6%;
}

/* Under Contents */
.contentsWrap {
  padding: 0 6%;
}

/**================================= Module =================================**/
/********** Headline **********/
/* Page Title */
.pageTtl {
  color: #E8341C;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* H2 */
.hlLv2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.hlLv2--index {
  color: #000;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 30px;
}

.hlLv2--tp2 {
  border: #FE0143 solid 1px;
  border-radius: 5px;
  color: #FE0143;
  font-size: 1rem;
  font-weight: bold;
  padding: 2% 6%;
  margin: 40px 0 20px;
  background: rgb(243, 243, 243);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(232, 232, 232)), color-stop(47%, rgb(232, 232, 232)), color-stop(53%, rgb(243, 243, 243)), to(rgb(243, 243, 243)));
  background: -webkit-linear-gradient(bottom, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 47%, rgb(243, 243, 243) 53%, rgb(243, 243, 243) 100%);
  background: linear-gradient(0deg, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 47%, rgb(243, 243, 243) 53%, rgb(243, 243, 243) 100%);
}

/* H3 */
.hlLv3 {
  color: #FE0143;
  font-size: 1.125rem;
  margin-top: 30px;
  margin-bottom: 20px;
}
.hlLv3 .casestudyIcn {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.875rem;
  color: #FFF;
  background-color: #FE0143;
  padding: 3px 10px;
  border-radius: 5px;
}
.hlLv3 .ttlTxt {
  display: block;
  margin-top: 10px;
}
.hlLv3.hlLv3--csFirst {
  margin-top: 40px;
}
.hlLv3.mt0 {
  margin-top: 0;
}
.hlLv3.top-themeTtl {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.hlLv3.top-themeTtl img {
  width: 120px;
}
.hlLv3.about--point {
  color: #333;
  text-align: center;
}

/* H4 */
.hlLv4 {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/********** text **********/
.modTxt01 {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.8;
}
.modTxt01:nth-of-type(n+2) {
  margin-top: 1em;
}
.modTxt01.mt0 {
  margin-top: 0;
}

.modTxt02 {
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.8;
}
.modTxt02:nth-of-type(n+2) {
  margin-top: 1em;
}
.modTxt02.mt0 {
  margin-top: 0;
}

.pageTtlBtm {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 20px;
}

.leadTxt {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 20px;
}

.brtTxt {
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 16px;
}
.brtTxt::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  top: 9px;
  left: 0;
}

.ttlTxt01 {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}

.ttlTxt02 {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
.ttlTxt02.mt {
  margin-top: 20px;
}
.ttlTxt02.b {
  font-weight: 700;
}

.ttlTxt03 {
  font-size: 1rem;
  color: #E8341C;
  font-weight: 500;
  margin-bottom: 20px;
}
.ttlTxt03.mt {
  margin-top: 30px;
}

.ttlTxt04 {
  font-size: 0.875rem;
  color: #000;
  font-weight: 500;
}
.ttlTxt04.mt {
  margin-top: 30px;
}
.ttlTxt04:nth-of-type(n+2) {
  margin-top: 20px;
}

.caption {
  text-align: center;
  font-size: 0.875rem;
}

/********** List **********/
.modList01 {
  font-size: 0.875rem;
}
.modList01 > li {
  list-style: disc;
  margin-left: 1em;
  margin-top: 5px;
}

.modList02 {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #E8341C;
}
.modList02 > li {
  list-style: disc;
  margin-left: 1em;
  margin-top: 5px;
}

.modListOl01 {
  font-size: 0.875rem;
}
.modListOl01 > li {
  list-style: decimal;
  margin-left: 1.5em;
  margin-top: 5px;
}

/********** Link **********/
.icnLink {
  padding-left: 20px;
  position: relative;
  display: inline-block;
}
.icnLink::before {
  content: "";
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.icnLink.pdf::before {
  background-image: url(../images/common/icn_pcf_s.png);
}

/********** News **********/
.modBtn01 {
  display: inline-block;
  width: 100%;
  max-width: 274px;
  border: #FE0143 solid 3px;
  padding: 15px 0;
  padding-right: 10px;
  position: relative;
  text-align: center;
}
.modBtn01::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-right: #FE0143 solid 2px;
  border-bottom: #FE0143 solid 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.btnBox {
  margin-top: 30px;
  text-align: center;
}

.btnList {
  margin-top: 40px;
}
.btnList > li {
  text-align: center;
}
.btnList > li:nth-of-type(n+2) {
  margin-top: 10px;
}

/********** Flex Box **********/
.flexBox {
  margin: 30px auto;
}
.flexBox:first-of-type {
  margin-top: 0;
}
.flexBox:last-of-type {
  margin-bottom: 0;
}
.flexBox .fitem2:nth-of-type(n+2),
.flexBox .fitem3:nth-of-type(n+2) {
  margin-top: 30px;
}
.flexBox.wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.flexBox.wrap .fitem3 {
  width: 100%;
}
.flexBox .fitem6 {
  width: 48%;
}
.flexBox .fitem6:nth-of-type(n+3) {
  margin-top: 4%;
}
.flexBox .fitem6:nth-of-type(2n) {
  margin-left: 4%;
}
.flexBox.spflex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flexBox.spflex.nowrap {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexBox.spflex.nowrap .fitem3 {
  width: 30%;
}
.flexBox.spflex.nowrap .fitem3:nth-of-type(n+2) {
  margin-left: 5%;
  margin-top: 0;
}
.flexBox.spflex.scroll .fitem {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.flexBox.spflex.scroll .fitem:nth-of-type(n+2) {
  margin-left: 20px;
}
.flexBox.spflex.scroll .fitem img {
  width: auto;
}
.flexBox.spflex.scroll .fitem.arrow_l {
  position: relative;
}
.flexBox.spflex.scroll .fitem.arrow_l::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #CCC;
  position: absolute;
  top: calc(50% - 30px);
  left: -14px;
}
.flexBox.mb10 {
  margin-bottom: 10px;
}
.flexBox--3clm {
  margin-top: 0;
  margin-bottom: 0;
}
.flexBox--3clm .fitem3:nth-of-type(n+2) {
  margin-top: 20px;
}
.flexBox--3clm .fitem3 .fitemInner {
  padding: 6%;
}
.flexBox--intro:nth-of-type(2) {
  margin-top: 40px;
}
.flexBox--example .figure {
  margin-bottom: 20px;
}
.flexBox figure .caption {
  margin-top: 0.6rem;
}

.flexWrapScroll {
  overflow-x: auto;
  width: 100%;
}

.flex--box1 {
  　　-webkit-box-ordinal-group: 1;
  　　-ms-flex-order: 1;
  　　-webkit-order: 1;
  　　order: 1;
}

.flex--modbox2 {
  　　-webkit-box-ordinal-group: 2;
  　　-ms-flex-order: 2;
  　　-webkit-order: 2;
  　　order: 2;
}

.flex--modbox3 {
  　　-webkit-box-ordinal-group: 3;
  　　-ms-flex-order: 3;
  　　-webkit-order: 3;
  　　order: 3;
}

/********** figure Lightbox2 **********/
.fitem figure.mh150zoom a {
  color: #444;
}
.fitem figure.mh150zoom a img {
  max-height: 150px;
  width: auto;
}
.fitem figure.mh150zoom a span {
  position: relative;
  display: inline-block;
}
.fitem figure.mh150zoom a span::after {
  content: "";
  background: url("../images/common/icon_zoom.png") no-repeat center center/cover;
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/********** Figure **********/
.figure {
  text-align: center;
}
.figure img {
  width: 100%;
}
.figure figcaption {
  text-align: left;
  font-size: 0.875rem;
  margin-top: 10px;
}

/********** Table **********/
.tblCaption {
  color: #000;
  font-weight: bold;
  margin: 30px 0px 10px;
  font-size: 0.875rem;
}

.responsiveTblWrap {
  white-space: nowrap;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.responsiveTblWrap.wrap {
  white-space: normal;
}

.modTbl01 {
  border-collapse: collapse;
  min-width: 100%;
  font-size: 0.875rem;
}
.modTbl01 th {
  text-align: left;
  padding: 5px 10px;
  border-bottom: #CCC solid 1px;
}
.modTbl01 td {
  padding: 5px 10px;
  border-bottom: #CCC solid 1px;
}
.modTbl01 td.fcr {
  color: #F00;
}
.modTbl01 thead th {
  text-align: center;
}
.modTbl01 tbody.tdtac td {
  text-align: center;
}

/********** Page Link **********/
.pageLinkList {
  margin-bottom: 20px;
}
.pageLinkList li {
  display: inline-block;
  padding-left: 12px;
  position: relative;
  font-size: 0.875rem;
}
.pageLinkList li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  border-right: #666 solid 1px;
  border-bottom: #666 solid 1px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.pageLinkList li:nth-of-type(n+2) {
  margin-left: 5px;
}

/********** Other **********/
.borderBox {
  border: #B0B0B0 solid 1px;
  padding: 6%;
  margin-top: 40px;
}

/* icon txt */
.icnTxt {
  display: inline-block;
  background-color: #FE0143;
  color: #FFF;
  text-align: center;
  padding: 2px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.icnTxt:first-child {
  margin-right: 1rem;
}

/**================================= Index Setting =================================**/
/********** Common **********/
.indexTxt {
  font-size: 0.875rem;
}
.indexTxt:nth-of-type(n+2) {
  margin-top: 1em;
}

/********** MAINIMG **********/
.mainimgAreaWrap {
  position: relative;
  background-color: #000;
}

.slideImg {
  width: 100%;
  height: 450px;
}
.slideImg .slideItem {
  width: 100%;
  height: 450px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainImgTxtWrap {
  position: absolute;
  top: calc(50% + 60px / 2);
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mainImgTxtWrap .mainImgTxtCatch {
  color: #FFF;
  white-space: nowrap;
  margin-bottom: 10px;
}

.slideImg {
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.slideImg.slick-initialized {
  opacity: 1;
}

.progress {
  position: absolute;
  right: 6%;
  bottom: 20px;
  width: 88%;
  height: 1px;
  background: #FFF;
  z-index: 100;
}
.progress .bar {
  display: block;
  width: 0%;
  height: 1px;
  background: #FF6600;
}

/********** INTRO **********/
.introTop:nth-of-type(n+2) {
  margin-top: 40px;
}
.introTop .introTop__txt {
  margin-bottom: 20px;
}
.introTop .indexLeadTxt {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}

.movieBox {
  margin: 30px auto 0;
  max-width: 1000px;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.movieBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/********** FEATURE **********/
.blockContents--feature {
  padding: 30px 0;
  border-top: #CCC solid 1px;
}

.flexBox--feature li {
  position: relative;
}
.flexBox--feature li.fitem3 figure {
  padding: 0 12%;
  position: relative;
}
.flexBox--feature li.fitem3 figure img {
  width: 100%;
}
.flexBox--feature li p.pointHead {
  font-size: 1rem;
  padding: 5% 6% 6% 25%;
  position: relative;
  margin-bottom: 0;
}
.flexBox--feature li p.pointHead::after {
  content: "";
  font-size: 4.375rem;
  font-weight: bold;
  color: #EEEEEE;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  line-height: 1;
}
.flexBox--feature li:nth-of-type(1) p.pointHead::after {
  content: "1";
}
.flexBox--feature li:nth-of-type(2) p.pointHead::after {
  content: "2";
}
.flexBox--feature li:nth-of-type(3) p.pointHead::after {
  content: "3";
}
.flexBox--feature li p.modTxt01 {
  padding: 0 6%;
  margin-top: 0;
}

/********** News **********/
.blockContents--indexnews {
  border-top: #DDD solid 1px;
  background-color: #F3F3F3;
}
.blockContents--indexnews .top--news .fitem2 {
  width: 100%;
}
.blockContents--indexnews .top--news .fitem2:nth-of-type(n+2) {
  margin-top: 40px;
}
.blockContents--indexnews h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.indexNewsBox dt {
  width: 100%;
  font-size: 0.75rem;
}
.indexNewsBox dt span {
  display: inline-block;
  background-color: #FE0143;
  color: #FFF;
  text-align: center;
  width: 100px;
  padding: 2px 5px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 0.75rem;
}
.indexNewsBox dt:nth-of-type(n+2) {
  margin-top: 15px;
  margin-bottom: 5px;
}
.indexNewsBox dd {
  font-size: 0.875rem;
}
.indexNewsBox dd a {
  color: #444444;
  text-decoration: underline;
}

/**================================= Under Content Setting =================================**/
/******************** common ********************/
.underCont img {
  width: 100%;
}

.mainvisual_v {
  margin-top: 20px;
  margin-bottom: 20px;
}
.mainvisual_v.mb10 {
  margin-bottom: 10px;
}

/* Bottom Local Navi  */
.localNavTtl {
  font-size: 1.125rem;
  font-weight: 500;
  color: #E8341C;
  margin-bottom: 20px;
  text-align: center;
}

.btmlocalLink ul li {
  font-size: 0.875rem;
  padding: 10px 0 10px calc(6% + 20px);
  position: relative;
  border-bottom: #CCC solid 1px;
}
.btmlocalLink ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #FE0143;
  position: absolute;
  top: 14px;
  left: 6%;
  border-radius: 50%;
}
.btmlocalLink ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 16px;
  left: calc(6% + 6px);
}
.btmlocalLink ul li:first-of-type {
  border-top: #CCC solid 1px;
}
.btmlocalLink ul li a {
  color: #444444;
}

/******************** About ********************/
/********** index **********/
/********** Structure **********/
.structureDl {
  font-size: 1rem;
}
.structureDl dt {
  padding-top: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.structureDl dt:nth-of-type(n+2) {
  border-top: #b0b0b0 solid 1px;
}
.structureDl dt.noDd {
  padding-bottom: 15px;
  margin: 0;
}
.structureDl dd {
  padding-bottom: 15px;
  padding-left: 1em;
}

.flexBox--structure2 .fitem2 .figure {
  margin-bottom: 20px;
}

.flexBox--structure3 .fitem2 .figure {
  margin-bottom: 20px;
}

/********** System **********/
.flexBox--system .fitem:nth-of-type(n+2) {
  margin-top: 40px;
}

.icnBox {
  margin-top: 20px;
  margin-bottom: 5px;
}

/******************** Case Studies ********************/
/********** common **********/
.hl--casestudies {
  color: #000;
  margin-top: 30px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
}
.hl--casestudies.icn {
  padding-left: 50px;
  min-height: 40px;
  position: relative;
}
.hl--casestudies.icn::before {
  content: "";
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hl--casestudies.icn.sun::before {
  background-image: url(../../assets/images/plan/common/icn_sun.png);
}
.hl--casestudies.icn.eco::before {
  background-image: url(../../assets/images/plan/common/icn_eco.png);
}
.hl--casestudies.icn.mainte::before {
  background-image: url(../../assets/images/plan/common/icn_mainte.png);
}
.hl--casestudies.icn.uvcut::before {
  background-image: url(../../assets/images/plan/common/icn_uvcut.png);
}
.hl--casestudies.icn.rhythm::before {
  background-image: url(../../assets/images/plan/common/icn_rhythm.png);
}
.hl--casestudies.icn.school::before {
  background-image: url(../../assets/images/plan/common/icn_school.png);
}
.hl--casestudies.icn.ecoplus::before {
  width: 50px;
  background-image: url(../../assets/images/plan/common/icn_ecoplus.png);
}

/********** hospital **********/
.flexBox:first-of-type.flexBox--hospital {
  margin-top: 2rem;
}

.dl--hospital {
  margin: 20px 0;
}
.dl--hospital dt {
  color: #E8341C;
}
.dl--hospital dt:nth-of-type(n+2) {
  margin-top: 10px;
}

/********** university **********/
.flexBox--half {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flexBox--half .fitem2 {
  width: 48%;
}
.flexBox--half .fitem2:nth-of-type(n+2) {
  margin-top: 20px;
}

/******************** QA ********************/
.qaBoxInner {
  margin-top: 40px;
}
.qaBoxInner dt {
  margin-bottom: 15px;
}
.qaBoxInner dt .cont {
  margin-bottom: 0;
}
.qaBoxInner dt .cont p.ttlTxt02 {
  color: #E8341C;
}
.qaBoxInner dt:nth-of-type(n+2) {
  border-top: #CCC solid 1px;
  margin-top: 20px;
  padding-top: 20px;
}
.qaBoxInner .ttl span {
  color: #000;
  font-weight: bold;
}
.qaBoxInner dt .ttl span {
  color: #E8341C;
  font-weight: bold;
}

/******************** Collabo ********************/
.collaboDl {
  font-size: 0.875rem;
  margin-top: 20px;
}
.collaboDl dt {
  padding-left: 16px;
  position: relative;
}
.collaboDl dt::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E8341C;
  position: absolute;
  left: 0;
  top: 7px;
}

/******************** Sales Partner ********************/
.partnerListDl {
  margin-top: 30px;
  font-size: 0.875rem;
}
.partnerListDl dt:nth-of-type(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: #DDD solid 1px;
}

/********** Download **********/
.downloadList {
  font-size: 0.875rem;
  margin-top: 15px;
}
.downloadList li:nth-of-type(n+2) {
  margin-top: 10px;
}

/********** Link **********/
.linkPageList {
  font-size: 0.875rem;
  margin-top: 5px;
}
.linkPageList dt:nth-of-type(n+2) {
  margin-top: 10px;
}
.linkPageList dt a {
  padding-left: 16px;
  display: inline-block;
  position: relative;
}
.linkPageList dt a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: #FE0143 solid 2px;
  border-bottom: #FE0143 solid 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/******************** Contact ********************/
.contact-head {
  border-bottom: 1px solid #ccc;
  margin-bottom: 3rem;
}
.contact-head .phone {
  padding: 1rem 0;
}
.contact-head .phone a {
  font-size: 24px;
  font-weight: bold;
  color: #E8341C;
  position: relative;
  padding-left: 34px;
}
.contact-head .phone a::before {
  content: "";
  width: 32px;
  height: 20px;
  background: url(../images/common/fdial_r.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/********** Form Parts **********/
input[type=text] {
  border: #CCC solid 1px;
  background-color: #FFF;
  height: 50px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
}

select {
  border: #CCC solid 1px;
  background-color: #FFF;
  height: 50px;
  padding: 0 20% 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.selectWrap {
  position: relative;
}
.selectWrap::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #4f4f4f transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

textarea {
  border: #CCC solid 1px;
  background-color: #FFF;
  height: 150px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

input[type=submit] {
  display: inline-block;
  background-color: #FE0143;
  font-size: 0.875rem;
  color: #FFF;
  height: 50px;
  line-height: 50px;
  width: 48%;
  max-width: 300px;
  text-align: center;
}

input[type=button] {
  display: inline-block;
  background-color: #CCC;
  font-size: 0.875rem;
  color: #666;
  height: 50px;
  line-height: 50px;
  width: 48%;
  margin-right: 2%;
  text-align: center;
  max-width: 200px;
}

/********** Form Layout **********/
.iptTxt01 {
  width: 100%;
}

.iptZip {
  width: 30%;
}

.formBoxWrap {
  margin-bottom: 40px;
}

.formBox dt {
  margin-bottom: 10px;
}
.formBox dt:nth-of-type(n+2) {
  margin-top: 30px;
}
.formBox dt.must {
  position: relative;
}
.formBox dt.must::after {
  content: "必須";
  color: #FFF;
  background-color: #E8341C;
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 5px;
  font-size: 0.75rem;
}
.formBox .inputBox:nth-of-type(n+2) {
  margin-top: 10px;
}
.formBox .zipauto {
  display: inline-block;
  background-color: #FE0143;
  font-size: 0.875rem;
  color: #FFF;
  height: 50px;
  line-height: 50px;
  margin-left: 2%;
  width: 50%;
  text-align: center;
}
.formBox .qlist li:nth-of-type(n+2) {
  margin-top: 10px;
}

.formBtn {
  margin-top: 40px;
  text-align: center;
}

.ag-btn {
  border: 1px solid #ccc;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 4px;
}

.contactAgree {
  text-align: center;
  margin: 2rem auto;
}

/********** Confirm **********/
.confirm .formBox {
  margin-top: 20px;
}
.confirm .formBox dt {
  font-weight: bold;
}

/********** Complete **********/
.pageTtlComplete {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.completeTxt {
  text-align: center;
  font-size: 1rem;
}

.formBtn.complete {
  margin-top: 50px;
}

/******************** Outline ********************/
.outlineDl {
  font-size: 0.875rem;
}
.outlineDl > dt {
  margin-top: 10px;
  padding-top: 10px;
  border-top: #CCC solid 1px;
  margin-bottom: 5px;
  color: #000;
}

.outlineDl02 {
  font-size: 0.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.outlineDl02 > dt {
  width: 9em;
}
.outlineDl02 > dd {
  width: calc(100% - 9em);
}

.outlineList01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 30px;
}
.outlineList01 li {
  width: 48%;
}
.outlineList01 li:nth-of-type(n+3) {
  margin-top: 4%;
}
.outlineList01 li:nth-of-type(2n) {
  margin-left: 4%;
}

.flexBox-professor .fitem2 figure {
  width: 60%;
  margin: 0 auto;
}

/******************** indexes / dl ********************/
.case--listBox {
  margin-top: 40px;
}

.case--listBox dl {
  margin-bottom: 3rem;
}
.case--listBox dl dt {
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
}
.case--listBox dl.dlBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.case--listBox dl.dlBox span.fa-file-pdf {
  font-size: 8px;
}
.case--listBox dl.dlBox .fa-file-pdf::before {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  margin-left: 8px;
  margin-right: 2px;
  color: #E8341C;
  font-size: 1rem;
}
.case--listBox dl.dlBox dt {
  width: 100%;
}
.case--listBox dl.dlBox dd {
  width: 50%;
  margin-top: 1rem;
}
.case--listBox dl.dlBox dd.single {
  width: 100%;
}
.case--listBox dl.dlBox dd a {
  color: #444;
  text-decoration: none;
}
.case--listBox dl.dlBox.double dd {
  width: 100%;
}

/******************** Privacy ********************/
.privacyBox {
  margin-top: 20px;
}
.privacyBox.right p {
  float: right;
}

.hlLv2--privacy {
  font-size: 1rem;
  color: #000;
  margin-bottom: 10px;
}

.hlLv3--privacy {
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  margin-bottom: 10px;
  margin-top: 30px;
}

.hlLv3--privacy + .modTxt01:nth-of-type(n+2) {
  margin-top: 0;
}

.privacyTtl {
  font-size: 0.875rem;
  font-weight: bold;
  color: #000;
}
.privacyTtl.mt {
  margin-top: 20px;
}

.modList--privacy {
  margin-top: 20px;
}
.modList--privacy > li {
  padding-left: 1.8em;
  text-indent: -1.8em;
}
.modList--privacy > li:nth-of-type(n+2) {
  margin-top: 10px;
}
.modList--privacy > li p {
  padding-left: 0;
  text-indent: 0;
  margin-top: 10px;
}
.modList--privacy > li address, .modList--privacy > li li {
  padding-left: 0;
  text-indent: 0;
}

.tar {
  text-align: right;
}

/******************** Sitemap ********************/
.sitemapBox {
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.sitemapBox .sitemapInner {
  width: 47%;
}
.sitemapBox .sitemapInner:nth-of-type(n+3) {
  margin-top: 6%;
}
.sitemapBox .sitemapInner p {
  font-size: 0.875rem;
}
.sitemapBox .sitemapInner p a {
  color: #000;
}
.sitemapBox .sitemapInner dl dt {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.sitemapBox .sitemapInner dl dt a,
.sitemapBox .sitemapInner dl dt span {
  color: #000;
}
.sitemapBox .sitemapInner dl dt > span {
  display: block;
  padding-bottom: 9px;
}
.sitemapBox .sitemapInner dl dd {
  font-size: 0.8125rem;
  border-left: #CCC solid 1px;
  padding-left: 10px;
}
.sitemapBox .sitemapInner dl dd li a {
  color: #666;
}
.sitemapBox .sitemapInner dl dd li:nth-of-type(n+2) {
  margin-top: 5px;
}

@media print, screen and (min-width: 921px) {
  /**================================= common =================================**/
  .blockContents {
    padding: 80px 50px;
  }
  .blockContents--bg {
    background-color: #EDEDE2;
  }
  .blockContents--bt {
    border-top: #CCC solid 1px;
  }
  .contInner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .contInner.textContents, .contInner.outlineBox {
    width: 820px;
  }
  .contents {
    max-width: 920px;
    margin: 0 auto;
  }
  /* Under Contents */
  /**================================= Module =================================**/
  /********** Headline **********/
  .pageTtl {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
  .pageTtlBtm {
    font-size: 1.375rem;
    color: #000;
    margin-bottom: 20px;
  }
  .hlLv2 {
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .hlLv2--index {
    font-size: 1.5rem;
    margin-bottom: 60px;
  }
  .hlLv2--tp2 {
    font-size: 1.25rem;
    padding: 10px 20px;
    margin: 60px 0 30px;
  }
  /* H3 */
  .hlLv3 {
    color: #FE0143;
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .hlLv3 .casestudyIcn {
    margin-right: 10px;
    font-size: 1rem;
    padding: 3px 10px;
  }
  .hlLv3 .ttlTxt {
    display: inline-block;
    margin-top: 0;
  }
  .hlLv3.hlLv3--csFirst {
    margin-top: 60px;
  }
  .hlLv3.top-themeTtl {
    color: #333;
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }
  /* H4 */
  .hlLv4 {
    font-size: 1.125rem;
  }
  /********** text **********/
  .modTxt01 {
    font-size: 1rem;
    line-height: 1.8;
  }
  .modTxt01:nth-of-type(n+2) {
    margin-top: 1.5em;
  }
  .modTxt01.mt0 {
    margin-top: 0;
  }
  .modTxt02 {
    font-size: 0.875rem;
  }
  .leadTxt {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .ttlTxt01 {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 40px;
  }
  .ttlTxt01.pcTal {
    text-align: left;
  }
  .ttlTxt02 {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .ttlTxt02.mt {
    margin-top: 40px;
  }
  .ttlTxt03 {
    font-size: 1.125rem;
    color: #E8341C;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .ttlTxt03.mt {
    margin-top: 60px;
  }
  .ttlTxt04 {
    font-size: 1.125rem;
  }
  /********** Botton **********/
  .modBtn01 {
    overflow: hidden;
    z-index: 1;
  }
  .modBtn01::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #FE0143;
    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
  }
  .modBtn01::after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .modBtn01:hover {
    color: #FFF;
  }
  .modBtn01:hover::before {
    left: 0%;
  }
  .modBtn01:hover::after {
    border-color: #FFF;
  }
  .btnBox {
    margin-top: 60px;
    text-align: center;
  }
  .btnList {
    margin-top: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btnList > li {
    min-width: 274px;
    text-align: center;
  }
  .btnList > li:nth-of-type(n+2) {
    margin-top: 0;
    margin-left: 40px;
  }
  /********** Flex Box **********/
  .flexBox {
    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;
    margin: 40px 0;
  }
  .flexBox .fitem2:nth-of-type(n+2),
  .flexBox .fitem3:nth-of-type(n+2) {
    margin-top: 0;
  }
  .flexBox .fitem3 {
    width: 30%;
  }
  .flexBox.wrap .fitem3 {
    width: 30%;
  }
  .flexBox .fitem6 {
    width: 14%;
  }
  .flexBox .fitem6:nth-of-type(n+3) {
    margin-top: 0%;
  }
  .flexBox .fitem6:nth-of-type(2n) {
    margin-left: 0;
  }
  .flexBox .fitem6:nth-of-type(n+2) {
    margin-left: 3.2%;
  }
  .flexBox.wrap .fitem3:nth-of-type(n+4) {
    margin-top: 5%;
  }
  .flexBox.spflex.scroll {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flexBox.spflex.scroll .fitem {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .flexBox.spflex.scroll .fitem:nth-of-type(n+2) {
    margin-left: 40px;
  }
  .flexBox.spflex.scroll .fitem.arrow_l::before {
    top: calc(50% - 30px);
    left: -25px;
  }
  .flexBox.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flexBox--3clm .fitem3 {
    width: 33.3333333333%;
  }
  .flexBox--3clm .fitem3 figure {
    overflow: hidden;
    height: 31.5vw;
  }
  .flexBox--3clm .fitem3 .fitemInner {
    padding: 40px 12% 40px;
  }
  .flexBox--3clm .fitem3:nth-of-type(2) {
    border-left: #DDD solid 1px;
    border-right: #DDD solid 1px;
  }
  .flexBox--intro:nth-of-type(2) {
    margin-top: 80px;
  }
  .flexBox--intro .fitem2:nth-of-type(1) {
    width: 43%;
  }
  .flexBox--intro .fitem2:nth-of-type(2) {
    width: 50%;
  }
  .flexBox--example {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flexBox--example.alignTop {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .flexBox--example .fitem2 {
    width: 46%;
  }
  .flexBox--example .fitem2:nth-of-type(2n) {
    margin-left: 8%;
  }
  .flexBox--example .fitem2:nth-of-type(n+2) {
    margin-top: 0;
  }
  .flexBox--example .fitem2:nth-of-type(n+3) {
    margin-top: 8%;
  }
  .flexBox--example:nth-of-type(n+2) {
    margin-top: 60px;
  }
  .flexBox--vlc {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /********** Table **********/
  .modTbl01 th {
    padding: 5px 5px;
  }
  .tblCaption {
    margin-top: 0;
  }
  /********** Other **********/
  .borderBox {
    margin-top: 60px;
    padding: 4%;
  }
  /**================================= Index Setting =================================**/
  /********** Common **********/
  .indexTxt {
    font-size: 1rem;
    line-height: 1.8;
  }
  .indexTxt:nth-of-type(n+2) {
    margin-top: 1.5em;
  }
  /********** MAINIMG **********/
  .slideImg {
    height: 508px;
  }
  .slideImg .slideItem {
    height: 508px;
  }
  .mainImgTxtWrap {
    width: 280px;
    top: calc(50% + 70px / 2);
  }
  .mainImgTxtWrap .mainImgTxtCatch {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .progress {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  /********** INTRO **********/
  .introTop {
    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-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .introTop .introTop__img {
    width: 55%;
  }
  .introTop .introTop__txt {
    margin-bottom: 2rem;
    width: 40%;
  }
  .introTop .indexLeadTxt {
    font-size: 2.25rem;
    font-weight: 500;
    color: #000;
  }
  .movieBox {
    margin-top: 80px;
  }
  /********** FEATURE **********/
  .blockContents--feature {
    padding: 80px 50px;
  }
  .flexBox--feature {
    max-width: 1200px;
    margin: 0 auto;
  }
  .flexBox--feature li {
    padding-bottom: 0;
  }
  .flexBox--feature li.fitem3 {
    text-align: center;
    width: 30%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .flexBox--feature li.fitem3 figure {
    padding: 0;
  }
  .flexBox--feature li p.pointHead {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 0;
    text-align: center;
  }
  .flexBox--feature li p.pointHead::after {
    font-size: 6.25rem;
    left: 6%;
  }
  .flexBox--feature li p.modTxt01 {
    text-align: left;
    margin-top: 0;
  }
  /********** News **********/
  .blockContents--indexnews .top--news {
    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;
  }
  .blockContents--indexnews .top--news .fitem2 {
    width: 48%;
  }
  .blockContents--indexnews .top--news .fitem2:nth-of-type(n+2) {
    margin-top: 0;
  }
  .indexNewsBox {
    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-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .indexNewsBox dt:nth-of-type(n+2) {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .indexNewsBox dd {
    font-size: 1rem;
  }
  /**================================= Under Content Setting =================================**/
  /******************** common ********************/
  .mainvisual_v {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .mainvisual_v.mb10 {
    margin-bottom: 10px;
  }
  /* Bottom Local Navi  */
  .localNavTtl {
    margin-bottom: 60px;
  }
  .btmlocalLink ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btmlocalLink ul li {
    font-size: 0.875rem;
    padding: 0 0 0 30px;
    border-bottom: none;
  }
  .btmlocalLink ul li:first-of-type {
    border-top: none;
  }
  .btmlocalLink ul li:nth-of-type(n+2) {
    margin-left: 40px;
  }
  .btmlocalLink ul li::before {
    top: 2px;
  }
  .btmlocalLink ul li::after {
    top: 4px;
  }
  /******************** About ********************/
  /********** index **********/
  /********** Structure **********/
  .flexBox--structure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flexBox--structure figure {
    margin-bottom: 0;
  }
  .structureimg01 {
    padding: 4%;
  }
  .flexBox--structure2 .fitem2:nth-of-type(1) {
    width: 59%;
  }
  .flexBox--structure2 .fitem2:nth-of-type(2) {
    width: 41%;
  }
  .flexBox--structure3 .fitem2:nth-of-type(1) {
    width: 48%;
  }
  .flexBox--structure3 .fitem2:nth-of-type(2) {
    width: 44%;
  }
  /********** System **********/
  .flexBox--system {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flexBox--system .fitem {
    width: 48%;
  }
  .flexBox--system .fitem:nth-of-type(n+2) {
    margin-top: 0;
  }
  .flexBox--system .fitem:nth-of-type(n+3) {
    margin-top: 6%;
  }
  .flexBox--system .fitem:nth-of-type(2n) {
    margin-left: 4%;
  }
  .flexBox--system.type3 .fitem {
    width: 30.333%;
  }
  .flexBox--system.type3 .fitem:nth-of-type(n+2) {
    margin-top: 0;
  }
  .flexBox--system.type3 .fitem:nth-of-type(n+3) {
    margin-top: 0;
  }
  .flexBox--system.type3 .fitem:nth-of-type(3n) {
    margin-left: 4%;
  }
  .flexBox--system.type4 .fitem {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flexBox--system.type4 .fitem .icnBox {
    margin-top: 0;
  }
  .flexBox--system.type4 .fitem div {
    width: 80%;
    margin-right: 4%;
  }
  .icnBox {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .borderBox--system {
    padding: 40px;
    letter-spacing: 0;
  }
  /********** Data **********/
  .flexBox--data01 {
    margin-bottom: 0;
  }
  .flexBox--data01.flexBox--datamt {
    margin-top: 100px;
  }
  .flexBox--data01 .fitem2:first-child {
    width: 40%;
  }
  .flexBox--data01 .fitem2:last-child {
    width: 60%;
  }
  .flexBox--data02 {
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: 0;
  }
  .flexBox--data02 .fitem2:first-child {
    width: 33%;
  }
  .flexBox--data02 .fitem2:last-child {
    width: 63%;
  }
  /********** Price **********/
  .priceContact figure.figure {
    max-width: 500px;
    margin: 0 auto;
  }
  /******************** Case Studies ********************/
  /********** common **********/
  .hl--casestudies {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.375rem;
  }
  .hl--casestudies.icn {
    padding-left: 75px;
    min-height: 60px;
    position: relative;
  }
  .hl--casestudies.icn::before {
    content: "";
    width: 60px;
    height: 60px;
  }
  .hl--casestudies.icn.ecoplus::before {
    width: 70px;
    background-image: url(../../assets/images/plan/common/icn_ecoplus.png);
  }
  /********** hospital **********/
  .flexBox--hospital .fitem2:nth-of-type(1) {
    width: 40%;
  }
  .flexBox--hospital .fitem2:nth-of-type(2) {
    width: 54%;
  }
  /******************** QA ********************/
  .qaBoxInner {
    margin-top: 60px;
  }
  .qaBoxInner dt {
    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;
    margin-bottom: 15px;
  }
  .qaBoxInner dt .ttl {
    width: 4em;
  }
  .qaBoxInner dt .cont {
    width: calc(100% - 4em);
  }
  .qaBoxInner dt:nth-of-type(n+2) {
    margin-top: 40px;
    padding-top: 40px;
  }
  .qaBoxInner .ttl span {
    color: #000;
    font-weight: bold;
  }
  .qaBoxInner dd {
    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;
  }
  .qaBoxInner dd .ttl {
    width: 4em;
  }
  .qaBoxInner dd .cont {
    width: calc(100% - 4em);
  }
  /******************** Showroom ********************/
  .flexBox--showroom .fitem2:nth-of-type(1) {
    width: 40%;
  }
  .flexBox--showroom .fitem2:nth-of-type(2) {
    width: 50%;
  }
  /******************** Collabo ********************/
  .collaboDl {
    font-size: 1rem;
  }
  /******************** Sales Partner ********************/
  .partnerListDl {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .partnerListDl dt {
    width: 24em;
  }
  .partnerListDl dt:nth-of-type(1) {
    padding-top: 20px;
    border-top: #DDD solid 1px;
  }
  .partnerListDl dt:nth-of-type(n+2) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: #DDD solid 1px;
  }
  .partnerListDl dt:last-of-type {
    padding-bottom: 20px;
    border-bottom: #DDD solid 1px;
  }
  .partnerListDl dd {
    width: calc(100% - 24em);
  }
  .partnerListDl dd:nth-of-type(1) {
    padding-top: 20px;
    border-top: #DDD solid 1px;
  }
  .partnerListDl dd:nth-of-type(n+2) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: #DDD solid 1px;
  }
  .partnerListDl dd:last-of-type {
    padding-bottom: 20px;
    border-bottom: #DDD solid 1px;
  }
  /******************** Support ********************/
  .flexBox--support .fitem2:nth-of-type(1) {
    width: 20%;
  }
  .flexBox--support .fitem2:nth-of-type(2) {
    width: 76%;
  }
  /********** Download **********/
  .downloadList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 15px;
  }
  .downloadList:not(:last-child) {
    margin-bottom: 40px;
  }
  .downloadList li {
    width: 32%;
  }
  .downloadList li:nth-of-type(n+2) {
    margin-top: 0;
  }
  .downloadList li:nth-of-type(n+4) {
    margin-top: 2%;
  }
  .downloadList li:nth-of-type(3n), .downloadList li:nth-of-type(3n+2) {
    margin-left: 2%;
  }
  /********** Link **********/
  .linkPageList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .linkPageList dt {
    width: 28em;
  }
  .linkPageList dt a {
    padding-left: 16px;
    display: inline-block;
    position: relative;
  }
  .linkPageList dt a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: #FE0143 solid 2px;
    border-bottom: #FE0143 solid 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .linkPageList dd {
    width: calc(100% - 28em);
  }
  .linkPageList dd:nth-of-type(n+2) {
    margin-top: 10px;
  }
  /******************** Contact ********************/
  .contact-head {
    border-bottom: none;
    margin-bottom: 3rem;
    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;
    border: none;
    background-color: #fff;
    padding: 2% 6%;
  }
  .contact-head .phone a {
    font-size: 32px;
    padding-left: 0;
  }
  .contact-head .phone a::before {
    content: "";
    width: 34px;
    height: 22px;
    left: -38px;
  }
  /********** Form Parts **********/
  input[type=text] {
    border: #CCC solid 1px;
    background-color: #FFF;
    height: 50px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  input[type=radio],
  input[type=checkbox] {
    margin-right: 5px;
  }
  select {
    border: #CCC solid 1px;
    background-color: #FFF;
    height: 50px;
    padding: 0 20% 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .selectWrap {
    position: relative;
  }
  .selectWrap::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #4f4f4f transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  textarea {
    border: #CCC solid 1px;
    background-color: #FFF;
    height: 150px;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  input[type=submit] {
    max-width: 400px;
    text-align: center;
  }
  /********** Form Layout **********/
  .iptTxt01 {
    width: 100%;
  }
  .iptZip {
    width: 30%;
  }
  .formBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 50px;
    background-color: #EEEEEE;
  }
  .formBox dt {
    width: 15em;
    padding: 37px 10px 20px;
    margin-bottom: 0;
  }
  .formBox dt:nth-of-type(n+2) {
    margin-top: 0;
  }
  .formBox dt.must::after {
    top: 36px;
  }
  .formBox dt.nopt {
    padding-top: 20px;
  }
  .formBox dd {
    width: calc(100% - 15em);
    padding: 20px;
  }
  .formBox .zipauto {
    margin-left: 20px;
    width: 200px;
    text-align: center;
  }
  .formBox .qlist li:nth-of-type(n+2) {
    margin-top: 10px;
  }
  .formBtn {
    margin-top: 40px;
    text-align: center;
  }
  /********** Confirm **********/
  .confirm .formBox {
    margin-top: 40px;
  }
  .confirm .formBox dt {
    padding: 10px 20px 10px 0;
  }
  .confirm .formBox dd {
    padding: 10px;
  }
  /********** Complete **********/
  .pageTtlComplete {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
  }
  .completeTxt {
    text-align: center;
    font-size: 1.25rem;
  }
  .formBtn.complete {
    margin-top: 100px;
  }
  /******************** Outline ********************/
  .outlineDl {
    font-size: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .outlineDl > dt {
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    border-top: none;
    border-bottom: #CCC solid 1px;
    width: 7em;
  }
  .outlineDl > dd {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: #CCC solid 1px;
    width: calc(100% - 7em);
  }
  .outlineDl02 {
    font-size: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .outlineDl02 > dt {
    width: 9em;
  }
  .outlineDl02 > dd {
    width: calc(100% - 9em);
  }
  .outlineList01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
  .outlineList01 li {
    width: 19%;
  }
  .outlineList01 li:nth-of-type(n+3) {
    margin-top: 0;
  }
  .outlineList01 li:nth-of-type(2n) {
    margin-left: 0;
  }
  .flexBox-professor .fitem2:nth-of-type(1) {
    width: 32%;
  }
  .flexBox-professor .fitem2:nth-of-type(2) {
    width: 62%;
  }
  .flexBox-professor .fitem2 figure {
    width: 100%;
  }
  /******************** indexes / dl ********************/
  .case--listBox dl.dlBox.double dd {
    width: 50%;
  }
  .case--listBox dl.dlBox dd {
    width: 33%;
  }
  /******************** Privacy ********************/
  .privacyBox {
    margin-top: 40px;
  }
  .privacyTtl {
    font-size: 1rem;
  }
  .modList01 {
    font-size: 1rem;
  }
  .modList01.privacy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .modList01.privacy li:nth-of-type(2) {
    margin-left: 40px;
  }
  .modList01.privacy li:nth-of-type(3) {
    width: 100%;
  }
  .modList02 {
    font-size: 1rem;
  }
  .modListOl01 {
    font-size: 1rem;
  }
  /******************** Sitemap ********************/
  .sitemapBox .sitemapInner {
    width: 30%;
  }
  .sitemapBox .sitemapInner:nth-of-type(n+3) {
    margin-top: 0;
  }
  .sitemapBox .sitemapInner:nth-of-type(n+4) {
    margin-top: 6%;
  }
  .sitemapBox .sitemapInner p {
    font-size: 1rem;
  }
  .sitemapBox .sitemapInner dl dt {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .sitemapBox .sitemapInner dl dt > span {
    display: block;
    padding-bottom: 9px;
  }
  .sitemapBox .sitemapInner dl dd {
    font-size: 0.875rem;
    border-left: #CCC solid 1px;
    padding-left: 10px;
  }
  .sitemapBox .sitemapInner dl dd li:nth-of-type(n+2) {
    margin-top: 5px;
  }
}
/******************** news article ********************/
.news--article--listHead {
  font-size: 100%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.news--articleBox {
  padding-bottom: 2rem;
}
.news--articleBox h2, .news--articleBox h3, .news--articleBox h4, .news--articleBox h5 {
  margin-bottom: 1rem;
}
.news--articleBox figure {
  margin-top: 2rem;
}

.news--articleBox--fig {
  display: block;
  background-color: #fff;
  padding: 1%;
}
.news--articleBox--fig.Vt {
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
}
.news--articleBox--fig.Vt figcaption {
  text-align: center;
}
.news--articleBox--fig.Vw {
  max-width: 100%;
}
.news--articleBox--fig.Vw figcaption {
  text-align: center;
}
.news--articleBox--fig img {
  width: 100%;
}
.news--articleBox--fig figcaption {
  padding: 12px 24px 8px;
  font-size: 0.85em;
}

.news--detail--list {
  width: 100%;
}
.news--detail--list dt {
  float: left;
}
.news--detail--list dd {
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 1321px) {
  /**================================= Index Setting =================================**/
  /********** FEATURE **********/
  .flexBox--feature li p::after {
    font-size: 7.5rem;
    left: 12%;
  }
}
/* Helper Class */
.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.tac {
  text-align: center;
}/*# sourceMappingURL=style.css.map */