/* (c) せきゆおう X：https://twitter.com/wurst_design */
/* production date 2023/8/21 */

/*
576px ...スマホ
768px ...タブレット
992px ...小さなモニタ
1200px ...少し小さいパソコンのモニタ
1400px ...一般的なパソコンのモニタ
*/

html{
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  background: #1A1A18;
  color: #aaa;
}

main{
  background: rgba(26, 26, 24, 0.9);
}

.inner_base_block{
  position: relative;
  background: rgba(26, 26, 24, 1);
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:576px) {

  body {
    font-size: 12px;
  }

}


/* ----------------------------------------- */
/* common */
/* ----------------------------------------- */

.hp_mb01{
  margin-bottom: 18px;
}

.scroll_margin{
  scroll-margin-top:160px ;
}

.title_style01{
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.title_style01 span{
  display: block;
  font-size: 60px;
  font-family: 'Staatliches', cursive;
  line-height: 1;
  margin-bottom: 18px;
}

.btn_more a{
  display: inline-flex;
  padding: 12px 24px;
  gap: 8px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border: 1px solid #484848;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  transition: color 0.4s ease-in , border 0.4s ease-in , background-color 0.4s ease-in;
}

.btn_more a::after{
  content: "";
  width: 11px;
  height: 11px;
  background: url(../images/arrow01.svg)no-repeat right center / 11px 11px;
}

@media (hover: hover) {
  .btn_more a:focus,
  .btn_more a:hover {
    color: #000;
    border: 1px solid #fff;
    background: #fff;
  }
}

.common_base_block{
  max-width: 1900px;
  margin: 0px auto;
  padding: 180px 60px 240px;
}

.news_detail_block{
  max-width: 800px;
  margin: 0px auto;
  padding: 180px 0px 240px;
}

.contact_base_block {
  max-width: 1000px;
  padding: 180px 0px 240px;
  margin: 0px auto;
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .news_detail_block,
  .common_base_block,
  .contact_base_block {
    padding: 100px 6% 160px;
  }

}

@media print,
screen and (max-width:992px) {

  .news_detail_block,
  .common_base_block {
    padding: 120px 6% 180px;
  }

}

@media print,
screen and (max-width:768px) {

  .title_style01 span {
    font-size: 9vw;
    margin-bottom: 8px;
  }

  .btn_more a {
    padding: 12px 20px;
    font-size: 14px;
  }

}

@media print,
screen and (max-width:576px) {

  .common_base_block,
  .contact_base_block,
  .news_detail_block {
    padding: 25vw 6%;
  }

}


/* ----------------------------------------- */
/* page_title */
/* ----------------------------------------- */

.page_title{
  position: relative;
  height: 90vh;
  min-height: 720px;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26, 26, 24, 0.0) 40%, rgba(26, 26, 24, 1) 100%);
}

.page_title_inner {
  position: relative;
  max-width: 1900px;
  margin: 0px auto;
  padding: 0px 60px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}

.page_title_english {
  overflow: hidden;
  display: block;
  font-family: 'Staatliches', cursive;
  line-height: 1;
  font-size: 120px;
  color: #fff;
  width: 100%;
}

.page_title_english span{
  display: inline-block;
  transform: translateY(100%);
  animation: an_page_title 0.6s ease-out forwards;
}

