/* =========================================================
   AZLM LP iwate - fallback style_sp.css (SP <= 820px)
   ========================================================= */

*,
*::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.75;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .9; }

.container {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.sp-none { display: none !important; }
.pc-none { display: block !important; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eee;
}
.header-container {
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.header-logo img { height: 30px; width: auto; }

.header__burger {
  margin-left: auto;
  width: 44px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
.header__burger__bar {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 2px;
  background: #111;
}
.header__burger__bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  background: #111;
}
.header__burger__text { display: none; }

/* SPでは nav をそのまま縦並び表示（JSなくても使える） */
.gnav { width: 100%; }
.gnav__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 16px 14px;
}
.gnav__item {
  display: block;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 12px;
  padding: 10px;
}
.gnav__item__en {
  display: block;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .75;
  font-weight: 700;
}
.gnav__item__ja { display: block; font-size: 12px; opacity: .85; margin-top: 2px; }

/* Hero */
.hero {
  padding: 44px 0;
  min-height: 40vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #111 0%, #444 35%, #111 100%);
  color: #fff;
  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_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.hero-contents {
  width: calc(100% - 32px);
  margin: 0 auto;
  text-align: center;
  border-radius: 14px;
}
.hero-text {
  display: inline-block;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  padding: 10px 12px;
}

/* Sections */
.section { padding: 46px 0; }
.section-company { background: #fafafa; }
.section-contact { background: #fafafa; }

.section-header { margin-bottom: 18px; }
.section-header__title { font-size: 22px; }
.section-header__title__en {
  display: block;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .7;
}
.section-header__title__ja { display: block; font-size: 22px; }

.section-sentence__description,
.voice-list__item,
.strength-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
}

/* About */
.about-wrap__image { border-radius: 14px; }

/* Howto / Company */
.company-top { display: grid; gap: 16px; }
.company-top__contents img {
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
}
.company-top__contents__title__main { font-size: 18px; font-weight: 800; }
.company-top__contents__title__sub { font-size: 14px; }

/* Table */
.company-top__contents__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
}
.company-top__contents__table th,
.company-top__contents__table td {
  padding: 12px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 14px;
}
.company-top__contents__table th {
  width: 34%;
  background: #fafafa;
  font-weight: 700;
}

/* Strength cards */
.strength-card { margin-top: 14px; }
.strength-card__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.strength-card__header__number {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  opacity: .75;
}
.strength-card__header__title { font-size: 18px; font-weight: 800; }

.strength-card__content { display: grid; gap: 12px; }
.strength-media { border-radius: 14px; border: 1px solid #eee; background: #fff; }
.strength-text { font-size: 14px; }

/* Menu (SP) - Swiper内のカード風 */
.voice-list__item { text-align: center; }
.voice-list__image img { margin: 0 auto; }

/* Accordion blocks */
.company-info,
.company-info2 {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
}
.company-info__title,
.company-info__title2 {
  cursor: pointer;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 800;
  background: #fafafa;
}
.company-info__body,
.company-info__body2 {
  padding: 14px;
  display: block; /* JSが死んでも見える */
  border-top: 1px solid #eee;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

/* Buttons */
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: .92; }

/* Map */
.googleMap iframe {
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
}

/* Footer */
.footer {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 18px 0;
}
.footer-wrap { display: flex; justify-content: center; }
.copyright-text { font-size: 12px; opacity: .75; }

/* To top */
.footer__to-top {
  position: fixed;
  right: 14px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  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 tweaks */
.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; }
