@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

/* HTML5のセクショナル要素の display 調整 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* ベース設定 */
html,
body {
  height: 100%;
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
font-family: "hiragino-mincho-pron", sans-serif!important;
}

/* リストのマーカーを消す */
ul,
ol {
  list-style: none;
}

/* リンクのスタイルを初期化 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像・メディア要素 */
img,
video,
iframe,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素を統一 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* 引用やコード */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* strong, em の意味保持 */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* hidden 属性 */
[hidden] {
  display: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  line-height: 1.5;
  background-color: #000520;
  color: #fff;
}
body.modal-open {
  overflow: hidden;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  color: #6f8ce8;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

.sp-br {
  display: none;
}
.pc-br {
  display: none;
}

@media (min-width: 768px) {
  .pc-br {
    display: inline;
  }
}

@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

section {
  padding-block: 8rem;
}

.inner {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 8rem;
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 2rem;
  }
}



/*===================================================
    wovn-languages
====================================================*/

    body:not(.page--home) .wovn-languages {
        top: 1.5rem;
    }

    .wovn-languages .nav-dropdown {
        left: 6%;
        width: 11rem;
    }
    .wovn-languages::before {
        right: 2px;
    }

    body:not(.page--home) .wovn-languages {
        top: 30px;
        left: 30px;
    }
    .wovn-languages {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 12px;
        position: fixed;
        z-index: 10;
        width: 13em;
        height: 2em;
        cursor: pointer;
        color: #fff;
        font-weight: bold;
    }
    .wovn-languages::before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        position: absolute;
        top: 3px;
        right: 10px;
        border: 1px solid #fff;
        border-color: transparent transparent #fff #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .wovn-languages .language-name {
    cursor: pointer;
    }
    .wovn-languages .nav-dropdown {
    position: absolute;
    top: 0;
    line-height: 1.4;
    border-bottom: 1px solid;
    text-align: left;
    z-index: 2;
    width: 150px;
    height: 23px;
    }
    .wovn-languages .nav-dropdown .list--language {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    }
    .wovn-languages .nav-dropdown .list--language li {
    width: 100%;
    display: none;
    cursor: pointer;
    padding-bottom: 5px;
    }
    .wovn-languages .nav-dropdown .list--language li.selected {
    display: block;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    }
    .wovn-languages.visible::before {
    content: none;
    }
    .wovn-languages.visible .nav-dropdown {
        opacity: 1;
        pointer-events: visible;
        z-index: 1;
        border: none;
        padding: 10px 10px 5px;
        background: #fff;
        color: #000;
        height: auto;
    }
    .wovn-languages.visible .nav-dropdown .list--language li {
        display: block;
    }
    .wovn-languages.visible .nav-dropdown .list--language li.selected {
        opacity: 0.4;
        pointer-events: none;
    }
    .visible.wovn-languages::before {
    border: 1px solid;
    border-color: transparent transparent #fff #fff;
    z-index: 15;
    top: 13px;
    right: 15px;
    }

    @media screen and (min-width: 961px) {}

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

        body:not(.page--home) .wovn-languages {
            top: 20px;
            left: 20px;
            color: #ffffff;
            mix-blend-mode: difference;
        }
        body:not(.page--home) .wovn-languages::before {
            border: 1px solid #fff;
            border-color: transparent transparent #fff #fff;
        }
    }


