/* =============
   Reset
================ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  font-weight: 400;
  background: #fff;
  line-height: 1.8;
  font-size: 15px;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea,
input,
select,
button {
  font: inherit;
}

.sectionBox a {
  color: #ff587e;
  text-decoration: underline;
}

/* =============
   Variables
================ */
:root {
  --color-primary: #f39800;
  --color-primary-dark: #d48e1a;
  --color-accent-red: #e05c3a;
  --color-accent-green: #4caf7d;
  --color-accent-blue: #4a90d9;
  --color-accent-pink: #d9598a;
  --color-bg: #ffffff;
  --color-bg-light: #F9F9F9;
  --color-bg-yellow: #fdf3d8;
  --color-text: #333333;
  --color-text-sub: #666666;
  --color-border: #e5e0d8;
  --max-width: 1200px;
  --radius: 8px;
}

/* =============
   Common
================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--color-text);
  border: 2px solid #ccc;
}

.fa-solid {
 font-size: 23px;
}
/* =============
   HERO
================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed, #fff7ed);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.hero-blur {
  position: absolute;
  z-index: 0;
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}

/* 左上の黄色っぽい光 */
.hero-blur--one {
  width: 180px;
  height: 180px;
  top: 10px;
  left: -40px;
  background: #fde68a;
  opacity: 0.75;
}

/* 下中央の縦長の黄色っぽい光 */
.hero-blur--two {
  width: 200px;
  height: 360px;
  left: 50%;
  bottom: -110px;
  transform: translateX(-50%);
  background: #ffedd5;
  opacity: 0.7;
}

/* 右上の白っぽい光 */
.hero-blur--three {
  width: 260px;
  height: 260px;
  top: 80px;
  right: 110px;
  background: #fef9c3;
  opacity: 0.6;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: end;
}

.hero__label,
.hero__logo,
.hero__service,
.hero__catch,
.hero__desc,
.hero__btns {
  grid-column: 1;
}

.hero__label {
  font-size: 12px;
  color:#B45309;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero__logo {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
  margin-left: -7px;
}

.hero__service {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}

.hero__visual {
  grid-column: 2;
  grid-row: 1 / span 6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
}

.hero__visual img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  border-radius: 12px 12px 0 0;
  @media (max-width: 767px) {
    width: 220px;
  }
}

.hero__catch {
  font-size: 22px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero__catch span {
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgb(255, 235, 128) 60%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.08em;
}
.bold{
  font-weight: 700;
}

.hero__catch mark {
  background: none;
  color: var(--color-primary);
  border-bottom: 2.5px solid var(--color-primary);
}

.hero__desc {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero__desc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============
   GNAV
================ */
.gnav {
  background: #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gnav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gnav__inner::-webkit-scrollbar {
  display: none;
}

.gnav__item {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 22px;
  white-space: nowrap;
  transition: background 0.2s;
}

.gnav__item:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =============
   SECTION COMMON
================ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg-light);
}

.section__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.section__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.section__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

