@charset "UTF-8";
/**
 * ヘッダー
 */
.header {
  z-index: 5000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__sitename {
  line-height: 1;
}
.header__sitename__logo {
  display: block;
  width: 145px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  font-size: 0;
}
.header__trigger {
  display: none;
}
.header__menu__list {
  display: flex;
  font-weight: 700;
}
.header__menu__item__link {
  display: flex;
  color: var(--gray-900);
  text-decoration: none;
}
.header__menu__item__link--active {
  color: var(--primary-color);
}
.header__menu__item__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--button-color);
  color: var(--gray-000);
  width: 100%;
}
.header__menu__item__button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--gray-000);
  color: var(--gray-900);
}
@media screen and (min-width: 900px) {
  .header {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 24px;
    position: fixed;
    top: 24px;
  }
  .header--no-fixed {
    position: absolute;
  }
  .header__inner {
    align-items: center;
    width: 100%;
    max-width: 960px;
    min-width: 800px;
    min-height: 72px;
    padding: 0 8px 0 32px;
    background: var(--gray-000);
    border-radius: 72px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  .header__sitename__logo {
    background-image: url(../images/logo_green.svg);
  }
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header__menu__list {
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
  }
  .header__menu__item {
    padding: 0 clamp(0.375rem, 0.337962963rem + 0.1851851852vw, 0.5rem);
  }
  .header__menu__item__link {
    align-items: center;
    justify-content: center;
    font-size: clamp(0.625rem, 0.587962963rem + 0.1851851852vw, 0.75rem);
  }
  .header__menu__item__button {
    padding: 8px;
    font-size: clamp(0.6875rem, 0.6319444444rem + 0.2777777778vw, 0.875rem);
  }
}
@media screen and (min-width: 1000px) {
  .header__menu__item {
    padding: 0 clamp(0.25rem, 0.1759259259rem + 0.3703703704vw, 0.5rem);
  }
  .header__menu__item__button {
    font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
  }
}
@media screen and (min-width: 1200px) {
  .header__menu__item {
    padding: 0 8px;
  }
  .header__menu__item__link {
    font-size: clamp(0.1875rem, 0.0023148148rem + 0.9259259259vw, 0.8125rem);
  }
  .header__menu__item__button {
    padding: 8px;
    font-size: clamp(0.1875rem, -0.0162037037rem + 1.0185185185vw, 0.875rem);
  }
}
@media screen and (min-width: 1400px) {
  .header__menu__item__link {
    font-size: clamp(0.0625rem, -0.1412037037rem + 1.0185185185vw, 0.75rem);
  }
  .header__menu__item__button {
    padding: 8px 16px;
    font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
  }
}
@media screen and (max-width: 899px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
  }
  .header__inner {
    align-items: center;
    width: 100%;
    padding: 16px;
  }
  .header__sitename__logo {
    background-image: url(../images/logo_white.svg);
  }
  .header__button {
    display: flex;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 5001;
  }
  .header__button__inner {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 9px;
    left: 9px;
    transform: none;
    transition: transform 0.2s ease;
  }
  .header__button__bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #212121;
    border-radius: 0.5px;
    position: absolute;
    left: 0;
  }
  .header__button__bar--top {
    top: 14px;
    transform: translateY(-9px);
    transition: transform 0.2s ease 0.2s;
  }
  .header__button__bar--middle {
    top: 14px;
  }
  .header__button__bar--bottom {
    bottom: 14px;
    transform: translateY(9px);
    transition: transform 0.2s ease 0.2s;
  }
  .header__menu {
    width: 70%;
    max-width: 300px;
    min-width: 200px;
    height: 100dvh;
    padding: 90px 0 52px;
    background-color: #f1f1f1;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 2;
  }
  .header__menu__list {
    flex-flow: wrap column;
  }
  .header__menu__item {
    padding: 8px 0;
  }
  .header__menu__item--button {
    padding: 8px 16px;
  }
  .header__menu__item__link {
    padding: 8px 16px;
  }
  .header__trigger:checked ~ .header__nav .header__button__inner--top {
    transform: rotate(45deg);
    transition: transform 0.2s ease 0.2s;
  }
  .header__trigger:checked ~ .header__nav .header__button__inner--bottom {
    transform: rotate(-45deg);
    transition: transform 0.2s ease 0.2s;
  }
  .header__trigger:checked ~ .header__nav .header__button__bar--top {
    transform: none;
    transition: transform 0.2s ease;
  }
  .header__trigger:checked ~ .header__nav .header__button__bar--middle {
    display: none;
  }
  .header__trigger:checked ~ .header__nav .header__button__bar--bottom {
    transform: none;
    transition: transform 0.2s ease;
  }
  .header__trigger:checked ~ .header__nav .header__menu {
    transform: translateX(0);
  }
}

