@charset "UTF-8";

/*====================
greeting
====================*/
.greeting {
  margin-top: 20px;
  padding: 52px var(--contentPadding) 72px;
  background-color: var(--primary-rightGreen);
  border-radius: 0px 40px;
}

.greeting__txt {
  text-align: center;
  margin-top: 32px;
}

.greeting__txt p {
  margin-top: 12px;
}

.greeting__txt p:last-of-type {
  margin-top: 16px;
}

.slider {
  margin: -28px 0 8px;
  z-index: 10;
}

.slider li {
  margin-left: 8px;
}

/*====================
overview
====================*/
.section--overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 64px auto 0;
}

.overview {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 var(--contentPadding);
}

.topic--overview {
  align-items: center;
}

.map {
  width: 100%;
  height: 240px;
  margin-top: 24px;
  border-radius: 0 40px;
}

/*====================
lineUp
====================*/
.section--cmnLineUp {
  padding: 64px 0;
}

/*
PC
======================================== */
@media screen and (min-width: 769px) {
  /*====================
  greeting PC
  ====================*/
  .greeting {
    padding: 76px 0px 136px 0px;
  }

  .slider {
    margin: -64px 0 24px;
  }

  .slider li {
    margin-left: 16px;
  }

  /*====================
  overview PC
  ====================*/
  .section--overview {
    margin: 96px auto 0;
  }

  .overview {
    gap: 36px;
    max-width: 1120px;
    padding: 0 60px;

  }

  .map {
    height: 400px;
    margin-top: 64px;
    border-radius: 0 80px;
  }

  /*====================
  lineUp PC
  ====================*/
  .section--lineUp {
    padding: 83px 0 64px;
  }
}