@charset "utf-8";
@import "nibCommon.css";

/*
===============================
ビズトレ　共通パーツ
===============================
*/

/*==================================================
  01. Heading
==================================================*/

/*---------- Section Title ----------*/
.sectionTitle span{
  font-family: "Outfit", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  padding-right: 2rem;
}
.sectionTitle {
  font-size: 1.8rem;
  font-weight: 500;
}
/*---------- Page Heading ----------*/
.heading h1 {
	padding: 30px 0;
	text-align: center;
  font-size: 3.6rem;
  font-weight: 800;
}
/*---------- Case Studies Heading ----------*/
.caseStudies {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px 30px;
  font-size: 3.6rem;
  font-weight: 900;
}
.caseStudies span.press {
  font-size: 1.8rem;
  font-weight: 400;
}
/*---------- Heading / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .pageHeader .inner {
    padding: 0;
  }
  .heading h1 {
    padding: 20px 0 30px;
    font-size: 2.8rem;
  }
  .caseStudies {
    font-size: 2.8rem;
    padding: 0 0 18px;
  }
}

/*==================================================
  02. もっと見るボタン
==================================================*/
.moreBtn {
  text-align: center;
  margin-bottom: 60px;
}
.moreBtn a {
  display: block;
  position: relative;
  width: 262px;
  margin: 0 auto;
  padding: 12px 30px 14px;
  color: var(--nib-green);
  font-size: 2.3rem;
  text-align: left;
  border: 2px solid var(--nib-green);
  border-radius: 50px;
}
.moreBtn a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_right.svg) no-repeat center center / contain;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
/*---------- More Button / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .moreBtn {
    margin: 0;
  }
  .moreBtn a {
    width:58.666vw;
    min-width: 220px;
    font-size: 2rem;
  }
}

/*==================================================
  03. パンくず
==================================================*/
.breadcrumb {
  font-size: 1.6rem;
  background-color: var(--nib-green);
  color: var(--nib-white);
}
.breadcrumb a {
  color: var(--nib-white);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 30px;
}
.breadcrumb__list li {
  position: relative;
}
.breadcrumb__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  background : url(../../../../images/freepages/info/nib/icon/icon_pankuzu_arrow.png) no-repeat center center / contain;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
/*---------- Breadcrumb / Tablet & SP ----------*/
@media (max-width:1024px){
  .breadcrumb .inner {
    padding: 5px 20px;
  }
  .breadcrumb__list {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .breadcrumb__list li {
    font-size: 1.4rem;
  }
}

/*==================================================
  04. Header
==================================================*/

/*---------- Header / Base ----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  height: 90px;
}
.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 0 0 30px;
  background-color: #fff;
}

/*---------- Header / TOP Initial ----------*/
.toppage header {
  transform: translateY(-120px);
}
.is-loading .toppage header {
  animation: headerSlide cubic-bezier(0.86, 0, 0.07, 1) 2s forwards;
  animation-delay: 2.2s;
}
@keyframes headerSlide {
  0% {
    transform: translateY(-120px);
  }
  100% {
    transform: translateY(0);
  }
}

/*---------- Header / Fixed ----------*/
header.is-fixed {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/*---------- Header / PC Navigation ----------*/
.headerMenuWrap  {
  flex: 1 1 auto;
  min-width: 0;
}
.headerMenu {
  width: 100%;  
}
.globalNavi {
  width: 100%;
  height: 90px;
}
.globalNavi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
.globalNavi ul li {
  flex-shrink: 0;
  height: 100%;
  margin-right: 0;
}
.globalNavi ul li:not(.nav-movie):not(.individ) {
  line-height: 90px;
  margin: 0 20px;
}

/*---------- Header / Navigation Link ----------*/
.globalNavi ul li a {
  position: relative;
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: bold;
  padding-right: 32px;
  margin-right: 0;
}
.globalNavi ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.globalNavi ul li.org a::after {
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_right.svg) no-repeat center center / contain;
}
.globalNavi ul li.column a::after {
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_down.svg) no-repeat center center / contain;
}
.globalNavi ul li.nav-movie {
  height: 100%;
}
.globalNavi ul li.nav-movie a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: clamp(13px, 1.2vw, 16px);
  background-color: #EBF9F2;
  margin-right: 0;
  padding: 0 17px;
}
.globalNavi ul li.nav-movie a .icon {
  width: 44px;
  height: 30px;
  margin-bottom: 2px;
}
.globalNavi ul li.individ {
  flex: 0 0 280px;
  width: 280px;
  max-width: 280px;
  height: 90px;
  background-color: #006062;
}
.globalNavi ul li.individ a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 1.2vw, 20px);
  color: var(--nib-white);
  padding: 0 30px;
  border-bottom-left-radius: 0;
}
.globalNavi ul li.individ a::after {
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_individ.svg) no-repeat center center / contain;
  right: 30px;
}