.page_title_jp{
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.page_title_text {
  max-width: 720px;
  margin-bottom: 40px;
}

.page_title_bg{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 90vh;
  min-height: 720px;
  z-index: -1;
}

.page_title_bg img {
  width: 100%;
  height: 90vh;
  min-height: 720px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
}

.page_title_inner time{
  font-size: 20px;
  display: block;
  font-family: 'Staatliches', cursive;
}

.page_title_detail{
  width: 100%;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .page_title {
    min-height: 680px;
  }

  .page_title_inner {
    padding: 0px 6%;
  }

}

@media print,
screen and (max-width:992px) {

  .page_title {
    min-height: 640px;
  }

  .page_title_english {
    font-size: 90px;
  }

  .page_title_detail {
    font-size: 26px;
  }

}

@media print,
screen and (max-width:768px) {

  .page_title {
    height: 78vh;
    min-height: 78vh;
  }

  .page_title_bg {
    height: 78vh;
  }

  .page_title_bg img {
    height: 78vh;
  }


  .page_title_english {
    font-size: 60px;
  }

  .page_title_jp {
    font-size: 16px;
  }

  .page_title_text {
    margin-bottom: 30px;
  }

  .page_title_inner time {
    font-size: 18px;
  }

  .page_title_detail {
    font-size: 22px;
    margin-bottom: 7.5vw;
  }

}


/* ----------------------------------------- */
/* breadcrumb */
/* ----------------------------------------- */

.breadcrumb{
  position: relative;
  width: 100%;
  border-top: 1px solid #484848;
}

.breadcrumb_inner {
  max-width: 1900px;
  margin: 0px auto;
  padding: 30px 0px;
}

.breadcrumb_inner ol{
  display: flex;
}

.breadcrumb_inner ol li{
  position: relative;
  padding-right: 34px;
}

.breadcrumb_inner ol li:not(:last-child)::after {
  content: "";
  position:absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #484848;
  border-right: 1px solid #484848;
  transform: rotate(45deg) translateY(-50%);
}

.breadcrumb_inner ol li a{
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1400px) {

  .breadcrumb_inner {
    width: calc(100% + 6vw);
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb_inner::-webkit-scrollbar{
    height: 3px;
  }

  .breadcrumb_inner::-webkit-scrollbar-track {
    background: transparent;
  }

  .breadcrumb_inner::-webkit-scrollbar-thumb {
    background: #666;
  }

}

@media print,
screen and (max-width:768px) {

  .breadcrumb_inner {
    padding: 20px 0px;
  }

}


/* ----------------------------------------- */
/* header */
/* ----------------------------------------- */

.header_block{
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1000;
  padding: 0px 40px;
  mix-blend-mode: difference;
}

.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #666;
  height: 106px;
  padding-top: 10px;
}

.header_logo{
  max-width: 250px;
  width: 40%;
}

.header_logo img{
  width: 100%;
  height: auto;
}

.header_nav ul{
  display: flex;
  gap: 40px;
}

.header_nav ul li:first-child{
  display: none;
}

.header_nav ul li a{
  position: relative;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  outline: none;
}

.header_nav ul li a::before {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0%;
  height: 1px;
  content: "";
  background: #fff;
  transition: width 0.4s ease-in;
  outline: none;
}

@media (hover: hover) {
  .header_nav ul li a:hover::before,
  .header_nav ul li a:focus::before {
    width: 100%;
  }
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:992px){

  .header_block {
    padding: 0px 4%;
  }

  .header_nav {
    position: fixed;
    flex-wrap: wrap;
    opacity: 0;
    pointer-events: none;
    display: flex;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    padding: 0px 6%;
    justify-content: center;
    align-items: center;
  }

  .header_nav.is_active {
    opacity: 1;
    pointer-events: auto;
  }

  .header_nav ul{
    flex-wrap: wrap;
    width: 100%;
    gap:0px;
  }

  .header_nav ul li {
    width: 100%;
    border-bottom: 1px solid #484848;
  }

  .header_nav ul li:first-child {
    display: block;
  }

  .header_nav.is_active ul li {
    opacity: 0;
    transform: translateY(20px);
  }

  .header_nav.is_active ul li:nth-child(1) {
    animation: an_sp_menu 0.6s 0.4s ease-out forwards;
  }

  .header_nav.is_active ul li:nth-child(2) {
    animation: an_sp_menu 0.6s 0.6s ease-out forwards;
  }

  .header_nav.is_active ul li:nth-child(3) {
    animation: an_sp_menu 0.6s 0.8s ease-out forwards;
  }

  .header_nav.is_active ul li:nth-child(4) {
    animation: an_sp_menu 0.6s 1.0s ease-out forwards;
  }

  .header_nav.is_active ul li:nth-child(5) {
    animation: an_sp_menu 0.6s 1.2s ease-out forwards;
  }

  @keyframes an_sp_menu {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0px);
    }

  }

  .header_nav ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 20px 0px;
    font-family: 'Staatliches', cursive;
  }

  .header_nav ul li a::after {
    content: "";
    width: 14px;
    height: 15px;
    background: url(../images/arrow01.svg)no-repeat right center / 14px 15px;
  }

}

@media print,
screen and (max-width:768px) {

  .header_inner {
    height: 84px;
  }

}

@media print,
screen and (max-width:576px) {

  .header_inner {
    height: 71px;
  }

}


/* ----------------------------------------- */
/* hamburger */
/* ----------------------------------------- */

.hamburger_menu {
  display: none;
  width: 40px;
  height: 40px;
}

