@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/* ぱんくず
---------------------------------------- */
.breadcrumbs {
  background-color: var(--colorBackGroundAccent);
}

/* 注文の流れ
---------------------------------------- */
#process {
  padding-bottom: 96px;
  background-color: var(--colorBackGroundAccent);
}
@media screen and (max-width: 899px) {
  #process {
    padding-bottom: 48px;
  }
}
#process .deadline {
  font-size: var(--size20px);
  font-weight: 700;
}
@media screen and (max-width: 589px) {
  #process .deadline {
    font-size: var(--size18px);
  }
}
#process .deadline span {
  display: inline-block;
  color: var(--colorTextSub);
  font-size: var(--size16px);
  padding: 4px 8px;
  background-color: var(--colorTextMain);
  margin-bottom: 8px;
}
#process .flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  #process .flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 32px;
  }
}
@media screen and (max-width: 589px) {
  #process .flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
  }
}
#process .flow .flowList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--colorBackGroundMain);
  border: 1px solid #CDCDCD;
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow .flowList {
    width: 50%;
    max-width: 360px;
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 589px) {
  #process .flow .flowList {
    width: 100%;
  }
}
#process .flow .flowList .flowListItem {
  position: relative;
  width: 12.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 0;
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem {
    width: 100%;
    gap: 8px;
    padding: 24px 0 16px;
  }
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem:not(:first-child) {
    padding: 24px 0 24px 8px;
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem:not(:first-child) {
    padding: 40px 0 16px 0;
  }
}
#process .flow .flowList .flowListItem:not(:last-of-type)::before, #process .flow .flowList .flowListItem:not(:last-of-type)::after {
  content: "";
  position: absolute;
  display: block;
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before, #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    width: 1px;
    height: calc(50% + 2px);
    border-left: 1px solid #CDCDCD;
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before, #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    height: 1px;
    border-bottom: 1px solid #CDCDCD;
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before, #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    width: calc(50% + 2px);
  }
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before {
    top: 0;
    right: 0;
    -webkit-transform: translateX(8px) rotate(-10deg);
            transform: translateX(8px) rotate(-10deg);
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before {
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(10px) rotate(6deg);
            transform: translateY(10px) rotate(6deg);
  }
}
@media screen and (max-width: 589px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::before {
    -webkit-transform: translateY(12px) rotate(6deg);
            transform: translateY(12px) rotate(6deg);
  }
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(8px) rotate(10deg);
            transform: translateX(8px) rotate(10deg);
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(10px) rotate(-6deg);
            transform: translateY(10px) rotate(-6deg);
  }
}
@media screen and (max-width: 589px) {
  #process .flow .flowList .flowListItem:not(:last-of-type)::after {
    -webkit-transform: translateY(12px) rotate(-6deg);
            transform: translateY(12px) rotate(-6deg);
  }
}
#process .flow .flowList .flowListItem .title {
  color: var(--colorTextAccent);
  font-size: var(--size20px);
  font-weight: 700;
}
#process .flow .flowList .flowListItem.suggestion {
  border-top: 2px dashed var(--colorSub);
  border-left: 2px dashed var(--colorSub);
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem.suggestion {
    border-bottom: 2px dashed var(--colorSub);
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem.suggestion {
    border-right: 2px dashed var(--colorSub);
  }
}
@media screen and (min-width: 900px) {
  #process .flow .flowList .flowListItem.suggestion::before, #process .flow .flowList .flowListItem.suggestion::after {
    border-left: 2px dashed var(--colorSub);
  }
}
@media screen and (max-width: 899px) {
  #process .flow .flowList .flowListItem.suggestion::before, #process .flow .flowList .flowListItem.suggestion::after {
    border-bottom: 2px dashed var(--colorSub);
  }
}
#process .flow .flowList .flowListItem.suggestion .title {
  color: var(--colorSub);
}
#process .flow .caseBox {
  position: relative;
  max-width: 472px;
  background-color: var(--colorBackGroundMain);
  border: 1px solid #CDCDCD;
  padding: 24px;
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow .caseBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 899px) {
  #process .flow .caseBox {
    max-width: unset;
  }
}
#process .flow .caseBox::before, #process .flow .caseBox::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  display: block;
  width: 24px;
  height: 24px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 900px) {
  #process .flow .caseBox::before, #process .flow .caseBox::after {
    left: 80px;
  }
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow .caseBox::before, #process .flow .caseBox::after {
    -webkit-transform: translateX(-100%) rotate(-90deg);
            transform: translateX(-100%) rotate(-90deg);
  }
}
@media screen and (max-width: 589px) {
  #process .flow .caseBox::before, #process .flow .caseBox::after {
    left: 50%;
    -webkit-transform: translate(-50%, 100%) rotate(180deg);
            transform: translate(-50%, 100%) rotate(180deg);
  }
}
#process .flow .caseBox::before {
  background-color: #CDCDCD;
}
@media screen and (min-width: 900px) {
  #process .flow .caseBox::before {
    top: 0;
  }
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow .caseBox::before {
    left: 0;
    top: 24px;
  }
}
@media screen and (max-width: 589px) {
  #process .flow .caseBox::before {
    bottom: 0;
  }
}
#process .flow .caseBox::after {
  background-color: var(--colorBackGroundMain);
}
@media screen and (min-width: 900px) {
  #process .flow .caseBox::after {
    top: 1px;
  }
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #process .flow .caseBox::after {
    top: 24px;
    left: 1px;
  }
}
@media screen and (max-width: 589px) {
  #process .flow .caseBox::after {
    bottom: 1px;
  }
}
#process .flow .caseBox .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--colorTextSub);
  font-size: var(--size20px);
  font-weight: 700;
  padding: 2px 8px;
  background-color: var(--colorSub);
  margin-bottom: 8px;
}
@media screen and (max-width: 589px) {
  #process .flow .caseBox .title {
    font-size: var(--size18px);
  }
}

