@charset "UTF-8";

:root {
  --black-color: #222;
  --main-color: #cc2020;
  --accent-color: #141538;
  --white-color: #fff;
  --gray-color: #fdfdfd;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--black-color);
}

.l_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--gray-color);
  width: 100%;
}

@media screen and (max-width: 600px) {
  .l_header {
    flex-direction: column;
    gap: 16px;
  }
}

.l_header_logo {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 480px) {
  .l_header_logo {
    width: 100%;
  }
}

.l_header_nav-list {
  display: flex;
  gap: 16px;
  color: var(--accent-color);
}

@media screen and (max-width: 480px) {
  .l_header_nav-list {
    justify-content: center;
  }
}

.l_header_nav-link {
  transition: 0.2s;
  position: relative;
  padding-bottom: 8px;
  white-space: nowrap;
}

.l_header_nav-link:hover {
  color: var(--main-color);
}

.l_header_nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.l_header_nav-link:hover::after {
  width: 100%;
  left: 0;
}

.l_container {
  max-width: 960px;
  padding: 120px 16px;
  margin: 0 auto;
}

.l_footer {
  text-align: center;
  padding: 80px 16px 8px;
  letter-spacing: 0.1em;
}

.l_footer_nav {
  text-align: center;
}

.l_footer_logo {
  width: 260px;
  margin: 0 auto;
}

.l_footer_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_footer_link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/tab-icon.png");
  background-size: contain;
}

.l_footer_copy {
  margin-top: 64px;
  font-size: 13px;
}

.m_btn {
  margin: 32px 0;
  width: 260px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: 0.5s;
}

.m_btn:hover {
  background: var(--white-color);
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

@media screen and (max-width: 480px) {
  .m_btn {
    margin: 32px auto;
  }
}

.m_btn_link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.m_cta {
  background: var(--accent-color);
  color: var(--white-color);
  text-align: center;
}

.m_btn {
  margin: 32px auto;
}

.m_cta_ttl {
  font-size: 24px;
  font-family: "Noto Serif", serif;
}

.m_cta_txt {
  margin-top: 24px;
  font-size: 30px;
  text-align: center;
}

@media screen and (max-width: 520px) {
  .m_cta_txt {
    font-size: 20px;
  }
}

.m_cta_ttl__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  display: block;
}

.m_section_ttl {
  font-size: 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .m_section_ttl {
    font-size: 24px;
  }
}

.m_ttl_en {
  font-size: 60px;
  line-height: 1;
  font-family: "Noto Serif", serif;
}

.u_br_db {
  display: none;
}
@media screen and (max-width: 768px) {
  .u_br {
    display: none;
  }

  .u_br_db {
    display: block;
  }
}

.u_bold {
  font-weight: bold;
}

.u_main-color {
  color: var(--main-color);
}

.mv {
  height: 100vh;
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .mv {
    height: 60vh;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .mv {
    height: 80vh;
    display: block;
  }
}

.mv_copy-container {
  opacity: 0;
  padding: 0 16px;
}

@media screen and (max-width: 1024px) {
  .mv_copy-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 480px) {
  .mv_copy-container {
    text-align: center;
    width: 100%;
  }
}

.mv_copy {
  font-size: 4vw;
  line-height: 1;
  font-family: "Noto Serif", serif;
  text-wrap: nowrap;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .mv_copy {
    font-size: 8vw;
  }
}

.mv_sub-copy__en {
  font-size: 40px;
  font-weight: lighter;
  color: var(--white-color);
  background: var(--main-color);
  padding: 8px;
  line-height: 1.2;
  margin-top: 24px;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .mv_sub-copy__en {
    font-size: 28px;
  }
}

.mv_sub-copy {
  font-size: 20px;
  margin-top: 16px;
}

@media screen and (max-width: 480px) {
  .mv_sub-copy {
    color: var(--white-color);
    font-size: 16px;
  }
}

.about {
  position: relative;
}

.about_txt-container {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .about_txt-container {
    width: 100%;
  }
}

.about_ttl_en {
  position: relative;
  color: var(--accent-color);
}

.about_ttl_en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: calc(100% - 70%);
  background: var(--main-color);
}

@media screen and (max-width: 900px) {
  .about_ttl_en::after {
    position: static;
    display: block;
    width: 100%;
    margin-top: 16px;
  }
}

.about_txt {
  margin-top: 60px;
}

.about_contents-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .about_contents-wrapper {
    flex-direction: column;
  }
}

.about_img-wrapper {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .about_img-wrapper {
    width: 100%;
    margin-top: 32px;
  }
}

.about_img {
  height: 100%;
}

.about_img {
  object-fit: cover;
}

.points {
  background: var(--main-color);
  color: var(--white-color);
}

.points_ttl {
  margin-top: 40px;
}

.points_ttl_en {
  position: relative;
}

.points_ttl_en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: calc(100% - 60%);
  background: var(--white-color);
}

@media screen and (max-width: 900px) {
  .points_ttl_en::after {
    position: static;
    display: block;
    width: 100%;
    margin-top: 16px;
  }
}

.points_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width: 480px) {
  .points_list {
    display: block;
  }
}

.points_item {
  /* width: 50%; */
  padding: 16px;
  /* box-sizing: border-box; */
  display: flex;
  position: relative;
  justify-content: space-between;
}

/* .points_item:nth-last-child(2n) {

    top: 200px;
} */

.points_item:nth-child(1) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.points_item:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  top: 50%;
}

.points_item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.points_item:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  top: 70%;
}

.points_item:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}

