@charset "utf-8";

*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000;}

:root {
  --color-main: #c3aa71;
  --color-accent: #001f42;
  --color-sub: #544229;
  --font-main: "Noto Serif JP", serif;
}

br.phone{
  display: none;
}


/* LOADING */
.ld{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;

  opacity: 1;
  visibility: visible;
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              visibility .8s cubic-bezier(.16,1,.3,1);
}

.ld.is-hide{
  opacity: 0;
  visibility: hidden;
}

/* 中身 */
.ld__inner{
  width: min(520px, 80%);
  text-align: center;
  color: var(--color-main);
  font-family: var(--font-main);
}

.ld__mark{
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .22em;
  font-weight: 800;
  margin-bottom: 22px;
  opacity: .95;
}

/* バー */
.ld__bar{
  height: 2px;
  background: rgba(195,170,113,.22);
  overflow: hidden;
  position: relative;
}

.ld__barFill{
  position: absolute;
  inset: 0;
  background: var(--color-main);
  transform: translateX(-60%);
  animation: ldBar 1.2s cubic-bezier(.16,1,.3,1) infinite;
}

@keyframes ldBar{
  0%   { transform: translateX(-80%); }
  60%  { transform: translateX(0%); }
  100% { transform: translateX(120%); }
}

/* ローディング中はスクロール禁止 */
body.is-loading{
  overflow: hidden;
}

/* SCROLL ANIMATION */

/* 初期状態 */
.anim{
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 900ms cubic-bezier(.16,1,.3,1),
    opacity 900ms cubic-bezier(.16,1,.3,1);
}

/* 左 → */
.anim--left{
  transform: translateX(-60px);
}

/* 右 → */
.anim--right{
  transform: translateX(60px);
}

/* 下 → */
.anim--up{
  transform: translateY(60px);
}

/* 表示状態 */
.anim.is-show{
  opacity: 1;
  transform: translate(0,0);
}

html, body{
  overflow-x: clip;   /* 推奨：はみ出しを“描画だけ”切る */
}

/* clipが効かない古い環境用の保険 */
@supports not (overflow-x: clip){
  html, body{ overflow-x: hidden; }
}



/* HEADER */
.hdr{
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hdr__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 12px;
}

/* HAMBURGER */
.hb{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hb__line{
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-main);
  border-radius: 999px;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1),
              opacity 240ms cubic-bezier(.2,.8,.2,1);
}

.hb__line:nth-child(1){ transform: translateY(-7px); }
.hb__line:nth-child(2){ transform: translateY(0); }
.hb__line:nth-child(3){ transform: translateY(7px); }

.hb.is-open .hb__line:nth-child(1){
  transform: translateY(0) rotate(65deg) translateX(2px);
  transform-origin: left center;
}
.hb.is-open .hb__line:nth-child(2){
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.hb.is-open .hb__line:nth-child(3){
  transform: translateY(0) rotate(-65deg) translateX(2px);
  transform-origin: left center;
}

.ov{
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity 240ms cubic-bezier(.2,.8,.2,1);
}
.ov.is-show{ opacity: 1; }

/* SLIDE */
.dr{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  z-index: 70;
  background: #000;
  border-left: 1px solid var(--color-accent);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  padding-top: 50px;
}

.dr.is-open{ transform: translateX(0); }

.dr__nav{
  padding: 18px;
}

.dr__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dr__link{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: background 240ms cubic-bezier(.2,.8,.2,1),
              transform 240ms cubic-bezier(.2,.8,.2,1);
}
.dr__link:hover{
  background: rgba(0,0,0,.05);
  transform: translateX(-2px);
} 


/* HERO */
.hero{
  container-type: inline-size;
  position: relative;
  min-height: calc(100dvh - 50px); 
  display: grid;
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  overflow: clip;
  background: #000; 
}

.hero{
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px) scale(.98);
  transition:
    opacity 4s cubic-bezier(.16,1,.3,1),
    transform 4s cubic-bezier(.16,1,.3,1),
    filter 4s cubic-bezier(.16,1,.3,1);
}

