@charset "utf-8";

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/index/bg-main.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-bottom: 80px;
  color: #ffffff;
  text-shadow: 1px 1px 3px #4b2c14;
  display: block;
  }

.first-view-text h1 {
  font-family: "Zen Kaku Gothic New", "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 44px;
  line-height: 56px;
}

.first-view-text p {
  font-size: 18px;
  margin-top: 15px;
}

.first-view-link {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 200px;
  z-index: 2;
  transition: transform 0.3s, filter 0.3s;
  border-radius: 100%;
}

.first-view-link:hover {
  transform: scale(1.1); /* 画像を少し拡大 */
  filter: brightness(1.2); /* 明るくする */
}

.concept {
  max-width: 1200px;
  margin: 40px auto 120px auto;
  padding-top: 45px;
}

.concept h2 {
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #38B6FF;
  margin-top: 70px;
}

.concept h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #F7891E;
  margin-top: 20px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}

.concept .concept-h {
  line-height: 2;
  text-align: center;
  color: #38B6FF;
  font-weight: bold;
  font-size: 120%;
  margin-top: 50px;
  margin-bottom: 10px;
} 

.concept .concept-p1 {
  line-height: 2;
  text-align: center;
  display: block;
}

.concept .concept-p2 {
  display: none;
}

.link-button-area {
  text-align: center;
  margin-top: 60px;
}

.link-button {
  background-color: #F7891E;
  display: inline-block;
  min-width: 260px;
  line-height: 38px;
  border-radius: 12px;
  font-size: 20px;
  color: #ffffff;
}

.link-button2 {
  background-color: #F7891E;
  min-width: 160px;
  line-height: 25px;
  border-radius: 6px;
  font-size: 14px;
  color: #ffffff;
}

.link-button3 {
  background-color: #F7891E;
  min-width: 160px;
  line-height: 10px;
  border-radius: 6px;
  font-size: 14px;
  color: #ffffff;
}

.link-button:hover {
  background-color: #FFA348;
}

.link-button2:hover {
  background-color: #FFA348;
}

.link-button3:hover {
  background-color: #FFA348;
}

.work {
  background-color: #f7ebdf;
  padding-top: 45px;
  padding-bottom: 55px;
}

.work h2 {
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #38B6FF;
  margin-top: 70px;
  margin-bottom: 50px;
}

.work h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #F7891E;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.work-list {
  width: 100%;
  max-width: 100%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 70px;
  justify-content: center;
  overflow-x: hidden;
}

.work-list dl {
  margin-top: 20px;
  width: 520px;
}

.work-list dt {
  color: #38b6ff;
  font-size:160%;
  font-weight: bold;
}

.work-list dd {
  line-height: 20px;
  margin-top: 10px;
}

.work-announce {
  margin-top: 10px;
  line-height: 22px;
}

.work-announce2 {
  color: #38b6ff;
  margin-top: 10px;
  margin-bottom: 9px;
  line-height: 22px;
  font-size: 90%;
}

.work-list li {
  position: relative;
}

.work-list .work-label {
  position: absolute;
  top: 0;
  left: calc(100% + 18px);
  font-size: 10px;
  white-space: nowrap;
  transform-origin: top left;
  transform: rotate(90deg);
}

.image-link {
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.image-link:hover {
  transform: scale(1.05); /* 画像を少し拡大 */
  filter: brightness(1.2); /* 明るくする */
}

.item-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 50px;
  padding-left: 60px;
  padding-right: 60px;
}

.item-list2 li {
  flex-shrink: 0;
  width: 245px;
  margin: 20px;
}

.item-list2 dl {
  margin-top: 20px;
}

.item-list2 dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 13px;
}

.item-list2 dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  word-wrap: break-word;
}

.item-list2 .price {
  font-size: 14px;
  font-weight: bold;
  color: #F7891E;
  margin-top: 10px;
}

.about {
  max-width: 1200px;
  margin: 40px auto 120px auto;
  padding-top: 45px;
}

.about h2 {
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #38B6FF;
  margin-top: 70px;
}

.about h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #F7891E;
  margin-top: 20px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}

.about .about-p1 {
  line-height: 2;
  text-align: center;
  display: block;
}

.about .about-p2 {
  display: none;
}

.support {
  background-color: #f7ebdf;
  padding-top: 45px;
  padding-bottom: 55px;
}

.support h2 {
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #38B6FF;
  margin-top: 70px;
  margin-bottom: 50px;
}

.support h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #F7891E;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.support-announce {
  margin-top: 10px;
  line-height: 22px;
  color:#ec7d0d;
}

.lead2 {
  max-width: 1200px;
  margin: 50px auto 30px auto;
}

.lead2 h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #38B6FF;
}

.lead2 h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #F7891E;
  margin-top: 20px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}

.lead2 p {
  line-height: 2;
  text-align: center;
}

@media (max-height: 780px) {

  .first-view-link {
    top: 20%;
    left: 10%;
    width: 120px;
  }
  
}

@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 50px);
    background-image: url(../images/index/bg-main-sp.webp);
    align-items: flex-start;
  }

  .first-view-text {
    padding-top: 25px;
    padding-left: 20px;
  }

  .first-view-text h1 {
    font-size: 24px;
    line-height: 38px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
  }

  .first-view-link {
    top: 75%;
    left: 8%;
    width: 120px;
  }

  .concept {
    margin-bottom: 60px;
  }

  .concept h2::after {
    margin-bottom: 70px;
  }

  .concept .concept-p1 {
    display: none;
  }

  .concept .concept-p2 {
    line-height: 1.7;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 20px;
    display: block;
  }

.link-button2 {
  line-height: 25px;
}

  .work {
    padding-top: 30px;
    max-width: 100%;
    word-wrap: break-word;
    overflow: hidden;
    white-space: normal;
    padding-left: 10px;
    padding-right: 10px;
  }

  .work h2::after {
    margin-bottom: 70px;
  }

  .work-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    left: auto;
    transform: none;
    box-sizing: border-box;
  }

  .work-list li {
    width: 100%;
    margin-bottom: 30px;
  }

  .work-list dd {
    max-width: 100%;
    margin-right: 20px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
  }

  .item-list2 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .item-list2 dd {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .work-list .work-label {
    left: auto;
    transform: none;
  }

  .about {
    padding-top: 5px;
    margin-bottom: 100px;
  }

  .about .about-p1 {
    display: none;
  }

  .about .about-p2 {
    line-height: 2;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
  }

  .support {
    padding-bottom: 0px;
  }

  .support p {
    line-height: 2;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }

  .support-announce {
    padding-bottom: 20px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead2 {
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .lead p {
    text-align: left;
  }


}