@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&family=Yellowtail&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: #36281F;
  --red: #f7514d;
  --white: #fff;
}

.en {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
}

.wbr {
  display: none;
}
@media (max-width: 550px) {
  .wbr {
    display: block;
  }
}

body {
  overflow-x: hidden;
  background-color: #F1EEE9;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.4em;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.2em;
  font-style: normal;
}
@media (max-width: 550px) {
  p {
    letter-spacing: 0.1em;
  }
}

p, h1, h2, h3, h4, h5, h6, span {
  color: var(--black);
}

header {
  z-index: 100;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
}
header .header-box {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
header .header-box a img {
  width: 40px;
}
header .header-box a {
  margin-left: 20px;
}
header .header-box .hamburger {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--red);
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}
header .header-box .hamburger span {
  width: 35px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 20px;
  left: 15px;
}
header .header-box .hamburger span:nth-child(2) {
  top: 30px;
}
header .header-box .hamburger span:nth-child(3) {
  top: 40px;
}

.hero-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 950px) {
  .hero-contact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.hero-contact a {
  align-items: center;
  background-color: var(--red);
  padding: 5px;
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
  border-radius: 100px;
  border: 2px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
@media (max-width: 550px) {
  .hero-contact a {
    font-size: 18px;
  }
}
.hero-contact a:hover {
  background-color: var(--white);
  color: var(--red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.hero-contact .pamphlet-download {
  background-color: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
.hero-contact .pamphlet-download:hover {
  background-color: var(--red);
  color: var(--white);
}

.hero {
  position: relative;
}
.hero .top-bg {
  z-index: -1;
  position: absolute;
  bottom: -100px;
  left: 0;
  overflow-x: hidden;
  width: 100vw;
}
.hero .top-bg img {
  width: 100vw;
}
@media (max-width: 950px) {
  .hero .top-bg img {
    width: 150vw;
  }
}
@media (max-width: 550px) {
  .hero .top-bg img {
    width: 250vw;
  }
}
.hero .hero-logo {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 550px) {
  .hero .hero-logo {
    max-width: 280px;
  }
}
.hero .hero-logo img {
  width: 100%;
}
.hero .hero-mov {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 16px 24px;
}
.hero .hero-mov__card {
  border-radius: 16px;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero .hero-mov__card img,
.hero .hero-mov__card video {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.hero .hero-mov__link {
  display: block;
  width: 100%;
  max-width: 300px;
}
.hero .hero-mov__cursor-play {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 1500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero .hero-mov__cursor-play img {
  width: 40%;
  height: auto;
  display: block;
}
.hero .hero-mov__cursor-play.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero .slick-dots {
  bottom: -8px;
  transform: translateX(-16px);
}
.hero .slick-prev,
.hero .slick-next {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.hero .slick-prev::before,
.hero .slick-next::before {
  color: var(--red);
  font-size: 50px;
  line-height: 50px;
  opacity: 1;
}
.hero .slick-prev {
  left: -40px;
}
@media (max-width: 950px) {
  .hero .slick-prev {
    left: 10px;
  }
}
.hero .slick-next {
  right: -40px;
}
@media (max-width: 950px) {
  .hero .slick-next {
    right: 10px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  z-index: -100;
}
.nav.active {
  z-index: 1000;
}
.nav .nav_box {
  transform: translateX(550px);
  position: absolute;
  width: 90vw;
  max-width: 550px;
  height: 100vh;
  background-color: var(--red);
  top: 0;
  right: 0;
  border-radius: 35px 0 0 35px;
  padding: 20px;
  transition: 0.3s;
  z-index: -100;
}
@media (max-width: 550px) {
  .nav .nav_box {
    width: 350px;
  }
}
.nav .nav_box.active {
  transform: translateX(0);
  z-index: 1000;
}
.nav .nav_box .nav-header {
  display: flex;
  justify-content: space-between;
}
.nav .nav_box .nav-header .nav-logo {
  width: 30px;
}
.nav .nav_box .nav-header .nav-logo img {
  width: 30px;
}
.nav .nav_box .nav-header .nav_btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: var(--white);
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}
.nav .nav_box .nav-header .nav_btn:hover {
  transform: rotate(180deg);
}
.nav .nav_box .nav-header .nav_btn span {
  width: 40px;
  height: 2px;
  background-color: var(--red);
  position: absolute;
  top: 24px;
  left: 5px;
}
.nav .nav_box .nav-header .nav_btn span:nth-child(1) {
  transform: rotate(45deg);
}
.nav .nav_box .nav-header .nav_btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.nav .nav_box .nav_link {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 50px;
}
.nav .nav_box .nav_link a {
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  padding: 10px;
  border-bottom: 1px solid var(--white);
  width: 100%;
  display: block;
  transition: 0.3s;
}
.nav .nav_box .nav_link a:hover {
  opacity: 0.5;
}
.nav .nav_box .nav-contact {
  margin-top: 30px;
}
.nav .nav_box .nav-contact a {
  width: 100%;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--red);
  padding: 5px;
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--white);
  transition: 0.3s;
}
@media (max-width: 550px) {
  .nav .nav_box .nav-contact a {
    font-size: 18px;
  }
}
.nav .nav_box .nav-contact a:hover {
  background-color: var(--red);
  color: var(--white);
}
.nav .nav_box .nav_link2 {
  margin-top: 30px;
  font-size: 20px;
}
.nav .nav_box .nav_link2 a {
  letter-spacing: 0.1;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}
.nav .nav_box .nav_link2 a:hover {
  opacity: 0.5;
}
.nav .nav_box .nav_link2 img {
  width: 15px;
}
.nav .nav_bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
  transition: 0.3s;
}
.nav .nav_bg.active {
  z-index: 990;
  opacity: 1;
}

.ikoma {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 100px;
}
.ikoma .ikoma-title {
  text-align: center;
}
.ikoma .ikoma-title span {
  font-size: 150px;
  line-height: 200px;
  color: #988574;
}
@media (max-width: 950px) {
  .ikoma .ikoma-title span {
    font-size: 100px;
    line-height: 150px;
  }
}
@media (max-width: 550px) {
  .ikoma .ikoma-title span {
    font-size: 50px;
    line-height: 50px;
  }
}
.ikoma .ikoma-title h2 {
  font-size: 36px;
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 550px) {
  .ikoma .ikoma-title h2 {
    font-size: 26px;
  }
}

.where .where-box {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 550px) {
  .where .where-box {
    grid-template-columns: 1fr;
  }
}
.where .where-box .map-box {
  margin: 0 auto;
  max-width: 450px;
}
@media (max-width: 550px) {
  .where .where-box .map-box {
    order: 2;
  }
}
.where .where-box .map-box img {
  width: 100%;
}
.where .where-box .where-right {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 550px) {
  .where .where-box .where-right {
    margin-bottom: 50px;
  }
}
.where .where-box .where-right img {
  width: 100%;
  max-width: 300px;
}
.where .where-box .where-right p {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: 30px;
}
.where .where-box .where-right a {
  margin-top: 30px;
  padding: 10px;
  width: 100%;
  background-color: var(--white);
  border: 2px solid var(--black);
  display: block;
  border-radius: 100px;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
}
.where .where-box .where-right a:hover {
  background-color: #FFB7B5;
}

.lifestyle .life-cards {
  margin-top: 50px;
}
.lifestyle .life-cards .life-card {
  background-color: var(--white);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 30px;
  min-height: 450px;
  align-items: center;
}
@media (max-width: 550px) {
  .lifestyle .life-cards .life-card {
    grid-template-columns: 1fr;
  }
}
.lifestyle .life-cards .life-card .life-card-img {
  text-align: center;
}
.lifestyle .life-cards .life-card .life-card-img img {
  width: 90%;
}
.lifestyle .life-cards .life-card .life-card-text h3 {
  font-size: 32px;
  color: var(--red);
  position: relative;
  display: inline-block;
}
.lifestyle .life-cards .life-card .life-card-text h3::after {
  position: absolute;
  content: "";
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-image: url(../img/piko-naname.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 950px) {
  .lifestyle .life-cards .life-card .life-card-text h3 {
    font-size: 28px;
  }
}
@media (max-width: 550px) {
  .lifestyle .life-cards .life-card .life-card-text h3 {
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.lifestyle .life-cards .life-card .life-card-text p {
  font-size: 18px;
  line-height: 30px;
}
.lifestyle .life-cards .life-card .life-card-text a {
  max-width: 350px;
  text-align: center;
  margin-top: 30px;
  padding: 10px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--black);
  display: block;
  border-radius: 100px;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
}
.lifestyle .life-cards .life-card .life-card-text a:hover {
  background-color: #FFB7B5;
}

.ch-sec {
  margin-top: 100px;
}
.ch-sec .ch-header {
  width: 100vw;
  height: 300px;
  background-image: url(../img/house-kitagaito-1-2.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ch-sec .ch-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
.ch-sec .ch-header > * {
  position: relative;
  z-index: 1;
}
.ch-sec .ch-header {
  display: grid;
  place-items: center;
}
.ch-sec .ch-header h2 {
  font-size: 36px;
  color: var(--red);
  position: relative;
}
.ch-sec .ch-header h2::after {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 51px;
  height: 20px;
  background-image: url(../img/piko.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 550px) {
  .ch-sec .ch-header h2 {
    font-size: 26px;
  }
}
.ch-sec#child .ch-header {
  background-image: url(../img/kosodate-kankyo.jpg);
}
.ch-sec#time .ch-header {
  background-image: url(../img/ikoma-top.png);
}
.ch-sec .ch-text {
  width: calc(100% - 40px);
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
}
.ch-sec .unyo {
  margin: 50px auto;
  text-align: center;
  max-width: 530px;
}
.ch-sec .unyo img {
  width: 100%;
}
@media (max-width: 550px) {
  .ch-sec .unyo {
    max-width: 300px;
  }
}
.ch-sec .house-title {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.ch-sec .house-title h2 {
  font-size: 30px;
  color: var(--red);
}
.ch-sec .house-cards {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 950px) {
  .ch-sec .house-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .ch-sec .house-cards {
    grid-template-columns: 1fr;
  }
}
.ch-sec .house-cards .house-card img {
  width: 100%;
}
.ch-sec .house-cards .house-card h3 {
  font-size: 26px;
}
.ch-sec .house-cards .house-card p {
  font-size: 16px;
  line-height: 20px;
}
.ch-sec .house-cards .house-card a {
  max-width: 350px;
  text-align: center;
  margin-top: 30px;
  padding: 5px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--red);
  display: block;
  border-radius: 100px;
  color: var(--red);
  text-decoration: none;
  transition: 0.3s;
}
.ch-sec .house-cards .house-card a:hover {
  background-color: var(--red);
  color: var(--white);
}
.ch-sec .koso-cards {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 950px) {
  .ch-sec .koso-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .ch-sec .koso-cards {
    grid-template-columns: 1fr;
  }
}
.ch-sec .koso-cards .koso-card img {
  width: 100%;
}
.ch-sec .koso-cards .koso-card h3 {
  font-size: 20px;
}
.ch-sec .koso-cards .koso-card .koso-card__link {
  display: block;
  text-decoration: none;
  color: var(--black);
  transition: 0.3s;
}
.ch-sec .koso-cards .koso-card .koso-card__link:hover {
  opacity: 0.5;
}
.ch-sec .number {
  text-align: center;
  margin: 100px auto;
  width: calc(100% - 40px);
}
.ch-sec .number img {
  width: 100%;
  max-width: 1080px;
}

.number-sec .number-box {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 550px) {
  .number-sec .number-box {
    grid-template-columns: 1fr;
  }
}
.number-sec .number-box .number-illust {
  margin: 0 auto;
}
@media (max-width: 550px) {
  .number-sec .number-box .number-illust.num-even {
    order: -1;
  }
}
.number-sec .number-box .number-illust img {
  width: 100%;
  max-width: 350px;
  text-align: center;
  align-items: center;
}
.number-sec .number-box .number-text h2 {
  font-size: 30px;
}
.number-sec .number-box .number-text h3 {
  font-size: 40px;
}
.number-sec .number-box .number-text h3 span {
  font-size: 100px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1rem;
  color: var(--red);
  padding-right: 5px;
}
.number-sec .number-box .number-text p {
  margin-top: 10px;
}
.number-sec .number-box .number-text p span {
  font-size: 12px;
}
.number-sec .train {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 100px;
}
.number-sec .train img {
  width: 100%;
}
.number-sec .train .tr-pc {
  display: block;
}
@media (max-width: 550px) {
  .number-sec .train .tr-pc {
    display: none;
  }
}
.number-sec .train .tr-sp {
  display: none;
}
@media (max-width: 550px) {
  .number-sec .train .tr-sp {
    display: block;
  }
}

@media (max-width: 550px) {
  .even img {
    order: 1;
  }
  .even .life-card-text {
    order: 2;
  }
}

.support .startup-support {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 24px 16px;
  max-width: 1366px;
  margin: 0 auto;
  margin-top: 20px;
}
.support .startup-support .startup-support__side {
  width: 40px;
  background: #f7f7f7;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.support .startup-support .startup-support__side span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  font-weight: 700;
  color: #9fc4ef;
  letter-spacing: 0.15em;
}
.support .startup-support .startup-support__side span.kurasi {
  color: #9DD5CE;
}
.support .startup-support .startup-support__side span.kosodate {
  color: #F8B1B5;
}
.support .startup-support .startup-support__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.support .startup-support .startup-support__list .startup-support__item {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 15px;
  background: #a9c9ef;
  color: #6E5F55;
  text-decoration: none;
  font-size: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 550px) {
  .support .startup-support .startup-support__list .startup-support__item {
    font-size: 16px;
    letter-spacing: normal;
  }
}
.support .startup-support .startup-support__list .startup-support__item.kurasi {
  background-color: #9DD5CE;
}
.support .startup-support .startup-support__list .startup-support__item.kosodate {
  background-color: #F8B1B5;
}
.support .startup-support .startup-support__list .startup-support__item:hover {
  opacity: 0.5;
  transform: translateY(-5px);
}
.support .startup-support .startup-support__list .startup-support__item.no-link:hover {
  opacity: 1;
  transform: none;
}
.support .sup-tex {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.support .sup-tex p {
  text-align: center;
}

.footer {
  width: 100%;
  margin-top: 100px;
  background-color: var(--red);
  color: var(--white);
  padding: 40px 20px;
  padding-bottom: 100px;
}
.footer .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 550px) {
  .footer .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}
.footer .footer-left .footer-logo {
  display: inline-block;
}
.footer .footer-left .footer-logo img {
  width: 48px;
}
.footer .footer-left .footer-copy {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer .footer-right {
  text-align: right;
  max-width: 700px;
}
@media (max-width: 550px) {
  .footer .footer-right {
    text-align: left;
  }
}
.footer .footer-right .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-end;
}
@media (max-width: 550px) {
  .footer .footer-right .footer-nav {
    justify-content: flex-start;
  }
}
.footer .footer-right .footer-nav a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.footer .footer-right .footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.2s ease;
}
.footer .footer-right .footer-nav a:hover::after {
  width: 100%;
}
.footer .footer-right .footer-contact {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 24px;
  border-radius: 999px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer .footer-right .footer-contact:hover {
  background-color: var(--white);
  color: #000;
}

.d-box {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
}
.d-box .d-p-box {
  text-align: center;
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  height: auto;
}
.d-box .d-p-box .d-text h2 {
  font-size: 30px;
  letter-spacing: normal;
  margin-bottom: 50px;
}
@media (max-width: 550px) {
  .d-box .d-p-box .d-text h2 {
    font-size: 20px;
  }
}
.d-box .d-p-box .d-btns a {
  padding: 30px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: normal;
  font-weight: bold;
  transition: 0.3s;
  border: 2px solid var(--red);
  display: block;
  margin-bottom: 50px;
}
.d-box .d-p-box .d-btns a:hover {
  background-color: var(--white);
  color: var(--red);
}
.d-box .d-back {
  color: var(--red);
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--white);
}/*# sourceMappingURL=style.css.map */