@media screen and (max-width: 899px) {
  .customize-support .header {
    top: 46px;
  }
  .customize-support .header__button {
    top: 54px;
  }
}

/**
 * ページヘッダー
 */
.page_header {
  padding: 80px 24px 40px;
  background: var(--primary-color) url(../images/page_header_bg.png) center 0/auto 100% no-repeat;
  position: relative;
  overflow: hidden;
}
.page_header--simple {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  gap: 48px;
  padding: 48px 24px 40px;
}
.page_header__logo {
  line-height: 1;
}
.page_header__logo__link {
  display: block;
  width: 145px;
  height: 30px;
  background: url(../images/logo_white.svg) center/contain no-repeat;
  cursor: pointer;
  font-size: 0;
}
@media screen and (min-width: 900px) {
  .page_header {
    padding: 176px 24px 56px;
  }
  .page_header--simple {
    gap: 64px;
    padding: 80px 24px 56px;
  }
}
@media screen and (min-width: 1200px) {
  .page_header {
    background-size: 100%;
  }
}
.page_header__title {
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  color: var(--gray-000);
  font-size: 1.125rem;
  text-align: center;
  position: relative;
}
.page_header__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--gray-000);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
@media screen and (min-width: 1200px) {
  .page_header__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .page_header__title {
    font-size: 1.5rem;
  }
}

/**
 * フッター
 */
.footer {
  padding: 24px 0 128px;
  background-color: var(--sec-deep-color);
}
.footer__nav {
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
  text-align: center;
}
.footer__nav__item__link {
  display: block;
  padding: 4px 0;
  color: var(--gray-000);
  text-decoration: none;
}
.footer__copyright {
  margin-top: 16px;
  color: var(--gray-000);
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 24px;
  }
  .footer__nav {
    display: flex;
    justify-content: center;
  }
  .footer__nav__item {
    margin: 0 8px;
  }
}

/**
 * CTA
 */