.hamburger_bar1,
.hamburger_bar2,
.hamburger_bar3{
  display: block;
  background: #fff;
  width: 26px;
  height: 2px;
  margin: 6px auto 0px;
  transition: transform 0.2s , width 0.2s , opacity 0.2s;
  transform-origin: 1px 1px;
}

.hamburger_menu.is_active .hamburger_bar1{
  transform: translateY(18px) rotate(-45deg);
  width: 30px;
}

.hamburger_menu.is_active .hamburger_bar2 {
  opacity: 0;
  width: 30px;
}

.hamburger_menu.is_active .hamburger_bar3 {
  transform: translateY(-18px) rotate(45deg);
  width: 30px;
}

.hamburger_bg{
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:#1A1A18;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.hamburger_bg.is_active{
  opacity: 1;
  pointer-events: auto;
}


/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:992px) {

  .hamburger_menu {
    display: block;
  }

}


/* ----------------------------------------- */
/* footer */
/* ----------------------------------------- */

.footer_block{
  border-top: 1px solid #484848;
  padding: 40px 60px 60px;
  background: rgba(26, 26, 24, 0.9);
}

.footer_block.footer_block_common{
  background: rgba(26, 26, 24, 1);
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_logo{
  width: 200px;
}

.footer_logo img{
  width: 100%;
  height: auto;
}

.footer_nav ul{
  display: flex;
  gap: 20px;
}

.footer_nav ul li a{
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer_copy{
  font-size: 13px;
  text-align: right;
  margin-top: 40px;
}


/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:992px) {

  .footer_block {
    padding: 40px 6% 60px;
  }

}

@media print,
screen and (max-width:768px) {

  .footer_block {
    padding: 14vw 6%;
  }

  .footer_inner {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer_logo {
    width: 70vw;
    max-width: 400px;
  }

  .footer_logo img {
    width: 100%;
    height: auto;
  }

  .footer_nav ul {
    flex-wrap: wrap;
    width: 70%;
    gap: 16px;
    margin-top: 10vw;
  }

  .footer_nav ul li{
    width: 100px;
  }

  .footer_nav ul li a {
    font-size: 15px;
  }

  .footer_copy {
    font-size: 13px;
    text-align: left;
    margin-top: 14vw;
  }

}


/* ----------------------------------------- */
/* video */
/* ----------------------------------------- */

.video_box{
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

.video_box::before {
  content: "";
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100vh;
  width: 100%;
  z-index: 1;
  background: rgba(26, 26, 24, 0.9);
}

.top_video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  min-height: 100%;
}


/* ----------------------------------------- */
/* kv */
/* ----------------------------------------- */

.kv_block{
  height: calc(100vh + 180px);
  background: linear-gradient(180deg, rgba(26, 26, 24, 0.0) 40%, rgba(26, 26, 24, 0.90) 100%);
}

.kv_inner {
  max-width: 1920px;
  margin: 0px auto;
  padding: 0px 60px 240px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}

.kv_text{
  max-width: 910px;
  width: 80%;
  margin-top: 20px;
}

.catch_box{
  max-width: 1000px;
}

.kv_catch{
  overflow: hidden;
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-family: 'Staatliches', cursive;
  font-size: 120px;
}

.kv_catch span {
  display: inline-block;
  transform: translateY(100%);
}

.kv_catch.kv_catch_01 span{
  animation: an_page_title 0.6s 0.6s ease-out forwards;
}

.kv_catch.kv_catch_02 span {
  animation: an_page_title 0.6s 0.6s ease-out forwards;
}

.kv_catch.kv_catch_03 span {
  animation: an_page_title 0.6s 0.8s ease-out forwards;
}

@keyframes an_page_title{
  0%{
    transform: translateY(100%);
  }
  100%{
    transform: translateY(0%);
  }
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .kv_block {
    height: calc(100vh + 19vw);
  }

  .kv_inner {
    padding: 0px 6% 25vw;
    height: 100%;
  }

  .kv_catch {
    font-size: 104px;
  }
}

@media print,
screen and (max-width:992px) {

  .kv_text {
    width: 100%;
  }

  .kv_catch {
    display: block;
    font-size: 12vw;
  }

  .kv_catch.kv_catch_02 span {
    animation: an_page_title 0.6s 0.8s ease-out forwards;
  }

  .kv_catch.kv_catch_03 span {
    animation: an_page_title 0.6s 1.0s ease-out forwards;
  }

}

@media print,
screen and (max-width:768px) {

  .kv_block {
    height: calc(100vh + 12vw);
  }

}

@media print,
screen and (max-width:576px) {

  .kv_block {
    height: 96vh;
  }

  .kv_inner {
    padding: 0px 6% 30vw;
  }

}


/* ----------------------------------------- */
/* mission */
/* ----------------------------------------- */

.mission_block{
  max-width: 1900px;
  padding: 0px 60px;
  margin: 0px auto;
}

.mission_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
  padding: 80px 0px;
}

.mission_header{
  width: 35%;
}

.mission_body {
  width: 65%;
}

.mission_body p+p{
  margin-top: 40px;
}
/* 保守（拡張）を考えると上記指定は好ましくありません。 */
/* すぐ後ろの要素にのみCSSが適用される例を学習していただくことが目的です。 */


/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .mission_block {
    padding: 0px 6%;
  }

  .mission_header {
    width: 300px;
    max-width: 100%;
  }

  .mission_body {
    width: calc(100% - 360px);
  }

}

