@charset "UTF-8";
/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(
    :not(
        html,
        iframe,
        canvas,
        img,
        svg,
        video,
        audio,
        input,
        textarea,
        select,
        button,
        meter,
        progress
      )
      :not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu,
summary {
  list-style: none;
}
ol {
  counter-reset: revert;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
:where(pre) {
  all: revert;
  box-sizing: border-box;
}
::placeholder {
  color: unset;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}
::-webkit-details-marker {
  display: none;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
共通
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
:root {
  --brand-orange: #f08231;
  --brand-green: #abe244;
  --black: #000;
  --light-blue: #08cac6;
  --bg-orange: #f0ebde;
  --max-width: 1260px;
  --max-width-2: 960px;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-style: normal;
}

p {
  line-height: 1.8;
  font-weight: 500;
}

.br-sp {
  display: none;
}

.bold700 {
  font-weight: 700;
}

.sec-h2 {
  text-align: center;
  font-size: 30px;
  color: var(--brand-orange);
  margin-bottom: 40px;
  font-weight: 500;
}
.sec-h2 span {
  font-size: 24px;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
  }

  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .sec-h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .sec-h2 span {
    font-size: 20px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sticky
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sticky {
  opacity: 0;
  visibility: hidden;
}

.sticky .sticky-btn-area {
  display: none;
}

@media screen and (max-width: 768px) {
  .sticky {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 12px 13px;
    background-color: rgba(68, 68, 68, 0.8);
    transition: 0.3s;
  }
  .sticky.active {
    opacity: 1;
    visibility: visible;
  }

  .sticky .text {
    margin-bottom: 2%;
    font-weight: 300;
  }

  .sticky p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .sticky .sticky-btn-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    width: 100%;
  }

  .sticky .sticky-btn {
    font-size: 17px;
    padding: 6px;
    text-align: center;
    color: #fff;
  }

  .sticky .sticky-btn.tel {
    background-color: var(--brand-orange);
  }

  .sticky .sticky-btn.tel::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    padding-right: 6px;
    content: url("../img/icon_tel.svg");
    background-size: contain;
    vertical-align: middle;
  }

  .sticky .sticky-btn.web {
    background-color: var(--light-blue);
  }

  .sticky .sticky-btn.web::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    padding-right: 6px;
    content: url("../img/icon_email.svg");
    background-size: contain;
    vertical-align: middle;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
header 
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.header {
  z-index: 10;
  position: sticky;
  top: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  padding-inline: 15px;
  align-content: center;
}

.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  line-height: 1;
}

.header__entry-btn {
  padding: 6px 30px 8px;
  border-radius: 60px;
  font-size: 18px;
  color: #fff;
  background-color: var(--light-blue);
  line-height: 1.4;
}

.header__entry-btn.tel {
  background-color: var(--brand-orange);
  margin-right: 6px;
}

.header__entry-btn.tel::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  padding-right: 8px;
  content: url("../img/icon_tel.svg");
  background-size: contain;
  vertical-align: middle;
}

.header__entry-btn.web.pc {
  display: none;
}

.header__entry-btn.web::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  padding-right: 8px;
  content: url("../img/icon_email.svg");
  background-size: contain;
  vertical-align: middle;
}

.header__entry-btn.tel.sp {
  display: none;
}

