@charset "UTF-8";
/* --------------------
  Bunt Inc.
  案件名：トルコ共和国大統領府投資・財務局ウェブサイト
  mishima
-------------------- */

/* --------------------
  constants
-------------------- */
:root {
  --base_color: #fff; /* ベースカラー */
  --main_color: #fff; /* メインカラー */
  --accent_color: #BC222B; /* アクセントカラー */
  --font_color: #2d2d2d; /* ベースの文字色  */
  /* ゴシック体 */
  --font_family: "Noto Sans JP",
                 "Helvetica Neue",
                 "Helvetica",
                 "Hiragino Sans",
                 "Hiragino Kaku Gothic ProN",
                 "Arial",
                 "Yu Gothic",
                 "Meiryo",
                 sans-serif;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-VF.woff2") format("woff2");
  font-weight: 400 600 800;
}


/* --------------------
  base
-------------------- */
:root {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
* {
  margin-top: 0;
}
body {
  background-color: var(--base_color);
  color:  var(--font_color);
  font-family: var(--font_family);
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.3em;
}
h1 {
  font-size: 4.5rem;
}
h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.4rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.6rem;
}
h6 {
  font-size: 1.6rem;
}
p {
  font-size: 1.4rem;
}
ul, ol {
  padding-inline-start: 0; /* list-styleを設定する場合は要調整 */
  list-style: none;
}
dd {
  margin-inline-start: 0;
}
img {
  max-width: 100%;
}

a {
  color: var(--font_color);
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media all and (min-width: 769px) {
  a {
    text-decoration: none;
  }
}

/* --------------------
  common
-------------------- */
.pc_only {
  display: none;
}

.font_en {
  font-family: "Helvetica",
               "Overused Grotesk",
               "Arial",
               sans-serif;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center!important;
}

.font_bold {
  font-weight: 700!important;
}

.font_smbold {
  font-weight: 500!important;
}

@media all and (min-width: 769px) {
  body,
  p {
    font-size: 1.6rem;
  }

  .pc_only {
    display: initial;
  }

  .sp_only {
    display: none;
  }
}

/* --------------------
  header
----------------------- */
/* 
  ナビゲーションのブレイクポイントは1024pxとする
 */
header {
  display: flex;
  flex-direction: column;
}

header a {
  text-decoration: none;
}

.header_pc_only {
  display: none;
}

.header_logo {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 7px 10px -9px #a8a8a8;
}

.header_normal_logo,
.header_white_logo {
  height: 60px;
  object-fit: contain;
}

.header_logo_right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.nav_btn {
  width: 36px;
  height: 20px;
  cursor: pointer;
}

.nav_btn_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--font_color);
  margin-bottom: 10px;
  transition: .3s all;
}

.nav_btn.is_open .first {
  transform: translate(0, 12px) rotate(30deg);
  transform-origin: center;
}

.nav_btn.is_open .second {
  transform: rotate(-30deg);
  transform-origin: center;
}

.nav_btn.is_open .third {
  display: none;
}

.nav_btn .nav_btn_line:last-child {
  margin-bottom: 0;
}

.header_x {
  color: var(--font_color);
  border-bottom: 1px solid initial;
  padding-bottom: 4px;
}

.header_x:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--font_color);
  padding-bottom: 3px;
}

.header_x_logo {
  margin-left: 5px;
}

.header_link {
  padding: 4rem 3.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.header_contact,
.header_global {
  display: block;
  width: fit-content;
  padding: .25em 1em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  transition: all .3s ease;
  text-decoration: none;
}

.header_contact {
  color: var(--accent_color);
  border: 1px solid var(--accent_color);
  background-color: #fff;
}

.header_contact:hover {
  color: #fff;
  background-color: var(--accent_color);
  text-decoration: none;
}

.header_global {
  color: var(--font_color);
  border: 1px solid var(--font_color);
}

.header_global:hover {
  color: #fff;
  background-color: #cecece;
  border: 1px solid #cecece;
  text-decoration: none;
}

@media all and (min-width: 1024px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  .header_logo {
    align-items: center;
    position: static;
    padding-left: 2rem;
    box-shadow: none;
  }

  .header_normal_logo,
  .header_white_logo {
    height: 80px;
  }

  .header_sp_only {
    display: none;
  }

  .header_pc_only {
    display: initial;
  }

  .header_link.header_pc_only {
    display: flex;
    gap: 2rem;
    padding: 1rem;
  }

  .header_x,
  .header_contact, 
  .header_global {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

/* --------------------
  navigation
----------------------- */

.header_nav {
  position: relative;
  overscroll-behavior: contain;
}

#header_nav_wrap {
  width: 100%;
  height: calc(100vh - 72.7px);
  overflow-y: scroll;
  overscroll-behavior: contain;
  position: fixed;
  top: 65px;
  left: 110%;
  z-index: 999;
  transition: .3s all ease;
  background-color: #fff;
}

#header_nav_wrap.is_open {
  left: 0;
  box-shadow: 0px 7px 10px -9px #a8a8a8;
}

.nav_list {
  padding: 0 1.5rem 6rem;
  max-width: 500px;
  margin: 0 auto;
}

.nav_item {
  border-bottom: 1px solid #aeaeae;
  padding: 1.5rem 2rem;
  position: relative;
  cursor: pointer;
}

.nav_item::before {
  display: inline-block;
  content: url(../img/common/navCloseIcon.svg);
  position: absolute;
  top: 14px;
  right: 5px;
}

.nav_item.is_open::before {
  content: url(../img/common/navOpenIcon.svg);
}

#home_link.nav_item::before {
  display: none;
}