header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 8rem;
}
header nav {
  height: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 8rem;
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li a {
  font-size: 21px;
  line-height: 2;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  header nav ul li a {
    font-size: 17px;
  }
}
header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover {
  color: #6f8ce8;
}
header nav ul li a:hover::after {
  width: 100%;
  background-color: #6f8ce8;
}
header .menu {
  display: none;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  header .menu {
    display: flex;
  }
}

.nav-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-modal ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nav-modal ul li a {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 768px) {
  .nav-modal ul li a {
    font-size: 21px;
  }
}
.nav-modal.is-open {
  transform: translateX(0);
}

#hero {
    height: 100vh;
    padding-block: 8rem 12rem;
    box-sizing: border-box;
    background-image: linear-gradient(to bottom, #000520, rgba(0, 5, 32, 0) 40%, rgba(0, 5, 32, 0) 60%, #000520), url(/static/produce101s2/feature/movie_ineedi/assets/hero-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
}
@media (max-width: 768px) {
  #hero {
        background-image: linear-gradient(to bottom, #000520, rgba(0, 5, 32, 0) 60%, rgba(0, 5, 32, 0) 80%, #000520), url(/static/produce101s2/feature/movie_ineedi/assets/hero-background.png);
        background-size: 100%;
        background-position: 0 80%;
        background-repeat: no-repeat;
        min-height: auto;
        padding: 45vh 0 0;
  }
}
#hero .inner {
  position: relative;
  height: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .inner {
    justify-content: flex-start;
  }
}
#hero .inner .logo {
  width: 100%;
  max-width: 640px;
}
@media (max-width: 768px) {
  #hero .inner .logo {
    max-width: 190px;
  }
}
#hero .inner .date {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 768px) {
  #hero .inner .date {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #hero .inner .date {
    font-size: 21px;
    line-height: 2;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #hero .inner .date {
    font-size: 17px;
  }
}
#hero .inner .copy {
  position: absolute;
  top: 4rem;
  right: 0;
  padding: 0 8rem;
  font-size: 24px;
  font-weight: 600;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  #hero .inner .copy {
    font-size: 21px;
        padding: 0;
        margin: 0;
  }
}
@media (max-width: 768px) {
  #hero .inner .copy {
    font-size: 17px;
    line-height: 2;
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #hero .inner .copy {
        font-size: 13px;
        position: absolute;
        right: 5%;
  }
}

#nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  #nav ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #nav ul {
    grid-template-columns: 1fr;
  }
}
#nav ul li a {
    background-color: #23459d;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    font-size: 21px;
    line-height: 2;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  #nav ul li a {
    font-size: 17px;
  }
}
#nav ul li a:hover {
  opacity: 0.8;
}

#news {
  background-color: #000d35;
}
#news .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 4rem;
}
#news .inner h1 {
  grid-column: 1/2;
}
@media (max-width: 768px) {
  #news .inner h1 {
    grid-column: 1/5;
    text-align: center;
  }
}
#news .inner .container {
  grid-column: 2/5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 768px) {
  #news .inner .container {
    grid-column: 1/5;
  }
}
#news .inner .container .see-more {
  font-size: 17px;
  line-height: 2;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 768px) {
  #news .inner .container .see-more {
    font-size: 14px;
  }
}
#news .inner .container .see-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
#news .inner .container .see-more:hover {
  color: #6f8ce8;
}
#news .inner .container .see-more:hover::after {
  width: 100%;
  background-color: #6f8ce8;
}
.newsList{
    width: 100%;
}
.newsList li {
  border-top: 1px solid #6f8ce8;
    position: relative;
}
.newsList li:last-child {
  border-bottom: 1px solid #6f8ce8;
}
.newsList li a {
  display: grid;
  grid-template-columns: 1fr 4rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 2rem 6rem 2rem 2rem;
    box-sizing: border-box;
}

