@charset "UTF-8";
/* 初期化処理 */
html {
  line-height: 1;
}

/* ------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif, "Lato";
}

/* 画像の縦横比を崩れにくくする。毎回設定しよう。 */
img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------ */
a {
  text-decoration: none;
}

/* ヘッダー */
.header {
  height: 100px;
}
@media (max-width: 768px) {
  .header {
    height: 72px;
  }
}
.header-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 12px;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header-logo {
    gap: 5px;
  }
}
.header-logo a img {
  width: 52px;
  height: 52px;
}
@media (max-width: 768px) {
  .header-logo a img {
    width: 42px;
    height: 42px;
  }
}
.header-logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .header-logo-text {
    font-size: 24px;
  }
}
.header-nav-list {
  display: flex;
  gap: 20px;
  font-weight: bold;
  align-items: center;
}
.header-nav-list-1 {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 550px) {
  .header-nav-list-1 {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-nav-list-1 {
    font-size: 10px;
    gap: 10px;
  }
}
.header-item {
  font-size: 14px;
  color: #333;
}

/* 使いまわすボタン */
.cta-btn {
  display: block;
  width: 186px;
  height: 45px;
  background-color: #006536;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-btn {
    font-size: 15px;
    width: 158px;
    height: 34px;
  }
}

/* ファーストビュー */
.fv {
  background-image: url(./img/koretequ-fv-1.jpg);
  height: 609px;
  background-size: cover;
  background-position: center;
}
.fv-copy {
  text-align: center;
}
.fv-copy-ttl-sp {
  display: none;
}
.fv-copy-ttl-sp {
  font-size: 28px;
  line-height: 2;
  padding-top: 126px;
  padding-left: 12px;
  padding-right: 84px;
  align-items: flex-start;
}
.fv-copy-ttl-pc {
  font-size: 38px;
  font-weight: bold;
  line-height: 2;
  color: #333;
  max-width: 607px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 105px;
}
@media (max-width: 768px) {
  .fv-copy-ttl-pc-ttl-pc {
    display: none;
  }
  .fv-copy-ttl-pc-ttl-pc-ttl-sp {
    display: show;
  }
}
.fv-copy-txt {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.75;
  padding-top: 40px;
}
.fv-copy button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

/* item部分 */
.item {
  background-color: #F1F5F2;
}
.item-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.item-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  padding-top: 40px;
  padding-bottom: 47px;
}
@media (max-width: 768px) {
  .item-title {
    font-size: 24px;
  }
}
.item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .item-box {
    flex-direction: column;
    align-items: center;
  }
}
.item-box-content {
  height: 446px;
  width: 340px;
  margin-bottom: 58px;
}
@media (max-width: 768px) {
  .item-box-content {
    height: 400px;
    margin-bottom: 20px;
  }
}
.item-box-content h4 {
  font-size: 18px;
  font-weight: bold;
  color: #006536;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.item-box-content p {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  line-height: 1.75;
}

/* Contact部分 */
.contact {
  background-image: url(./img/coretequ-contact.jpg);
  background-size: cover;
  background-position: center;
  height: 332px;
}
.contact h3 {
  padding-top: 76px;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .contact h3 {
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1.5;
    padding-top: 45px;
  }
}
.contact-p {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .contact-p {
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 5px;
    line-height: 1.5;
  }
}
.contact-btn {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 55px;
  padding-bottom: 72px;
}
@media (max-width: 768px) {
  .contact-btn {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
  }
}

.cta-btn-contact {
  display: block;
  width: 186px;
  height: 45px;
  background-color: #4356B7;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-btn-contact {
    font-size: 15px;
    width: 158px;
    height: 34px;
  }
}

/* フッター */
footer {
  background-color: #333;
  text-align: center;
}
footer .info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 49px;
  padding-right: 25px;
}
@media (max-width: 768px) {
  footer .info {
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
    padding-right: 0;
    gap: 15px;
  }
}
footer .info-a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
footer .footer-p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding-top: 15px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer-p {
    padding-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */