@charset "UTF-8";
/******************************** 
   フォント、ブレイクポイントなど
*********************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@media screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-sp {
    display: none;
  }
}

/******************************** 
   reset.css、共通
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
figure,
time,
article,
p,
span {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #222;
  word-break: break-all;
}

.dots {
  background-image: radial-gradient(#D9D9D9 1px, transparent 1px);
  background-size: 13px 13px;
  /* 丸の間隔を指定 */
  background-position: 0 0;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
a:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/******************************** 
   inner
*********************************/
.inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/******************************** 
   home
*********************************/
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(-120deg, #FFF791, #56BCA3);
  color: #fff;
}

/* ロゴ（左上） */
.uc__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 240px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .uc__logo {
    left: 16px;
    top: 20px;
    width: 180px;
  }
}

/* リード文（左下） */
.uc__lead {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .uc__lead {
    left: 16px;
    bottom: 20px;
    font-size: 5vw;
  }
}

/* 中央配置コンテンツ */
.uc__content {
  width: 100vw;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 700;
}

.uc__content span {
  display: block;
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .uc__content span {
    font-size: 3.5vw;
  }
}

.uc__upper {
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .uc__upper {
    font-size: 5vw;
  }
}

.uc__lower {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .uc__lower {
    font-size: 9vw;
  }
}

.uc__sub {
  font-size: 16px;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .uc__sub {
    line-height: 1.6;
    font-size: 3.5vw;
    margin-top: 30px;
  }
}