.newsList li a:hover::after {
  transform: rotate(90deg);
}
.newsList li a{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.newsList li a::after {
    display: inline-block;
    content: '';
    background-image: url(/static/produce101s2/feature/movie_ineedi/assets/icon_plus.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    right: 50px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .newsList li a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .newsList li a {
        display: block;
        padding: 4rem 2rem;
  }
	.newsList li a::after {
        position: relative;
        right: auto;
        top: auto;
        margin: 0 0 0 auto;
        display: block;
	}
}

.newsList li a .date{
  color: #6f8ce8;
  font-size: 21px;
  line-height: 2;
}
@media (max-width: 768px) {
  .newsList li a .date {
    font-size: 17px;
  }
}
.newsList li a .tit {
  color: #c0c0c0;
  font-size: 17px;
  line-height: 2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsList li a .tit {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .newsList li a .tit {
    white-space: normal;
    text-overflow: clip;
  }
}
.newsList li a .icon {
  transition: all 0.3s ease-in-out;
}

#introduction {
  height: 1500px;
  background-image: linear-gradient(to bottom, #000520, rgba(0, 5, 32, 0) 60%, rgba(0, 5, 32, 0) 80%, #000520),url("/static/produce101s2/feature/movie_ineedi/assets/introduction-background.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
	#introduction {
	    height: 1000px;
	}
}
#introduction .inner {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  #introduction .inner {
    gap: 4rem;
  }
}
#introduction .inner h1 {
  text-align: center;
}
#introduction .inner .body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#introduction .inner .body p {
  font-size: 21px;
  line-height: 2;
}
@media (max-width: 768px) {
  #introduction .inner .body p {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  #introduction .inner .body p {
    font-size: 17px;
    line-height: 2;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #introduction .inner .body p {
    font-size: 14px;
  }
}
#introduction .inner .body p:first-child {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 768px) {
  #introduction .inner .body p:first-child {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #introduction .inner .body p:first-child {
    font-size: 24px;
    font-weight: 600;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #introduction .inner .body p:first-child {
    font-size: 21px;
  }
}
#introduction .inner .body p:last-child {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 768px) {
  #introduction .inner .body p:last-child {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #introduction .inner .body p:last-child {
    font-size: 24px;
    font-weight: 600;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #introduction .inner .body p:last-child {
    font-size: 21px;
  }
}

#trailer {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  #trailer {
    gap: 4rem;
  }
}
#trailer .video-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
#trailer .video-list .video-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#trailer .video-list .video-item .video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/1;
  background-color: #000520;
  background-size: 100%;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#trailer .video-list .video-item .video-thumb:hover {
  background-size: 105%;
}
@media (max-width: 768px) {
  #trailer .video-list .video-item .video-thumb {
    aspect-ratio: 16/9;
  }
}
#trailer .video-list .video-item .video-title {
  font-size: 17px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  #trailer .video-list .video-item .video-title {
    font-size: 14px;
  }
}

#gallery {
  background-color: #000d35;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  #gallery {
    gap: 4rem;
  }
}
#gallery h1 {
  text-align: center;
}
#gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  height: 100vh;
}
@media (max-width: 768px) {
  #gallery .grid {
    height: auto;
    padding-inline: 2rem;
  }
}
#gallery .grid .gallery-item {
  position: relative;
  height: 100%;
}
#gallery .grid .gallery-item:nth-of-type(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
#gallery .grid .gallery-item:nth-of-type(2) {
  grid-column: 3/4;
  grid-row: 1/2;
}
#gallery .grid .gallery-item:nth-of-type(3) {
  grid-column: 4/5;
  grid-row: 1/2;
}
#gallery .grid .gallery-item:nth-of-type(4) {
  grid-column: 3/4;
  grid-row: 2/3;
}
#gallery .grid .gallery-item:nth-of-type(5) {
  grid-column: 4/5;
  grid-row: 2/3;
}
#gallery .grid .gallery-item:nth-of-type(6) {
  grid-column: 1/2;
  grid-row: 3/5;
}
#gallery .grid .gallery-item:nth-of-type(7) {
  grid-column: 2/3;
  grid-row: 3/5;
}
#gallery .grid .gallery-item:nth-of-type(8) {
  grid-column: 3/4;
  grid-row: 3/4;
}
#gallery .grid .gallery-item:nth-of-type(9) {
  grid-column: 4/5;
  grid-row: 3/4;
}
#gallery .grid .gallery-item:nth-of-type(10) {
  grid-column: 3/4;
  grid-row: 4/5;
}
#gallery .grid .gallery-item:nth-of-type(11) {
  grid-column: 4/5;
  grid-row: 4/5;
}
@media (max-width: 768px) {
  #gallery .grid .gallery-item {
    aspect-ratio: 2.5/1;
  }
  #gallery .grid .gallery-item:nth-of-type(1) {
    grid-column: 1/5;
    grid-row: 1/2;
  }
  #gallery .grid .gallery-item:nth-of-type(2) {
    grid-column: 1/5;
    grid-row: 2/3;
  }
  #gallery .grid .gallery-item:nth-of-type(3) {
    grid-column: 1/5;
    grid-row: 3/4;
  }
  #gallery .grid .gallery-item:nth-of-type(4) {
    grid-column: 1/5;
    grid-row: 4/5;
  }
  #gallery .grid .gallery-item:nth-of-type(5) {
    grid-column: 1/5;
    grid-row: 5/6;
  }
  #gallery .grid .gallery-item:nth-of-type(6) {
    grid-column: 1/5;
    grid-row: 6/7;
  }
  #gallery .grid .gallery-item:nth-of-type(7) {
    grid-column: 1/5;
    grid-row: 7/8;
  }
  #gallery .grid .gallery-item:nth-of-type(8) {
    grid-column: 1/5;
    grid-row: 8/9;
  }
  #gallery .grid .gallery-item:nth-of-type(9) {
    grid-column: 1/5;
    grid-row: 9/10;
  }
  #gallery .grid .gallery-item:nth-of-type(10) {
    grid-column: 1/5;
    grid-row: 10/11;
  }
  #gallery .grid .gallery-item:nth-of-type(11) {
    grid-column: 1/5;
    grid-row: 11/12;
  }
}
#gallery .grid .gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}



