@charset "utf-8";

/* -----------------------
  topページ
-------------------------- */

/* -----------------------
  KV
-------------------------- */
.header_logo h1 {
  margin: 0;
  line-height: 1;
  width: fit-content;
}

/* --- splideの上書き --- */
.my_pagination {
  justify-content: start;
  gap: 5px;
}

.my_page {
  background: #d0d1d0;
  opacity: 1;
  width: 5px;
  height: 5px;
}

.my_page.is-active {
  background: #BC222B;
}

.kv .splide img {
  display: inline-block;
  height: 95vh;
  width: 100%;
  object-fit: cover;
}

/* --- KV上のheaderのスタイル --- */
.top header,
.top .header_logo {
  background-color: initial;
  box-shadow: none;
}

.top .header_normal_logo {
  display: none;
}

.header_white_logo {
  display: none;
}

.top .header_white_logo {
  display: inline;
}

.top .header_x {
  color: #fff!important;
}

.top .header_x:hover {
  border-bottom: 1px solid #fff;
}

.top .nav_btn_line {
  background-color: #fff;
}

.top .header_global {
  border: 1px solid #fff;
  color: #fff;
}

/* --------------- */
.kv {
  position: relative;
}

.top_message {
  position: absolute;
  top: 40vh;
  left: 2rem;
  width: 80%;
  transform: translate(0, -50%);
}

.top_message img {
  filter: drop-shadow(0px 0px 16px  rgba(0, 0, 0, 0.4));
}

.top_scrolls {
  position: absolute;
  top: 80%;
  right: 2rem;
  width: 25%;
}

.top_scroll {
  position: static;
}

.top_scroll .scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  animation: scroll 3s ease infinite;
}

.top_scroll .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
}

.top_scroll .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20%;
  transform: translate(-50%, 20%);
  animation: arrow 3s ease infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes arrow {
  0% {
    transform: translate(-50%, 15%) scaleY(0.8);
  }

  100% {
    transform: translate(-50%, 25%) scaleY(1.2);
  }
}

@media all and (min-width: 768px) {
  .top_scrolls {
    top: 73%;
    right: 5%;
    width: 15%;
  }
}

@media all and (min-width: 1024px) {
  #header_nav_wrap {
    background-color: initial;
  }

  .nav_list {
    padding-right: 0!important;
    gap: 0;
  }

  .nav_item {
    padding: 0 1.5vw;
  }

  .top .nav_item {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .nav_list .nav_item:last-child {
    padding-right: 1.5vw;
  }

  .top .nav_link:hover {
     border-bottom: 1px solid #fff;
  }

  .top .nav_link {
    color: #fff;
    text-shadow: 0px 0px 3px #222;
  }

  .nav_link::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .kv .splide img {
    height: auto;
    aspect-ratio: 16/9;
  }

  .top_message {
    top: 50%;
    width: 72%;
  }

  .top_scrolls {
    top: 50%;
    width: 8%;
    transform: translate(0, -50%);
  }

  main {
    padding: 5rem 0 8rem;
    max-width: 900px;
    margin: 0 auto;
  }
}

/* -----------------------
  information
-------------------------- */
.section_ttl {
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.section_ttl .font_en::after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 4rem;
  background-color: #7b7b7b;
  margin: 0 1rem;
  position: relative;
  top: -5px;
}

.section_ttl_en {
  height: 1.8rem;
  object-fit: contain;
}

.industry .section_ttl_en {
  height: 2.6rem;
}

.section_ttl_ja {
  font-size: 1.1rem;
  color: var(--accent_color);
  font-weight: 400;
}

.news {
  padding: 0 0 8rem ;
}

.news_link {
  display: inline-block;
  width: 100%;
  color: var(--font_color);
  padding: 1rem 0;
  border-top: 1px solid #7b7b7b;
}

.news_list .news_item:last-child .news_link {
  border-bottom: 1px solid #7b7b7b;
}

.news_content {
  display: flex;
  gap: 2em;
  list-style: none;
}

.news_time {
  font-weight: 500;
}

.more_link {
  font-size: 1.3rem;
  padding: 0 0 5px 0;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid #fff;
}

.more_link:hover {
  text-decoration: none;
  border-bottom: 1px solid #7b7b7b;
}

.more_link::after {
  display: inline-block;
  content: url(../img/top/moreLinkIcon.svg);
  transition: all .3s ease;
}

@media all and (min-width: 769px) {
  .section_ttl {
    font-size: 2.3rem;
  }

  .section_ttl .font_en::after {
    width: 5rem;
  }

  .section_ttl_ja {
    font-size: 1.6rem;
  }

  .news_list {
    max-width: 769px;
    margin: 0 auto 3rem;
  }

  .more_link_wrap {
    max-width: 769px;
    margin: 0 auto;
  }

  .more_link {
    font-size: 1.4rem; 
    font-weight: 300;
  }
}


/* -----------------------
  news letter
-------------------------- */
.letter {
  padding: 0 0 8rem ;
}

.letter_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.letter_link {
  display: block;
  padding: 1rem 3rem;
  border: 1px solid var(--accent_color);
  font-size: 1.3rem;
}

.letter_link:hover {
  opacity: 0.5;
  text-decoration: none;
}

.letter_time {
  border-bottom: 1px solid #7b7b7b;
  width: fit-content;
}

.letter_ttl,
.letter .more_link {
  line-height: 1.25;
}

@media all and (min-width: 769px) {
  .letter {
    padding: 0 0 10rem ;
  }

  .letter_wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    max-width: 769px;
    margin: 0 auto;
  }

  .letter_list {
    flex-grow: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 0;
  }

  .letter_item {
    flex: 1;
  }

  .letter_link {
    height: 100%;
    font-size: 1.6rem;
  }

  .letter_time {
    font-size: 1.3rem;
  }

  .letter_wrap .more_link_wrap {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0;
    width: 14em;
  }
}


/* -----------------------
  about
-------------------------- */
.about {
  padding: 0 0 6rem ;
}

.about_content {
  text-align: center;
}

.about_content img {
  width: 85px;
  object-fit: contain;
}

.about_content p {
  text-align: left;
  margin-top: 1em;
  font-size: 1.2rem;
  font-weight: 500;
}

@media all and (min-width: 769px) {
  .about {
    padding: 0 0 9rem ;
  }

  .about_content {
    max-width: 769px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
  }

  .about_content img {
    width: 130px;
  }

  .about_content p {
    font-size: 1.6rem;
  }
}


/* -----------------------
  トルコ投資の魅力
-------------------------- */
.charm {
  padding: 0 0 10rem;
}

.charm_pagination {
  bottom: -3rem;
  gap: 10px;
}

.charm_page {
  height: 8px;
  width: 8px;
}

.charm_ttl {
  font-size: 1.3rem;
  font-weight: 500;
}

.charm_slide li:hover a {
  text-decoration: none;
}

.charm_slide .charm_content:hover .charm_ttl {
  color: #808080;
}

.charm_thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media all and (min-width: 769px) {
  .charm_slide_wrap {
    position: relative;
  }
}


/* -----------------------
  主力産業
-------------------------- */
.industry_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.industry_ttl {
  font-size: 1.2rem;
  font-weight: 500;
}

.industry_thumb {
  overflow: hidden;
}

.industry_thumb img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/2.8;
  transition: all .3s ease;
}

.industry_content:hover .industry_ttl {
  color: #808080;
}

.industry_item:hover a {
  text-decoration: none!important;
}

.industry_content:hover .industry_thumb img{
  transform: scale(1.1);
}

@media all and (min-width: 769px) {
  .industry_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}