/* お役立ちコラム ドロップダウン */
.globalNavi ul li.column {
  position: relative;
  width: 180px;
  cursor: pointer;
}
.globalNavi ul li.column .dropdown {
  position: absolute;
  top: 90px;
  left: -20px;
  right: auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: var(--nib-white);
  display: flex;
  flex-direction: column;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all .3s;
  z-index: 10;
}
.globalNavi ul li.column:hover .dropdown {
  width: 220px;
  transform: scaleY(1);
}
.globalNavi ul li.column .dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 80px;
    line-height: 80px;
}
.globalNavi ul li.column .dropdown li a  {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px 0 15px;
    font-size: 1.6rem;
    white-space: nowrap;
}
.globalNavi ul li.column .dropdown li a::after {
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_right.svg) no-repeat center center / contain;
  right: 10px;
}

/*---------- Header / TOP Initial Individual ----------*/
.toppage header:not(.is-fixed) .globalNavi ul {
  align-items: flex-start;
}
.toppage header:not(.is-fixed) .globalNavi ul li.individ {
  height: 120px;
  align-self: flex-start;
  border-bottom-left-radius: 20px;
}

/*---------- Header / Fixed Individual ----------*/
header.is-fixed .globalNavi ul li.individ {
    height: 90px;
}
.toppage header.is-fixed .globalNavi ul li.individ a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 1.2vw, 20px);
  padding: 0 30px;
  border-bottom-left-radius: 0;
}

/*---------- Header / PC ----------*/
@media screen and (min-width: 1025px) {
  .headerInner {
    height: 100%;
    padding: 0 0 0 30px;
  }
  .headerLogo {
    width: 100%;
    max-width: 172px;
  }
  .nibContent {
    padding-top: 90px;
  }
  .nibContent#top {
    padding-top: 0;
  }
  .globalNavi ul li a .fz-min {
    font-size: clamp(13px, 1.2vw, 16px);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .globalNavi ul li:not(.nav-movie):not(.individ) {
    margin-right: 30px;
  }
  .globalNavi ul li.nav-movie a .icon {
    width: 35px;
    height: 13px;
    margin-bottom: 10px;
  }
}

/*---------- Header / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
  .headerInner {
    height: 100%;
    padding: 12px 20px;
  }
  .headerLogo {
    width: 100%;
    max-width: 106px;
  }
  .nibContent {
    padding-top: 60px;
  }
  .nibContent#top {
    padding-top: 0;
  }
  .toppage header {
    transform: translateY(-116px);
  }
  .is-loading .toppage header {
    animation: headerSlideSP cubic-bezier(0.86, 0, 0.07, 1) 2s forwards;
    animation-delay: 2.2s;
  }
  @keyframes headerSlideSP {
    0% {
        transform: translateY(-116px);
    }

    100% {
        transform: translateY(0);
    }
  }
}

/*---------- Header / Hamburger ----------*/
.ham {
  display: block;
  position: absolute;
  top: 4px;
  right: 20px;
  width: 40px;
  height: 50px;
  cursor: pointer;
  z-index: 80;
}
.ham span {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--nib-green);
  transition: all 0.3s ease-in-out;
}
.ham span:nth-child(1) {
  top: 12px;
}
.ham span:nth-child(2) {
  top: 23px;
}
.ham span:nth-child(3) {
  top: 34px;
}
.ham.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}
.ham.active span:nth-child(2) {
    top: 23px;
    transform: rotate(-45deg);
}
.ham.active span:nth-child(3) {
    opacity: 0;
}
@media (max-width:1024px){
  .spNavi.active {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    z-index: 99;
  }
}
.individLink {
  display: none;
}

