@charset "UTF-8";
/*
	##### MFR #####
	benefits/css/benefits_sp.css
*/




.sec-ttl {
  font-feature-settings: "palt";
  font-weight: 700;
  font-size: calc(31 / 1400 * 100vw);

  &.dark-side {
    display: flex;
    align-items: center;
    color: #fff;
    min-height: calc(90 / 1400 * 100vw);
    padding-left: calc(30 / 1400 * 100vw)
  }
}
.note {
  font-weight: 400;
  font-size: calc(13 / 1400 * 100vw);
  color: #808080;
  margin-top: 1em;
}

.sys-list {
  display: grid;
  grid-template-columns: repeat(3, calc(312 / 1400 * 100vw));
  column-gap: calc(45 / 1400 * 100vw);
  row-gap: calc(20 / 1400 * 100vw);
  margin-top: calc(55 / 1400 * 100vw);

  & .img-box {
    height: calc(185 / 1400 * 100vw);
    overflow: hidden;
    border-radius: calc(10 / 1400 * 100vw);
  }

  & dl {
    margin-top: calc(30 / 1400 * 100vw);

    & dt {
      margin-bottom: calc(25 / 1400 * 100vw);
      font-weight: 700;
      font-size: calc(20 / 1400 * 100vw);
      color: var(--color-3);
    }
    & dd {
      padding-bottom: calc(30 / 1400 * 100vw);
      font-feature-settings: "palt";
      font-weight: 500;
      font-size: calc(13 / 1400 * 100vw);
      line-height: 2.3076923076923075;
      text-align: justify;

      & p + p {
        margin-top: 1em;
      }

      & .note {
        line-height: 1.3;
        padding-left: 1em;
        text-indent: -1em;
      }
      & .popup {
        font-size: calc(15 / 1400 * 100vw);

        &::after {
          content: '';
          display: inline-block;
          width: calc(11 / 1400 * 100vw);
          height: calc(11 / 1400 * 100vw);
          background: url(../../assets/images/ico-popup-2.svg) no-repeat center / contain;
          margin-left: .5em;
          vertical-align: middle;
        }
        & a {
          text-decoration: none;
          color: var(--color-3);
        }
      }
    }
  }
}
@media (hover) {
  .sys-list a {
    background-image: linear-gradient(var(--color-3), var(--color-3));
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 100% 100%;
    transition: background-size .3s cubic-bezier(0.23, 1, 0.320, 1)
  }
  .sys-list a:hover {
    background-size: 100% 1px;
    background-position: 0 100%;
  }
}

.related-list {
  margin-top: calc(25 / 1400 * 100vw);

  & li {
    padding: calc(30 / 1400 * 100vw) 0;

    & + & {
      border-top: solid 1px #e5e5e5;
    }
  }
  & dl {
    display: flex;
    align-items: baseline;

    & dt {
      min-width: calc(216 / 1400 * 100vw);
      font-weight: 700;
      font-size: calc(18 / 1400 * 100vw);
      vertical-align: middle;

      &::before {
        display: inline-block;
        content: '●';
        font-size: 50%;
        translate: 0 -.5em;
        margin-right: 1em;
        color: var(--color-3)
      }
    }
  }
}

.support-selection .tabs-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 3px var(--color-3);

  & li {
    display: block;
    flex: 0 0 calc(508 / 1400 * 100vw);
    height: calc(52 / 1400 * 100vw);
    border-radius: calc(5 / 1400 * 100vw) calc(5 / 1400 * 100vw) 0 0;
    overflow: hidden;

    & a {
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
      font-weight: 700;
      font-size: calc(22 / 1400 * 100vw);
      text-decoration: none;
      color: #fff;
      background-color: var(--color-3);
      padding-left: calc(26 / 1400 * 100vw);
      opacity: .2;

      &.active {
        opacity: 1;
        cursor: default;
      }

      & span::after {
        content: '';
        display: inline-block;
        width: calc(24 / 1400 * 100vw);
        height: calc(24 / 1400 * 100vw);
        background: url(../../assets/images/arrw-down.svg) no-repeat center / contain;
        vertical-align: middle;
        margin-left: calc(20 / 1400 * 100vw);
        translate: 0 calc(-2 / 1400 * 100vw);
      }
    }
  }
}
@media (hover) {
  .tabs-nav li a {
    transition: opacity .3s ease
  }
  .tabs-nav li a:hover {
    opacity: 1;
  }
  .tabs-nav li a span::after {
    opacity: 1;
    transition: opacity .3s ease
  }
  .tabs-nav li a:not([class*='active']):hover span::after {
    opacity: .3
  }
}

