@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  background: linear-gradient(45deg, rgb(36, 36, 36) 0%, rgb(28, 28, 28) 100%);
  font-family: "Zen Maru Gothic", nitalago-ruika, sans-serif;
  font-weight: 500;
}

/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 COMPANY-TABLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.company-table {
  padding: 150px 0 100px 0;
}
.company-table .wrapper {
  position: relative;
  width: 92%;
  margin: 0 auto 0;
}
.company-table .wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #373737 0%, #303030 100%);
  mix-blend-mode: difference;
  opacity: 0.7;
  z-index: 1;
}
.company-table .wrapper .inner {
  padding: 5px 0 0 0;
  position: relative;
  z-index: 2;
}
.company-table .wrapper .inner h2 {
  margin: -30px 0 0 0;
  padding: 0 0 0 50px;
}
.company-table .wrapper .inner h2 .cover {
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.company-table .wrapper .inner h2 .cover .en {
  font-family: "Syncopate", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 6px;
  font-size: 62px;
  margin: 0 20px 0 0;
}
.company-table .wrapper .inner h2 .cover .jp {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  color: #fff;
  letter-spacing: 6px;
  font-size: 24px;
}
.company-table .wrapper .inner ul.company-list {
  padding: 60px 80px 60px 80px;
}
.company-table .wrapper .inner ul.company-list li {
  display: flex;
  position: relative;
  padding: 65px 30px 65px 30px;
}
.company-table .wrapper .inner ul.company-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #909090 0%, #aaaaaa 100%);
  mix-blend-mode: hard-light;
  opacity: 0.4;
}
.company-table .wrapper .inner ul.company-list li .left {
  width: 45%;
  padding: 0 0px 0 0;
  display: flex;
  align-items: center;
}
.company-table .wrapper .inner ul.company-list li .left .icon {
  line-height: 0;
  width: 60px;
  margin: 0 25px 0 0;
}
.company-table .wrapper .inner ul.company-list li .left .icon img {
  width: 100%;
  height: auto;
}
.company-table .wrapper .inner ul.company-list li .left .catch .main {
  font-family: "Syncopate", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 8px;
  line-height: 1.1;
  font-size: 26px;
}
.company-table .wrapper .inner ul.company-list li .left .catch .sub {
  margin: 1px 0 0 0;
  letter-spacing: 4px;
  font-size: 18px;
  color: #fff;
}
.company-table .wrapper .inner ul.company-list li .right {
  width: 55%;
  padding: 0 0 0 40px;
}
.company-table .wrapper .inner ul.company-list li .right p {
  color: #fff;
  line-height: 2.4;
  font-size: 18px;
  letter-spacing: 3px;
}
.company-table .wrapper .inner ul.company-list li .right p .syncopate {
  font-weight: 700;
  font-family: "Syncopate", sans-serif;
  padding: 0 1px 0 1px;
}
.company-table .wrapper .inner ul.company-list li .right p .iceberg {
  font-weight: 700;
  font-family: "Iceberg", cursive;
  font-size: 22px;
}
.company-table .wrapper .inner ul.company-list li .al-center {
  align-items: center;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .company-table {
    padding: 100px 5% 100px 5%;
  }
  .company-table .wrapper {
    position: relative;
    width: 96%;
    margin: 0 auto 0;
  }
  .company-table .wrapper:before {
    opacity: 0.7;
    z-index: 1;
  }
  .company-table .wrapper .inner {
    padding: 5px 0 0 0;
  }
  .company-table .wrapper .inner h2 {
    margin: -30px 0 0 0;
    padding: 0 0 0 50px;
  }
  .company-table .wrapper .inner h2 .cover {
    display: flex;
    align-items: center;
    line-height: 1.1;
  }
  .company-table .wrapper .inner h2 .cover .en {
    letter-spacing: 6px;
    font-size: 4.25vw;
    margin: 0 20px 0 0;
  }
  .company-table .wrapper .inner h2 .cover .jp {
    letter-spacing: 6px;
    font-size: 2.2vw;
  }
  .company-table .wrapper .inner ul.company-list {
    padding: 60px 40px 60px 40px;
  }
  .company-table .wrapper .inner ul.company-list li {
    display: flex;
    position: relative;
    padding: 65px 30px 65px 30px;
  }
  .company-table .wrapper .inner ul.company-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, #909090 0%, #aaaaaa 100%);
    mix-blend-mode: hard-light;
    opacity: 0.4;
  }
  .company-table .wrapper .inner ul.company-list li .left {
    width: 55%;
    padding: 0 0px 0 0;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon {
    line-height: 0;
    width: 6vw;
    margin: 0 25px 0 0;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon img {
    width: 100%;
    height: auto;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .main {
    letter-spacing: 6px;
    line-height: 1.1;
    font-size: 2.75vw;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .main .sp-disblock {
    display: block;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .sub {
    margin: 1px 0 0 0;
    letter-spacing: 4px;
    font-size: 1.8vw;
  }
  .company-table .wrapper .inner ul.company-list li .right {
    width: 55%;
    padding: 0 0 0 40px;
  }
  .company-table .wrapper .inner ul.company-list li .right p {
    line-height: 2.4;
    font-size: 1.8vw;
    letter-spacing: 3px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .syncopate {
    font-weight: 500;
    font-family: "Syncopate", sans-serif;
    padding: 0 1px 0 1px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .iceberg {
    font-weight: 700;
    font-family: "Iceberg", cursive;
    font-size: 22px;
  }
  .company-table .wrapper .inner ul.company-list li .al-center {
    align-items: center;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .company-table {
    padding: 100px 5% 100px 5%;
  }
  .company-table .wrapper {
    position: relative;
    width: 96%;
    margin: 0 auto 0;
  }
  .company-table .wrapper:before {
    opacity: 0.7;
    z-index: 1;
  }
  .company-table .wrapper .inner {
    padding: 5px 0 0 0;
  }
  .company-table .wrapper .inner h2 {
    margin: -30px 0 0 0;
    padding: 0 0 0 35px;
  }
  .company-table .wrapper .inner h2 .cover {
    display: flex;
    align-items: center;
    line-height: 1.1;
  }
  .company-table .wrapper .inner h2 .cover .en {
    letter-spacing: 6px;
    font-size: 5vw;
    margin: 0 20px 0 0;
  }
  .company-table .wrapper .inner h2 .cover .en .sp-disblock {
    display: none;
  }
  .company-table .wrapper .inner h2 .cover .jp {
    letter-spacing: 6px;
    font-size: 2.2vw;
  }
  .company-table .wrapper .inner ul.company-list {
    padding: 60px 40px 60px 40px;
  }
  .company-table .wrapper .inner ul.company-list li {
    display: flex;
    position: relative;
    padding: 65px 15px 65px 15px;
  }
  .company-table .wrapper .inner ul.company-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, #909090 0%, #aaaaaa 100%);
    mix-blend-mode: hard-light;
    opacity: 0.4;
  }
  .company-table .wrapper .inner ul.company-list li .left {
    width: 55%;
    padding: 0 0px 0 0;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon {
    line-height: 0;
    width: 5vw;
    margin: 0 20px 0 0;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon img {
    width: 100%;
    height: auto;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .main {
    letter-spacing: 6px;
    line-height: 1.1;
    font-size: 2.75vw;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .main .sp-disblock {
    display: block;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .sub {
    margin: 1px 0 0 0;
    letter-spacing: 4px;
    font-size: 1.8vw;
  }
  .company-table .wrapper .inner ul.company-list li .right {
    width: 45%;
    padding: 0 0 0 30px;
  }
  .company-table .wrapper .inner ul.company-list li .right p {
    line-height: 2.4;
    font-size: 1.8vw;
    letter-spacing: 3px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .syncopate {
    font-weight: 500;
    font-family: "Syncopate", sans-serif;
    padding: 0 1px 0 1px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .iceberg {
    font-weight: 700;
    font-family: "Iceberg", cursive;
    font-size: 22px;
  }
  .company-table .wrapper .inner ul.company-list li .al-center {
    align-items: center;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .company-table {
    padding: 100px 5% 70px 5%;
  }
  .company-table .wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
  }
  .company-table .wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #373737 0%, #272727 100%);
    mix-blend-mode: difference;
    opacity: 0.7;
    z-index: 1;
  }
  .company-table .wrapper .inner {
    padding: 5px 0 0 0;
    position: relative;
    z-index: 2;
  }
  .company-table .wrapper .inner h2 {
    margin: -30px 0 0 0;
    padding: 0 0 0 6%;
  }
  .company-table .wrapper .inner h2 .cover {
    display: block;
    line-height: 1.1;
  }
  .company-table .wrapper .inner h2 .cover .en {
    letter-spacing: 3px;
    font-size: 9vw;
    margin: 0 0px 10px 0;
  }
  .company-table .wrapper .inner h2 .cover .jp {
    letter-spacing: 6px;
    font-size: 5vw;
  }
  .company-table .wrapper .inner ul.company-list {
    padding: 60px 0px 60px 0px;
  }
  .company-table .wrapper .inner ul.company-list li {
    display: block;
    padding: 65px 30px 65px 30px;
  }
  .company-table .wrapper .inner ul.company-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, #909090 0%, #aaaaaa 100%);
    mix-blend-mode: hard-light;
    opacity: 0.4;
  }
  .company-table .wrapper .inner ul.company-list li .left {
    width: 100%;
    padding: 0 0px 0 0;
    display: flex;
    align-items: center;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon {
    line-height: 0;
    width: 9vw;
    margin: 0 15px 0 0;
  }
  .company-table .wrapper .inner ul.company-list li .left .icon img {
    width: 100%;
    height: auto;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .main {
    letter-spacing: 4px;
    line-height: 1.2;
    font-size: 6vw;
  }
  .company-table .wrapper .inner ul.company-list li .left .catch .sub {
    margin: 1px 0 0 0;
    letter-spacing: 4px;
    font-size: 3.75vw;
  }
  .company-table .wrapper .inner ul.company-list li .right {
    width: 100%;
    padding: 20px 0 0 20px;
  }
  .company-table .wrapper .inner ul.company-list li .right p {
    line-height: 2.4;
    font-size: 4.25vw;
    letter-spacing: 3px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .syncopate {
    font-weight: 500;
    font-family: "Syncopate", sans-serif;
    padding: 0 1px 0 1px;
  }
  .company-table .wrapper .inner ul.company-list li .right p .iceberg {
    font-weight: 700;
    font-family: "Iceberg", cursive;
    font-size: 22px;
  }
  .company-table .wrapper .inner ul.company-list li .al-center {
    align-items: center;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 HISTORY 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.history .separate {
  background: linear-gradient(45deg, rgb(160, 160, 160) 0%, rgb(24, 24, 24) 100%);
  width: 100%;
  height: 6px;
}
.history .wrapper {
  position: relative;
  width: 92%;
  margin: 80px auto 0;
  padding: 0 0 50px 0;
}
.history .wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #373737 0%, #303030 100%);
  mix-blend-mode: difference;
  opacity: 0.7;
  z-index: 1;
}
.history .wrapper .inner {
  padding: 5px 0 0 0;
  position: relative;
  z-index: 2;
}
.history .wrapper .inner h2 {
  margin: -30px 0 0 0;
  padding: 0 0 0 50px;
}
.history .wrapper .inner h2 .cover {
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.history .wrapper .inner h2 .cover .en {
  font-family: "Syncopate", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 6px;
  font-size: 62px;
  margin: 0 20px 0 0;
}
.history .wrapper .inner h2 .cover .jp {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  color: #fff;
  letter-spacing: 6px;
  font-size: 24px;
}
.history .wrapper .inner table {
  width: calc(100% - 100px);
  margin: 60px auto 0;
}
.history .wrapper .inner table tbody tr th {
  font-family: "Syncopate", sans-serif;
  letter-spacing: 3px;
  font-size: 20px;
  padding: 25px 20px 25px 20px;
}
.history .wrapper .inner table tbody tr td {
  letter-spacing: 2px;
  line-height: 2;
  font-size: 18px;
  padding: 25px 60px 25px 60px;
}
.history .wrapper .inner table tbody tr:nth-child(2n-1) {
  color: rgb(201, 201, 201);
}
.history .wrapper .inner table tbody tr:nth-child(2n) {
  background: linear-gradient(45deg, #272727 0%, #1f1e1e 100%);
  color: rgb(232, 232, 232);
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .history .separate {
    width: 100%;
    height: 6px;
  }
  .history .wrapper {
    width: 92%;
    margin: 80px auto 0;
    padding: 0 0 50px 0;
  }
  .history .wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #373737 0%, #303030 100%);
    mix-blend-mode: difference;
    opacity: 0.7;
    z-index: 1;
  }
  .history .wrapper .inner {
    padding: 5px 0 0 0;
    position: relative;
    z-index: 2;
  }
  .history .wrapper .inner h2 {
    margin: -30px 0 0 0;
    padding: 0 0 0 6%;
  }
  .history .wrapper .inner h2 .cover {
    display: flex;
  }
  .history .wrapper .inner h2 .cover .en {
    letter-spacing: 5px;
    font-size: 8vw;
    margin: 0 10px 0 0;
  }
  .history .wrapper .inner h2 .cover .jp {
    letter-spacing: 6px;
    font-size: 4.25vw;
  }
  .history .wrapper .inner table {
    width: 100%;
    margin: 60px auto 0;
  }
  .history .wrapper .inner table tbody tr th {
    letter-spacing: 3px;
    font-size: 4vw;
    padding: 25px 10px 25px 10px;
    width: 25%;
  }
  .history .wrapper .inner table tbody tr td {
    letter-spacing: 2px;
    line-height: 1.8;
    font-size: 3.5vw;
    padding: 25px 10px 25px 10px;
    width: 75%;
  }
  .history .wrapper .inner table tbody tr:nth-child(2n-1) {
    color: rgb(201, 201, 201);
  }
  .history .wrapper .inner table tbody tr:nth-child(2n) {
    background: linear-gradient(45deg, #272727 0%, #1f1e1e 100%);
    color: rgb(232, 232, 232);
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* breakpoints *//*# sourceMappingURL=style.css.map */