@media print,
screen and (max-width:992px) {

  .mission_inner {
    display: block;
    padding: 10vw 0px;
  }

  .mission_header {
    width: 100%;
  }

  .mission_body {
    width: 100%;
    margin-top: 30px;
  }

  .mission_body p+p {
    margin-top: 20px;
  }

}


/* ----------------------------------------- */
/* service */
/* ----------------------------------------- */

.service_block {
  max-width: 1900px;
  padding: 0px 60px;
  margin: 0px auto;
}

.service_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 240px 0px;
}

.service_header {
  position: sticky;
  top: calc(50vh - 130px);
  width: 35%;
  height: 100%;
  max-width: 300px;
}

.service_header p{
  margin-top: 24px;
}

.service_body {
  width: 65%;
}

.service_list{
  counter-reset: count 0;
}

.service_list .title{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 14px;
}

.service_list .title::before {
  content: counter(count, decimal-leading-zero) ;
  counter-increment: count 1;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.service_list li+li {
  margin-top: 100px;
}

.service_list p+p {
  margin-top: 24px;
}

/* ここから、service関連の共通部分の下層ページのみのスタイル */

.service_list.service_page li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service_list.service_page li+li {
  margin-top: 160px;
}

.service_list_img{
  width: 400px;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.25);
}

.service_list_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_list_body{
  width: calc(100% - 460px);
}


.service_list_an{
  opacity: 0;
}

.service_list_an.is_active {
  animation: an_service_list 0.4s ease-out forwards;
}

@keyframes an_service_list {
  0%{
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }

}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .service_block {
    padding: 0px 6%;
  }

  .service_header {
    width: 300px;
    max-width: 100%;
  }

  .service_body {
    width: calc(100% - 360px);
  }

}

@media print,
screen and (max-width:992px) {

  .service_inner {
    display: block;
    padding: 25vw 0px;
  }

  .service_header {
    position: static;
    top: 0px;
    width: 100%;
  }

  .service_body {
    width: 100%;
    margin-top: 15vw;
  }

  .service_list .title {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
  }

  .service_list li+li {
    margin-top: 80px;
  }

  .service_body p+p {
    margin-top: 22px;
  }

  /* ここから、service関連の共通部分の下層ページのみのスタイル */

  .service_list.service_page li {
    align-items: flex-start;
  }

  .service_list.service_page li+li {
    margin-top: 80px;
  }

  .service_list_img {
    width: 36%;
  }

  .service_list_body {
    width: calc(100% - 36% - 4%);
  }

}

@media print,
screen and (max-width:768px) {

  .service_list.service_page li{
    flex-wrap: wrap;
    gap: 20px;
  }

  .service_list li+li,
  .service_list.service_page li+li {
    margin-top: 15vw;
  }

  .service_list_img {
    width: 100%;
    aspect-ratio: 2/1;
  }

  .service_list_body {
    width: 100%;
  }

}


/* ----------------------------------------- */
/* members */
/* ----------------------------------------- */

.members_block{
  padding: 0px 0px 180px;
  overflow: hidden;
}

.members_header{
  max-width: 1900px;
  padding: 0px 60px 80px;
  margin: 0px auto;
}

.members_header p{
  max-width: 660px;
  margin-top: 18px;
}

.members_btn{
  text-align: center;
}

.members_card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

.members_name {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(180deg, rgba(26, 26, 24, 0.00) 60%, rgba(26, 26, 24, 0.70) 100%);
}