/* =============
   WHY
================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why__item {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 20px;
}

.why__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why__item-title--red {
  color: var(--color-accent-red);
}

.why__item-title--green {
  color: var(--color-accent-green);
}

.why__item-title--blue {
  color: var(--color-accent-blue);
}

.why__item-title--pink {
  color: var(--color-accent-pink);
}

.why__item-desc {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* =============
   STRENGTH
================ */
.strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.strength__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.strength__card-desc {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* =============
   WORKS
================ */
.works__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.works__thumb {
  background: #fff;
  min-height: 160px;
  overflow: hidden;
  margin: 0;
}

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

.works__body {
  padding: 28px;
}

.works__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.works__title a{
  text-decoration: underline;
}

.works__text {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* =============
   EXAMPLES
================ */
.examples__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.examples__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 1 / 1;
  background: #e8e4df;
}

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

.examples__card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.examples__card-desc {
  font-size: 12.5px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

/* =============
   PRICING
================ */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing__box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.pricing__box-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing__box-sub {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing__row:last-of-type {
  border-bottom: none;
}

.pricing__row-label {
  color: var(--color-text-sub);
}

.pricing__row-val {
  font-size: 20px;
  font-weight: 700;
}

.pricing__list {
  margin-top: 4px;
}

.pricing__list li {
  font-size: 13.5px;
  color: var(--color-text-sub);
  padding: 7px 0 7px 16px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.pricing__list li:last-child {
  border-bottom: none;
}

.pricing__list li::before {
  content: "・";
    position: absolute;
    left: -9px;
    color: #ff587e;
    font-size: 32px;
    top: -11px;
}

.pricing__note {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 18px;
  line-height: 1.8;
}

.pricing__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pricing__tag {
  font-size: 11.5px;
  padding: 4px 12px;
  border: 1px solid #E7E5E4;
  border-radius: 4px;
  color: var(--color-text-sub);
  background: #FAFAF9;
}

/* =============
   FLOW
================ */
.flow__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.flow__step {
  position: relative;
  text-align: center;
}

.flow__step::after {
  content: "▶";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 14px;
  z-index: 1;
}

.flow__step:last-child::after {
  display: none;
}

.flow__box {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 14px 16px;
  margin: 0 10px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.flow__box--active {
  border-color: var(--color-primary);
  background: var(--color-bg-yellow);
}

.flow__step-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.flow__who {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 4px;
  background: #f0ede8;
  color: var(--color-text-sub);
}

.flow__who--client {
  background: var(--color-primary);
  color: #fff;
}

.flow__note {
  font-size: 12px;
  color: var(--color-text-sub);
  text-align: center;
  margin-top: 20px;
}

/* =============
   FAQ
================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__q,
.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
}

.faq__a {
  padding-top: 0;
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.faq__badge--q {
  background: var(--color-primary);
  color: #fff;
}

.faq__badge--a {
  background: var(--color-text);
  color: #fff;
}

.faq__q-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  padding-top: 2px;
}

/* =============
   CTA
================ */
.cta {
  background: #333;
  padding: 80px 0;
  text-align: center;
}

.cta__title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 28px;
  line-height: 1.5;
  color: #fff;
}

/* =============
   FOOTER
================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 24px 40px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-sub);
}


.view {
  opacity: 0;
  margin: 20px auto;
  transform: translateY(50px);
}

.view.show {
  transition: all 0.8s;
  opacity: 1;
  transform: translateY(0);
}

.timing02 {
  transition-delay: 0.2s;
}

.timing03 {
  transition-delay: 0.6s;
}


/* =============
   RESPONSIVE
================ */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 14px 0 0;
  }

  .hero__inner {
    padding: 0 20px;
  }

  .hero-blur {
    filter: blur(42px);
  }

  .hero-blur--one {
    width: 140px;
    height: 140px;
    top: 8px;
    left: -28px;
  }

  .hero-blur--two {
    width: 150px;
    height: 300px;
    bottom: -90px;
  }

  .hero-blur--three {
    width: 180px;
    height: 180px;
    top: 110px;
    right: -20px;
    opacity: 0.5;
  }

  .hero__inner {
    padding: 0 10px 20px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__label,
  .hero__logo,
  .hero__service,
  .hero__catch,
  .hero__desc,
  .hero__btns,
  .hero__visual {
    grid-column: auto;
    grid-row: auto;
  }
  .hero__label,
  .hero__logo,
  .hero__service{
    text-align: center;
  }

  .hero__catch {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero__visual {
    margin: 0 0 25px;
  }

  .hero__btns {
    flex-direction: column;
  }

  .hero__btns .btn {
    width: 100%;
  }

  .gnav {
    display: none;
  }

  .gnav__inner {
    padding: 0 8px;
  }

  .gnav__item {
    padding: 14px 12px;
    font-size: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .section__title {
    font-size: 20px;
  }

  .section__head {
    margin-bottom: 32px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strength__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .works__card {
    grid-template-columns: 1fr;
  }

  .works__thumb {
    min-height: 200px;
  }

  .works__thumb-img {
    width: 200px;
    margin: 0 auto;
  }

  .works__body {
    padding: 20px;
  }

  .examples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .flow__wrap {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .flow__step::after {
    content: "▼";
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%);
  }

  .flow__box {
    margin: 0;
  }

  .cta {
    padding: 52px 0;
  }

  .cta__title {
    font-size: 20px;
  }

  .footer {
    padding: 20px;
  }
}