@charset "UTF-8";

.ly-top {
  width: 100%;
  height: 400px;
  background-image: url(../img/header-pic.jpg);
  background-size: cover;
  background-position: center;
}

.title__inner {
  margin: auto;
  /* padding-left: 3%; */
  padding-top: 8vw;
}

.title {
  font-size: 6rem;
  font-weight: 400;
}

.ly-intro {
  width: 100%;
  min-height: 450px;
  padding-bottom: 80px;
}

.flex-intro {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 100px 0; */
  padding-top: 100px;
}

.intro__leading {
  max-width: 25%;
  min-width: 250px;
  padding-bottom: 50px;
  /* padding: 0 4%; */
}

.intro-text__inner {
  padding-top: 10px;
  width: 430px;
  /* padding: 0 4%; */
}



.ly-sidebar {
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding-bottom: 80px;
}

.flex-sidebar {
  margin: auto;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sidebar__item {
  font-size: 2rem;
  text-align: center;
  display: block;
  width: 33.3333%;
  min-width: 180px;
  height: 60px;
  padding: 16px 0;
  border-left: 1px solid #000;
}

.sidebar__item:last-child {
  border-right: 1px solid #000;
}

.sidebar__item .a {
  color: aqua;
}

.sidebar__item:hover {
  color: rgb(255, 0, 0);
}

.ly-content {
  background-color: rgb(255, 255, 255);
  margin: auto;
}

.content__title {
  height: 50px;
  margin: 0px auto;
  padding-top: 90px;
  padding-bottom: 120px;
  text-align: center;
  /* margin: auto; */
}

.content__title h2 {
  font-weight: 400;
  font-size: 32px;
}

.content-inner {
  margin: auto;
}

.flex__content {
  display: flex;
  flex-wrap: wrap;
  gap: 37px;
  row-gap: 60px;
  justify-content: space-between;
  margin-bottom: 100px;
}

.ly-card--null {
  width: 210px;
  height: 380px;
}

.ly-card .container-min-500 {
  display: none !important;
}

.ly-card {
  width: 210px;
  height: 380px;
}

.content__img {
  width: 210px;
  height: 259px;
  background-color: #eeeeee;
}

.card__bottom {}

.flex-card__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.card__size {
  font-size: 1.8rem;
  line-height: 100%;
  padding-right: 20px;
}

.ly-note {
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding-top: 80px;
  padding-bottom: 120px;
  margin: auto;
}

.note_container {
  max-width: 680px;
  min-width: 340px;
  margin: auto;
  padding: 10px 10px 10px 10px;
  background-color: rgba(230, 228, 228, 0.728);
}

.note_h1 {
  list-style: none;
  font-size: 21px;
  padding-top: 10px;
  padding-bottom: 15px;
  text-align: center;
}

.note-h2 {
  list-style: none;
  font-size: 16px;
  padding-bottom: 7px;
}

.note-text {
  list-style: none;
  font-size: 12px;
  padding-bottom: 24px;
  line-height: 150%;
}

.card__spec {
  font-size: 1.2rem;
  line-height: 150%;
  padding-top: 5px;
  padding-left: 15px;
}

/* メディアクエリの開始 */

@media screen and (max-width: 1090px) {
  .ly-card--null {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .ly-card.container-min-500 {
    display: block !important;
  }

  .flex-sidebar {
    margin: auto;
    margin-top: 30px;
  }

  .sidebar__item {
    font-size: 2rem;
    text-align: center;
    display: block;
    width: 100%;
    min-width: 180px;
    height: 80px;
    padding: 26px 0;
    border-left: none;
    border-top: 1px solid #000;
  }

  .sidebar__item:last-child {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .content-inner {
    margin: auto;
    /* background-color: yellow; */
  }

  .flex__content {
    row-gap: 25px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
  }

  .ly-card {
    width: 100%;
    height: 110px;
    display: flex;
    flex-wrap: nowrap;
    background-color: #ffffff;
    margin: auto;
  }

  .card__head {
    background-color: aqua;
    width: 200px;
    height: 110px;
    overflow: hidden;
  }

  .sp {
    width: 140px;
    height: 100px;
  }

  .content__img {
    max-height: 100%;
    object-fit: cover;
    object-position: center -40px;
  }

  .card-bottom {
    width: 200px;
  }

  .flex-card__title {
    width: 170px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
  }

  .card__leading {
    font-size: 2.4rem;
    line-height: 100%;
  }

  .card__size {
    font-size: 1.8rem;
    line-height: 100%;
  }

  .card__spec {
    font-size: 1rem;
    line-height: 170%;
    padding-left: 15px;
  }
}