/*---------- Header / SP Navigation ----------*/
.spNavi {
    display: none;
}
.headerMenu_sp_cont {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
.headerMenu_sp_cont ul {
  width: 100%;
  padding: 20px 22px 30px;
}
.headerMenu_sp_cont ul .layer {
  margin-bottom: 30px;
}
.headerMenu_sp_cont ul .layer,
.headerMenu_sp_cont ul .nav-movie {
  font-size: 2rem;
  font-weight: bold;
}
.headerMenu_sp_cont ul .layer a {
  position: relative;
  display: inline-block;
  padding-right: 32px;
}
.headerMenu_sp_cont ul .layer a::after {
  content: "";
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_right.svg) no-repeat center center / contain;
  width: 22px;
  height: 22px;
  top: calc(50% - 9px);
  right: 0;
}
.headerMenu_sp_cont ul .column {
  font-size: 1.6rem;
}
.headerMenu_sp_cont ul .column,
.headerMenu_sp_cont ul .layer.col {
  margin-bottom: 8px;
}
.headerMenu_sp_cont ul .nav-movie {
  margin-top: 28px;
  padding-bottom: 28px;
}
.headerMenu_sp_cont ul .nav-movie a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 18px;
}
.headerMenu_sp_cont ul .nav-movie .icon {
  width: 40px;
  height: 28px;
  padding-top: 2px;
}
.headerMenu_sp_cont ul .individ {
  font-size: 2rem;
  font-weight: bold;
}
.headerMenu_sp_cont ul .individ a {
  display: inline-block;
}
.headerMenu_sp_cont ul .individ .icon {
  position: relative;
  display: inline;
  padding-right: 32px;
}
.headerMenu_sp_cont ul .individ .icon::after {
  content: "";
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_nav_right.svg) no-repeat center center / contain;
  width: 22px;
  height: 22px;
  top: calc(50% - 9px);
  right: 0;
}
.headerMenu_sp_cont ul .individ span {
  display: block;
  font-size: 1.5rem;
  padding-top: 4px;
}
.headerMenu_sp_bottom {
  width: 100%;
  background-color: var(--nib-white);
  border-top: 1px solid var(--nib-gray);
  z-index: 99;
}
.headerMenu_sp_bottom .headerMenu_sp_contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5px;
  padding: 15px;
  border: none;
}
.headerMenu_sp_bottom .headerMenu_sp_contact .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.headerMenu_sp_bottom .headerMenu_sp_contact .left .txt {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.headerMenu_sp_bottom .headerMenu_sp_contact .left .telNum {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-size: 2.1rem;
  padding-left: 50px;
  margin-bottom: 0;
  letter-spacing: -0.9px;
}
.headerMenu_sp_bottom .headerMenu_sp_contact .left .telNum::before {
  content: "";
  display: block;
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_tel_orange.svg) no-repeat center center / contain;
  width: 40px;
  height: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.headerMenu_sp_bottom .headerMenu_sp_contact .left .telNum .time {
  font-size: 1.4rem;
}
.headerMenu_sp_bottom .headerMenu_sp_contact .contactBtn {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 138px;
  height: 70px;
  text-align: center;
  color: var(--nib-white);
  background-color: var(--nib-orange);
  font-size: 1.6rem;
  border-radius: 8px;
  margin-bottom: 0;
}

/*==================================================
  05. Case Studies 最新3件
==================================================*/
#kijilist .trigger {
	opacity: 1;
}
#kijilist .caseCard {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 30px;
	border: 2px solid #E4E4E4;
  margin-bottom: 30px;
  border-radius: 6px;
}
#kijilist .caseCard__img {
  width: 356px;
  aspect-ratio: 89 / 50;
  overflow: hidden;
}
#kijilist .caseCard__img img {
	display: block;
  border-radius: 5px 0 0 5px;
}
#kijilist .caseCard__body {
	padding: 30px 20px 0 0;
}
.caseCard h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.caseCard .ttlGrp .co {
  position: relative;
  font-size: 1.6rem;
  padding-left: 22px;
  margin-bottom: 10px;
}
.caseCard .ttlGrp .co::before {
    position: absolute;
    content: '';
    background: url(../../../../images/freepages/info/nib/icon/icon_spot.svg)no-repeat center center / contain;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    width: 15px;
    height: 20px;
}
.caseCard .ttlGrp .co span {
  font-weight: bold;
}
.caseCard .ttlGrp .cat {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-size: 1.6rem;
}