.members_name span{
  font-size: 34px;
  display: block;
  line-height: 1;
  margin-top: 5px;
  font-family: 'Staatliches', cursive;
}

.members_card img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* swiper */

.members_body .swiper{
  position: relative;
  overflow: visible;
  max-width: 1900px;
  margin: 0px auto;
  padding: 0px 60px 80px;
}

.swiper-button{
  position: absolute;
  top: -130px;
  right: 60px;
  display: flex;
  gap: 20px;
}

.swiper-button-prev,
.swiper-button-next{
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #484848;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: border 0.4s ease-in, background-color 0.4s ease-in;
}

@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover,
  .swiper-button-prev:focus,
  .swiper-button-next:focus{
    background: #fff;
  }
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 20px;
  height: 15px;
}

.swiper-button-prev svg path,
.swiper-button-next svg path {
  transition: fill 0.4s ease-in;
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path,
.swiper-button-prev:focus svg path,
.swiper-button-next:focus svg path{
  fill: #000;
}

.swiper-button-disabled{
  opacity: 0.5;
  cursor: default;
}

@media (hover: hover) {
  .swiper-button-disabled:hover,
  .swiper-button-disabled:focus{
    background: none;
  }
  .swiper-button-disabled:hover svg path,
  .swiper-button-disabled:focus svg path {
    fill: #fff;
}
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1400px) {

  .members_name {
    padding: 4% 6%;
  }

}

@media print,
screen and (max-width:992px) {

  .members_block {
    padding: 0px 0px 25vw;
  }

  .members_header {
    padding: 0px 6% 10vw;
  }

  .members_header p {
    max-width: 100%;
  }

  .swiper-button{
    display: none;
  }

  .members_body .swiper {
    padding: 0px 6% 10vw;
  }

  .members_card {
    border-radius: 12px;
  }

  .members_name {
    font-size: 14px;
  }

  .members_name span {
    font-size: 26px;
  }

}

@media print,
screen and (max-width:768px) {

  .members_name {
    font-size: 13px;
  }

  .members_name span {
    font-size: 26px;
  }

}


/* ----------------------------------------- */
/* contact_block */
/* ----------------------------------------- */

.contact_block{
  overflow: hidden;
}

.contact_block a{
  border-top:1px solid #484848;
  display: flex;
  align-items: center;
  padding: 100px 0px;
  transition: background-color 0.4s ease-in;
}

@media (hover: hover) {
  .contact_block a:hover,
  .contact_block a:focus{
    background: #fff;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='100' height='120' viewport='0 0 100 100' style='fill:black;font-size:60px;'><text y='50%'>✉️</text></svg>") 16 0, auto;
      /*!emojicursor.app*/
    font-family: 'Noto Color Emoji', sans-serif;
  }
}

.contact_block a p{
  font-size: 120px;
  font-family: 'Staatliches', cursive;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
  padding-right: 12px;
}

.contact_block a p span:nth-child(odd){
  color: #fff;
  transition: color 0.4s ease-in;
}

@media (hover:hover){
  .contact_block a:hover p span:nth-child(odd),
  .contact_block a:focus p span:nth-child(odd) {
    color: #000;
  }
}

.contact_block a p span:nth-child(even) {
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  color: rgba(0,0,0,0);
  transition: -webkit-text-stroke 0.4s ease-in;
}

@media (hover: hover) {
  .contact_block a:hover p span:nth-child(even),
  .contact_block a:focus p span:nth-child(even) {
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
  }
}

.contact_block a p span .emoji{
  font-family: 'Noto Color Emoji', sans-serif;
}


.contact_block a p:nth-child(odd) {
  animation: an_contact_loop01 50s -25s linear infinite;
}

.contact_block a p:nth-child(even) {
  animation: an_contact_loop02 50s linear infinite;
}




@keyframes an_contact_loop01{
  0%{
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes an_contact_loop02 {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-200%);
  }
}


/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:992px) {

  .contact_block a {
    padding: 80px 0px;
  }

  .contact_block a p {
    font-size: 100px;
  }
}

@media print,
screen and (max-width:768px) {

  .contact_block a p {
    font-size: 80px;
  }
}

@media print,
screen and (max-width:576px) {

  .contact_block a {
    padding: 35px 0px;
  }

  .contact_block a p {
    font-size: 50px;
  }
}


/* ----------------------------------------- */
/* works_block */
/* ----------------------------------------- */

