@charset "UTF-8";
/* ---------------------------------------------------------
  準備中ページのスタイル
--------------------------------------------------------- */
/* ---------------------------------------------------------
  reset
--------------------------------------------------------- */
/* all element
--------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* element
--------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* ---------------------------------------------------------
  body
--------------------------------------------------------- */
body {
  padding: var(--body-pd);
  line-height: var(--line-height);
  background: var(--body-bg-color);
  color: var(--font-color);
  font-family: var(--font-family);
  font-weight: normal;
}

/* ---------------------------------------------------------
  variables
--------------------------------------------------------- */
:root {
  --white: #FFF;
  --black: #000;
  --gray: #F1F1F1;
  --c-main: #00529F;
  --border-gray: #E0E0E0;
  --line-height: 1.6;
  --body-bg-color: var(--white);
  --font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-color: var(--black);
  --logo-width: clamp(200px, 25vw, 340px);
  --notice-bg-color: var(--gray);
  --footer-bg-color: var(--c-main);
  --footer-font-color: var(--white);
}

/* ---------------------------------------------------------
  coming-soon-page
--------------------------------------------------------- */
.coming-soon-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
}

/* utility
--------------------------------------------------------- */
.word-break {
  display: inline-block;
}

/* ---------------------------------------------------------
  header
--------------------------------------------------------- */
.header {
  padding: var(--pd);
  border-bottom: 1px solid var(--border-gray);
}
.header__logo-img {
  width: var(--logo-width);
}
.header__title {
  font-size: clamp(1.75rem, 0.423rem + 5.897vw, 7.5rem);
}

/* ---------------------------------------------------------
  content
--------------------------------------------------------- */
.content {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 40px 16px;
  text-align: center;
}

.notice {
  padding-bottom: 3vw;
}
.notice__title {
  width: var(--width);
  margin: 0 auto;
}
.notice__text {
  margin-top: var(--mt);
  padding: var(--pd);
  border-radius: calc(2em + 70px);
  background-color: var(--notice-bg-color);
  font-size: clamp(0.875rem, 0.67rem + 1.02vw, 1.438rem);
  font-weight: bold;
  text-align: center;
}

/* ---------------------------------------------------------
  footer
--------------------------------------------------------- */
.footer {
  padding: var(--pd);
  color: var(--footer-font-color);
  background-color: var(--footer-bg-color);
  text-align: center;
}
.footer__copyright {
  font-size: clamp(0.688rem, 0.597rem + 0.45vw, 0.938rem);
}

/* ---------------------------------------------------------
  media queries
--------------------------------------------------------- */
/* sp
--------------------------------------------------------- */
@media screen and (max-width: 767px){
  .header {
    --pd: 14px 16px;
  }
  .notice__title {
    --width: clamp(280px, 80vw, 480px);
  }
  .notice__text {
    --mt: 24px;
    --pd: 16px 36px;
    width: clamp(240px, 90vw, 620px);
  }
  .footer {
    --pd: 16px;
  }
}

/* tablet, PC
--------------------------------------------------------- */
@media screen and (min-width: 768px){
  .header {
    --pd: 20px 56px;
  }
  .notice__title {
    --width: clamp(420px, 60vw, 1014px);
  }
  .notice__text {
    --mt: 56px;
    --pd: 32px 24px;
    width: clamp(240px, 86vw, 1200px);
  }
  .footer {
    --pd: 30px;
  }
}