.caseCard .ttlGrp .cat span {
  display: inline-block;
  font-weight: bold;
  background-color: #EDFBD3;
  padding: 3px 24px 4px;
  border-radius: 30px;
}
/*---------- Case Studies / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  #kijilist .caseCard {
    display: block;
  }
  #kijilist .caseCard__img {
    width: 100%;
  }
  #kijilist .caseCard__body {
    padding: 20px 18px;
  }
  .caseCard h3 {
    margin-bottom: 16px;
  }
  .caseCard .ttlGrp .co {
    margin-bottom: 16px;
  }
  .caseCard .ttlGrp .cat {
    flex-direction: column;
  }
  .caseCard .ttlGrp .cat span {
    font-size: 1.6rem;
  }
}

/*==================================================
  06. Contact
==================================================*/
.contact {
  border-bottom: 1px solid var(--nib-gray);
}
.contact .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact .sectionTitle {
  color: var(--nib-green);
  margin-bottom: 16px;
}
.contact p {
  margin-bottom: 30px;
}
.contact .office {
  font-size: 1.6rem;
  font-weight: 400;
}
.contact .office span {
  font-size: 2rem;
}
.contact .telNum {
  position: relative;
  display: block;
  font-size: 4rem;
  margin-bottom: 30px;
  padding-left: 44px;
}
.contact .telNum::before {
  content: "";
  display: block;
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_tel_orange.svg) no-repeat center center / contain;
  width: 35px;
  height: 35px;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
.contact .contactBtn {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 64px 15px 64px;
  background: var(--nib-orange);
  color: var(--nib-white);
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-align: left;
}
.contact .contactBtn::before {
  content: "";
  display: block;
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_letter.svg) no-repeat center center / contain;
  width: 24px;
  height: 18px;
  top: calc(50% - 8px);
  left: 30px;
}
.contact .contactBtn::after {
  content: "";
  display: block;
  position: absolute;
  background : url(../../../../images/freepages/info/nib/icon/icon_arrow_link_orange.svg) no-repeat center center / contain;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
/*---------- Contact / SNS ----------*/
.contact .sns .sup {
  position: relative;
  margin-bottom: 40px;
  padding: 0 40px;
}
.contact .sns .sup:before,
.contact .sns .sup:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 31px;
}
.contact .sns .sup::before {
  background : url(../../../../images/freepages/info/nib/icon/icon_slash_left.svg) no-repeat center center / contain;
  top: 0;
  left: 0;
}
.contact .sns .sup::after {
  background : url(../../../../images/freepages/info/nib/icon/icon_slash_right.svg) no-repeat center center / contain;
  top: 0;
  right: 0;
}
.contact .sns .snsList {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*---------- Contact / PC ----------*/
@media screen and (min-width: 1025px){
  .contact .inner {
    padding-bottom: 80px;
  }
}
/*---------- Contact / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .contact .flex {
    flex-direction: column;
  }
  .contact .office {
    margin-bottom: 10px;
  }
  .contact .telNum {
    font-size: clamp(22px, 9vw, 40px);
    margin-bottom: 20px;
    letter-spacing: -0.9px;
  }
  .contact .contactBtn {
    font-size: 1.8rem;
    margin-bottom: 50px;
    padding: 13px 52px 13px 60px;
  }
  .contact .contactBtn::before {
    left: 25px;
  }
  .contact .sns {
    width: 48.5vw;
    margin: 0 auto;
  }
  .contact .sns .sup {
    text-align: center;
    font-size: 1.6rem;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .contact .sns .snsList {
    padding: 0 12px;
  }
  .contact .sns .snsList .snsBtn:not(.note) {
    width: 32px;
  }
}
/*---------- Contact / SP ----------*/
@media screen and (max-width: 767px) { 
  .contact .flex {
    align-items: center;
  }
  .individ .contact .flex {
    align-items: flex-start;
  }
  .individ .contact .telNum {
    margin-bottom: 60px;
  }
  .contact .sns {
    width: 100%;
  }
}

/*==================================================
  07. 中日Bizナビ
==================================================*/
.biznavi {
  width: 100%;
  max-width: 530px;
  padding: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .biznavi {
    max-width: 77.3vw;
    padding: 30px 0;
  }
}

/*==================================================
  08. Footer
==================================================*/
footer {
  color: var(--nib-white);
}
.footerInner {
  position: relative;
  background-color: var(--nib-footer-bg);
  padding: 36px 0 32px;
}
.footerList {
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 15px;
  margin-bottom: 15px;
}
.footerList li a{
  color: var(--nib-white);
}
.footerList li:not(:last-child) a {
  border-right: 1px solid var(--nib-white);
  padding-right: 15px;
}
.footerLogo {
  width: 100%;
  max-width: 224px;
  margin: 60px auto 25px;
}
.copyright {
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .footerInner {
    padding: 20px 18px 36px 22px;
  }
  .footerList {
    justify-content: flex-start;
    font-size: 1.5rem;
  }
  .footerLogo {
    width: 100%;
    max-width: 57vw;
    margin: 50px auto 20px;
  }
  .copyright {
    font-size: 1.2rem;
  }
}

/*==================================================
  09. topへ戻るボタン
==================================================*/
.fixtopBtn {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.topBtn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--nib-white);
  border: 1px solid var(--nib-footer-bg);
  cursor: pointer;
}
.topBtn::after {
  position: absolute;
  content: '';
  display: block;
  background : url(../../../../images/freepages/info/nib/icon/icon_top_arrow.svg) no-repeat center center / contain;
  width: 20px;
  height: 26px;
  top: 10px;
  right: 15px;
}
/*---------- Fixed Top Button / SP ----------*/
@media screen and (max-width: 767px) {
  .fixtopBtn {
    display: none;
  }
}

