/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
  --color-bg: #fbf3e6;
  --color-primary: #ec7d31;
  --color-primary-dark: #d05e19;
  --color-text: #3b3630;
  --color-heading: #262220;
  --color-accent-green: #24483c;
  --color-tag-bg: #f5e0a1;
  --color-box-bg: #fbe6c8;
  --color-box-border: #f0cfa0;
  --color-line: #d8c9ae;
  --color-white: #ffffff;
  --content-width: 1420px;
}

/* ==========================================================================
   Layout: l-inner
========================================================================== */

.l-inner {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 24px;
  }
}

/* ==========================================================================
   Layout: l-section (セクション共通の上下padding)
========================================================================== */

.l-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ==========================================================================
   Decoration (背景の散らしアイコン)
========================================================================== */

.l-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.u-deco {
  position: absolute;
  display: block;
}

.u-deco--ring {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: none;
}

.u-deco--dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.u-deco--plus {
  width: 16px;
  height: 16px;
}

.u-deco--plus::before,
.u-deco--plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.u-deco--plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
}

.u-deco--plus::after {
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
}

.u-color-primary {
  top: 4%;
  left: 4%;
  color: var(--color-primary);
}

.u-color-green {
  top:4%; 
  right:12%;
  color: var(--color-accent-green);
}

.u-color-blue {
  color: #4d7fc2;
}

.u-color-line {
  color: var(--color-line);
}

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

  .u-color-primary{
    top: 2%;
  }

  .u-color-green{
    top: 6%;
    right: 10%;
  }

  .u-deco--dot,.u-color-blue {
    display: none;
  }
}

/* ==========================================================================
   Utility: 見出し前後の点線ラベル
========================================================================== */

.u-dash-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.u-dash-label::before,
.u-dash-label::after {
  content: "";
  flex: 1 1 auto;
  height: 0;
  border-top: 2px dashed var(--color-primary);
}

/* ==========================================================================
   Footer (共通フッター)
========================================================================== */

.l-footer {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 40px;
  border-top: 1px solid var(--color-line);
  text-align: center;
}

.l-footer__address {
  font-style: normal;
  padding: 0;
  margin: 0;
}

.l-footer__address-line {
  line-height: 1.8;
  color: var(--color-text);
  padding: 0;
  margin: 0;
}

.l-footer__address-line--company {
  border-top: 1px solid var(--color-line);
  width: fit-content;
  padding-top: 10px;
  margin: 10px auto;
}
