@charset "UTF-8";

/*----------------------------------------------------
  list
----------------------------------------------------*/
.list {
  padding: 150px 0;
  position: relative;
  z-index: 2;
}

.list .container {
  max-width: 1440px;
}

.list__col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list__box {
  width: 31%;
  display: flex;
  flex-direction: column;
}

.list__box:nth-of-type(n+4) {
  margin-top: 80px;
}

.list__box>a {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.list__box-tab {
  position: absolute;
  top: -19px;
  left: 0;
  display: inline-block;
  width: auto;
  height: 38px;
  background: #F5A613;
  padding: 0 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 1;
}

.list__box-img {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.list__box-img::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 65%;
}

.list__box-img>img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 60px 60px 60px;
  border: 8px solid #FDE3B6;
  box-sizing: border-box;
}

.list__box-inner {
  width: 100%;
  padding: 20px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.list__box-inner-tab {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.list__box-inner-tab>span {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 10px;
  background: #eee;
  color: #fff;
  border-radius: 4px;
}

.list__box-inner-tab>span:not(:last-of-type) {
  margin-right: 8px;
}

.list__box-inner-txt {
  width: 100%;
  margin-bottom: 20px;
}

.list__link-btn {
  width: 90%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  box-sizing: border-box;
  line-height: 1.4;
  border-bottom: 2px solid #ccc;
  margin-top: auto;
  position: relative;
}

.list__link-btn::after {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../../icon/arrow-r--ora.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}

.list__link-btn-main {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.list__link-btn-main>img {
  width: 12px;
  margin-left: 5px;
}



.list__link-btn-sub {
  font-size: 1.4rem;
}

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

@media screen and (max-width:1024px) {
  .list__box {
    width: 48%;
  }

  .list__box:nth-of-type(n+3) {
    margin-top: 80px;
  }
}

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

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

@media screen and (max-width:680px) {
  .list .container {
    width: 90%;
  }

  .list__box {
    width: 49%;
  }

  .list__box-tab {
    font-size: 1.4rem;
    height: auto;
    top: -10px;
  }

  .list__box-img {
    margin-bottom: 0;
  }

  .list__link-btn {
    width: 100%;
  }
}

@media screen and (max-width:480px) {
  .list__box {
    width: 100%;
  }

  .list__box:nth-of-type(n+2) {
    margin-top: 50px;
  }
}