@charset "UTF-8";

/*----------------------------------------------
  base
------------------------------------------------*/
.winternovelty {
  background: #F7F4ED;
}

.winternovelty section {
  max-width: 1100px;
  width: 90%;
  margin: 100px auto 50px;
}

.h4 {
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

.category .title,
.reason .title {
  margin: 30px auto;
  color: #1A929F;
  font-size: 36px;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .category .title,
  .reason .title {
    margin: 15px auto;
    font-size: min(6vw, 24px) !important;
  }

  h4,
  .h4 {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/*----------------------------------------------
  top
------------------------------------------------*/
.TOPheight {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100vh - 60px);
  margin-top: 60px;
  background-image: url(../img/ecobudget/topbg.webp);
  background-size: cover;
  background-position: center right;
  text-align: left;
}

.top-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 460px;
  bottom: 0;
  background-color: #F7F4ED;
}

.TOPheight img {
  display: block;
  width: 45%;
  height: auto;
}

.TOPheight>div:nth-of-type(1) {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.TOPheight>div>div {
  padding-bottom: 3%;
}

.TOPheight>div>div>p:nth-of-type(1)>span {
  display: inline-block;
  padding: 5px 30px;
  color: #fff;
  background: #1A929F;
  border-radius: 500px;
  font-size: 2vw;
  font-weight: 900;
  letter-spacing: 3px;
}

.TOPheight>div>div>p:nth-of-type(2)>span {
  display: block;
  margin: 10px 0 50px;
  padding-bottom: 10px;
  border-bottom: solid 2px #1A929F;
  font-size: min(3vw, 60px);
  font-weight: 900;
  color: #1A929F;
  letter-spacing: 3px;
}

.TOPheight>div>div>p:nth-of-type(3)>span {
  font-size: 20px;
  font-weight: 900;
  line-height: 50px;

}

@media screen and (max-height: 700px) {
  .TOPheight {
    height: 700px;
  }
}


@media screen and (max-width: 1400px) {
  .TOPheight img {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .TOPheight>div>div>p:nth-of-type(2)>span {
    display: block;
    margin: 10px 0 15px;
    font-size: min(10vw, 35px);
    letter-spacing: 1px;
  }

  .TOPheight img {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 1000px) {
  .TOPheight img {
    margin-bottom: 150px;
  }

  .TOPheight>div>div>p:nth-of-type(3)>span {
    font-size: 16px !important;
    line-height: 25px;
  }

  .TOPheight {
    justify-content: center;
  }

  .TOPheight {
    height: 600px;
  }

  .top-bg {
    height: 60%;
  }
}

@media screen and (max-width: 768px) {}

/*sp*/
@media screen and (max-width: 500px) {
  .TOPheight {
    max-height: 500px;
  }

  .TOPheight>div:nth-of-type(1) {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    width: 85%;
    margin-top: 60px;
  }

  .TOPheight>div>div>p:nth-of-type(1)>span {
    font-size: 16px;
  }

  .TOPheight>div>div>p:nth-of-type(2)>span {
    display: block;
    margin: 10px 0 15px;
    font-size: min(6vw, 30px);
    letter-spacing: 1px;
  }

  .TOPheight>div>div>p:nth-of-type(3)>span {
    font-size: 14px;
    line-height: 25px;
  }

  .top-bg {
    height: 300px;
  }

  .TOPheight img {
    width: 55%;
    margin: 0;
  }
}

@media screen and (max-width: 400px) {
  .TOPheight img {
    width: 65%;
  }
}



/*----------------------------------------------
  category
------------------------------------------------*/
.category ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.category li {
  background: #1A929F;
  transition: ease .2s;
}

.category a {
  display: block;
}

.category img {
  border: solid 3px #1A929F;
}

.category p {
  padding: 20px 5px;
  color: #fff;
  text-align: center;
}

.category span {
  display: block;
  font-weight: 900;
  font-size: 18px;
}

.category li:hover {
  opacity: .6;
}

@media screen and (max-width: 900px) {
  .category ul {
    grid-template-columns: 1fr 1fr;
  }

  .category span {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .category ul {
    grid-template-columns: 1fr;
    width: 90%;
  }
}

/*----------------------------------------------
  reason
------------------------------------------------*/

.reason ul {
  background: #fff;
  border-radius: 20px;
  padding: 10px 100px 60px;
}

.reason-h3 {
  padding: 50px 0 10px;
  font-size: 20px;
}

.reason-h3::before {
  content: "●";
  padding-right: 10px;
  color: #1A929F;
}

.reason>ul>li>p:nth-of-type(2) {
  display: flex;
  margin-top: 10px;
  padding: 10px;
  letter-spacing: 1px;
  font-weight: 900;
  background: #EBF9F5;
}

.reason>ul>li>p:nth-of-type(2)>span {
  font-size: 18px;
}

.reason>ul>li>p:nth-of-type(2)>span:first-child {
  margin-right: 5px;
}

.reason>ul>li>p:nth-of-type(2)>span>span {
  color: #1A929F;
}

@media screen and (max-width: 1000px) {
  .reason ul {
    padding: 0 50px 50px;
  }

  .reason>ul>li>p:nth-of-type(2)>span {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .reason ul {
    border-radius: 10px;
    padding: 0 30px 30px;
  }

  .reason>ul>li>p:nth-of-type(2)>span {
    font-size: 14px;
    letter-spacing: 0;
  }

  .reason-h3 {
    padding: 30px 0 10px;
    font-size: 20px;
  }
}

/*----------------------------------------------
  item
------------------------------------------------*/
section.item {
  position: relative;
  padding-top: 100px;
  margin: 0 auto;
}

.item .title {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 100px;
  background-color: #1A929F;
  color: #fff;
  font-size: 30px;
  text-align: center;
  letter-spacing: 2px;
}

section.item>p {
  margin: 50px 0;
  text-align: center;
}

.itemin {
  padding: 50px 100px 70px;
  background: #fff;
  border-radius: 20px;
}



/*アイテム紹介*/
.itemin-group {
  margin: 80px 0 0;
}

.itemin>.itemin-group:nth-of-type(1) {
  margin: 0;
}

.itemin-group-h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  color: #1A929F;
  margin: 20px 0;
}

.itemin-group-h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 35px;
  background: #1A929F;
}

.itemin-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 100px;
  margin: 20px 0 0;
}

.itemin-group ul.itemin-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2%;
}

.itemin-group ul.itemin-group-grid p {
  margin-top: 10px;
  text-align: center;
  font-weight: 900;
}

.itemin-group-h4 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.itemin-group-h4.text-center {
  text-align: center;
}

.itemin-group-p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.itemin-group-calendar {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 50px auto 0;
  padding: 15px;
  background: #1A929F;
  border-radius: 50px;
  box-shadow: 0 3px 6px #00000016;
  font-size: 20px;
  color: #fff;
  text-align: center;
  transition: ease .2s;
}

.itemin-group-calendar:hover {
  opacity: .7;
}

.itemin-group-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.itemin-group-flex img {
  display: block;
  width: 45%;
}

.ex-about {
  margin: 30px 0;
  padding: 30px 40px 40px;
  box-shadow: 0 1px 5px #00000030;
}

.ex-about>h4>span {
  display: block;
  padding-bottom: 10px;
  border-bottom: solid 1px #ccc;
  font-size: 20px;
}

@media screen and (max-width: 1200px) {
  .item .title {
    font-size: 24px !important;
    top: 65px;
  }

  section.item {
    position: relative;
    margin: 0 auto;
    padding-top: 50px;
  }
}

@media screen and (max-width: 1100px) {
  .itemin {
    background: #fff;
    border-radius: 20px;
    padding: 30px 50px 50px;
  }

  .itemin-group ul {
    gap: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .itemin-heading div {
    width: 100%;
  }

  .itemin-heading-img {
    min-height: 400px;
  }

  .itemin-heading-about {
    flex-direction: column;
    gap: 30px;
  }

  .itemin-heading-h3 {
    line-height: 24px;
    margin-bottom: 20px;
  }

  .itemin-heading br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .item .title {
    font-size: 20px !important;
  }

  section.item>p {
    margin: 30px 0;
    text-align: left;
  }

  .itemin-group ul {
    grid-template-columns: 1fr;
  }

  .itemin-group-h4 {
    font-size: 18px;
  }

  .itemin-group ul.itemin-group-grid {
    grid-template-columns: 1fr 1fr;
  }

  .itemin-group-flex {
    flex-direction: column;
    gap: 10px;

  }

  .itemin-group-flex img {
    width: 100%;
  }

  .itemin-group-calendar {
    padding: 15px;
    font-size: min(4.5vw, 16px) !important;
  }
}

@media screen and (max-width: 500px) {
  .itemin {
    padding: 10px 30px 30px;
    border-radius: 10px;
  }

  .item .title {
    padding: 15px;
    font-size: 16px !important;
    letter-spacing: 1px;
  }

  .ex-about {
    margin: 0;
    padding: 20px 0;
    box-shadow: 0 1px 5px #00000000;
  }

  .ex-about>h4>span {
    font-size: 16px;
  }

  .works_logo {
    gap: 30px;
    margin: 20px 0 0;
  }
}

/*----------------------------------------------
  wrap-up
------------------------------------------------*/
.wrap-up {
  text-align: center;
}

.wrap-up img {
  display: block;
  max-width: 400px;
  width: 70%;
  margin: 0 auto;
}

.wrap-up-p {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 900;
  line-height: 40px;
}


@media screen and (max-width: 500px) {
  .wrap-up {
    text-align: left;
  }

  .wrap-up-p {
    margin-top: 30px;
    line-height: 30px !important;
  }
}

/*----------------------------------------------
  banner
------------------------------------------------*/
.banner {
  text-align: center;
}

.spe-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: min(85vw 1632px, 1000px);
  margin: 20px auto 50px;
}

@media screen and (max-width: 767px) {
  .spe-box {
    grid-template-columns: 1fr 1fr;
  }
}