.hero.is-loaded{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero__copy{
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 48px;
  z-index: 2;
}

.hero__logo{
  width: min(100px, 70%);
  height: auto;
  display: block;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title{
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  padding-bottom: 5px;
  border-bottom: #c3aa71 solid 1px;
}

.hero__txt{
  color: var(--color-main);
  font-family: var(--font-main);
  line-height: 1.5;
  letter-spacing: .06em;
  font-size: clamp(14px, 4vw, 18px);
  margin-top: 30px;
  padding-left: 50px;
}

.hero__media{
  height: 50%;
  display: grid;
  align-items: center; 
  justify-items: center;
  z-index: 1;
}

.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LOGO AREA */
.logo_area{
  container-type: inline-size;
}

.logo_area p{
  text-align: end;
  margin-right: 5%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.logo_area p img{
  width: 40%;
}


/* CONCEPT */
.concept{
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.concept__image{
  display: grid;
  align-items: center;
}

.concept__image img{
  width: 100%;
  display: block;
}

.concept__content{
  display: grid;
  align-content: center;
  justify-items: end;
  padding: clamp(40px, 6vw, 120px);
}

.concept__lead,
.concept__body{
  color: var(--color-main);
  font-family: var(--font-main);
  letter-spacing: .06em;
}

.concept__lead{
  line-height: 1.9;
  margin-bottom: 48px;
  font-size: clamp(13px, 4vw, 14px);
  text-align: right;
}

.concept__body{
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 2;
  text-align: right;
}

.concept__lead span{
  font-size: clamp(16px, 1.6vw, 18px);
}

/* STORY */
.story{
  container-type: inline-size;
  margin: 100px auto;
  text-align: center;
  color: var(--color-main);
  font-family: var(--font-main);
}

.story p{
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 2;  
  letter-spacing: .06em;
}

.story h2{
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  margin-top: 100px;
  letter-spacing: .06em;
}

.story h2 span{
  font-weight: bold;
}

/* PROBLEM */
.problem{
  margin-top: 200px;
  container-type: inline-size;
  display: grid;
  grid-template-columns: 2fr 4fr; 
  align-items: center; 
  background: #000;
  overflow: hidden;
  position: relative;
}

.problem__copy{
  padding: clamp(28px, 5vw, 96px);
  color: var(--color-main);
  font-family: var(--font-main);
}

.problem__head{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}

.problem__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.problem__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.problem__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.problem__list li{
  line-height: 1.9;
  letter-spacing: .06em;
  font-size: clamp(13px, 1.6vw, 14px);
}

.problem__media{
  height: 100%;
  display: grid;
  align-items: center; 
  justify-items: center;
}

.problem__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* KODAWARI */
.commit{
  container-type: inline-size;
  background: #000;
  padding: 70px 0 90px;
  overflow: hidden;
  margin-left: clamp(28px, 5vw, 96px);
}

.commit__head{
  width: min(1345px, 100% - 48px);
  margin-left: clamp(28px, 5vw, 96px);
  margin-top: 100px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-main);
  font-family: var(--font-main);
}

.commit__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.commit__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.commit__grid{
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 40px);
}

.commit__item{
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}

.commit__icon{
  width: clamp(120px, 10vw, 180px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.commit__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.commit__txt{
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-main);
  letter-spacing: .06em;
  line-height: 1.9;
  font-size: clamp(13px, 1.4vw, 16px);
}

/* WORKS */
.works{
  container-type: inline-size;
  margin-left: clamp(28px, 5vw, 96px);
  padding: 80px 0 110px;
}

.works__head{
  width: min(1400px, 100% - 48px);
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-main);
  font-family: var(--font-main);
}

.works__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.works__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.works__grid{
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 18px);
}

.works__item{
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  width: 250px;
}

.works__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .6s ease;
}

/* HOVER */
.works__item:hover img{
  transform: scale(1.06);
}

/* SERVICE */
.service{
  background: #000;
  padding: 80px 0 110px;
  margin-left: clamp(28px, 5vw, 96px);
}

.service__head{
  width: min(1400px, 100% - 48px);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-main);
  font-family: var(--font-main);
  margin: 0 auto 60px;
}

