@charset "UTF-8";
/* =============================================
common
============================================= */
body{
  position: relative;
  z-index: 0;
  color: #141417;
}

.l-main {
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.section-ttl {
  font-size: 32px;
  font-weight: bold;
}

.section-ttl span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 10px;
}
.main-wrapper, .main-wrapp{
  position: relative;
  z-index: 0;
}
.main-wrapp.open{
  display: none;
}
.fade-in {
	opacity: 0;
	transition-duration: 500ms;
	transition-property: opacity, transform;
}
.fade-in-up {
	transform: translate(0, 50px);
}
.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}
@media screen and (min-width: 767px){
  .column .header{
    position: relative;
  }
  .main-wrapp{
    position: absolute;
    width: 85%;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .section-ttl {
    font-size: 40px;
  }
  .section-ttl span {
    font-size: 18px;
    margin-left: 20px;
  }
  .main-wrapp{
    width: 88%;
  }
}
/* =============================================
side
============================================= */
.side-wrapper{
  position: absolute;
  z-index: 1009;
}
.side{
  position: fixed;
  background: #faf6f7;
  width:15%;
  height: 100vh;
  top: 0;
  left: 0;
}
.side-ttl{
  font-weight: bold;
  font-size: 1em;
  padding: 2em 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.side-ttl::before{
  content: '';
  display: inline-block;
  width: 90%;
  height: 100%;
  border-bottom: 2px dotted #d5d4d4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.side-ttl span{
  font-weight: normal;
  font-size: 10px;
  display: block;
  text-align: center;
}
.side-list{
  margin-top: 15vh;
}
.side-list-item a{
  display: block;
  padding: .5em 0;
  width: 80%;
  margin: 0 auto;
  border-bottom: 2px dotted #d5d4d4;
}
.side-list-item-num{
  font-size: 11px;
  margin-bottom: 5px;
}
.side-list-item-num span{
  font-size: 120%;
  display: inline-block;
  margin-left: 3px;
}
.side-list-item-img{
  margin-bottom: 5px;
}
.side-list-item-txt{
  font-weight: bold;
  font-size: 14px;
}
.side-list-item-txt02{
  font-size: 12px;
}
.side-btn{
  width: 30%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: bold;
  padding: 1.5em 0;
  font-size: 11px;
  position: fixed;
  bottom: 10px;
  left: 10px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 1px 1px 7px 7px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.side-btn::before{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
}
.side-btn.close{
  display: none;
}
.side-btn.close span{
  display: block;
  font-weight: bold;
  font-size:120%;
  text-align: center;
}
@media screen and (min-width: 767px){
  .side-btn{
    font-size: 12px;
    width: calc(15% * .8);
    left: 1.2%;
    bottom: 25px;
  }
}
@media screen and (min-width: 1280px){
  .side{
    width: 12%;
  }
  .side-btn{
    width: calc(12% * .8);
  }
  .side-ttl{
    font-size: 1.7vw;
    padding: 30px 0;
  }
  .side-ttl span{
    font-size: 13px;
  }
  .side-list-item-num{
    font-size: 14px;
  }
  .side-list-item-txt{
    font-size: .8em;
  }
  .side-list-item-txt02{
    font-size: 11px;
  }
  .side-list-item a{
    padding: 10px 0;
  }
  
  .side-list{
    margin-top: 120px;
  }
}
.side-inner{
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #f5f5f2;
  z-index: 1010;
  left: -100%;
  transition: .5s ease;
  overflow-y: auto;
}
.side-inner.open{
  left: 0;
}
.side-inner-ttl{
  text-align: center;
  font-weight: bold;
  padding: 2em;
  background: url('https://sub.fukumi-ru.com/img/solutionmap/top/main.jpg')no-repeat center/cover;
  color: #fff;
  font-size: 17px;
}
.side-inner-wrapper{
  width: 95%;
  margin: 20px auto;
}
.side-inner-ttl span{
  display: block;
  font-weight: normal;
  font-size: 80%;
  text-align: center;
}
.side-inner-inner{
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: calc(100% + 10px);
  margin: 0 -5px;
}
.side-inner-item{
  max-width: calc(((100% / 12) * 6) - 10px);
  flex-basis: calc(((100% / 12) * 6) - 10px);
  margin: 0 5px 10px;
}
.side-inner-item a{
  display: block;
  height: 100%;
  position: relative;
}
.side-inner-item a::before{
  content: '';
  display: inline-block;
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: -1;
}
.side-inner-item-txtarea{
  padding: 5px .5em;
}
.side-inner-item-num{
  font-size: 10px;
  margin-bottom: 5px;
}
.side-inner-item-txt{
  font-size: 12px;
  font-weight: bold;
}
.side-inner-item-txt02{
  font-size: 11px;
}
@media screen and (min-width: 768px){
  .side-inner-inner{
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
  .side-inner-wrapper{
    margin: 30px auto;
  }
  .side-inner-item{
    max-width: calc(((100% / 12) * 4) - 30px);
    flex-basis: calc(((100% / 12) * 4) - 30px);
    margin: 0 15px 30px;
  }
  .side-inner-item-txtarea{
    padding: 15px 1em;
  }
}
@media screen and (min-width: 1280px){
  .side-inner-wrapper{
    max-width: 1400px;
    margin: 50px auto;
  }
  .side-inner-ttl{
    padding: 40px 0;
    font-size: 24px;
  }
  .side-inner-item{
    max-width: calc(((100% / 5) * 1) - 30px);
    flex-basis: calc(((100% / 5) * 1) - 30px);
    margin: 0 15px 30px;
  }
  .side-inner-item-num{
    font-size: 14px;
    margin-bottom: 8px;
  }
  .side-inner-item-txt{
    font-size: 16px;
  }
  .side-inner-item-txt02{
    font-size: 14px;
  }
}
/* =============================================
section-main
============================================= */
.section-main{
  padding-top: 50px;
}
.main-taglist-item{
  display: inline-block;
  color: #fff;
  background: #141417;
  font-size: 12px;
  font-weight: bold;
  padding: .3em .7em;
  margin-right: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.main-ttl{
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.4;
  margin-bottom: 5px;
}
.main-date{
  color: #888;
  font-size: 12px;
}
.main-img{
  margin: 30px auto 50px;
}
@media screen and (min-width: 768px){
  .main-taglist-item{
    font-size: 15px;
    margin-bottom: 15px;
  }
  .main-img{
    width: 83%;
    max-width: 920px;
  }
}
@media screen and (min-width: 1028px){
  .main-ttl{
    font-size: 40px;
  }
  .main-date{
    font-size: 14px;
  }
}

/* =============================================
section-index
============================================= */
.section-index{
  margin-bottom: 50px;
}
.index-ttl{
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.index-ttl::after{
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid #141417;
  border-bottom: 2px solid #141417;
  transform: rotate(45deg);
  position: absolute;
  top: 20%;
  right: -30px;
}
.index-ttl.open::after{
  transform: rotate(-135deg);
  top: 30%;
}
.index-ttl span{
  font-size: 12px;
  font-weight: normal;
  display: block;
  text-align: center;
}
.section-index .section-content{
  border: 2px dotted #141417;
  border-radius: 10px;
  padding: 1.3em 1em;
  box-sizing: border-box;
}
.index-slide-wrapper{
  display: none;
}
.index-slide-wrapper a{
  transition: .2s ease;
  display: inline-block;
}
.index-slide-wrapper a::after{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #858585;
  border-bottom: 1px solid #858585;
  transform: rotate(45deg);
  position: relative;
  top: -4px;
  left: 8px;
}
.section-last .index-slide-wrapper a::after{
  content: none;
}
.index-slide-wrapper a:hover{
  color: #0067C0;
}
.index-slide-wrapper a:hover::after{
  border-right: 1px solid #0067C0;
  border-bottom: 1px solid #0067C0;
}
.index-list-item-ttl{
  font-weight: bold;
  font-size: 1.1rem;
  padding-bottom: 10px;
  margin: 10px 0;
  border-bottom: 2px dotted #d6d6d6;
}
.index-list-item-ttl a{
  text-indent: -2em;
  padding-left: 2em;
}
.index-list-inner{
  margin-bottom: 20px;
}
.index-list-inner-item{
  font-size: 14px;
  line-height: 1.8;
  /* text-indent: -1em;
  padding-left: 1em; */
}
.js-index-open{
  cursor: pointer;
}
@media screen and (min-width: 768px){
  .section-index .section-content{
    padding: 1.5em 2em;
  }
}
@media screen and (min-width: 1028px){
  .section-index{
    margin-bottom: 70px;
  }
  .index-ttl{
    font-size: 26px;
  }
  .index-ttl span{
    font-size: 1rem;
  }
  .section-index .section-content{
    padding: 45px 65px;
  }
  .index-list-item-ttl{
    font-size: 18px;
  }
  .index-list{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    width: calc(100% + 90px);
    margin: 0 -45px;
  }
  .index-list-inner-item{
    font-size: 1rem;
  }
  .index-list-item{
    max-width: calc(((100% / 12) * 6) - 90px);
    flex-basis: calc(((100% / 12) * 6) - 90px);
    margin: 0 45px;
  }
  .index-slide-wrapper{
    padding-top: 30px;
  }
}
/* =============================================
section-lead
============================================= */
.section-lead{
  margin: 50px 0 90px;
}
.lead-content{
  background: #fff;
  padding: 1.5em 1em 2em;
  box-shadow: 2px 2px 15px 0px rgb(0 0 0 / 13%);
  height: 100px;
  overflow: hidden;
  position: relative;
  transition: .2s ease;
}
.lead-content.open{
  height: auto;
}
.lead-ttl span{
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.lead-ttl{
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 15px;
}
.lead-txt{
  line-height: 1.8;
  margin-bottom: 20px;
}
.lead-content-open{
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #fff, #fff 40%, transparent);
  height: 70%;
  width: 100%;
  cursor: pointer;
}
.lead-content-open::before{
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid #141417;
  border-bottom: 2px solid #141417;
  transform: rotate(45deg) translateX(-50%);
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.lead-content-open.on::before{
  transform: rotate(-135deg) translateX(-50%);
  left: 48%;
}
.lead-content-open.on{
  background: none;
}
@media screen and (min-width: 768px){
  .lead-content{
    padding: 1.5em 1.5em 2em;
  }
}
@media screen and (min-width: 1280px){
  .section-lead{
    margin: 70px 0;
  }
  .lead-ttl{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .lead-ttl span{
    top: -5px;
    margin-right: 10px;
    position: relative;
    width: 20px;
  }
  .lead-content{
    padding: 50px 60px 50px;
  }
  .lead-txt{
    font-size: 18px;
  }
  .lead-content-open::before{
    width: 10px;
    height: 10px;
    bottom: 25px;
  }
}
/* =============================================
block
============================================= */
.block-ttl{
  background: #141417;
  color: #fff;
  padding: .5em;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.block-ttl span{
  display: inline-block;
  border-radius: 10px;
  padding: .3em .5em;
  font-size: 14px;
  background: #fff;
  color: #141417;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.block-ttl-sub{
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 1.2em;
}
.block-ttl-sub::before{
  content: '';
  display: inline-block;
  width: 4px;
  height: 100%;
  background: #0067C0;
  position: absolute;
  left: 0;
}
.block-txt{
  line-height: 1.8;
  margin-bottom: 30px;
}
.block-txt span.bold{
  font-weight: bold;
}
.block-img{
  box-shadow: 2px 2px 15px 0px rgb(0 0 0 / 13%);
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
}
.block-img-caption{
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
}
.block-wrapper{
    margin-bottom: 50px;
  }
@media screen and (min-width: 768px){
  .block-img{
    width: 80%;
  }
}
@media screen and (min-width: 1280px){
  .block-wrapper{
    margin-bottom: 70px;
  }
  .block-ttl{
    font-size: 28px;
    margin-bottom: 35px;
  }
  .block-txt{
    font-size: 17px;
    margin-bottom: 40px;
  }
  .block-ttl-sub{
    font-size: 24px;
  }
  .block-ttl span{
    top: -4px;
    font-size: 1rem;
  }
  .block-img-caption{
    margin-bottom: 20px;
  }
  .block-img{
    margin-bottom: 50px;
  }
}
.block-memo{
  padding: 1.5em;
  font-size: .9em;
  line-height: 1.8;
  background: #eaeaea;
  margin-bottom: 30px;
}
.memo-ttl{
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.memo-txt span.ttl{
  font-weight: bold;
  display: block;
}
.memo-txt span.bold{
  font-weight: bold;
}
.memo-txt{
  margin-bottom: 20px;
}
@media screen and (min-width: 1028px){
  .memo-ttl{
    font-size: 20px;
  }
  .memo-txt span.ttl{
    font-size: 18px;
    margin-bottom: 5px;
  }
  .memo-txt{
    font-size: 17px;
  }
  .block-memo{
    padding: 35px 50px;
  }
}
.table-wrapper{
  overflow: auto;
  margin-bottom: 30px;
  font-size: 14px;
}
.table{
  width: 150%;
}
.table td{
  border: 1px solid #333;
  padding: 1em;
}
.table td.num{
  font-size: 1.2em;
  background: #eee;
  font-weight: bold;
}
.table tr:last-child{
  border: none;
}
@media screen and (min-width: 768px){
  .table{
    width: 100%;
  }
}
/* =============================================
section-end
============================================= */
.section-end{
  padding-bottom: 50px;
}
.end-content{
  background: #fff;
  padding: 1.5em 1em 2em;
  box-shadow: 2px 2px 15px 0px rgb(0 0 0 / 13%);
  overflow: hidden;
  position: relative;
  transition: .2s ease;
}
.end-ttl{
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 15px;
}
.end-txt{
  line-height: 1.8;
  margin-bottom: 20px;
}
.end-txt span{
  display: inline-block;
  font-size: 14px;
  margin-top: 20px;
}
.end-link-item{
  display: inline-block;
  width: 30px;
}
.end-link-item:not(:last-child){
  margin-right: 10px;
}
.end-link{
  text-align: center;
  margin-top: 10px;
}
.end-caption{
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  color: #888;
}
.end-profile-inner-element-img{
  width: 50%;
  margin: 10px auto;
}
.end-profile-inner-element-name{
  text-align: center;
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 10px;
}
.end-profile-inner-element-txt{
  margin-bottom: 30px;
  font-size: 14px;
}
.end-profile{
  margin-top: 30px;
}
@media screen and (min-width: 768px){
  .end-content{
    padding: 1.5em 1.5em 2em;
  }
  .end-profile-inner{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  .end-profile-inner-element{
    max-width: calc(((100% / 12) * 6) - 20px);
    flex-basis: calc(((100% / 12) * 6) - 20px);
    margin: 0 10px;
  }
}
@media screen and (min-width: 1280px){
  .section-end{
    padding-bottom: 120px;
  }
  .end-content{
    padding: 50px 60px 50px;
  }
  .end-txt{
    font-size: 18px;
  }
  .end-link{
    margin-top: 50px;
  }
  .end-link-item:not(:last-child){
    margin-right: 20px;
  }
  .end-profile-inner-element-txt{
    font-size: 1em;
  }
   .end-profile-inner{
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
  .end-profile-inner-element{
    max-width: calc(((100% / 12) * 6) - 30px);
    flex-basis: calc(((100% / 12) * 6) - 30px);
    margin: 0 15px;
  }
}

/* =============================================
section-lead
============================================= */
.block-ttl-sub02{
  font-weight: bold;
  font-size: 1.2em;
}
.block-ttl-sub02::before{
  content: '■';
  display: inline-block;
}
.block-ttl-sub03{
  font-weight: bold;
  font-size: 1.1em;
}
.block-txt span.small{
  font-size: .9em;
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 1028px){
  .block-ttl-sub02{
    font-size: 20px;
  }
}

/* =============================================
section-last
============================================= */
.js-last-open{
  cursor: pointer;
}
.section-last .index-ttl::after{
  top: 40%;
}
.section-last .index-ttl.open::after{
  top: 50%;
}
.section-last .index-slide-wrapper a::after{
  content: none;
}
.section-last .index-slide-wrapper a{
  margin-bottom: 10px;
}