@charset "UTF-8";

* {
  min-inline-size: 0
}

:root {
  --l_width: 1200px;
  --m_width: 1000px;
  --s_width: 800px;
  --font--en: "Roboto", sans-serif;
  --font--jp: "Noto Sans JP", serif;
  --header__height: 9rem;
  --center_percent: 90%;
  --section_margin: 12.5em;
  --black: #222222;
  --main--blue: #154871;
  --main--light-blue: #0076C3;
  --easing_1: cubic-bezier(0.65, 0.05, 0.36, 1);
  --easing_2: cubic-bezier(0.79, 0.14, 0.15, 0.86);
  --hover_opacity: 0.5;
  --duration__common: .2s;
  --duration--200: .2s;
  --duration--400: .4s;
  --duration--600: .6s;
  --duration--800: .8s;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header__height) + 4em);
}

body {
  /* font-feature-settings: "palt"; */
  font-family: var(--font--jp);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
  color: var(--text--color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.container--L {
  max-width: var(--l_width);
  width: var(--center_percent);
  margin: 0 auto;
}

.container--M {
  max-width: var(--m_width);
  width: var(--center_percent);
  margin: 0 auto;
}

.container--S {
  max-width: var(--s_width);
  width: var(--center_percent);
  margin: 0 auto;
}

section {
  margin-block: var(--section_margin);
}

.from--tb {
  display: none;
}

.from--sp {
  display: none;
}

.indention p+p {
  margin-top: 1em;
}

.indention span {
  display: inline-block;
}

.ff--en {
  font-family: var(--font--en);
  line-height: 1;
  font-weight: normal;
}

.fs--12 {
  font-size: 1.2rem;
}

.fs--14 {
  font-size: 1.4rem;
}

.fw--normal {
  font-weight: normal;
}

.fw--300 {
  font-weight: 300;
}

.fw--500 {
  font-weight: 500;
}

.fw--700 {
  font-weight: 700;
}

.fw--400 {
  font-weight: 400;
}

.lh--100 {
  line-height: 1.00;
}

.lh--125 {
  line-height: 1.25;
}

.lh--150 {
  line-height: 1.5;
}

.lh--175 {
  line-height: 1.75;
}

.section__margin--M {
  margin-block: 7.5em;
}

.mt--1em {
  margin-top: 1em;
}

.mt--80 {
  margin-top: 5em;
}

.mt--120 {
  margin-top: 7.5em;
}

.mb--40 {
  margin-bottom: 2.5em;
}

.mb--64 {
  margin-bottom: 4em;
}

.mb--80 {
  margin-bottom: 5em;
}

.mb--120 {
  margin-bottom: 7.5em;
}

.uppercase {
  text-transform: uppercase;
}

/*===============header===============*/
/*===============/header===============*/

.header {
  background-color: #ffffffE6;
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  height: var(--header__height);
  padding-inline: 5%;
}

.header__wrap {
  max-width: var(--l_width);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 2em;
}

.header__logo {
  position: relative;
  z-index: 5;
}

.header__logo__link {
  display: flex;
  transition: var(--duration__common);
}

.header__logo__img {
  width: 30rem;
}

.header__nav__wrap {
  display: flex;
  align-items: center;
  gap: 2em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.nav__item {
  display: flex;
  position: relative;
}

.nav__item__link {
  /* font-size: clamp(1em, 1.04vw, 1.25em); */
  line-height: 1;
  transition: var(--duration__common);
}

.nav__item__link:hover {
  opacity: var(--hover_opacity);
}

.nav__sns__list {
  display: flex;
  gap: 1.5em;
}

.nav__sns__list .footer__sns__item {
  width: 1em;
}

.header__nav__btn__wrap {
  display: none;
  z-index: 9;
}

/*===============main===============*/
/*=====common=====*/

/* =========== ホバーアニメーション =========== */
.hover--fade {
  transition: var(--duration__common);
}

.hover--fade:hover {
  opacity: var(--hover_opacity);
}

/* ========== /ホバーアニメーション/ ========== */
/* =========== 出現アニメーション =========== */

.target {
  transition: .6s var(--easing_1);
}

.target.fade--blur {
  transition: var(--duration--600) var(--easing_1);
}

.fv__target {
  transition: .6s var(--easing_2);
}

.fade--blur {
  opacity: 0;
  filter: blur(5px);
}

.fade--blur.show {
  opacity: 1;
  filter: blur(0);
}

.fv__target.fade--blur.show {
  opacity: 1;
  filter: blur(0) drop-shadow(0 0 20px #00000080);
}

.target.fade--up {
  opacity: 0;
  transform: translateY(3rem);
  transition: .6s var(--easing_2);
}

.fade--up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== /出現アニメーション/ ========== */
/* =========== セクションタイトル =========== */

.section__title__wrap {
  display: flex;
  gap: 1em;
}

.section__title__wrap.--v--left {
  flex-direction: column;

  align-items: flex-start;
}

.section__title--main {
  font-size: 2.5em;
  line-height: 1;
  color: var(--main--blue);
}

.section__title--sub {
  font-size: 1.5em;
  color: var(--main--light-blue);
}

/* ========== /セクションタイトル/ ========== */
/* =========== ボタンスタイル =========== */

.common__btn__wrap {
  display: flex;
}

.common__btn {
  background-color: #ffffff;
  border: 1px solid var(--main--blue);
  color: var(--main--blue);
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  gap: 1em;
  border-radius: 0.5em;
}

.common__btn::after {
  content: '';
  width: 1em;
  height: 1em;
  /* background-color: violet; */
  background-image: url(../img/common/icon__arrow--blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.common__btn__arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 2em; */
}

.common__btn__arrow img {
  max-width: 18rem;
  width: 18rem;
}

.common__btn__wrap.--right {
  justify-content: flex-end;
}

/* ========== /ボタンスタイル/ ========== */
/* =========== その他 =========== */

.text--center {
  text-align: center;
}

.--fade-in {
  opacity: 0;
  transition: var(--duration--800);
}

.--fade-up {
  opacity: 0;
  transform: translateY(2em);
  transition: var(--duration--800);
}

/* ========== /その他/ ========== */
/*=====/common=====*/
/*=====top=====*/

.top__works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4em 2em;
}

.top__works__item {
  flex-basis: calc((100% - 4em) / 3);
}

.top__works__item__img {
  width: 100%;
}

.top__works__item__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.top__works__item__detail {
  margin-top: 0.5em;
}

.top__works__item__table {
  color: #00000080;
  font-size: 0.875em;
}

.top__works__item__table tr {
  display: flex;
  gap: 1em;
}

.top__works__item__table tr td:nth-child(1) {
  width: 5em;
  flex-shrink: 0;
}

/*=====/top=====*/
/*=====works-single=====*/


.works-single__fv__title {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  color: #ffffff;
  background-color: #154871E6;
  text-align: center;
  font-size: clamp(2em, 4vw, 3em);
  /* line-height: 2; */
  height: var(--header__height);
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.8s;
}

.works-single__fv__title.tb-only {
  display: none;
}

.header.is_scrolled .works-single__fv__title {
  font-size: min(1.5em, 2.5vw);
  /* padding-block: 0.25em; */
  height: 2em;
}


/* .page--works-single>section:nth-child(1) {
  margin-top: 0;
} */

.works-single__fv {
  /* margin-top: calc((var(--header__height) * 2) + 5em) */
  margin-top: calc((var(--header__height) * 2) + 0em)
}

.works-single__fv__img {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
}

.works-single__fv__img__item {
  width: 100%;
  max-height: 80rem;
  object-fit: cover;
}

.works-single__fv__img__mascot {
  position: absolute;
  width: min(20%, 40rem);
  right: 5%;
  bottom: -15%;
}

.works-single__news__item {
  /* font-size: 1.4rem; */
  border-bottom: 1px solid #00000080;
  padding-block: 1em;
}

.works-single__news__item:first-child {
  border-top: 1px solid #00000080;
}

.works-single__news__item__date {
  color: #00000080;
  font-size: 0.875em;
}

.works-single__process__deco {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin-top: calc(-4em - 2.5em - 2.5em); */
}

.works-single__process__yamadakun {
  /* background-color: tomato; */
  width: 60%;
  z-index: 2;
}

.works-single__process__yamadakun__text {
  /* background-color: red; */
  position: absolute;
  width: 40%;
  right: 0;
}

.works-single__process__img {
  border: 5px solid var(--main--blue);
  border-radius: 2em;
  padding: 2em;
}

.works-single__process__img img {
  width: 100%;
}





/* --- 工事内容レイアウト --- */
.detail__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em 3em;
}

.detail__item__title {
  background-color: var(--main--blue);
  color: #ffffff;
  font-size: 1.25em;
  padding: 0.5em 0.75em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.detail__item__text {
  margin-top: 1em;
  font-size: 0.875em;
  line-height: 1.75;
}

.detail__item__slider .splide__slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.detail__item__slider .splide__pagination {
  display: flex;
  gap: 1rem;
  margin-top: 1em;
}

.detail__item__slider .splide__pagination li {
  display: flex;
}

.detail__item__slider .splide__pagination__page {
  background-color: #D9D9D9;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
}

.detail__item__slider .splide__pagination__page.is-active {
  background: var(--main--blue);
}

.works-single__about__table {
  width: 100%;
  font-size: 1.4rem;
}

.works-single__about__table tr {
  display: flex;
  gap: 1em;
  border-bottom: 1px solid #00000080;
  padding-block: 1em;
}

.works-single__about__table tr:first-child {
  border-top: 1px solid #00000080;
}

.works-single__about__table tr td:nth-child(1) {
  width: 10em;
  flex-shrink: 0;
  color: var(--main--blue);
}


.construction-staff__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
}

.construction-staff__item {
  background-color: #F9FAFB;
  flex-basis: calc((100% - 3em) / 4);
  display: flex;
  flex-direction: column;
  /* padding: 1em; */
}

.construction-staff__item__img {
  width: 100%;
  margin-bottom: 1em;
}

.construction-staff__item__name {
  padding-inline: 1rem;
}

.construction-staff__item__message {
  font-size: 1.2rem;
  margin-top: 0.5em;
  line-height: 1.75;
  padding: 0 1rem 1rem 1rem;
}


.works-single__progress__item {
  background-color: #F9FAFB;
}

.works-single__progress__item__img {
  width: 100%;
}

.works-single__progress__item__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.works-single__progress__item__content {
  padding: 1em;
}

.works-single__progress__item__date {
  font-size: 1.2rem;
}

.works-single__progress__item__title {
  font-size: 1.4rem;
  margin-top: 0.5em;
}

.works-single__progress__list .splide__pagination {
  margin-top: 1em;
  display: flex;
  gap: 0.5em;
}

.works-single__progress__list .splide__pagination li {
  display: flex;
}

.works-single__progress__list .splide__pagination__page {
  background: #D9D9D9;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
}

.works-single__progress__list .splide__pagination__page.is-active {
  background: var(--main--blue);
}









.works-single__method__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.works-single__method__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4em;
}

.works-single__method__item {
  flex-basis: calc((100% - 4em) / 2);
}

.works-single__method__item__text {
  font-size: 0.875em;
  margin-bottom: 0.5em;
}

.works-single__method__item__title {
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.works-single__method__item__img {
  width: 100%;
}

.works-single__method__item__img img {
  width: 100%;
  aspect-ratio: 7/4;
  object-fit: cover;
}

.works-single__method__btn__wrap {
  display: flex;
  justify-content: center;
  margin-top: 4em;
}


.contact__table {
  width: 100%;
}

.contact__table tbody {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact__table tr {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact__table tr td:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 1em;
}

.contact__table .need {
  flex-shrink: 0;
}

.need {
  color: red;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid red;
  border-radius: 4px;
  padding: 0.25em 0.5em;
}

.contact__table .any {
  flex-shrink: 0;
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.25em 0.5em;
}

.contact__table .tel__note {
  color: red;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.contact__table input[type=text],
.contact__table input[type=email],
.contact__table input[type=tel],
.contact__table input[type=file],
.contact__table select,
.contact__table textarea,
.privacypolicy_text {
  width: 100%;
  border-radius: 0.8rem;
  padding: 1em 1em;
  background-color: #fafafa;
}

.contact__table ::placeholder {
  font-size: 0.875em;
  color: #A2A2A2;
}

.privacypolicy_content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-end;
}

.privacypolicy_text {
  padding: 1em;
  font-size: 1.2rem;
  font-weight: 300;
  height: 15em;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.privacy_item_title {
  margin-bottom: 0.5em;
  text-decoration: underline;
}

.privacypolicy_check a {
  text-decoration: underline;
}

.privacypolicy_check label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.privacypolicy_check input[type="checkbox"] {
  width: 1.5em;
  height: 1.5em;
}

.contact__submit {
  position: relative;
  display: flex;
  align-items: center;
}

.contact__submit::before {
  content: '';
  width: 1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  right: 1em;
  z-index: 2;
  background-size: contain;
  background-image: url(../img/common/icon__arrow--blue.svg);
}

.contact__submit input {
  min-width: 18rem;
  background-color: #fff;
  border: 1px solid var(--main--blue);
  color: var(--main--blue);
  border-radius: 2em;
  padding: 0.5em 1em;
  display: flex;
  transition: .2s;
}

.contact__submit input:hover {
  color: var(--main--blue);
  background-color: #fff;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin-right: 0;
}

.privacypolicy_check .mwform-checkbox-field-text {
  display: flex;
  align-items: center;
}

.privacypolicy_check .mwform-checkbox-field-text .need {
  margin-left: 0.5em;
}











/*=====/works-single=====*/
/*===============/main===============*/
/*===============footer===============*/

.footer {
  /* background-color: #322B29; */
  background-color: #eee;

  padding-block: 5em;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 7.5em;
}

.footer__content {
  display: flex;
  justify-content: space-between;
}

.footer__header {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.footer__logo__link img {
  width: 30rem;
}

.footer__detail {
  line-height: 1.75;
}

.footer__detail .ff--en {
  line-height: 2;
}

.icon__map {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.icon__map::before {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url('../img/common/icon__pin--red.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer__link__wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 5em;
}

.footer__nav {
  display: flex;
  gap: 5em;
}

.footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.footer__nav__item {
  line-height: 1;
}

.icon__new-tab {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.icon__new-tab::after {
  content: '';
  width: 0.875em;
  height: 0.875em;
  background-image: url('../img/common/icon__new-tab--black.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer__sns__list {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}

.footer__sns__item {
  width: 1.25em;
  aspect-ratio: 1/1;
  display: flex;
}

.footer__sns__item img {
  width: 100%;
}

.footer__copyright {
  margin-top: auto;
  margin-left: auto;
  font-size: 1rem;
}



/*===============/footer===============*/


@media screen and (max-width: 900px) {
  :root {
    --header__height: 6rem;
    --section_margin: 8em;
  }

  body {
    font-size: 1.4rem;
  }

  section {
    margin: var(--section_margin) 0;
  }

  .from--tb {
    display: block;
  }

  .none--tb {
    display: none;
  }

  /*===============header===============*/


  .header {
    padding-inline: 1rem;
    width: 100%;
  }

  .header__logo__img {
    width: min(14rem, 50vw);
    width: min(25rem, 50vw);
  }

  .header__nav__wrap {
    background-color: #fff;
    /* background-color: tomato; */
    width: 100vw;
    height: 100dvh;
    padding-top: calc(var(--header__height) + 0em);
    /* padding-inline: 1em; */
    padding-bottom: 40dvh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: scroll;
    gap: 2em;
    visibility: hidden;
    opacity: 0;
    transition: all var(--duration__common) cubic-bezier(0.79, 0.14, 0.15, 0.86);
    flex-direction: column;
    align-items: center;
  }

  .header.open .header__nav__wrap {
    filter: drop-shadow(0 0 1rem #00000040);
    visibility: visible;
    opacity: 1;
  }

  .nav__list {
    padding-inline: 1em;
    width: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 1.25em;
    /* background-color: turquoise; */
  }

  .nav__item {
    width: 100%;
    flex-direction: column;
  }

  .nav__item__link {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding-block: 1.5em;
    display: flex;
    font-size: 1em;
  }

  .nav__sns__list .footer__sns__item {
    width: 1.5em;
  }

  .header__nav__btn__wrap {
    display: flex;
  }

  .header__nav__btn {
    cursor: pointer;
    width: calc(var(--header__height) * 0.8);
    height: calc(var(--header__height) * 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .header__nav__btn__line {
    position: absolute;
    background-color: var(--main--blue);
    width: 50%;
    left: 25%;
    height: 1px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  }

  .header__nav__btn__line:nth-child(1) {
    top: 33%;
  }

  .header__nav__btn__line:nth-child(3) {
    top: 66%;
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(2) {
    opacity: 0;
    transform: translateX(50%);
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  .works-single__fv__title {
    height: auto;
    line-height: 1.5;
    font-size: min(1.25em, 9vw);
    padding-block: 0.5em 1rem;
    padding: 0.5em 1rem;
  }

  .works-single__fv__title.tb-only {
    display: flex;
  }

  .works-single__fv__title.pc-only {
    display: none;
  }

  .header.is_scrolled .works-single__fv__title {
    font-size: min(1.25em, 9vw);
    height: auto;
    /* padding-block: 0.5em 1rem; */
  }

  /*===============main===============*/
  /*=====common=====*/
  /* =========== セクションタイトル =========== */

  .section__title--main {
    font-size: 2em;
  }

  .section__title--sub {
    font-size: 1.25em;
  }

  /* ========== /セクションタイトル/ ========== */
  /*=====/common=====*/
  /*=====top=====*/

  .top__works__item {
    flex-basis: calc((100% - 2em) / 2);
  }

  /*=====/top=====*/
  /*=====works-single=====*/

  .works-single__fv {
    margin-top: calc((var(--header__height) * 1) + 0em)
  }

  .works-single__fv__img__item {
    aspect-ratio: 3/2;
  }

  .works-single__fv__img__mascot {
    width: min(25%, 40rem);
  }

  .works-single__process__img {
    overflow: scroll;
  }

  .works-single__process__img img {
    min-width: 60rem;
  }

  .detail__list {
    grid-template-columns: 1fr;
    gap: 4em;
  }

  .works-single__about__table tr {
    flex-direction: column;
    gap: 0.5em;
  }

  .construction-staff__item {
    flex-basis: calc((100% - 2em) / 3);
  }

  .works-single__progress__item {
    flex-basis: calc((100% - 2em) / 2);
  }

  .works-single__method__item {
    flex-basis: 100%;
  }

  .works-single__method__btn__wrap {
    margin-top: 2em;
  }

  /*=====/works-single=====*/
  /*===============/main===============*/
  /*===============footer===============*/



  .footer {
    padding-block: 5em 2em;
  }

  .footer__wrap {
    gap: 5em;
  }

  .footer__content,
  .footer__link__wrap {
    display: contents;
  }

  .footer__nav {
    order: 1;
    width: 100%;
    flex-direction: column;
    gap: 2em;
  }

  .footer__nav__list {
    width: 100%;
  }

  .footer__header {
    order: 2;
  }

  .footer__copyright {
    order: 3;
    margin-left: 0;
    text-align: center;
  }

  /*===============/footer===============*/
}

@media screen and (max-width: 480px) {

  :root {
    --center_percent: 90%;
  }

  .from--sp {
    display: block;
  }

  .none--sp {
    display: none;
  }

  /*===============header===============*/

  .header {
    padding-inline: 1rem 0;
  }

  .header__wrap {
    gap: 0.5em;
  }

  /*===============/header===============*/
  /*===============main===============*/
  /*=====common=====*/
  /*=====/common=====*/
  /*=====top=====*/

  .top__works__item {
    flex-basis: 100%;
  }

  /*=====/top=====*/
  /*=====works-single=====*/


  .construction-staff__item {
    flex-basis: calc((100% - 1em) / 2);
  }


  .works-single__process__deco {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
  }

  .works-single__process__yamadakun {
    order: 2;
    width: 100%;
    margin-top: -2.5em;
  }

  .works-single__process__yamadakun__text {
    position: relative;
    width: 100%;
  }

  .works-single__process__img {
    padding: 1em;
  }

  .works-single__progress__item {
    flex-basis: 100%;
  }


  /*=====/works-single=====*/
  /*===============/main===============*/
  /*===============footer===============*/
  /*===============/footer===============*/
}