/* お見積時のポイント
---------------------------------------- */
#quotationPoint {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (max-width: 899px) {
  #quotationPoint {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
#quotationPoint .detailList {
  margin-bottom: 48px;
}
@media screen and (max-width: 899px) {
  #quotationPoint .detailList {
    margin-bottom: 24px;
  }
}
#quotationPoint .resources .resourcesText {
  font-size: var(--size20px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 589px) {
  #quotationPoint .resources .resourcesText {
    font-size: var(--size18px);
  }
}
#quotationPoint .resources .btnLink {
  margin: 0 auto;
}

/* 梱包・設置方法
---------------------------------------- */
#packing {
  padding-bottom: 96px;
}
@media screen and (max-width: 899px) {
  #packing {
    padding-bottom: 48px;
  }
}
#packing .sectionLead .accentText {
  font-size: var(--size24px);
  font-weight: 700;
}
@media screen and (max-width: 589px) {
  #packing .sectionLead .accentText {
    font-size: var(--size20px);
  }
}
#packing .pointSection:not(:last-of-type) {
  padding-bottom: 96px;
}
@media screen and (max-width: 899px) {
  #packing .pointSection:not(:last-of-type) {
    padding-bottom: 48px;
  }
}
#packing .pointSection .labelTitle {
  margin-bottom: 24px;
}
#packing .pointSection .imageBoxContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 899px) {
  #packing .pointSection .imageBoxContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#packing .pointSection .imageBoxContainer .imageBox {
  width: calc((100% - 80px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 899px) {
  #packing .pointSection .imageBoxContainer .imageBox {
    width: 100%;
  }
}
#packing .pointSection .imageBoxContainer .imageBox .image {
  position: relative;
  background-color: #CDCDCD;
}
#packing .pointSection .imageBoxContainer .imageBox .image img {
  width: 100%;
  height: auto;
}
#packing .pointSection .imageBoxContainer .imageBox .title {
  color: var(--colorMain);
  font-size: var(--size28px);
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 899px) {
  #packing .pointSection .imageBoxContainer .imageBox .title {
    height: unset;
  }
}
@media screen and (max-width: 589px) {
  #packing .pointSection .imageBoxContainer .imageBox .title {
    font-size: var(--size20px);
  }
}
#packing .pointSection .imageBoxContainer .imageBox .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#packing .pointSection .imageBoxContainer .imageBox .text p:not(:last-of-type) {
  margin-bottom: 1em;
}
#packing .pointSection .pointList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  max-width: 888px;
  margin: 0 auto;
}
#packing .pointSection .pointList .pointListItem .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--size20px);
  font-weight: 700;
  border: 1px solid var(--colorTextMain);
  padding: 8px 24px;
  margin-bottom: 32px;
  margin-left: 12%;
  margin-right: auto;
}
@media screen and (max-width: 899px) {
  #packing .pointSection .pointList .pointListItem .title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 589px) {
  #packing .pointSection .pointList .pointListItem .title {
    font-size: clamp(0.875rem, 0.4369158879rem + 1.8691588785vw, 1.125rem);
    padding: 4px 16px;
  }
}/*# sourceMappingURL=order.css.map */