#theater .inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
#theater .inner .body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
#theater .inner .body p {
    font-size: 21px;
    line-height: 2;
}
#theater .inner .body a {
    width: fit-content;
    background-color: #23459d;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    font-size: 21px;
    line-height: 2;
    transition: all 0.3s ease-in-out;
}
#theater .inner .body a svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

@media (max-width: 768px) {
    #theater .inner {
        gap: 2rem;
    }
    #theater .inner .body p {
        font-size: 17px;
    }
    #theater .inner .body a {
        font-size: 17px;
    }
    
    
}



.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
.modal.hidden {
  display: none;
}
.modal .modal-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.modal .modal-content {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 1080px;
  aspect-ratio: 16/9;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content .modal-video {
  width: 100%;
  height: 100%;
}
.modal .modal-content .modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal .modal-content .modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  cursor: pointer;
  z-index: 3;
}

footer {
    background-color: #000520;
    background-color: #fff;
    padding: 50vw 0 10vw;
    position: relative;
    z-index: 0;
    color: #000;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #fff, rgba(0, 13, 53, 0) 15%, rgba(0, 13, 53, 0) 90%, #fff), url(/static/produce101s2/feature/movie_ineedi/assets/footer-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}
footer .inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer .inner .logo {
  display: flex;
  justify-content: center;
}
footer .inner .logo img {
    width: 6rem;
    height: 6rem;
    -o-object-fit: cover;
    object-fit: cover;
    filter: invert(1);
}
footer .inner .link {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
footer .inner .link a img {
    width: 2rem;
    height: 2rem;
    -o-object-fit: cover;
    object-fit: cover;
    filter: invert(1);
}
footer .inner p {
  font-size: 17px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  footer .inner p {
    font-size: 14px;
  }
}

.news {
  background-color: #000d35;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .news {
    padding-top: 0;
  }
}

#news-list .inner {
  grid-column: 2/5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 768px) {
  #news-list .inner {
    grid-column: 1/5;
  }
}

#article .inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
#article .inner article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#article .inner article .news-date {
  font-size: 21px;
  line-height: 2;
}
@media (max-width: 768px) {
  #article .inner article .news-date {
    font-size: 17px;
  }
}
#article .inner article .news-title {
  font-size: 32px;
  font-weight: 600;
  color: #6f8ce8;
}
@media (max-width: 768px) {
  #article .inner article .news-title {
    font-size: 28px;
  }
}
#article .inner article .news-body {
  font-size: 17px;
  line-height: 2;
}
@media (max-width: 768px) {
  #article .inner article .news-body {
    font-size: 14px;
  }
}
#article .inner .back-link a {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  transition: all 0.3s ease-in-out;
  font-size: 17px;
  line-height: 2;
}
@media (max-width: 768px) {
  #article .inner .back-link a {
    font-size: 14px;
  }
}
#article .inner .back-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
#article .inner .back-link a:hover {
  color: #6f8ce8;
}
#article .inner .back-link a:hover::after {
  width: 100%;
  background-color: #6f8ce8;
}/*# sourceMappingURL=style.css.map */