/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  overflow-y: scroll;
}
/* html, body {
  height: 100%;
} */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
ul {
  list-style: none;
  padding-left: 0;
}


:root {
  --color-main: #e60012;
  --color-text: #333;
  --font-base: "Noto Sans JP", 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  --font-awesome: "Font Awesome 7 Free";
  --base-width: 1240px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  word-wrap : break-word;
	word-break: break-all;
  min-width: var(--base-width);
	overflow: hidden;
  @media (width <= 768px) {
    min-width: inherit;
  }
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

strong {
	font-weight: bold;
}

a {
  transition: opacity .2s;
	&:link {
		color: var(--color-text);
		text-decoration: none;
		cursor: pointer;
	}
	&:visited {
		color: var(--color-text);
		text-decoration: none;
	}
	&:hover {
		color: var(--color-text);
		text-decoration: none;
    opacity: .8;
	}
	&:active {
		color: var(--color-text);
		text-decoration: none;
	}
}

/* モバイル時 電話番号カラー */
a[href^="tel"]{
  color: var(--color-text);
}

:focus-ring {
  outline: none;
}


/* input */
/* ( 1 ) radio / checkbox 以外リセット */
input[type='button'], input[type='submit'], input[type='text'], input[type='email'], input[type='tel'],  input[type='url'], input[type='password'], input[type='reset'], input[type='search'], textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit; /* 子要素へ引き継ぎ */
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input, textarea {
  &:placeholder-shown {
    color: var(--color-text);
  }
  &::placeholder {
    color: var(--color-text);
  }
  &:focus {
    &:placeholder-shown {
      color: var(--color-text);
    }
    &::placeholder {
      color: var(--color-text);
    }
  }
}


/* =================================
 l-content__size
================================= */
.l-content__size-pc-1 {
  width: var(--base-width);
  margin: 0 auto;
  padding-inline: 20px;
  @media (width <= 768px) {
    width: auto;
    padding-inline: calc(30/750*100vw);
  }
}


/* =================================
 l-header
================================= */
.l-header {
  z-index: 998;
}



/* =================================
 l-main
================================= */
.l-main {
  /* flex: 1; */
  position: relative;
  /* min-height: 450px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  @media (width <= 768px) {
    /* min-height: calc(700/750*100vw); */
  }
}

/* =================================
 l-footer
================================= */
.l-footer {
}


.p-teaser {
  background: url(../img/seedclimax/bg.jpg) center center / auto no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  @media (width <= 768px) {
    background: url(../img/seedclimax/sp/bg.jpg) center center / cover no-repeat;
  }
}


.p-teaser__mv-outer {
  /* margin-block: 250px; */
  height: 100vh;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media (width <= 768px) {
    /* margin-block: calc(500/750*100vw); */
    min-height: calc(500/750*100vw);
  }
}

.p-teaser__mv-img {
  display: flex;
  justify-content: center;
  @media (width <= 768px) {
    width: calc(670/750*100vw);
    margin-inline: auto;
  }
}

.p-teaser__mv-coming {
  display: flex;
  justify-content: center;
  margin-top: 23px;
  @media (width <= 768px) {
    width: calc(382/750*100vw);
    margin-inline: auto;
    margin-top: calc(35/750*100vw);
  }
}

.p-teaser__mv-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  @media (width <= 768px) {
    flex-direction: column;
    gap: calc(50/750*100vw);
    margin-bottom: calc(30/750*100vw);
    li {
      width: calc(550/750*100vw);
      margin-inline: auto;
    }
  }
}


.p-teaser__mv-sankyo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  @media (width <= 768px) {
    margin-inline: auto;
    width: calc(195/750*100vw);
    margin-bottom: calc(32/750*100vw);
  }
}


.p-teaser__mv-complete {
  position: absolute;
  bottom: -39px;
  left: 10px;
  @media (width <= 768px) {
    width: calc(230/750*100vw);
    margin-bottom: calc(16/750*100vw);
    margin-inline: auto;
    position: static;
  }
}
.p-teaser__mv-bottom-text {
  font-size: 1.1rem;
  color: #fff;
  text-align: right;
  position: absolute;
  bottom: -34px;
  right: 10px;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
    margin-right: 0;
    margin-bottom: calc(20/750*100vw);
    text-align: center;
    color: #171717;
    position: static;
  }
}

.p-teaser__footer {
  background: #171717;
  padding-block: 16px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  @media (width <= 768px) {
    padding-block: calc(20/750*100vw);
    font-size: calc(20/750*100vw);
  }
}


.p-countdown__tick {

}

.p-countdown__tick-inner {
  display: flex;
  justify-content: center;
  gap: 17px;
  background: url(../img/seedclimax/bg_countdown.png) center center / auto no-repeat;
  margin-top: 6px;
  @media (width <= 768px) {
    gap: calc(20/750*100vw);
    background: url(../img/seedclimax/sp/bg_countdown.png) center center / calc(668/750*100vw) no-repeat;
    margin-top: calc(14/750*100vw);
  }
}

.p-countdown__tick-wrap {
  position: relative;
  margin-top: 24px;
  @media (width <= 768px) {
    margin-top: calc(30/750*100vw);
  }
  & + & {
    
    &:before {
      content: "";
      position: absolute;
      top: 44px;
      left: -11px;
      width: 5px;
      height: 20px;
      background: url(../img/seedclimax/colon.png) center center / auto no-repeat;
      @media (width <= 768px) {
        top: calc(50/750*100vw);
        left: calc(-13/750*100vw);
        width: calc(6/750*100vw);
        height: calc(21/750*100vw);
        background: url(../img/seedclimax/sp/colon.png) center center / 100% no-repeat;
      }
    }
  }
}

.p-countdown__tick-num-1,
.p-countdown__tick-num-2 {
  line-height: 1;
  font-size: 10.5rem;
  font-family: "Share Tech Mono", monospace;
  color: #fff;
  text-shadow: 0px 0px 6px #00bfff;
  width: 61px;
  height: 102px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  @media (width <= 768px) {
    font-size: calc(128/750*100vw);
    width: calc(74/750*100vw);
    height: calc(116/750*100vw);
  }
}

.p-countdown__tick-num-2 {
  margin-left: 3px;
  @media (width <= 768px) {
    margin-left: calc(4/750*100vw);
  }
}

.p-countdown__tick-text {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  @media (width <= 768px) {
    margin-top: calc(12/750*100vw);
    img {
      height: calc(15/750*100vw);
    }
  }
}



 /* spからコーディング : モバイルファースト */
/* @media (width >= 1025px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 1024px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
} */

/* pcからコーディング */
@media (width >= 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}