@charset "UTF-8";
/* =====================================================
  初期設定
--------------------------------------------------*/
p, h1, h2, h3, h4, h5, li, span, a, td, th, address, dt, dd {
  letter-spacing: -0.01em;
  font-size: 14px;
}

h1, h2, h3, h4, h5 {
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
}

p, li, span, a, td, th, address, dt, dd {
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

time {
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  p, h1, h2, h3, h4, h5, li, span, a, td, th, address, dt, dd {
    font-size: 15px;
  }
}
a {
  transition: opacity 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
  opacity: 0.7;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .br_sp {
    display: none;
  }
}
/* --------------------------------------------------
  初期設定  END
=====================================================*/
/* =====================================================
  きりかえ
--------------------------------------------------*/
.pc {
  display: none;
}

.brPc {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
  .brPc {
    display: block;
  }
}
/* --------------------------------------------------
  きりかえ  END
=====================================================*/
/* =====================================================
   共通 
--------------------------------------------------*/
.wrapper,
.nav,
header.site-header {
  border-top: 10px solid #1E1E1E;
}

header,
main,
footer nav {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.btn_link {
  background: #1E1E1E;
  color: #fff;
  display: block;
  border-radius: 6px;
  border: 2px solid #1E1E1E;
  text-align: center;
  padding: 12px 10px 10px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}
.btn_link span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
}
.btn_link:hover {
  background: #6C6C6C;
  border: 2px solid #1E1E1E;
  opacity: 0.9;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .nav,
  header.site-header {
    border-top: none;
  }
}
/* ▼ 764px以上1280px以下だった */
@media screen and (min-width: 764px) and (max-width: 1280px) {
  /*header.site-header{
    padding: 40px 38px 15px 38px !important;
  }
  main{
    padding: 20px 38px 40px 38px;
  }*/
  .wrapper {
    padding: 0 38px 0 38px;
  }
}
/* --------------------------------------------------
   共通 END
=====================================================*/
/* =====================================================
  header
--------------------------------------------------*/
header.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 90px;
  padding: 30px 40px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  transition: transform 0.2s ease;
  z-index: 2000;
}
header.site-header h1 img {
  width: 171px;
  height: 26px;
}

header.site-header.hide {
  transform: translateY(-100%);
}

header.site-header.show {
  transform: translateY(0);
}

header.site-header .header_holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ▼ menu-toggle */
.menu-toggle {
  position: relative;
  width: 27px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-toggle::before {
  top: 0;
}

.menu-toggle::after {
  bottom: 0;
}

.menu-toggle span {
  top: 50%;
  margin-top: -2px;
}

.menu-toggle.open::before {
  top: 50%;
  transform: rotate(45deg);
}

.menu-toggle.open::after {
  top: 50%;
  transform: rotate(-45deg);
  bottom: auto;
}

.menu-toggle.open span {
  opacity: 0;
}

/* ▼ Nav */
.nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 80px);
  margin: 88px 0 0;
  padding: 40px;
  background: #1E1E1E;
  overflow-y: auto;
  z-index: 1000;
}
.nav ul li.current {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  padding: 32px 0;
}
.nav ul li.current::after {
  content: "";
  display: block;
  width: 21px;
  height: 20px;
  margin-left: auto;
  background: url(../image/arrow_current.svg) no-repeat;
}

.nav.open {
  display: flex;
}
.nav.open li {
  margin: 0 0 10px;
  /* ▼ 親リンク部分 */
  /* ▼ サブメニュー部分 */
  /* ▼ 開いている時の状態（親のアイコン変更） */
}
.nav.open li div a {
  display: block;
  color: #FFF;
  font-size: 34px;
  font-weight: 700;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}
.nav.open li div.sbu_nav_grant a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.open li div.sbu_nav_grant a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../image/arrow_right.svg) no-repeat;
  background-size: auto 100%;
  transition: 0.2s ease;
}
.nav.open li .sbu_nav {
  display: none;
  flex-direction: column;
  margin: 25px 0 15px;
  padding-left: 20px;
}
.nav.open li .sbu_nav div {
  margin: 0 0 8px;
}
.nav.open li .sbu_nav a {
  font-size: 24px;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}
