@charset "UTF-8";

:root {
  --green: #00511f;
  --shadow-green: rgba(0, 81, 31, 0.24);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--green);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

.company-notice {
  min-height: 100svh;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 164px 0 150px;
}

.notice-card {
  position: relative;
  width: min(1456px, calc(100vw - 460px));
  min-height: 720px;
  background: var(--white);
  text-align: center;
  padding: 100px 96px 86px;
}

.notice-title {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  min-width: 640px;
  margin: 0;
  padding: 16px 54px 21px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 9px 9px 0 var(--shadow-green);
  color: var(--white);
  font-size: clamp(34px, 2.28vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.notice-lead {
  margin: 0 0 72px;
  font-size: clamp(24px, 1.56vw, 30px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.logo-change {
  display: grid;
  grid-template-columns: minmax(330px, 520px) 36px minmax(330px, 520px);
  align-items: center;
  justify-content: center;
  column-gap: 58px;
  margin: 0 auto 78px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.logo-bellwood {
  justify-self: end;
}

.logo-kra {
  justify-self: start;
}

.arrow {
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 28px solid var(--green);
}

.notice-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 18px;
}

.notice-status .line {
  width: 222px;
  height: 2px;
  background: var(--green);
  flex: 0 0 auto;
}

.notice-status p {
  margin: 0;
  font-size: clamp(32px, 2.08vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.notice-note {
  margin: 0;
  font-size: clamp(23px, 1.41vw, 27px);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.sp-only {
  display: none;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .company-notice {
    padding-inline: 44px;
  }

  .notice-card {
    width: 100%;
  }

  .logo-change {
    grid-template-columns: minmax(260px, 420px) 32px minmax(260px, 420px);
    column-gap: 36px;
  }

  .notice-status .line {
    width: 150px;
  }
}

@media (max-width: 767px) {
  .company-notice {
    min-height: 100svh;
    align-items: flex-start;
    padding: 101px 35px 0;
  }

  .notice-card {
    width: 100%;
    min-height: calc(100svh - 101px);
    padding: 101px 30px 84px;
  }

  .notice-title {
    top: -40px;
    width: calc(100% - 34px);
    min-width: 0;
    padding: 15px 22px 19px;
    box-shadow: 8px 8px 0 var(--shadow-green);
    font-size: clamp(20px, 5.6vw, 42px);
    letter-spacing: 0.055em;
  }

  .notice-lead {
    margin-bottom: 57px;
    font-size: clamp(22px, 3.86vw, 29px);
    line-height: 1.63;
    letter-spacing: 0.02em;
  }

  .notice-lead span {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .logo-change {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    margin-bottom: 60px;
  }

  .logo-bellwood {
    width: min(100%, 500px);
  }

  .logo-kra {
    width: min(94%, 460px);
  }

  .arrow {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 18px solid var(--green);
    border-bottom: 0;
  }

  .notice-status {
    gap: 12px;
    margin-bottom: 28px;
  }

  .notice-status .line {
    width: clamp(42px, 9vw, 68px);
  }

  .notice-status p {
    font-size: clamp(30px, 5.33vw, 40px);
    line-height: 1.34;
    letter-spacing: 0.04em;
  }

  .notice-note {
    font-size: clamp(22px, 4vw, 30px);
    line-height: 1.65;
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 390px) {
  .company-notice {
    padding-inline: 22px;
  }

  .notice-card {
    padding-inline: 20px;
  }
}