.nav_child {
  display: none;
  height: 0;
}

.nav_item.is_open .nav_child {
  display: block;
  height: auto;
}

.nav_item.is_open .nav_industry {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1.5em;
}

.nav_link {
  color: var(--font_color);
  font-weight: 500;
}

.nav_child_link {
  color: #818181;
  font-size: 1.2rem;
}

.nav_link:hover,
.nav_child_link:hover {
  text-decoration: none;
}

.nav_child_link:hover {
  color: var(--accent_color);
}

@media all and (min-width: 1024px) {
  header {
    background-color: #fff;
    box-shadow: 0px 7px 10px -9px #a8a8a8;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  #header_nav_wrap {
    position: static;
    box-shadow: none;
    height: auto;
    overflow-y: visible;
  }

  .nav_list {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3%;
    max-width: 100%;
    padding: 0 3rem;
  }

  .nav_item {
    padding: 0;
    border-bottom: none;
  }

  .nav_item::before {
    display: none;
  }

  .nav_link {
    font-size: 1.2rem;
    padding: 0 0 5px 0;
  }

  .nav_link:hover {
     border-bottom: 1px solid var(--font_color);
  }

  .nav_link::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--font_color);
    border-bottom: 1px solid var(--font_color);
    transform: rotate(45deg) translate(3px, -5px);
    position: static;
    margin-left: 3px;
  }

  .nav_list .nav_item:first-child .nav_link::after {
    display: none;
  }

  .nav_item:hover .nav_child {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 170px;
    box-shadow: 0px 0px 22px 0px #a8a8a8;
    background-color: #fff;
    height: auto;
  }

  .nav_child_item {
    border-bottom: 1px solid #aeaeae;
  }

  .nav_child .nav_child_item:last-child {
    border-bottom: none;
  }

  .nav_child_link {
    display: block;
    padding: .5em 1em;
    color: var(--font_color);
  }
}

/* --------------------
  main
----------------------- */
main {
  padding: 7rem 2rem;
}

.content,
.content_md {
  padding: 3rem 0 0;
  line-height: 2.25;
}

.bread {
  display: flex;
  flex-wrap: wrap;
  gap: .25em;
  margin-bottom: 4rem;
  font-size: 1.5rem;
}

.bread_link {
  color: #aeaeae;
  font-weight: 500;
}

.bread_item::after {
  display: inline;
  content: "＞";
  padding-left: .25em;
  color: #aeaeae;
}

.bread .bread_item:last-child::after {
  display: none;
}

.page_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5.5rem;
}

.page_date {
  font-size: 1.4rem;
  color: #999;
}
 
@media all and (min-width: 769px) {
  .content,
  .content_md,
  .content_lg {
    padding: 5rem 0 0;
    margin: 0 auto;
  }

  .content {
    max-width: 850px;
  }

  .content_md {
    max-width: 900px;
  }

  .content_lg {
    max-width: 969px;
  }

  .page_ttl {
    font-size: 2.9rem;
    margin-bottom: 4.5rem;
  }
}

@media all and (min-width: 1024px) {
  main {
    padding: 11rem  2rem 10rem;
  }
}


/* --------------------
  footer
----------------------- */
footer {
  padding: 6rem 2rem 2rem;
  border-top: 1px solid #aeaeae;
}

.gotohome {
  position: fixed;
  bottom: 5%;
  right: 2rem;
  text-align: center;
  color: var(--font_color);
  text-decoration: none;
  font-size: 1.3rem;
}

.gotohome img {
  transform: translate(3px, 8px);
}

.opacity_0 {
  opacity: 0;
}

.opacity_100 {
  opacity: 1;
}

.scale_0 {
  transform: scale(0);
}

.scale_100 {
  transform: scale(1);
}

.footer_contact .header_contact {
  margin-bottom: 4rem;
}

.fnav_item {
  border-top: 1px solid #aeaeae;
  padding: 1rem 0 4rem;
}

.fnav_link {
  color: #aeaeae;
  font-size: 1rem;
  text-decoration: none;
}

.fnav_child_link {
  font-size: 1rem;
  margin-top: 1.8rem;
  text-decoration: none;
  color: var(--font_color);
}

.fnav_home_link:hover,
.fnav_child_link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright {
  font-weight: 500;
  font-size: min(2.8vw, 1rem);
  text-align: center;
}

