/* =========================================================
   AZLM LP iwate - fallback style.css (PC >= 821px)
   ========================================================= */

/* ---- Reset / Base ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, Arial, sans-serif;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .86; }

p { margin: 0 0 1em; }
h1,h2,h3,h4 { margin: 0 0 .6em; line-height: 1.35; }

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Utility */
.sp-none { display: block !important; }
.pc-none { display: none !important; }

.mt-30 { margin-top: 30px; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}

.header-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.header-logo img { height: 34px; width: auto; }
.header__burger { display: none; }

.gnav { margin-left: auto; }
.gnav__container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gnav__item {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s ease;
}
.gnav__item:hover { background: #f5f5f5; }
.gnav__item__en {
  font-family: "Roboto", system-ui, sans-serif;
  letter-spacing: .04em;
  font-weight: 700;
  font-size: 12px;
  opacity: .75;
}
.gnav__item__ja { font-size: 12px; opacity: .8; }

/* CTA button (ブランドサイト) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #111;
  font-weight: 700;
  white-space: nowrap;
}
.btn-grad {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ---- Hero ---- */
.hero {
  min-height: 54vh;
  display: grid;
  place-items: center;
  /* 画像が無い前提でも成立するようにグラデ */
  background: linear-gradient(135deg, #111 0%, #444 35%, #111 100%);
  color: #fff;
  padding: 56px 0;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.20) 35%, rgba(0,0,0,.30) 100%),
    url("https://azlm.sakura.ne.jp/azlm/wp-content/themes/azlm/img/lp-manorda/hero_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-contents {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  border-radius: 16px;
}

.hero-text {
  display: inline-block;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  padding: 12px 14px;
}

/* ---- Sections ---- */
.section { padding: 64px 0; }
.section-about { background: #fff; }
.section-company { background: #fafafa; }
.section-strength { background: #fff; }
.section-contact { background: #fafafa; }

.section-header { margin-bottom: 24px; }
.section-header__title { font-size: 30px; }
.section-header__title__en {
  display: block;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .7;
}
.section-header__title__ja { display: block; font-size: 28px; }

/* ---- About ---- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.about-wrap__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.section-sentence__description {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
}

.about-text { font-size: 16px; color: #222; }

/* ---- Company/Howto ---- */
.company-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.company-top__contents img {
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
}

.company-top__contents__title { margin-top: 0; }
.company-top__contents__title__main { font-size: 22px; font-weight: 800; }
.company-top__contents__title__sub { font-size: 16px; opacity: .95; }

.company-top__contents__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
}
.company-top__contents__table th,
.company-top__contents__table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 15px;
}
.company-top__contents__table th {
  width: 28%;
  background: #fafafa;
  font-weight: 700;
}

/* ---- Strength cards ---- */
.strength-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 24px;
  margin-top: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.strength-card__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.strength-card__header__number {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  opacity: .75;
}

.strength-card__header__title { font-size: 22px; font-weight: 800; }

.strength-card__content {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 22px;
  align-items: center;
}

.strength-media {
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
}

.strength-text { font-size: 16px; color: #222; }

/* ---- Menu / Voice list ---- */
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.voice-list__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.03);
}

.voice-list__image img { margin: 0 auto; }

/* ---- Accordion blocks (company-info) ---- */
.company-info {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
}
.company-info__title {
  cursor: pointer;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 800;
  background: #fafafa;
}
.company-info__body {
  padding: 16px 18px;
  display: block; /* JSが無くても見えるように */
  border-top: 1px solid #eee;
}

/* ---- Google map ---- */
.googleMap iframe {
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 20px 0;
}
.footer-wrap {
  display: flex;
  justify-content: center;
}
.copyright-text { font-size: 12px; opacity: .75; }

/* "to top" */
.footer__to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(17,17,17,.88);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  display: inline-block;
}
.footer__to-top::before {
  content: "↑";
  color: #fff;
  font-weight: 800;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* Swiper 기본 보정 */
.swiper { width: 100%; }
.swiper-slide { height: auto; }
.swiper-button-prev,
.swiper-button-next { color: #111; }
.swiper-pagination-bullet { opacity: .35; }
.swiper-pagination-bullet-active { opacity: 1; }

/* Buttons (modal etc.) */
button {
  appearance: none;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
button:hover { opacity: .9; }
