@charset "utf-8";

/* ===================================
  HERO
=================================== */
.lp-hero {
  position: relative;
  overflow: hidden;
}

/*  confirms SP: full-width photo */
.lp-hero__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  /* background-position: center; */
  background-position: bottom;
}

/* text area overlays top-left on image */
.lp-hero__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero__contentInner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
}

.lp-hero__lead {
  margin: 0 0 10px 0;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  display: inline-block;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.4vw, 34px);
  padding: 10px;
  align-self: flex-start;
}

.lp-hero__title {
  font-weight: 800;
  color: var(--accent);
  background-color: #fff;
  padding: 10px;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.2vw, 32px);
  align-self: flex-start;
}

/* circle CTA */
.lp-heroCta {
  position: absolute;
  left: 6%;
  bottom: 10%;
  width: 230px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  /* background: var(--iemitsu-yellow); 画像にするときはなし */
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  /* padding: 30px; 画像にするときはpaddingなし */
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  /* border: 10px solid var(--accent); 画像にするときはなし */
  box-sizing: border-box;
  gap: 0;
}

.lp-heroCta__en {
  display: block;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 23px;
  opacity: .95;
}

.lp-heroCta__jp {
  display: block;
  font-weight: 900;
  line-height: 1.2;
  font-size: 30px;
}

@media (max-width: 767px) {

  /* 下部固定CTAの高さ（現状 64px） */
  :root {
    --bottomCtaH: 74px;
    --headerH: 73px;
  }

  /* 1画面目の器：下にintro、上にhero（残り全部） */
  .lp-heroStage {
    height: calc(100vh - var(--headerH));
    display: grid;
    grid-template-rows: 1fr auto;
    /* 上：hero / 下：intro */
    padding-bottom: var(--bottomCtaH);
    /* 固定CTA分を差し引く */
  }

  /* ヒーローはグリッド内で完結させる */
  .lp-hero {
    position: relative;
    overflow: hidden;
    min-height: 0;
    /* gridで縮められるように */
    min-height: 380px;
  }

  /* 画像をhero枠いっぱいに */
  .lp-hero__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  /* テキストはhero枠内で */
  .lp-hero__content {
    position: relative;
    height: 100%;
    z-index: 2;
  }

  .lp-hero__contentInner {
    height: 100%;
    padding-top: 45px;
    padding-bottom: 120px;
    /* 円CTAと被らない逃げ */
    justify-content: flex-start;
  }

  /* 円CTAはheroの下寄り中央へ */
  .lp-heroCta {
    left: 20%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 140px;
    /* padding: 20px; 画像にするときはpaddingなし */
    border: 5px solid var(--accent);
  }

  .lp-heroCta__en {
    font-size: 15px;
  }

  .lp-heroCta__jp {
    font-size: 18px;
  }

  /* introは1画面目の最下段に */
  .lp-intro {
    padding: 14px 0 16px;
    /* 少し詰めると見栄え良い */
  }

  /* もともと body に padding-bottom を入れてた場合、SPだけ解除してOK */
  body {
    padding-bottom: 0;
  }
}

@media screen and (min-width:768px) and (max-width:1023px) {
  .lp-hero__contentInner {
    padding-top: 80px;
    padding-left: 10%;
  }

  .lp-hero__media {
    height: 550px;
  }

  /* CTAは少し大きく */
  .lp-heroCta {
    width: 120px;
    left: 10%;
    bottom: 12%;
    /* padding: 15px; 画像にするときはpaddingなし */
    border: 5px solid var(--accent);
  }

  .lp-heroCta__en {
    font-size: 10px;
  }

  .lp-heroCta__jp {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {

  .lp-hero__contentInner {
    padding-top: 90px;
  }
}

/* ===================================
  Intro band
=================================== */
.lp-intro {
  background: var(--cream);
  padding: 18px 0 22px;
}

.lp-intro__text {
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(14.1px, 3vw, 24px);
  display: block !important;
}

.lp-intro .lp-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-intro .lp-container img {
  width: clamp(30px, 12vw, 140px);
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .lp-intro__text {
    padding: 30px 0;
  }
}

@media screen and (max-width:1023px) {
  .lp-intro .lp-container {
    flex-direction: column;
  }

  .lp-intro .lp-container img {
    width: 100px;
  }
}

/* ===================================
  LINE Banner
=================================== */
.lp-lineBanner {
  padding: 45px 0 45px 0;
}

.lp-lineBanner__box {
  background: var(--lightyellow);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: center;
  border-radius: 6px;
}

.lp-lineBanner__kicker {
  margin: 0 0 10px;
  font-weight: 800;
  color: #111;
  /* font-size: 14px; */
}

.lp-lineBanner__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--lineGreen);
  color: #fff;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 0px;
  width: 100%;
  max-width: 280px;
}