.cta {
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  background: var(--primary-color);
  color: var(--gray-000);
}
.cta__inner {
  display: flex;
  align-items: center;
  flex-flow: wrap column;
  width: 100%;
}
.cta__content {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  width: 100%;
}
.cta__content__title {
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.cta__content__logo {
  max-width: 270px;
}
.cta__content__buttons {
  order: 4;
  display: flex;
  flex-flow: wrap row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}
.cta__content__buttons__item {
  display: flex;
  flex-flow: wrap column;
  padding: 24px 8px 0;
}
.cta__content__buttons__item--online {
  width: 100%;
  max-width: none;
  margin-top: 32px;
  padding: 0;
  text-align: center;
}
.cta__content__buttons__item__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .cta__content__buttons__item__button {
    padding: 0 24px;
  }
}
.cta__content__buttons__item__button {
  background: var(--button-color);
  color: var(--gray-000);
}
.cta__content__buttons__item__button--inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .cta__content__buttons__item__button--inquiry {
    padding: 0 24px;
  }
}
.cta__content__buttons__item__button--inquiry {
  background: var(--gray-000);
  color: var(--gray-900);
}
.cta__content__buttons__item__link {
  color: var(--gray-000);
}
.cta__content__buttons__item__copy {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0 8px;
  align-self: center;
  font-size: 0.6875rem;
  position: relative;
}
.cta__content__buttons__item__copy:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 80%;
  background: var(--gray-000);
  position: absolute;
  top: 1px;
  left: 0;
  transform: rotate(-20deg);
}
@media screen and (min-width: 400px) {
  .cta__content__buttons__item__copy:before {
    height: 95%;
    top: 0;
  }
}
.cta__content__buttons__item__copy:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 80%;
  background: var(--gray-000);
  position: absolute;
  top: 1px;
  right: 0;
  transform: rotate(20deg);
}
@media screen and (min-width: 400px) {
  .cta__content__buttons__item__copy:after {
    height: 95%;
    top: 0;
  }
}
@media screen and (min-width: 400px) {
  .cta__content__buttons__item__copy {
    margin-bottom: 8px;
    padding: 0 12px;
    font-size: 0.8125rem;
  }
}
.cta__image {
  margin-top: 24px;
  text-align: center;
}
.cta__image img {
  width: calc(100% - 40px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 64px 16px;
  }
  .cta__content__title {
    margin-bottom: 24px;
  }
  .cta__content__title__logo {
    width: 100%;
    max-width: 349px;
  }
  .cta__content__buttons__item {
    width: 100%;
    max-width: 13.75rem;
  }
  .cta__content__buttons__item--online {
    max-width: none;
  }
  .cta__content__buttons__item__button {
    width: 100%;
  }
  .cta__image img {
    width: auto;
    max-width: 370px;
  }
}
@media screen and (min-width: 1000px) {
  .cta__inner {
    flex-flow: wrap row;
    justify-content: center;
    max-width: 1280px;
  }
  .cta__content {
    width: auto;
  }
  .cta__content__buttons__item {
    max-width: 13.125rem;
  }
  .cta__content__buttons__item--online {
    max-width: none;
  }
  .cta__image {
    margin-top: 0;
    padding-left: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__content__title {
    font-size: 1.375rem;
  }
  .cta__image {
    padding-left: 32px;
  }
}
@media screen and (min-width: 1400px) {
  .cta__content__title {
    font-size: 1.5rem;
  }
  .cta__content__buttons__item {
    max-width: 13.75rem;
  }
  .cta__content__buttons__item--online {
    max-width: none;
  }
  .cta__image {
    padding-left: 64px;
  }
}

/**
 * セクション：「GRATICA」導入までの流れ
 */
.section-flow {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  .section-flow {
    padding: 64px 16px;
  }
}
@media screen and (min-width: 1000px) {
  .section-flow {
    padding: 80px 24px;
  }
}
.section-flow {
  background: var(--gray-100);
}
.section-flow__inner {
  width: 100%;
  max-width: 1280px;
}
.section-flow__title {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section-flow__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .section-flow__title {
    font-size: 1.5rem;
  }
}
.section-flow__list {
  display: flex;
  flex-flow: wrap column;
  margin-top: 24px;
}
.section-flow__list__item {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}
.section-flow__list__item--delim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap row;
  text-align: center;
}
.section-flow__list__item--delim h3 {
  align-self: center;
  padding: 16px 64px;
  background: var(--primary-color);
  border-radius: 0.5rem;
  color: var(--gray-000);
}
.section-flow__list__item__image {
  width: 64px;
  height: auto;
}
.section-flow__list__item__content {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.section-flow__list__item__content__title {
  margin: 0 0 8px;
}
.section-flow__list__item__content__text {
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.section-flow__list__item__content__text small {
  display: block;
  margin-top: 16px;
  font-size: clamp(0.625rem, 0.587962963rem + 0.1851851852vw, 0.75rem);
}
.section-flow__list__item__content__list {
  display: inline-flex;
  flex-flow: wrap column;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.section-flow__list__item__content__list__item:last-of-type {
  margin-top: 8px;
}
.section-flow__list__item__content__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--gray-000);
  color: var(--gray-900);
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .section-flow__list {
    flex-flow: wrap row;
    justify-content: center;
  }
  .section-flow__list__item {
    width: 17%;
    padding: 8px 16px;
  }
  .section-flow__list__item--delim {
    writing-mode: vertical-rl;
    width: auto;
    max-width: 15%;
    padding: 8px 16px;
  }
  .section-flow__list__item--delim h3 {
    width: auto;
    height: 100%;
    padding: 16px;
  }
  .section-flow__list__item__image {
    width: auto;
  }
  .section-flow__list__item__content {
    width: 100%;
    text-align: center;
  }
  .section-flow__list__item__content__title {
    margin: 8px 0;
  }
  .section-flow__list__item__content__list__item:last-of-type {
    margin-top: 16px;
  }
  .section-flow__list__item__content__button {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: clamp(0.75rem, 0.6759259259rem + 0.3703703704vw, 1rem);
  }
}

/**
 * セクション：導入事例
 */
.section-cases {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  padding: 40px 16px;
}
.section-cases__inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: wrap column;
  align-items: center;
}
.section-cases__title {
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  position: relative;
}
.section-cases__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
@media screen and (min-width: 1200px) {
  .section-cases__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .section-cases__title {
    font-size: 1.5rem;
  }
}
.section-cases__title {
  margin-top: 32px;
}
.section-cases__description {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section-cases__description {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .section-cases__description {
    font-size: 1.5rem;
  }
}
.section-cases__description {
  margin-top: 32px;
}
.section-cases__index {
  margin-top: 24px;
  padding: 8px;
  border: 4px solid var(--gray-300);
  border-radius: 1.5rem;
}
.section-cases__index__list {
  display: flex;
  flex-wrap: wrap;
}
.section-cases__index__list__item {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 10px;
}
.section-cases__index__list__item:nth-child(2n+1) {
  padding: 10px 35px;
}
.section-cases__index__list__item__image {
  width: 100%;
}
.section-cases__community__list {
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
}
.section-cases__community__item {
  width: 50%;
  padding: 8px;
}
.section-cases__community__item__link {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--gray-000);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--gray-900);
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.section-cases__community__item__link:hover img {
  transform: scale(1.1);
}
.section-cases__community__item__image {
  width: 100%;
  overflow: hidden;
}
.section-cases__community__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.section-cases__community__item__text {
  padding: 8px;
}
.section-cases__community__item__text__description {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.section-cases__community__footer {
  margin-top: 56px;
  color: var(--primary-color);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-cases {
    padding: 64px 16px;
  }
  .section-cases__title {
    margin-top: 48px;
  }
  .section-cases__description {
    margin-top: 48px;
  }
  .section-cases__description span {
    display: block;
  }
  .section-cases__index {
    max-width: 63.75rem;
    margin-top: 48px;
    padding: 24px 16px;
  }
  .section-cases__index__list {
    justify-content: center;
  }
  .section-cases__index__list__item {
    width: 16%;
    margin: 0 0.2% 0.2%;
    padding: 0;
  }
  .section-cases__index__list__item:nth-child(2n+1) {
    padding: 0;
  }
  .section-cases__community__item {
    width: 33.333%;
    max-width: 324px;
    padding: 32px;
  }
  .section-cases__community__item__text {
    padding: 24px;
  }
  .section-cases__community__item__text__description span {
    display: inline-block;
  }
}
@media screen and (min-width: 1000px) {
  .section-cases {
    padding: 80px 24px;
  }
}

/**
 * フッターフロート
 */
.footer-float {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.1s linear 0.2s;
}
.footer-float--active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease 0.1s, visibility 0.1s;
}
.footer-float__text {
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
  font-weight: 700;
}
.footer-float__button {
  padding: 8px 48px 0;
}
.footer-float__button__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
  border-radius: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
  font-size: clamp(0.75rem, 0.7314814815rem + 0.0925925926vw, 0.8125rem);
  background: var(--button-color);
  color: var(--gray-000);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-float {
    display: none;
  }
}

/**
 * AWARD フロートバナー
 */
.award-float {
  display: block;
  width: 150px;
  background: #fff;
  line-height: 0;
  position: fixed;
  bottom: 100px;
  left: 8px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.1s linear 0.1s;
}
.award-float--active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease 0.1s, visibility 0.1s;
}
.award-float__link {
  display: block;
  box-shadow: 0 0 7px rgba(170, 170, 170, 0.8);
}
.award-float__link img {
  width: 100%;
}
.award-float__close {
  width: 24px;
  height: 24px;
  background-color: var(--gray-000);
  border: 1px solid var(--gray-900);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(170, 170, 170, 0.8);
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -10px;
}
.award-float__close__icon {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.award-float__close__icon:before, .award-float__close__icon:after {
  content: "";
  background-color: var(--gray-900);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.award-float__close__icon:before {
  width: 14px;
  height: 2px;
}
.award-float__close__icon:after {
  width: 2px;
  height: 14px;
}
@media screen and (min-width: 768px) {
  .award-float {
    width: 180px;
    bottom: 20px;
    left: 20px;
  }
}

/**
 * オーバーレイ
 */
.footer-overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(102, 102, 102, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
.footer-overlay--active {
  display: block;
}

/*# sourceMappingURL=common.css.map */