.nav.open li .sbu_nav.open {
  display: flex;
}
.nav.open li.open .sbu_nav_grant a::after {
  background: url(../image/arrow_bottom.svg) no-repeat;
  background-size: 100% auto;
}

/* ▼ オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 2500;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav.open ~ .overlay {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

/* ▼ Sub Nav */
.sbu_nav {
  display: none;
  flex-direction: column;
  margin: 25px 0 15px;
  padding-left: 20px;
  position: static;
}
.sbu_nav.open {
  display: flex;
}

/* ▼ bodyスクロール固定 */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  header.site-header {
    position: relative;
    height: auto;
    padding: 40px 0 15px;
    align-items: end;
  }
  header.site-header h1 img {
    max-height: 64px;
    height: 100%;
    max-width: 414px;
    width: 100%;
  }
  .menu-toggle {
    display: none;
  }
  .nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    flex-direction: row;
    gap: 23px;
    background: #1E1E1E;
    margin: 0;
    padding: 10px 34px;
    border-radius: 6px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  }
  .nav li {
    border-right: 1px solid #FFF;
    padding: 0 23px 0 0;
  }
  .nav li div a {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  }
  .nav li:last-child {
    border-right: none;
    padding: 0;
  }
}
/* --------------------------------------------------
  header END
=====================================================*/
/* =====================================================
   footer
--------------------------------------------------*/
footer {
  background: #1E1E1E;
  padding: 42px 38px 36px 38px;
}
footer nav {
  margin: 0 auto 30px;
}
footer nav ul li {
  margin: 0 0 4px;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  color: #FFF;
  font-size: 20px;
}
footer nav ul li div {
  font-weight: 700;
}
footer nav ul li a {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}
footer nav ul li a span {
  font-size: 20px;
  font-weight: 700;
}
footer nav ul li a.jp {
  font-family: "Zen Maru Gothic", sans-serif;
}
footer p small {
  font-size: 20px;
  color: #FFF;
  font-weight: 700;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  footer .footer_group {
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
  }
  footer .footer_group nav.footer_left,
  footer .footer_group .footer_right {
    width: 50%;
    margin: 0;
  }
  footer .footer_group nav.footer_left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 36px;
  }
  footer .footer_group nav.footer_left ul li {
    flex: 0 1 auto;
    white-space: nowrap;
    font-size: 24px;
  }
  footer .footer_group nav.footer_left ul li a {
    font-size: 24px;
  }
  footer .footer_group nav.footer_left ul li a span {
    font-size: 24px;
  }
  footer .footer_group nav.footer_left ul li:nth-child(1) {
    order: 1;
  }
  footer .footer_group nav.footer_left ul li:nth-child(2) {
    order: 3;
  }
  footer .footer_group nav.footer_left ul li:nth-child(3) {
    order: 2;
  }
  footer .footer_group nav.footer_left ul li:nth-child(4) {
    order: 5;
  }
  footer .footer_group nav.footer_left ul li:nth-child(5) {
    order: 6;
  }
  footer .footer_group nav.footer_left ul li:nth-child(6) {
    order: 4;
  }
  footer .footer_group .footer_right {
    text-align: right;
  }
  footer .footer_group .footer_right p small {
    font-size: 24px;
    font-weight: 500;
  }
}
/* --------------------------------------------------
   footer END
=====================================================*/
/* =====================================================
   main 
--------------------------------------------------*/
main {
  margin: 80px auto 0;
}
main .kv_sec {
  margin: 0 0 15px;
}
main .kv_sec video {
  object-fit: cover;
  transform: translateZ(0) scale(1.01);
  clip-path: inset(0 0 1px 0); /* 下だけ1pxカット */
}
main .main_sec {
  margin: 0 36px 40px;
}
main .main_sec .news_sec {
  margin: 0 0 20px;
}
main .main_sec .works_sec {
  margin: 0 0 40px;
}
main .main_sec .news_sec h2,
main .main_sec .works_sec h2 {
  font-size: 24px;
  font-weight: 700;
}
main .main_sec .news_sec .news-list,
main .main_sec .news_sec .works-list,
main .main_sec .works_sec .news-list,
main .main_sec .works_sec .works-list {
  display: flex;
  align-items: center;
  gap: 18px;
}
main .main_sec .news_sec .news-list .date,
main .main_sec .news_sec .works-list .date,
main .main_sec .works_sec .news-list .date,
main .main_sec .works_sec .works-list .date {
  font-size: 16px;
}
main .main_sec .news_sec .news-list ul li,
main .main_sec .works_sec .works-list ul li {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
main .main_sec .works_sec {
  /* display: none; */
}
main .main_sec nav ul li {
  margin: 0 0 15px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  main {
    margin: 0 auto 0;
  }
  main .kv_sec {
    margin: 0 0 38px;
  }
  main .main_sec {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 左右を同じ高さに */
    gap: 42px;
    margin: 0 0 40px;
  }
  main .main_sec .news_sec,
  main .main_sec .works_sec {
    margin: 0 0 32px;
  }
  main .main_sec .works_sec {
    padding: 16px 0 0;
  }
  main .main_sec .left,
  main .main_sec .right {
    width: 50%;
  }
  main .main_sec .left {
    display: flex;
    flex-direction: column; /* 縦積み */
  }
  main .main_sec .left nav {
    margin-top: auto; /* これで左カラムの最下部へ */
  }
  main .main_sec .right {
    display: flex;
    flex-direction: column;
    /* 必要なら間隔 */
    gap: 1rem;
  }
  main .main_sec .right ul{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  main .main_sec .right .Works {
    display: none;
  }
  main .main_sec .news_sec h2,
  main .main_sec .works_sec h2 {
    font-size: 40px;
    line-height: 1.2;
    font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
    margin: 0 0 15px;
  }
  main .main_sec .news_sec .news-list ul li,
  main .main_sec .works_sec .news-list ul li {
    display: block;
  }
  main .main_sec .news_sec .news-list,
  main .main_sec .news_sec .works-list,
  main .main_sec .works_sec .news-list,
  main .main_sec .works_sec .works-list {
    align-items: flex-start;
  }
  main .main_sec .news_sec .news-list img,
  main .main_sec .news_sec .works-list img,
  main .main_sec .works_sec .news-list img,
  main .main_sec .works_sec .works-list img {
    width: 150px;
    height: 100px;
  }
  main .main_sec .news_sec .news-list ul li p,
  main .main_sec .news_sec .works-list ul li p,
  main .main_sec .works_sec .news-list ul li p,
  main .main_sec .works_sec .works-list ul li p {
    font-size: 12px;
  }
  main .main_sec .news_sec .news-list .summary,
  main .main_sec .news_sec .works-list .summary,
  main .main_sec .works_sec .news-list .summary,
  main .main_sec .works_sec .works-list .summary {
    margin: 0 0 15px;
    font-weight: 700;
  }
  main .main_sec .news_sec .news-list .tex,
  main .main_sec .news_sec .works-list .tex,
  main .main_sec .works_sec .news-list .tex,
  main .main_sec .works_sec .works-list .tex {
    font-weight: 400;
  }
  main .main_sec .works_sec {
    display: block;
    border-top: 1px solid #1E1E1E;
  }
  main .main_sec nav ul li {
    margin: 0 0 48px;
  }
}
.news-list,
.works_sec {
  position: relative;
}
.news-list .whole_link,
.works_sec .whole_link {
  position: absolute;
  inset: 0; /* 全体に広げる */
  z-index: 2;
}

/* --------------------------------------------------
   main END
=====================================================*/