.lp-lineBanner__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #222;
}

.lp-lineBanner__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 2px;
}

.lp-lineBanner a {
  display: block;
  margin: 0 auto;
  max-width: 760px;
}

.lp-lineBanner a:hover {
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .lp-lineBanner__box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-lineBanner__kicker {
    text-align: center;
  }

  .lp-lineBanner__btn {
    margin: 0 auto;
  }

  .lp-lineBanner__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lp-lineBanner__right {
    max-width: 250px;
    margin: 0 auto;
    width: 100%;
  }
}


@media screen and (min-width:1024px) {

  /* LINE banner：PCは余白UP */
  .lp-lineBanner__box {
    padding: 25px;
    grid-template-columns: 1fr 240px;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lp-lineBanner__right {
    width: 240px;
  }

  .lp-lineBanner__kicker {
    font-size: 18px;
  }
}

/* ===================================
  PROBLEM
=================================== */
.lp-problem {
  padding: 26px 0 10px;
}

.lp-sectionKicker {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: 34px;
}

.lp-problem__title {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  /* font-size: 20px; */
}

.lp-problem__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  max-width: 650px;
}

.lp-problem__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;

  padding-bottom: 5px;
}

.lp-problem__item--flip {
  grid-template-columns: 1fr 80px;
}

.lp-problem__item--flip .lp-problem__text {
  order: 1;
}

.lp-problem__item--flip .lp-problem__icon {
  order: 2;
}

.lp-problem__icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.lp-problem__icon img {
  width: 75px;
  height: auto;
  border-radius: 9999px;
}

.lp-problem__text {
  margin: 0;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 2px;
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
}

@media screen and (min-width:1024px) {

  /* PROBLEM：PCは中央寄せ感を出す */
  .lp-problem__list {
    width: min(860px, 100%);
    margin-inline: auto;
    max-width: 700px;
  }

  .lp-problem__item {
    grid-template-columns: 100px 1fr;
  }

  .lp-problem__item--flip {
    grid-template-columns: 1fr 100px;
  }

  .lp-problem__icon {
    width: 100px;
    height: 100px;
  }

  .lp-problem__icon img {
    width: 100px;
  }
}



/* ===================================
  Bottom fixed CTA
=================================== */
.lp-bottomCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 74px;
}

.lp-bottomCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  gap: 10px;
}

.lp-bottomCta__btn--line {
  background: var(--lineGreen);
  color: #fff;
}

.lp-bottomCta__btn--contact {
  background: var(--cream);
  color: var(--accent);
}

@media screen and (min-width:768px) {
  .lp-bottomCta {
    display: none;
  }
}

/* ===================================
  PC layout (任せ前提の“整えるだけ”)
=================================== */
@media (min-width: 1024px) {

  /* HERO：PCだけ少し高さを出す */
  .lp-hero__media {
    aspect-ratio: 16 / 9;
    /* min-height: 500px; */
    height: 900px;
  }
}

@media screen and (min-width:1440px) {

  /* CTAは少し大きく */
  .lp-heroCta {
    width: 250px;
    left: calc((100vw - 1120px) / 2);
    bottom: 12%;
  }
}