.works_block{
  overflow: hidden;
  position: relative;
  padding: 110px 0px;
}

.works_loop_text{
  display: flex;
  position: relative;
}

.works_loop_text span {
  font-size: 160px;
  font-family: 'Staatliches', cursive;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.works_loop_text.left_loop{
  -webkit-text-stroke: 1px #aaa;
  text-stroke: 1px #aaa;
  color: rgba(0,0,0,0);
  z-index: 1;
}

.works_loop_text.left_loop span:nth-child(odd){
  animation: an_left_loop01 60s -30s linear infinite;
}

.works_loop_text.left_loop span:nth-child(even) {
  animation: an_left_loop02 60s linear infinite;
}

@keyframes an_left_loop01{
  0%{
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes an_left_loop02 {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-200%);
  }
}

.works_loop_text.right_loop {
  color: #fff;
  z-index: 3;
}

.works_loop_text.right_loop span:nth-child(odd) {
  animation: an_right_loop01 60s -30s linear infinite;
}

.works_loop_text.right_loop span:nth-child(even) {
  animation: an_right_loop02 60s linear infinite;
}

@keyframes an_right_loop01 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes an_right_loop02 {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0%);
  }
}

.work_loop_img{
  position: absolute;
  z-index: 2;
}

.work_loop_img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.work_loop_img.first {
  top: 0px;
  right: 10%;
  width: 460px;
  aspect-ratio: 46/33;
}

.work_loop_img.second {
  bottom: 40px;
  left: 6%;
  width: 380px;
  aspect-ratio: 38/27;
}


/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .work_loop_img.first {
    right: 6%;
    width: 40%;
  }

  .work_loop_img.second {
    bottom: 30px;
    left: 4%;
    width: 30%;
  }

}

@media print,
screen and (max-width:992px) {

  .works_block {
    padding: 80px 0px;
  }

  .works_loop_text span {
    font-size: 120px;
  }

}

@media print,
screen and (max-width:768px) {

  .works_block {
    padding: 40px 0px;
  }

  .works_loop_text span {
    font-size: 100px;
  }

}

@media print,
screen and (max-width:576px) {

  .works_loop_text span {
    font-size: 70px;
  }

  .work_loop_img.first {
    right: 4%;
  }

  .work_loop_img.second {
    bottom: 20px;
    left: 6%;
    width: 34%;
  }

}


/* ----------------------------------------- */
/* news_block */
/* ----------------------------------------- */

.news_block {
  max-width: 1900px;
  padding: 180px 60px 240px;
  margin: 0px auto;
}

.news_header {
  position: relative;
  margin-bottom: 80px;
}

.news_header p{
  max-width: 660px;
  margin-top: 18px;
}

.news_header_btn{
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.news_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.news_card{
  width: calc((100% - 80px)/3);
  line-height: 1.6;
}

.news_card a{
  display: block;
  color: #fff;
}

.news_card .thumb{
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.news_card .thumb img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease-in;
}

@media (hover: hover) {
  .news_card a:hover .thumb img,
  .news_card a:focus .thumb img {
    transform: scale(1.1);
  }
}

.news_card time{
  font-size: 18px;
  margin-bottom: 3px;
  font-family: 'Staatliches', cursive;
}


@media print,
screen and (max-width:992px) {

  .news_block {
    padding: 25vw 6%;
    margin: 0px auto;
  }

  .news_header {
    position: relative;
  }

  .news_header p {
    max-width: 100%;
    margin-top: 20px;
  }

  .news_header_btn {
    position: static;
  }

  .news_list {
    gap: 20px;
  }

  .news_card {
    width: calc((100% - 40px)/3);
  }

  .news_card .thumb {
    border-radius: 8px;
    margin-bottom: 18px;
  }

}

@media print,
screen and (max-width:768px) {

  .news_header{
    margin-bottom: 15vw;
  }

  .news_list {
    gap: 7.5vw;
  }

  .news_card {
    width: 100%;
  }

  .news_card time {
    font-size: 16px;
  }

  .news_text{
    font-size: 13px;
  }

}


/* ----------------------------------------- */
/* news detail */
/* ----------------------------------------- */

.news_detail_thumb{
  max-width: 800px;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 16px;
}

.news_detail_thumb img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news_detail_body{
  color: #fff;
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 40px;
}

.news_detail_body h2{
  font-size: 20px;
  font-weight: 700;
}

.news_detail_body *+ul,
.news_detail_body *+h2,
.news_detail_body *+p {
  margin-top: 40px;
}

.news_detail_body h2+p,
.news_detail_body h3+p,
.news_detail_body h4+p,
.news_detail_body h2+ul,
.news_detail_body h3+ul,
.news_detail_body h4+ul {
  margin-top: 12px;
}

.news_detail_body ul li{
  position: relative;
  padding-left: 20px;
}

.news_detail_body ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:576px) {

.news_detail_thumb {
    margin-bottom: 7.5vw;
    border-radius: 8px;
  }

  .news_detail_body {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 7.5vw;
  }

  .news_detail_body h2 {
    font-size: 18px;
  }

  .news_detail_body *+ul,
  .news_detail_body *+h2,
  .news_detail_body *+p {
    margin-top: 7.5vw;
  }

  .news_detail_body ul li {
    position: relative;
    padding-left: 16px;
  }

  .news_detail_body ul li::before {
    left: 4px;
    top: 10px;
  }

}


/* ----------------------------------------- */
/* about page */
/* ----------------------------------------- */

.about_page{
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.about_page_menu {
  position: sticky;
  top: 160px;
  width: 320px;
  height: 100%;
}

.about_page_menu li{
  position: relative;
  font-size: 28px;
  margin-bottom: 18px;
  padding-left: 20px;
  font-family: 'Staatliches', cursive;
}

.about_page_menu li::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 50%;
  margin-top: -1px;
  width: 10px;
  height: 2px;
  background: #aaa;
}

@media (hover:hover){
  .about_page_menu li a:focus,
  .about_page_menu li a:hover{
    color: #fff;
  }
}

.about_page_body {
  width: calc(100% - 320px);
}

.about_page_section+.about_page_section{
  margin-top: 160px;
}

.members_list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 48px;
}

.members_list .members_card{
  width: calc((100% - 96px) / 3);
}

.about_overview{
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #484848;
}

.about_overview dt{
  border-bottom: 1px solid #484848;
  padding: 30px 0px;
  width: 180px;
  font-weight: 400;
  color: #fff;
}

.about_overview dd {
  border-bottom: 1px solid #484848;
  padding: 30px 0px;
  width: calc(100% - 180px);
}

.about_history{
  margin-top: 60px;
}

.about_history li{
  position: relative;
  padding-left: 25px;
  display: flex;
  gap: 10px;
}

.about_history li:not(:last-child) {
  padding-bottom: 20px;
}

.about_history li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 8px;
  border: 3px solid #fff;
  background: #1A1A18;
  z-index: 2;
}

.about_history li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 1px;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.about_history li time{
  color: #fff;
  width: 90px;
}

.about_history li .history_text {
  width: calc(100% - 90px);
}

.access_list li {
  position: relative;
  padding-left: 20px;
}

.access_list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 4px;
  height: 4px;
  background: #aaa;
  border-radius: 2px;
}

.access_map{
  margin-top: 18px;
}

.access_map iframe{
  width: 100%;
  aspect-ratio: 2/1;
}

/* メディアクエリ */
/* ----------------------------------------- */

@media print,
screen and (max-width:1200px) {

  .about_page_menu {
    width: 240px;
  }

  .about_page_body {
    width: calc(100% - 240px);
  }

  .members_list {
    gap: 2.4vw;
  }

  .members_list .members_card {
    width: calc((100% - 4.8vw) / 3);
  }

}

@media print,
screen and (max-width:992px) {

  .about_page_menu {
    width: 200px;
  }

  .about_page_body {
    width: calc(100% - 200px);
  }

  .about_overview dt {
    width: 120px;
  }

  .about_overview dd {
    width: calc(100% - 120px);
  }

}

@media print,
screen and (max-width:768px) {

  .about_page_menu {
    display: none;
  }

  .about_page_body {
    width: 100%
  }

}

@media print,
screen and (max-width:576px) {

  .members_list {
    margin-top: 10vw;
    gap: 6vw;
  }

  .members_list .members_card {
    width: calc((100% - 6vw) / 2);
  }

  .about_overview {
    margin-top: 10vw;
    display: block;
  }

  .about_overview dt {
    border-bottom: none;
    padding: 24px 0px 0px;
    width: 100%;
    font-size: 14px;
  }

  .about_overview dd {
    padding: 8px 0px 24px;
    width: 100%;
  }

  .about_history {
    margin-top: 10vw;
  }

  .about_history li {
    display: block;
  }

  .about_history li time {
    width: 100%;
    font-size: 14px;
  }

  .about_history li .history_text {
    width: 100%;
    margin-top: 6px;
  }

}

.about_page {
  position: relative;
  display: flex;
  justify-content: flex-start;
}



/* ----------------------------------------- */
/* contact page */
/* ----------------------------------------- */

.form_box_item {
  font-size: 16px;
  color: #fff;
}

.form_box_item + .form_box_item {
  margin-top: 50px;
}

.form_box_item span {
  display: inline-block;
  color: #aaa;
  font-size: 13px;
  border-radius: 20px;
  line-height: 1;
  padding: 8px 20px;
  border: 1px solid #aaa;
  margin-right: 20px;
}

.form_box_item .required {
  border: 1px solid #FFB200;
  color: #FFB200;
}


.form_box_item .radio_item {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

.form_box_item .radio_item label {
  margin-right: 40px;
}

.form_box_item .radio_item input[type="radio"] {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #333;
  margin-right: 8px;
  border-radius: 9px;
  -webkit-appearance: auto;
  appearance: auto;
}

.form_box_item input[type="text"],
.form_box_item input[type="tel"],
.form_box_item input[type="email"],
.form_box_item textarea,
.form_box_item select {
  width: 100%;
  background: #fff;
  border-radius: 6px;
  line-height: 1;
  margin-top: 16px;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A18;
}

.form_box_item select {
  background: url(../images/icon_arrow_bottom.svg) #fff no-repeat 96% / 16px 9px;
}

.form_box_item textarea {
  height: 300px;
  line-height: 1.8;
}

.form_box_item input[type="text"]::placeholder,
.form_box_item input[type="tel"]::placeholder,
.form_box_item input[type="email"]::placeholder {
  color: #696969;
}

.form_box_item button {
  display: block;
  width: 460px;
  height: 80px;
  border-radius: 40px;
  color: #1A1A18;
  background: #FFB200;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0px auto;
}

@media print,
screen and (max-width:576px) {

  .form_box_item {
    font-size: 14px;
  }

  .form_box_item + .form_box_item {
    margin-top: 10vw;
  }

  .form_box_item span {
    padding: 6px 14px;
    margin-right: 8px;
    font-size: 12px;
  }

  .form_box_item .radio_item {
    margin-top: 12px;
    font-size: 16px;
  }

  .form_box_item .radio_item label {
    margin-right: 20px;
  }

  .form_box_item .radio_item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 9px;
  }

  .form_box_item input[type="text"],
  .form_box_item input[type="tel"],
  .form_box_item input[type="email"],
  .form_box_item textarea,
  .form_box_item select {
    margin-top: 12px;
    padding: 16px;
    font-size: 16px;
  }

  .form_box_item input[type="text"]::placeholder,
  .form_box_item input[type="tel"]::placeholder,
  .form_box_item input[type="email"]::placeholder {
    color: #999999;
  }

  .form_box_item textarea {
    height: 50vw;
  }

  .form_box_item button {
    max-width: 280px;
    width: 70vw;
    height: 50px;
    font-size: 16px;
  }

}


/* ----------------------------------------- */
/* ローディング */
/* ----------------------------------------- */

.loading_block{
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  justify-content: center;
  align-items: center;
  opacity: 1;
  background: #1A1A18;
  z-index: 99999;
  transition: opacity 0.4s 0.4s ease-in;
}

.loading_block.is_open {
  opacity: 0;
  pointer-events: none;
}

.orbit-spinner,
.orbit-spinner * {
  box-sizing: border-box;
}

.orbit-spinner {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  perspective: 800px;
}

.orbit-spinner .orbit {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-spinner .orbit:nth-child(1) {
  left: 0%;
  top: 0%;
  animation: orbit-spinner-orbit-one-animation 1200ms linear infinite;
  border-bottom: 3px solid #fff;
}

.orbit-spinner .orbit:nth-child(2) {
  right: 0%;
  top: 0%;
  animation: orbit-spinner-orbit-two-animation 1200ms linear infinite;
  border-right: 3px solid #fff;
}

.orbit-spinner .orbit:nth-child(3) {
  right: 0%;
  bottom: 0%;
  animation: orbit-spinner-orbit-three-animation 1200ms linear infinite;
  border-top: 3px solid #fff;
}

@keyframes orbit-spinner-orbit-one-animation {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes orbit-spinner-orbit-two-animation {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes orbit-spinner-orbit-three-animation {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}