@media (max-width: 768px) {
  .header {
    padding: 18px;
    height: 72px;
  }

  .header__logo {
    width: 160px;
  }

  .header__entry-btn {
    padding: 8px 15px;
  }

  .header__contact {
    display: none;
  }

  .header__entry-btn.tel.sp {
    display: block;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
FV
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-fv {
  position: relative;
  padding: 120px 18px;
  background-color: var(--bg-orange);
  z-index: -2;
}

.fv__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.fv__img-pc {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 50%;
  transform: translateX(50%) translateX(228px);
  max-width: 920px;
  z-index: -1;
}

.fv__img-sp {
  display: none;
}

.fv__logo-img {
  display: block;
  max-width: 500px;
}

.fv__ttl {
  margin: 20px 0;
  line-height: 1.5;
  padding: 0 0 0 24px;
  font-size: 42px;
  font-weight: 600;
  display: inline-block;
  background-color: #fff;
}

.fv__txt {
  font-size: 26px;
}

.fv__txt .orange {
  color: var(--brand-orange);
}

@media (max-width: 1500px) {
  .fv__img-pc {
    max-width: 700px;
  }
}

@media (max-width: 1200px) {
  .fv__img-pc {
    right: 20px;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .fv__logo-img {
    max-width: 420px;
  }

  .fv__ttl {
    padding: 0 0 0 18px;
    line-height: 1.4;
    font-size: 34px;
  }

  .fv__txt {
    font-size: 24px;
    line-height: 1.6;
  }
}

@media (max-width: 1000px) {
  .fv__img-pc {
    display: none;
  }

  .fv__img-sp {
    display: block;
  }

  .sec-fv {
    padding: 40px 18px;
  }

  .fv__logo-img {
    max-width: 300px;
  }

  .fv__img-sp {
    margin: 18px 0;
  }

  .fv__ttl {
    margin: 12px 0;
  }
}

@media (max-width: 768px) {
  .fv__logo-img {
    max-width: 240px;
  }

  .fv__ttl {
    padding: 0 0 0 14px;
    font-size: 24px;
  }

  .fv__txt {
    font-size: 18px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
intro
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-intro {
  background-color: var(--brand-orange);
}
.intro__inner {
  display: flex;
  align-items: end;
  gap: 40px;
  margin: 0 auto;
  padding: 80px 18px 0;
  max-width: var(--max-width);
}

.intro__h2 {
  margin: 20px 0;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}

.intro__txtarea {
  margin-bottom: 120px;
}

.intro__txt {
  color: #fff;
}

.intro__img-pc {
  max-width: 580px;
}

.intro__img-sp {
  display: none;
}

@media (max-width: 1120px) {
  .intro__inner {
    gap: 0;
    padding: 52px 18px 0;
  }

  .intro__h2 {
    font-size: 26px;
  }

  .intro__txtarea {
    margin-bottom: 72px;
  }

  .intro__img-pc {
    display: none;
  }

  .intro__img-sp {
    display: block;
    max-width: 390px;
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .intro__inner {
    display: block;
    padding: 30px 18px 0;
  }

  .intro__h2 {
    font-size: 24px;
  }

  .intro__txtarea {
    margin-bottom: 0;
  }

  .intro__img-sp {
    margin: 30px auto 0;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
reason
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-reason {
  background: var(--bg-orange);
  padding: 110px 20px 80px;
}

.reason__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.reason__h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}

.reason__h2 span {
  color: #fff;
  background: var(--brand-orange);
  padding: 0 0 0 10px;
  margin-right: 7px;
}

.reason__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "img h3"
    "img txt";
  column-gap: 80px;
  align-items: center;
  margin-bottom: 54px;
}

.reason__img01,
.reason__img02 {
  grid-area: img;
  width: 100%;
  height: auto;
  display: block;
}

.reason__img01 {
  max-width: 400px;
  margin: 0 0 0 auto;
}

.reason__img02 {
  max-width: 350px;
  margin: 0 auto;
}

.reason__h3 {
  grid-area: h3;
  font-size: 24px;
  font-weight: 500;
  color: var(--brand-orange);
  line-height: 1.6;
}
.reason__txt {
  grid-area: txt;
  margin: 20px 0;
}
.reason__txtarea {
  grid-area: txt;
}
.reason__txtarea ul {
  margin: 20px 0;
  color: var(--brand-orange);
  font-weight: 500;
}

.reason__txtarea ul.custom li {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.8;
}

.reason__txtarea ul.custom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../img/icon_check.svg") no-repeat center / contain;
}

.reason__block--reverse {
  grid-template-areas:
    "h3 img"
    "txt img";
  margin-bottom: 36px;
}

.reason__comment .reason__txt {
  margin-left: auto;
  max-width: 400px;
  font-weight: 400;
}

.reason__block:first-of-type .reason__h3,
.reason__block--reverse .reason__h3 {
  align-self: end;
}

.reason__block:first-of-type .reason__txt,
.reason__block--reverse .reason__txtarea {
  align-self: start;
}

.reason__block .reason__img01 {
  align-self: center;
}

.reason__comment {
  position: relative;
  padding: 40px 0 0;
}

.reason__comment-inner {
  max-width: 648px;
  margin: 0 auto;
  padding: 22px 30px;
  align-items: center;
  background: var(--brand-orange);
  color: #fff;
}

.reason__comment-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateX(-216px);
  max-width: 186px;
  height: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 868px) {
  .reason__block {
    column-gap: 60px;
  }

  .reason__img01 {
    max-width: 360px;
  }

  .reason__img02 {
    max-width: 310px;
  }
}

@media screen and (max-width: 768px) {
  .sec-reason {
    padding: 60px 20px 60px;
  }

  .reason__h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .reason__block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "h3"
      "img"
      "txt";
    gap: 20px;
    margin-bottom: 10px;
  }

  .reason__h3 {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
  }
  .reason__img01 {
    max-width: 254px;
    margin: 0 auto;
  }

  .reason__img02 {
    max-width: 250px;
  }

  .reason__txtarea ul.custom li {
    font-size: 14px;
  }

  .reason__comment {
    padding: 0;
  }

  .reason__comment-inner {
    padding: 18px 10px;
  }

  .reason__comment .reason__txt {
    margin: 0 0 0 86px;
    max-width: 520px;
  }

  .reason__comment-img {
    max-width: 136px;
    transform: translateX(-50%) translateX(-274px);
  }
}

@media screen and (max-width: 600px) {
  .reason__comment-img {
    transform: none;
    left: -40px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
3d perspective
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-perspective {
  position: relative;
  padding: 160px 0 180px;
  background-image: url(../img/img_3d-perspective-bg.png);
  background-size: cover;
}

.perspective {
  position: absolute;
  top: 40px;
  right: 0;
  width: 40%;
}

.perspective__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.perspective__img-b {
  display: block;
  max-width: 740px;
  width: 100%;
}

/* ここから */
.perspective__container {
  height: 417px;
  max-width: 740px;
  width: 100%;
  position: relative;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;

  animation: image-switch-animation 20s infinite;
}

.src1 {
  background-image: url(../img/img_3d-perspective-b.jpg);
}
.src2 {
  background-image: url(../img/img_3d-perspective-a.jpg);
}
.src3 {
  background-image: url(../img/img_3d-perspective-b.jpg);
}
.src4 {
  background-image: url(../img/img_3d-perspective-a.jpg);
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.ba-img:nth-of-type(1) {
  animation-delay: 0s;
}
.ba-img:nth-of-type(2) {
  animation-delay: 5s;
}
.ba-img:nth-of-type(3) {
  animation-delay: 10s;
}
.ba-img:nth-of-type(4) {
  animation-delay: 15s;
}
/* ここまで */

.perspective__txtarea {
  position: absolute;
  right: 0;
  bottom: -16%;
  display: inline-block;
  padding: 30px 180px 30px 30px;
  background-color: var(--brand-orange);
  color: #fff;
}

.perspective__h2 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
}

.perspective__ruler {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
}

@media (max-width: 1000px) {
  .perspective {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .sec-perspective {
    padding: 90px 0 60px;
  }

  .perspective__inner {
    padding: 0 18px;
  }

  .perspective {
    top: 24px;
  }

  .perspective__txtarea {
    position: static;
    display: block;
    padding: 20px 18px 30px;
  }

  .perspective__h2 {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .perspective__ruler {
    bottom: 80px;
    max-width: 170px;
  }

  .container {
    height: 193px;
  }
}

@media (max-width: 568px) {
  .perspective {
    width: 90%;
    top: 30px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-zero-outsourcing
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-zero-outsourcing {
  position: relative;
  padding: 60px 18px 190px;
  text-align: center;
  background-color: var(--bg-orange);
}

.zero-outsourcing__h2 {
  margin: 20px 0;
  font-size: 36px;
  font-weight: 500;
  color: var(--brand-orange);
}

.zero-outsourcing__txt {
  font-weight: 500;
}

.zero-outsourcing__dakara-pc {
  margin: 40px 0 100px;
  max-width: 540px;
}

.zero-outsourcing__dakara-sp {
  display: none;
}

.zero-outsourcing__img-left {
  position: absolute;
  max-width: 296px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateX(-290px);
}

.zero-outsourcing__img-right {
  position: absolute;
  max-width: 309px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateX(290px);
}

@media (max-width: 1000px) {
  .sec-zero-outsourcing {
    padding: 60px 18px;
  }

  .zero-outsourcing__img-left {
    max-width: 200px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(-240px);
  }

  .zero-outsourcing__img-right {
    max-width: 210px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(240px);
  }
}

@media (max-width: 768px) {
  .sec-zero-outsourcing {
    padding: 30px 18px 80px;
  }

  .zero-outsourcing__h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .zero-outsourcing__dakara-pc {
    display: none;
  }

  .zero-outsourcing__dakara-sp {
    display: block;
    margin: 30px auto 30px;
    max-width: 340px;
    width: 100%;
  }

  .zero-outsourcing__img-left {
    max-width: 100px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(-120px);
  }

  .zero-outsourcing__img-right {
    max-width: 110px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(120px);
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
flow
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-flow {
  padding: 70px 20px 80px;
  background: var(--brand-orange);
}

.flow__inner {
  max-width: var(--max-width-2);
  margin: 0 auto;
}

.sec-flow .sec-h2 {
  color: #fff;
}

.flow__step {
  position: relative;
  z-index: var(--z, 1);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 32px 25px;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  --tail: 46px;
}

.flow__step::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% - (var(--tail) / 1.6) + 3px);
  width: calc(var(--tail) + 1px);
  height: calc(var(--tail) + -1px);
  background: rgba(0, 0, 0, 0.12);
  filter: blur(0.6px);
  border-radius: 4px;
  z-index: 0;
}

.flow__step::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% - (var(--tail) / 1.6));
  width: var(--tail);
  height: var(--tail);
  background: #fff;
  border-radius: 4px;
  z-index: calc(var(--z, 1) + 1);
}

.flow__step:last-child:before,
.flow__step:last-child::after {
  content: none;
}

.flow__step-icon {
  max-width: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}

.flow__step-h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.flow__step-txt {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-flow {
    padding: 50px 20px 60px;
  }

  .flow__step {
    margin-bottom: 12px;
    padding: 20px 10px 26px;
    --tail: 36px;
  }
  .flow__step-icon {
    max-width: 60px;
    margin-right: 12px;
  }

  .flow__step-h3 {
    font-size: 18px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
実績
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-performance {
  position: relative;
  padding: 60px 18px 0;
  background-color: var(--brand-orange);
  text-align: center;
}

.performance__h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
}

.performance__img-txt-pc {
  margin-top: 40px;
  max-width: 520px;
}

.performance__img-txt-sp {
  display: none;
}

.performance__img-pc {
  display: block;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
  position: relative;
  z-index: 1;
}

.performance__img-sp {
  display: none;
}

.performance__bg-left-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  pointer-events: none;
}

.performance__bg-right-pc {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
}

.performance__bg-left-sp,
.performance__bg-right-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .performance__h2 {
    font-size: 24px;
  }

  .performance__img-pc {
    display: none;
  }

  .performance__img-sp {
    display: block;
    max-width: 340px;
    margin: 20px auto 0;
  }

  .performance__img-txt-pc {
    display: none;
  }

  .performance__img-txt-sp {
    display: block;
    max-width: 338px;
    margin: 16px auto 0;
  }

  .performance__bg-left-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
  }

  .performance__bg-right-sp {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }

  .performance__bg-left-pc,
  .performance__bg-right-pc {
    display: none;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
施工実績
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-works {
  margin: 70px 0 100px;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  max-width: var(--max-width);
  padding: 0 18px;
  margin: 0 auto 50px;
}

.works__card {
  background-color: #fff;
  overflow: hidden;
}

.works__card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.works__card-txtarea {
  background-color: #f57c00;
  color: #fff;
  text-align: center;
  padding: 8px 10px 10px;
}

.works__card-client {
  line-height: 1.3;
  font-size: 20px;
  margin: 0;
}

.works__card-category {
  line-height: 1.3;
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sec-works {
    margin: 50px 0 70px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
Q & A
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-faq {
  background-color: var(--bg-orange);
}

.faq__inner {
  max-width: 866px;
  margin: 0 auto;
  padding: 68px 18px 76px;
}

.faq__item {
  margin-bottom: 25px;
}

.faq__question {
  background-color: #e17c26;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
}

.faq__question-txt {
  margin: 0 0 0 6px;
  padding-left: 1em;
  text-indent: -1.3em;
  font-size: 18px;
}

.faq__answer {
  padding: 12px 16px;
  margin-top: 6px;
  text-indent: -1.3em;
  padding-left: 1em;
  margin-left: 22px;
  font-weight: 300;
  line-height: 1.8;
}

.faq__answer .orange {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .faq__inner {
    padding: 48px 18px 56px;
  }

  .faq__question {
    padding: 8px 6px;
  }

  .faq__question-txt {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq__answer {
    margin-top: 0;
    margin-left: 12px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq__item {
    margin-bottom: 14px;
  }

  .faq__answer .orange {
    font-size: 16px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
footer
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.footer {
  max-width: var(--max-width);
  margin: 60px auto 10px;
  padding: 0 18px;
  text-align: left;
}

.footer__logo-img {
  max-width: 337px;
}

.footer__nav-list {
  margin: 30px 0;
}

.footer p {
  font-weight: 400;
}

.footer__nav-list li {
  margin-bottom: 30px;
  color: var(--brand-orange);
  font-weight: 500;
}

.footer__copyright {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    margin: 40px auto 10px;
  }

  .footer__logo-img {
    max-width: 260px;
  }

  .footer__nav-list {
    margin: 30px 0;
  }

  .footer__nav-list li {
    margin-bottom: 20px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}
