@charset "UTF-8";
.c-select {
  margin: 3em auto;
  padding: 0;
}

.c-select__list {
  max-width: 960px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 16px;
}
@media (max-width: 768px) {
  .c-select__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-select__list.--col {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.c-select__link {
  position: relative;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
}
@media screen and (max-width: 768px) {
  .c-select__link {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.44;
  }
}
.c-select__link:hover {
  background-color: #00A7EA;
  color: #fff;
  border: 1px solid #00A7EA;
  outline: none;
}
.c-select__link:hover:after {
  color: #00A7EA;
}
.c-select__link:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (min-width: 769px) {
  .c-set__item:nth-child(odd) {
    padding-left: 64px;
  }
}
.c-set__item:nth-child(odd) .c-set__wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 769px) {
  .c-set__item:nth-child(odd) .c-set__contents {
    padding-right: 32px;
  }
}
@media screen and (min-width: 769px) {
  .c-set__item:nth-child(even) {
    padding-right: 64px;
  }
}
@media screen and (min-width: 769px) {
  .c-set__item:nth-child(even) .c-set__contents {
    padding-left: 32px;
  }
}
.c-set__item:nth-child(n+2) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .c-set__item:nth-child(n+2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .c-set__item {
    padding: 0;
  }
}

.c-set__link {
  display: block;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-set__link:hover {
  opacity: 0.7;
}

.c-set__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-set__wrap {
    display: block;
  }
}

@media screen and (min-width: 1130px) {
  .c-set__imgWrap {
    width: 54vw;
  }
}
@media screen and (max-width: 1129px) and (min-width: 769px) {
  .c-set__imgWrap {
    width: 45vw;
  }
}
@media screen and (max-width: 768px) {
  .c-set__imgWrap {
    width: 100%;
  }
}
.c-set__imgWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
}
.c-set__imgWrap > img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (min-width: 1130px) {
  .c-set__contents {
    width: calc(100% - 34px);
    max-width: 540px;
  }
}
@media screen and (max-width: 1129px) and (min-width: 769px) {
  .c-set__contents {
    width: calc(100% - 100px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .c-set__contents {
    margin: 30px auto 0;
    width: calc(100% - 40px);
  }
}
.c-set__contents .common-details {
  margin: 60px 0 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .c-set__contents .common-details {
    margin-top: 20px;
    margin-left: auto;
  }
}
.c-set__contents .common-details__link {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-set__contents .common-details__link {
    max-width: 100px;
  }
}

.c-set__heading {
  position: relative;
  color: #00A7EA;
  text-align: left;
  font-size: 2.8571428571vw;
  line-height: 1.2;
  font-weight: bold;
  margin: 0 0 7%;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-set__heading {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.c-set__heading:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #00A7EA;
}
@media screen and (max-width: 768px) {
  .c-set__heading:before {
    top: -12px;
  }
}

.c-set__text {
  color: #1A1A1A;
  margin: 0;
  width: 100%;
}