.cares-list {
  display: grid;
  grid-template-columns: calc(771 / 1400 * 100vw) 1fr;
  column-gap: calc(20 / 1400 * 100vw);

  & .care {
    padding: calc(30 / 1400 * 100vw) calc(20 / 1400 * 100vw) calc(40 / 1400 * 100vw);
    border-radius: calc(10 / 1400 * 100vw);

    & .sub-ttl {
      font-weight: 700;
      font-size: calc(20 / 1400 * 100vw);
      text-align: center;
      color: var(--color-3);
      margin-bottom: calc(25 / 1400 * 100vw);

      & span::before,
      & span::after {
        content: '';
        display: inline-block;
        width: calc(14 / 1400 * 100vw);
        height: 2px;
        background-color: var(--color-3);
        vertical-align: middle;
        translate: 0 -.1em;
        margin: 0 .5em;
      }
    }
  }
  & .plate {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(40 / 1400 * 100vw);
    padding: calc(10 / 1400 * 100vw) 0;
    border: solid 1px var(--color-3);
    border-radius: 5px;
    background-color: #fff;
    font-weight: 500;
    font-size: calc(15 / 1400 * 100vw);
    line-height: 1.3333333333333333;
    text-align: center;
    color: var(--color-3);

    &.short {
      width: calc(81 / 1400 * 100vw);
    }

    & + & {
      margin-top: calc(4 / 1400 * 100vw);
    }
  }
}
.childcare {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;

  & col:nth-child(1) {
    width: calc(84 / 1400 * 100vw);
  }
  & col:nth-child(2) {
    width: calc(88 / 1400 * 100vw);
  }
  & col:nth-child(3),
  & col:nth-child(4) {
    width: calc(132 / 1400 * 100vw);
  }
  & col:nth-child(5) {
    width: calc(150 / 1400 * 100vw);
  }

  & thead th {
    height: calc(74 / 1400 * 100vw);
    border-right: solid 1px #AEBED4;
    vertical-align: top;
    padding: 0;

    & span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: calc(59 / 1400 * 100vw);
      background-color: var(--color-3);
      font-weight: 400;
      font-size: calc(13 / 1400 * 100vw);
      line-height: 1.4615384615384615;
      color: #fff;
    }
    &:last-child {
      border: none;

      & span {
        border-radius: 0 5px 5px 0;
      }
    }

    &:first-child span {
      border-radius: 5px 0 0 5px;
    }
  }
  & tbody td {
    border-right: solid 1px #AEBED4;
    height: calc(38 / 1400 * 100vw);
    vertical-align: top;
    padding: 4px calc(11 / 1400 * 100vw) 0;

    &:last-child {
      border: none;
    }
  }
  & dd {
    padding: .25em 0;
    font-feature-settings: "palt";
    font-size: calc(11 / 1400 * 100vw);
    line-height: 1.7;
    text-align: justify;
  }
}

.environment .sub-ttl {
  font-weight: 700;
  font-size: calc(24 / 1400 * 100vw);
  color: var(--color-3);
  padding-bottom: calc(18 / 1400 * 100vw);
  border-bottom: solid 3px #ccc;
  position: relative;

  &::before {
    content: '';
    display: block;
    width: calc(79 / 1400 * 100vw);
    height: 3px;
    background-color: var(--color-3);
    position: absolute;
    top: 100%;
    left: 0;
  }
}
.graph {
  padding-top: calc(28 / 1400 * 100vw);
  margin-bottom: calc(100 / 1400 * 100vw);

  & .img-box {
    width: calc(740 / 1400 * 100vw);
    height: auto;
  }
}

.des { 
  padding: calc(60 / 1400 * 100vw) 0 calc(100 / 1400 * 100vw);

  &.last {
    padding-bottom: calc(60 / 1400 * 100vw);
  }
}

.environment .related-list {
  margin-bottom: calc(70 / 1400 * 100vw);
}

.environment .cols {
  display: grid;
  grid-template-columns: calc(204 / 1400 * 100vw) 1fr;

  & .icon {
    display: block;
    width: 100%;
    height: auto;

    &.kurumin .img-box {
      width: calc(146 / 1400 * 100vw);
    }
    &.tomonin .img-box {
      width: calc(161 / 1400 * 100vw);
    }
  }
}
.environment .cols-2 {
  display: grid;
  grid-template-columns: calc(327 / 1400 * 100vw) 1fr;
  grid-template-rows: auto;
  grid-template-areas: 'ph ttl' 'ph txt';

  & + & {
    margin-top: calc(60 / 1400 * 100vw);
  }

  & .ph-block {
    display: block;
    width: 100%;
    grid-area: ph;
    
    & .img-box {
      width: calc(278 / 1400 * 100vw);
      height: calc(156 / 1400 * 100vw);
      border-radius: calc(10 / 1400 * 100vw);
      overflow: hidden;
    }
  }
  & h6 span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: calc(236 / 1400 * 100vw);
    height: calc(40 / 1400 * 100vw);
    padding: 0 .5em;
    margin-bottom: calc(25 / 1400 * 100vw);
    background-color: var(--color-3);
    border-radius: 100px;
    font-weight: 700;
    font-size: calc(18 / 1400 * 100vw);
    line-height: calc(40 / 1400 * 100vw);
    color: #fff;
  }
  & .txt {
    grid-area: txt;
  }
}