/*==================================================
  10. 固定　お問い合わせボタン
==================================================*/
.fixContactBtn {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 40;
  opacity: 1;
  visibility: visible;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1),
  visibility .5s;
}
.fixContactBtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*==================================================
  11.  SP画面下部固定メニュー
==================================================*/
@media screen and (max-width: 1024px) {
  .fixSpBottom {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--nib-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    z-index: 40;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .fixSpBottom .fixSpContent {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 5px;
    padding: 15px;
  }
  .fixSpBottom .fixSpContent .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .fixSpBottom .fixSpContent .left .txt {
    font-size: 1.6rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
  }
  .fixSpBottom .fixSpContent .left .telNum {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    font-size: 2.1rem;
    padding-left: 50px;
    letter-spacing: -0.9px;
  }
  .fixSpBottom .fixSpContent .left .telNum::before {
    content: "";
    display: block;
    position: absolute;
    background : url(../../../../images/freepages/info/nib/icon/icon_tel_orange.svg) no-repeat center center / contain;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .fixSpBottom .fixSpContent .left .telNum .time {
    font-size: 1.4rem;
  }
  .fixSpBottom .fixSpContent .contactBtn {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 138px;
    height: 70px;
    text-align: center;
    color: var(--nib-white);
    background-color: var(--nib-orange);
    font-size: 1.6rem;
    border-radius: 8px;
  }
  .toggleBtn {
    display: block;
    position: absolute;
    top: -34px;
    left: 0;
    width: 34px;
    height: 34px;
  }
  .toggleBtn.close {
    background-color: #6e6e6e;
  }
  .toggleBtn.close::before,
  .toggleBtn.close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 28px;
    background: #fff;
    border-radius: 2.5px;
  }
  .toggleBtn.close::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .toggleBtn.close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  .toggleBtn {
    background-color: var(--nib-orange);
  }
  .toggleBtn::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    width: 15px;
    height: 15px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(52%,40%) rotate(-45deg);
  }
  .fixSpBottom.is-open {
    transform: translateY(0);
  }
}