.service__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.service__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.service__list{
  width: min(1400px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.svc{
  display: grid;
  grid-template-columns: 3fr 1.4fr; 
  align-items: center;
  gap: 46px;
}

.svc__media{
  aspect-ratio: 16 / 4; 
  overflow: hidden;
}

.svc__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.svc__copy{
  color: var(--color-main);
  font-family: var(--font-main);
}

.svc__ttl{
  margin: 0 0 10px;
  font-size: clamp(16px, 1.7vw, 20px);
  letter-spacing: .08em;
  font-weight: 700;
}

.svc__lead{
  margin: 0 0 26px;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.9;
  letter-spacing: .06em;
}

.svc__meta{
  margin: 0;
  font-size: clamp(12px, 1.2vw, 13px);
  line-height: 2;
  letter-spacing: .06em;
  opacity: .9;
}

/* PROCESS */
.process{
  background:#000;
  padding: 90px 0 120px;
  margin-left: clamp(28px, 5vw, 96px);
}

.process__head{
  width: min(1400px, 100% - 48px);
  margin: 0 auto 70px;
  display:flex;
  align-items:center;
  gap:18px;
  color: var(--color-main);
  font-family: var(--font-main);
}


.process__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.process__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.process__list{
  width: min(1400px, 100% - 48px);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.process__item{
  width: min(760px, 100%);
}

.step_2,.step_4,.step_6{
  margin-left: 200px;
}
.step_1,.step_3,.step_5{
  margin-right: 30px;
}
.process__svg{
  width: auto;
  height: 150px;
  display: block;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* PRICE SAMPLE */
.price{
  padding: 90px 0 120px;
  margin-left: clamp(28px, 5vw, 96px);
}

.price__head{
  width: min(1400px, 100% - 48px);
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-main);
  font-family: var(--font-main);
}

.price__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.price__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.price__grid{
  width: min(1400px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 56px;
  justify-items: center;
}

.price__card{
  width: 100%;
  max-width: 420px;
  text-align: center;
  color: var(--color-main);
  font-family: var(--font-main);
}

.price__media{
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #bfa874;
}

.price__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price__name{
  margin: 26px 0 8px;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: .08em;
  font-weight: 700;
}

.price__yen{
  margin: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: .06em;
  opacity: .95;
}

.price__card--wide{
  grid-column: span 1;
}

.price__card--wide:nth-of-type(4){
  grid-column: 1 / span 1;
}
.price__card--wide:nth-of-type(5){
  grid-column: 2 / span 1;
}


/* FAQ */
.faq{
  padding: 90px 0 120px;
  margin-left: clamp(28px, 5vw, 96px);
  color: var(--color-main);
  font-family: var(--font-main);
}

.faq__head{
  width: min(1400px, 100% - 48px);
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.faq__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.faq__list{
  width: min(1400px, 100% - 48px);
  margin: 0 auto;
}

.faq__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* column-gap: clamp(36px, 6vw, 120px);
  row-gap: 10px;
  padding: 28px 0; */
}

.faq__q{
  margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .06em;
  line-height: 2;
  font-weight: 700;
}

.faq__a{
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: .06em;
  line-height: 2;
  opacity: .95;
}

.faq__row + .faq__row{
  margin-top: 14px;
}

/* FORM */
.cta{
  background:#000;
  padding: 90px 0 120px;
  color: var(--color-main);
  font-family: var(--font-main);
  margin-left: clamp(28px, 5vw, 96px);
}

.cta__head{
  width: min(1400px, 100% - 48px);
  margin: 0 auto 80px;
  display:flex;
  align-items:center;
  gap:18px;
}

.cta__rule{
  width: 60px;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  left: 0;
}

.cta__ttl{
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 700;
}

.cta__intro{
  width: min(980px, 100% - 48px);
  margin: 0 auto 40px;
  text-align: center;
}

.cta__quote{
  margin: 0 0 18px;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: .06em;
  line-height: 2;
}

.cta__lead{
  margin: 0;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: .06em;
  line-height: 2;
  opacity: .95;
}

.cta__form{
  width: min(980px, 100% - 48px);
  margin: 40px auto 0;
}

.cta__row{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.cta__label{
  font-size: 14px;
  letter-spacing: .06em;
  text-align: left;
  white-space: nowrap;
}

.cta__input{
  width: 100%;
  height: 44px;
  border: 1px solid rgba(195,170,113,.85);
  background: transparent;
  color: var(--color-main);
  padding: 0 14px;
  outline: none;
  font-family: var(--font-main);
  letter-spacing: .04em;
}

.cta__input:focus{
  border-color: var(--color-main);
}

.cta__opts{
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: nowrap;
}

.cta__opts--wrap{
  flex-wrap: wrap;
  gap: 14px 26px;
}

.cta__opt{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.cta__opttext{
  font-size: 14px;
  letter-spacing: .06em;
}

.cta__radio{
  width: 16px;
  height: 16px;
  accent-color: var(--color-main);
}

.cta__row--textarea{
  align-items: start;
  margin-top: 10px;
}

.cta__textarea{
  width: 100%;
  border: 1px solid rgba(195,170,113,.85);
  background: transparent;
  color: var(--color-main);
  padding: 12px 14px;
  outline: none;
  font-family: var(--font-main);
  letter-spacing: .04em;
  resize: vertical;
  min-height: 160px;
}

.cta__textarea:focus{
  border-color: var(--color-main);
}

.cta__actions{
  display: grid;
  place-items: center;
  margin-top: 36px;
}

.cta__btn{
  width: min(380px, 70%);
  height: 54px;
  background: var(--color-main);
  border: 1px solid rgba(0,0,0,.2);
  color: #000;
  font-family: var(--font-main);
  letter-spacing: .12em;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.cta__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}


/* FOOTER */
.ftr{
  padding: 60px 0 70px;
  color: var(--color-main);
  font-family: var(--font-main);
}

.ftr__inner{
  width: min(1400px, 100% - 48px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: 40px;
}

.ftr__logo{
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .22em;
  font-weight: 800;
  line-height: 1.1;
}

.ftr__logo img{
  width: 250px;
}

.ftr__line{
  margin: 0 0 10px;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: .08em;
  line-height: 1.9;
  opacity: .95;
}

.ftr__tel{
  margin-top: 18px;
  letter-spacing: .14em;
  font-weight: 700;
}

.ftr__tel a{
  color: var(--color-main);
}

.ftr__nav{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  justify-items: start;
  margin-top: 8px;
}

.ftr__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ftr__link{
  color: var(--color-main);
  text-decoration: none;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: .08em;
  line-height: 1.8;
  opacity: .92;

  transition: opacity .2s ease, transform .2s ease;
}

.ftr__link:hover{
  opacity: 1;
  transform: translateX(2px);
}


/* 
  Tablet
 */
@media (max-width: 1100px){
  .price__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 30px;
  }

  /* 下段も自然に流す */
  .price__card--wide:nth-of-type(4),
  .price__card--wide:nth-of-type(5){
    grid-column: auto;
  }
}

/*
  Mobile
*/
@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
  }

  .hero__media{
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 60%;
  }

  .hero__copy{
    position: absolute;
    justify-items: center; 
    text-align: center;
    padding: 40px 18px;
    z-index: 2;
    width: 100%;
    top: 100px;
  }

  .hero__txt{
    margin-top: 30px;
    padding-left: 0px;
}

  .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.35)
    );
    z-index: 1;
  }

  /* LOGO AREA */
  .logo_area p{
    text-align: center;
    margin:auto;
    width: 100%;
  }

  .logo_area p img{
    height: auto;
    width: 50%;
  }

  /* CONCEPT */
  .concept{
    grid-template-columns: 1fr;
    position: relative;
    justify-items: center;
  }

  .concept__image{
    height: auto;
    width: 100%;
    position: absolute;
  }

  .concept__content{
    padding: 48px 20px 64px;
    width: 100%;
    position: absolute;
    margin-top: 250px;
    justify-items: center;
  }

  .concept__lead,
  .concept__body{
    text-align: center;
  } 

  .concept__lead {
    line-height: 1.9;
    margin-bottom: 36px;
  }

  /* STORY */
  .story h2{
    margin-top: 150px;
  }

  /* PROBLEM */
  .problem{
    grid-template-columns: 1fr;
    position: relative;
  }

  .problem::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.35)
    );
    z-index: 1;
  }

  .problem__media{
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .problem__copy{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 18px 64px;
  }

  .problem__head{
    justify-content: center;
    margin-bottom: 36px;
  }

  br.phone{
    display: block;
  }

    .commit{
    padding: 56px 0 72px;
  }

  .commit__head{
    width: 100%;
    margin-bottom: 40px;
    justify-content: center;
    margin: 0;
  }

  .commit__grid{
    width: min(1200px, 100% - 32px);
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
  }

  .commit__item{
    gap: 18px;
  }

  .commit__icon{
    width: 120px;
  }

  .commit__icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    display: block;
  }

  /* WOKRS */
  .works {
    margin-left: 0;
  }

  .works__head {
    justify-content: center;
    margin: 0;
    width: 100%;
  }

    .works__grid{
    grid-template-columns: repeat(2, 1fr);
    margin: 30px auto 0;
  }

  .works__item {
    width: 100%;
  }

  /* SERVICE */
  .service{
    padding: 60px 0 90px;
    margin-left: 0;
  }

  .service__head{
    justify-content: center;
    margin: 0;
  }

  .service__head{
    width: 100%;
  }

  .service__list{
    width: min(1400px, 100% - 32px);
  }

  .svc{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .svc__media{
    aspect-ratio: auto;
  }

  .svc__copy{
    text-align: left; 
  }

  .svc__lead {
    margin: 0 0 5px;
  }

  .svc__media img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service__list {
    margin: 30px auto 0;
    display: grid;
    gap: 46px;
}

  /* PROCESS */
  .process{
    padding: 70px 0 90px;
    margin-left: 0;
  }

  .process__list{
    width: min(1400px, 100% - 32px);
    margin: 0;
  }

    .process__head{
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .process__list{
    justify-items: center;
    gap: 15px;
    margin-top: 30px;
  }

  .process__svg {
    width: 350px;
    height: auto;
    display: block;
  }

  .process__item{
    width: min(350px, 100%);
  }

  .step_2,.step_4,.step_6{
    margin-left: 0px;
  }
  .step_1,.step_3,.step_5{
    margin-right: 0px;
  }
  .svg_step_02,.svg_step_04,.svg_step_06{
    padding-right: 40px;
  }

  .svg_step_01,.svg_step_03,.svg_step_05{
    padding-left: 40px;
  }

  /* PRICE SAMPLE */
  .price{
    padding: 70px 0 90px;
    margin-left: 0;
  }

  .price__head{
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .price__grid{
    grid-template-columns: 1fr;
    gap: 38px;    
    justify-content: center;
    margin: 40px auto 0;
    width: 100%;
  }
  .price__card {
    width: 80%;
  }

  /* FAQ */
  .faq{
    padding: 70px 0 90px;
    margin: 0;
  }

  .faq__head,
  .faq__list{
    width: min(1400px, 100% - 32px);
  }

  .faq__list{
    margin-top: 40px;
  }

  .faq__head{
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .faq__row{
    grid-template-columns: 1fr;
    padding: 0px 0 26px;
  }

  .faq__a{
    opacity: .98;
  }

  /* FORM */
  .cta{
    padding: 70px 0 90px;
    margin: 0;
  }

  .cta__intro,
  .cta__form{
    width: min(980px, 100% - 32px);
  }

  .cta__head{
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .cta__row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta__label{
    opacity: .95;
  }

  .cta__opts{
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .cta__btn{
    width: min(420px, 90%);
  }

  /* FOOTER */
  .ftr{
    padding: 50px 0 60px;
  }

  .ftr__inner{
    width: min(1400px, 100% - 32px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ftr__nav{
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ftr__list{
    gap: 5px;
  }

  .ftr__line{
    margin: 0;
  }
} 