@media screen and (max-width: 768px) {
  .points_item {
    width: 100%;
    padding: 8px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .points_item {
    flex-direction: column;
  }
}

.point_info-container {
  width: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .point_info-container {
    width: 100%;
  }
}

.point_img-container {
  width: 45%;
  height: 100%;
}

@media screen and (max-width: 480px) {
  .point_img-container {
    width: 40%;
    margin: 24px auto;
  }
}

.point_img {
  height: 100%;
  object-fit: contain;
}

.point_number {
  position: relative;
  font-weight: bold;
}

.point_number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  bottom: 0;
  left: 0;
}

.point_name {
  font-size: 30px;
  font-weight: bold;
  text-wrap: nowrap;
}

.point_txt {
  margin-top: 20px;
  font-size: 20px;
}

.service_info-container {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .service_info-container {
    flex-direction: column;
    align-items: center;
  }
}

.service_ttl {
  margin-top: 40px;
  line-height: 1.5;
}

.service_img-container {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .service_img-container {
    margin-top: 90px;
    width: 100%;
  }
}

.service_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_txt {
  margin-top: 32px;
}

.service_img {
  object-position: right;
}

@media screen and (max-width: 480px) {
  .service_inner {
    text-align: center;
  }
}

/* info.html */
.info_mv {
  display: flex;
  height: 100vh;
}

.info_mv_img-wrapper {
  height: 100%;
}

@media screen and (max-width: 675px) {
  .info_mv {
    flex-direction: column;
  }

  .info_mv_img-wrapper {
    height: 50%;
  }
}

.info_mv_txt-container {
  width: 50%;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0 16px;
}

@media screen and (max-width: 675px) {
  .info_mv_txt-container {
    width: 100%;
    height: 50%;
  }
}

.info_mv-copy {
  font-size: 3vw;
  color: var(--white-color);
  position: relative;
  font-family: "Noto Serif", serif;
}

@media screen and (max-width: 768px) {
  .info_mv-copy {
    font-size: 4vw;
  }
}

.info_mv-copy::after {
  content: "";
  width: 1.5px;
  height: calc(100% - 50%);
  background: var(--white-color);
  position: absolute;
  bottom: -60%;
  left: 50%;
}

@media screen and (max-width: 480px) {
  .info_mv-copy {
    font-size: 32px;
  }

  .info_mv-copy::after {
    display: none;
  }
}

.strength_ttl {
  margin-top: 40px;
}

.stength_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .stength_list {
    flex-direction: column;
    gap: 64px;
  }
}

.strength_item {
  width: 30%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .strength_item {
    width: 100%;
    flex-direction: column-reverse;
    gap: 26px;
  }
}

.strength_img-wrapper {
  width: 100%;
  height: 450px;
}

.strengh_number {
  font-weight: bold;
}

.strength_info-wrapper {
  margin-top: 32px;
}

.strength_desc {
  font-size: 24px;
  font-weight: bold;
}

.strengh_txt {
  margin-top: 16px;
}

.strength_ttl_en {
  position: relative;
  color: var(--accent-color);
}

.strength_ttl_en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: calc(100% - 60%);
  background: var(--main-color);
}

@media screen and (max-width: 900px) {
  .strength_ttl_en::after {
    position: static;
    display: block;
    width: 100%;
    margin-top: 16px;
  }
}

.support {
  background: var(--main-color);
  color: var(--white-color);
}

.support_ttl {
  margin-top: 40px;
}

.support_list {
  margin-top: 72px;
  margin-left: 140px;
}

@media screen and (max-width: 768px) {
  .support_list {
    margin-left: 0;
  }
}

.support_item {
  display: flex;
  gap: 32px;
  padding: 24px 32px;
  border-top: 1px solid var(--white-color);
}

@media screen and (max-width: 480px) {
  .support_item {
    flex-direction: column;
    align-items: center;
  }
}

.support_item:last-child {
  border-bottom: 1px solid var(--white-color);
}

.support_number {
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1px var(--white-color);
  font-weight: bold;
}

.support_info-ttl {
  font-size: 24px;
  font-weight: bold;
}

.support_info-txt {
  margin-top: 16px;
}

.support_img-wrapper {
  width: 40%;
}

.support_img {
  object-fit: contain;
}

.vision_ttl {
  font-size: 40px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
}

.vision_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  justify-content: center;
  margin-top: 80px;
}

@media screen and (max-width: 860px) {
  .vision_list {
    flex-direction: column;
    align-items: center;
  }
}

.vision_item {
  font-size: 20px;
  font-weight: bold;
  border: 1px solid var(--main-color);
  padding: 42px 54px;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-wrap: nowrap;
  min-height: 160px;
}

@media screen and (max-width: 768px) {
  .vision_item {
    width: 100%;
  }
}

.vision_img-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .vision_img-list {
    gap: 8px;
  }
}

.vision_img-wrapper {
  width: 30%;
  height: 200px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vision_img-wrapper:nth-child(1) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/service_article.jpg");
  background-size: cover;
  background-position: center;
}
.vision_img-wrapper:nth-child(2) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/books.jpg");
  background-size: cover;
  background-position: center;
}
.vision_img-wrapper:nth-child(3) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/service_radio.jpg");
  background-size: cover;
  background-position: center;
}
.vision_img-wrapper:nth-child(4) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/service_movie.jpg");
  background-size: cover;
  background-position: center;
}
.vision_img-wrapper:nth-child(5) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/service_media.jpg");
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .vision_img-wrapper {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .vision_name {
    font-size: 16px;
  }
}

.vision_txt {
  text-align: center;
  position: relative;
  margin-top: 160px;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .vision_txt {
    text-align-last: left;
  }
}

.vision_txt::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 80px;
  background: var(--main-color);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

/* JS */

.js_loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--main-color);
  z-index: 9999;
}

.js_fade-in {
  opacity: 0;
  transform: translateY(30px);
}
