@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
a, img, a img {
  transition: all 600ms;
}
a:hover, img:hover, a img:hover {
  opacity: 0.7;
}

/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
home
-----------------------------------------------------*/
.p-home .-shadow {
  position: relative;
  z-index: 100;
  background: #f7f7f4;
  border-radius: 20px 20px 0 0;
  padding: 50px 5%;
  max-width: 1104px;
  margin: -64px auto 0;
}
@media screen and (min-width: 768px) {
  .p-home .-shadow {
    padding: 50px 50px 100px;
  }
}
.p-home .-support ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-home .-support ul {
    flex-wrap: nowrap;
  }
}
.p-home .-support ul li {
  width: 30%;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  .p-home .-support ul li {
    width: 14.5%;
  }
}
.p-home .-support ul li a {
  display: block;
  border: 2px solid #e6e6e6;
  border-radius: 10px;
  padding-top: 10px;
  background: #fff;
  transition: all 0.6s;
}
.p-home .-support ul li a:hover {
  background: #e6e6e6;
  opacity: 1;
}
.p-home .-support ul li i {
  display: block;
  width: 100px;
  height: 65px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-home .-support ul li span {
  display: block;
  text-align: center;
}
.p-home .-support ul li.-management i {
  background-image: url("../img/common/icn-management.svg");
}
.p-home .-support ul li.-finance i {
  background-image: url("../img/common/icn-finance.svg");
}
.p-home .-support ul li.-taxation i {
  background-image: url("../img/common/icn-taxation.svg");
}
.p-home .-support ul li.-hr i {
  background-image: url("../img/common/icn-hr.svg");
}
.p-home .-support ul li.-startup i {
  background-image: url("../img/common/icn-startup.svg");
}
.p-home .-support ul li.-mutualaid i {
  background-image: url("../img/common/icn-mutualaid.svg");
}
.p-home .c-swiper02 .-more,
.p-home .-news .-more,
.p-home .-member .-more {
  text-align: right;
  margin-top: 40px;
}
.p-home .c-swiper02 .-more a,
.p-home .-news .-more a,
.p-home .-member .-more a {
  text-decoration: underline;
}
.p-home .c-swiper02 .-more a i,
.p-home .-news .-more a i,
.p-home .-member .-more a i {
  padding-left: 0.2em;
}
.p-home .c-swiper02 a {
  text-decoration: none;
}
.p-home .c-swiper02 a figcaption span {
  line-height: 1.3;
  color: #1a0dab;
  text-decoration: underline;
}
.p-home .-news dl,
.p-home .-member dl {
  line-height: 1.5;
  border-top: 1px solid #cbcbcb;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-home .-news dl,
  .p-home .-member dl {
    margin: 0 auto;
    width: 100%;
  }
}
.p-home .-news dl a,
.p-home .-member dl a {
  display: block;
  border-bottom: 1px solid #cbcbcb;
  padding: 0.5em 5%;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-home .-news dl a,
  .p-home .-member dl a {
    display: flex;
    padding: 0.5em 0;
  }
}
.p-home .-news dl a dt,
.p-home .-member dl a dt {
  dispaly: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-home .-news dl a dt,
  .p-home .-member dl a dt {
    width: 15em;
    margin-bottom: 0;
  }
}
.p-home .-news dl a dt time,
.p-home .-member dl a dt time {
  display: inline-block;
  width: 6em;
  color: #909090;
}
.p-home .-news dl a dt span,
.p-home .-member dl a dt span {
  color: #fff;
  font-size: 10px;
  background: #333;
  border-radius: 3em;
  padding: 0.2em 1em;
  margin-right: 1em;
}
.p-home .-news dl a dd,
.p-home .-member dl a dd {
  color: #1a0dab;
  text-decoration: underline;
}
.p-home .-news dl a dt span {
  background: #f4ae3e;
}
.p-home .-member dl a dt span {
  background: #45bc49;
}

.-brand {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .-brand {
    margin-bottom: 138px;
  }
}
.-brand .-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1em;
}
.-brand .-title span {
  position: relative;
  display: block;
  padding: 0 1.5em;
}
@media screen and (min-width: 768px) {
  .-brand .-title span {
    display: inline-block;
  }
}
.-brand .-title span:before, .-brand .-title span:after {
  content: "●";
  line-height: 1;
  position: absolute;
  width: 1em;
  top: calc(50% - 0.5em);
  color: #d3b695;
}
.-brand .-title span:before {
  left: 0;
}
.-brand .-title span:after {
  right: 0;
}
.-brand a {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .-brand a {
    margin: 0 auto;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .-banners {
    margin-bottom: 120px;
  }
}
.-banners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.-banners ul li {
  width: 48%;
  margin-bottom: 4%;
}
@media screen and (min-width: 768px) {
  .-banners ul li {
    width: 32%;
    margin-bottom: 2%;
  }
}

.l-foot_img {
  background: #f7f7f4;
}/*# sourceMappingURL=home.css.map */