@media all and (min-width: 600px) {
  .footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

@media all and (min-width: 1280px) {
  footer {
    padding: 6rem 11rem;
  }

  .footer_wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .footer_contact {
    width: 33%;
    display: flex;
    justify-content: end;
    align-items: start;
  }

  .footer_nav {
    flex: 1;
  }
}


/* --------------------
  form
----------------------- */
.form-group {
  margin-bottom: 3rem;
}

.form-group label {
  font-weight: 400;
}

.form-control {
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: 0px 0px 8px -5px #dbdbdb;
  padding: 1em .75em;
  width: 100%;
}

.form-check input {
  border: 1px solid #dbdbdb;
  margin-right: 5px;
}

.form-group .btn {
  width: 314px;
  border: 1px solid var(--accent_color);
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent_color);
  transition: all .3s ease;
  padding: 1em;
  margin: 0 auto;
  display: block;
}

.form-group .btn.btn-gray {
  border: 1px solid #ababab;
  color: #ababab;
}

.form-group .btn:hover {
  background-color: var(--accent_color);
  color: #fff;
}

.form-group .btn.btn-gray:hover {
  background-color: #ababab;
}

.form_required {
  color: var(--font_color);
  font-weight: 700;
}

.field_with_errors {
  background-color: initial!important;
}

.field_with_errors label {
  color: var(--accent_color);
  font-weight: 500;
}

.field_with_errors input {
  border-color: #ff9191;
}

#error_explanation {
  background-color: #fee6e6;
  padding: 1em;
  margin-bottom: 2rem;
}

.contact_go_home {
  display: inline-flex;
  padding: 0 0 5px 0;
  gap: 2rem;
}

.contact_go_home::after {
  display: inline-block;
  content: url(../img/top/moreLinkIcon.svg);
}

@media all and (min-width: 769px) {
  .submit-group {
    display: flex;
    justify-content: center;
  }
}

/* --------------------
  一覧系ページのスタイル
----------------------- */
.add_dod {
  position: relative;
}

.add_dod::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent_color);
  position: absolute;
  bottom: -.5em;
  left: 50%;
  transform: translate(-50%, 0);
}

.index_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.index_link {
  display: block;
  border: 1px solid var(--accent_color);
  border-radius: 1rem;
  font-size: 1.7rem;
  padding: 1em 3em 1em 1em;
  color: var(--accent_color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.index_link::before {
  display: inline-block;
  content: url(../img/common/red_arrow.svg);
  width: 25px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
}

@media all and (min-width: 768px) {
  .index_list {
    grid-template-columns: 1fr 1fr;
    gap: 5.6rem 6.6rem;
  }

  .content_lg .index_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5.6rem 2.4rem;
  }

  .index_link {
    border-radius: 0;
    border: 1px solid #aeaeae;
  }

  .index_link::before {
    content: url(../img/common/gray_arrow.svg);
  }

  .index_link:hover {
    border-radius: 1rem;
    border: 1px solid var(--accent_color);
    text-decoration: none;
  }

  .index_link:hover::before {
    content: url(../img/common/red_arrow.svg);
  }
}


/* --------------------
  CMSページの共通スタイル
----------------------- */
.cms h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3.8rem;
}

.cms h3 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.cms h4 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 3rem;
  position: relative;
  top: 0;
  left: 33px;
}

.cms h4::before {
  display: block;
  content: "";
  width: 28px;
  height: 1px;
  background-color: var(--font_color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 5px), -50%);
}

.cms p {
  font-size: 1.4rem;
  line-height: 2.1;
  margin-bottom: 3.8rem;
}

.cms p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms p + p,
.cms p + ul,
.cms p + ol {
  margin-top: -1.9rem;
}

.cms img {
  object-fit: cover;
  height: auto!important;
}

.cms ul {
  list-style: disc;
  padding-left: 2.5rem;
  margin-bottom: 3.8rem;
}

.cms ol {
  list-style: decimal;
  padding-left: 2.5rem;
  margin-bottom: 3.8rem;
}

.cms table {
  border-collapse: collapse;
  border: 1px solid #aeaeae;
  width: 100%;
}

.cms th,
.cms td {
  padding: .75em;
  border: 1px solid #aeaeae;
}

.cms td a {
  text-decoration: underline;
}

.cms .image_box img {
  margin-bottom: 1.6rem;
}

.industry_h3 {
  margin-bottom: 1.2em!important;
}

@media all and (min-width: 768px) {
  .cms h2 {
    font-size: 2.3rem;
    margin-bottom: 3.6rem;
  }

  .cms h3 {
    font-size: 1.9rem;
    margin-bottom: 3.6rem;
  }

  .cms h4 {
    font-size: 1.9rem;
    margin-bottom: 2.1rem;
  }

  .cms p {
    font-size: 1.6rem;
    line-height: 2.5;
    margin-bottom: 7.3rem;
  }

  .cms p + p,
  .cms p + ul,
  .cms p + ol {
    margin-top: -3.5rem;
  }

  .cms .image_box img {
    margin-bottom: 2.4rem;
  }
}

.movie video {
  max-width: 100%;
}