@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-size: 0.8421052632vw;
  line-height: 1.5;
  background-color: #fff9f5;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}

input, textarea, button, select {
  font-family: inherit;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h2 {
  font-size: 3rem;
  font-weight: 400;
  margin: 20px 0 0;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.8947368421vw;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  z-index: 1000;
}
.main-header .tsc-logo {
  width: 7.1052631579vw;
}

.fixed-icon {
  position: fixed;
  z-index: 1100;
  top: 2.6315789474vw;
  right: 3.6842105263vw;
  width: 3.1578947368vw;
  height: 3.1578947368vw;
}
.fixed-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.full-page-wrapper {
  width: 100%;
  position: relative;
  aspect-ratio: 1900/2719;
  background-image: url(../img/tcs_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.kv-logo {
  width: 52.6315789474vw;
  margin: 0 5%;
  padding-top: 9.4736842105vw;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.6315789474vw 5% 0;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10.5263157895vw;
}

.sticky-news {
  position: -webkit-sticky;
  position: sticky;
  top: 6.5789473684vw;
  width: 42.1052631579vw;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
}
.sticky-news .bnr-btn {
  transition: opacity 0.3s ease;
}
.sticky-news .bnr-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
.sticky-news .bnr-btn:active {
  opacity: 0.5;
}

.news-list h2 {
  margin-top: 60px;
  height: 40px;
}
.news-list h2 img {
  height: 100%;
  width: auto;
}
.news-list ul {
  list-style: none;
  padding: 0;
}
.news-list ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid #000;
  width: 100%;
}
.news-list ul li .date {
  width: 13%;
  font-size: 1em;
  font-weight: 400;
}
.news-list ul li .contents {
  width: 87%;
  font-size: 1.5em;
}
.news-list ul li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: 0.3s;
}
.news-list ul li a::after {
  content: ">";
  margin-left: 10px;
  font-weight: 100;
  font-family: serif;
  transition: transform 0.3s;
}
.news-list ul li a:hover {
  opacity: 0.7;
}
.news-list ul li a:hover::after {
  transform: translateX(5px);
}

.kv-text-img {
  width: 34.2105263158vw;
  margin-top: 21.0526315789vw;
  margin-bottom: 0vw;
}

.footer {
  background-color: #000;
  color: #fff;
  width: 100%;
}

.footer-logo-area {
  display: flex;
  justify-content: space-between;
  padding: 7.8947368421vw;
  box-sizing: border-box;
}
.footer-logo-area .footer-left {
  width: 15.7894736842vw;
}
.footer-logo-area .footer-right img {
  width: 47.3684210526vw;
  height: auto;
}

.copy-area {
  margin: 0 3.1578947368vw;
}
.copy-area p {
  text-align: right;
  border-top: 1px solid #fff9f5;
  font-size: 0.7368421053vw;
  margin: 0;
  padding: 1.5789473684vw 0 3.1578947368vw 1.5789473684vw;
}

@media (max-width: 768px) {
  .full-page-wrapper {
    aspect-ratio: auto;
    background-image: url(../img/tcs_bg_sp.png);
    background-size: cover;
    background-position: right top;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .main-header {
    height: 18.6666666667vw;
    padding: 0 5.3333333333vw;
  }
  .main-header .tsc-logo {
    width: 21.3333333333vw;
  }
  .fixed-icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    top: 4vw;
    right: 4vw;
  }
  .kv-logo {
    width: 88vw;
    margin: 0 auto;
    padding-top: 32vw;
  }
  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4vw 5.3333333333vw 21.3333333333vw;
    margin-bottom: 0;
  }
  .sticky-news {
    position: static;
    width: 100%;
    margin-bottom: 21.3333333333vw;
  }
  .news-list h2 {
    margin-top: 40px;
    height: 35px;
  }
  .news-list h2 img {
    height: 100%;
    width: auto;
  }
  .news-list ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }
  .news-list ul li .date {
    width: 100%; /* スマホでは横いっぱい */
    margin-bottom: 5px; /* 内容との間に少し隙間を */
    font-size: 0.9rem;
    margin-top: 0;
  }
  .news-list ul li .contents {
    width: 100%;
    font-size: 1.1rem; /* スマホで読みやすいサイズに */
  }
  .news-list ul li a.contents {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .kv-text-img {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer {
    position: static;
    width: 100%;
    background-color: #000;
  }
  .footer-logo-area {
    flex-direction: column;
    align-items: center;
    padding: 16vw 5.3333333333vw;
  }
  .footer-logo-area .footer-left {
    width: 40vw;
    margin-bottom: 10.6666666667vw;
  }
  .footer-logo-area .footer-right img {
    width: 80vw;
  }
  .copy-area p {
    padding: 5.3333333333vw;
    font-size: 3.2vw;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */