@charset "UTF-8";
/*====================================
common style
=====================================*/
html{
font-size: 67%;
/*15px*67%=10px*/
scroll-behavior: smooth;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  -webkit-font-smoothing:antialiased;/*文字のアンチエイリアス*/
  -moz-osx-font-smoothing:grayscale;
  font-smoothing:antialiased;
  font-feature-settings: "palt";
  letter-spacing:0.05em;
  line-height: 1.7;
  font-size: 1.5rem;
  background-color: #f5f6f8;
  }
  img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  }
  a{
  text-decoration: none;
  }

@font-face{
  font-family: Clash Display;
  src: url(../fonts/ClashDisplay-Medium.otf) format(opentype);
}


/*グーグルフォント*/
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto_sans_jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto_sans_jp_12 {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto_sans_jp_14 {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  line-height: 2;
}
.noto_sans_jp_15 {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  line-height: 2;
}
.noto_sans_jp_16 {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  line-height: 2;
}
@media screen and (max-width: 599px){
  .noto_sans_jp_15 {
    font-size: 14px;
  }
  .noto_sans_jp_16 {
    font-size: 14px;
  }
}
.roboto_light {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.5px;
}
.roboto_light_14 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
.mv_sub_frame{
  padding-top: 15rem;
  align-items: center;
}
.page_ttl{
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 9.5rem;
}
.subpage_ttl{
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 6.5rem;
}
.mv_sub_frame img{
  width: 160px;
}
section{
  display: block;
}
h3 .section_ttl{
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 9.5rem;
}
.hidden{
  overflow: hidden;
}
@media screen and (max-width: 599px){
  h3 .section_ttl{
    font-size: 5rem;
  }
  .page_ttl{
    font-size: 7.5rem;
  }
}
.break_keep{
  word-break: keep-all;
}
/* flex */
.flex{
  display: flex;
}
.justify_content_between{
  justify-content: space-between;
}
.inner_frame {
  width: 100%;
  max-width: 1200px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 599px){
  .inner_frame {
    padding-right: 7%
    padding-left: 7%;
  }
  .mv_sub_frame .flex{
    position: relative;
  }
  .mv_sub_img{
    position: absolute;
    right: 0;
    top: -124px;
    width: 130px;
  }
}
.ttl_under{
  display: flex;
  align-items: center;
}
.ttl_under span{
  font-size: 1.4rem;
  padding-left: 3px;
}
.three_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(50* 100% / 1150);
}
.three_flex li{
  margin-bottom: 70px;
}
/* 余白 */
.m_b_100{
  margin-bottom: 100px;
}
.m_b_200{
  margin-bottom: 200px;
}
.m_b_250{
  margin-bottom: 250px;
}
@media screen and (max-width: 599px){
  .m_b_200{
    margin-bottom: 50px;
  }
  .m_b_250{
    margin-bottom: 120px;
  }
}
/* リンクボタン */
.link_btn{
  max-width: 26rem;
}
.link_btn a{
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 100px;
  background-color: #e7e7e7;
  color: #000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 1.5rem 1.5rem 1.5rem rgba(0,0,0,.15);
  padding: 1.5rem 0 1.5rem 5rem;
  transition: 440ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_txt{
  font-size: 1.6rem;
  margin-left: 2rem;
}
.link_btn a:hover{
  background-color: #2c2e30;
  color: #ffffff;
}
a:hover .btn_arrow, button:hover .btn_arrow {
  color: #2c2e30;
}
.btn_arrow{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #ffffff;
  transition: 440ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_arrow::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: solid 1px #2c2e30;
  background-color: #2c2e30;
  transition: 440ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
}
.btn_arrow span{
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
}
.btn_arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 44%;
  left: 34%;
  margin-top: calc(1rem* -.5);
  margin-left: calc(1rem* -.5);
  transition: 440ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_arrow svg:nth-of-type(2) {
  -webkit-transform: translate3d(calc(2.6rem* -3), 0, 0);
  transform: translate3d(calc(2.6rem* -3), 0, 0);
}
a:hover .btn_arrow::before, button:hover .btn_arrow::before {
  background-color: #ffffff;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
a:hover .btn_arrow svg:nth-of-type(1), button:hover .btn_arrow svg:nth-of-type(1) {
  -webkit-transform: translate3d(calc(2.6rem* 3), 0, 0);
  transform: translate3d(calc(2.6rem* 3), 0, 0);
}
a:hover .btn_arrow svg:nth-of-type(2), button:hover .btn_arrow svg:nth-of-type(2) {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.btn_arrow_first{
  fill: #ffffff;
}
.btn_txt_more .btn_txt {
  margin: 0.5em 1.5em;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
}
.btn_txt_more:hover .btn_txt span {
  transform: translateY(-1.5em);
}
.btn_txt_more .btn_txt span {
  display: block;
  text-shadow: 0 1.5em 0 #fff;
  transition: .4s;
  line-height: 1.5;
}
/* ぱんくず */
.pan_nav{
  font-size: 1.3rem;
  text-align: right;
  margin: 3rem 0;
}
@media screen and (max-width: 599px){
  .pan_nav{
    margin: 4rem 0px;
  }
}
.pan_nav li{
  display: inline-block;
  letter-spacing: 1px;
}
.pan_nav li a{
  color: #a7a7a7;
  letter-spacing: 1px;
  transition: .3s;
}
.pan_nav li a:hover{
  color: #000000;
}
.pan_nav li a:after{
  content: "|";
  position: relative;
  font-size: 1.3rem;
  margin-right: 10px;
  margin-left: 12px;
  color: #000000;
}

.z_1 {	z-index: 1;}
.z_2 {	z-index: 2;}
.z_3 {	z-index: 3;}


.block {
	display: block;
}
.none{
	display: none;
}


@media screen and (max-width: 599px){
	.sp_block{ display:block; }
	.pc_block{ display:none; }

	.pc_inline_block{ display:none; }
	.sp_inline_block{ display:inline-block; }

}/* end */
@media screen and (max-width: 599px) {
	.sp_text_left{
		text-align: left !important;
	}
	.sp_text_left_b {
		text-align: left !important;
	}
	.sp_text_left_b br{
		display: none;
	}
	.sp_text_center,.sp_center{
		text-align: center !important;
	}
}/*END*/

/*====================================
loading style
=====================================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background-color: #ccd0dd;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2s forwards;
  overflow: hidden;
}
/* @keyframes fadeOut{
  0% {
    opacity: 1;
}

100% {
    opacity: 0;
    visibility: hidden;
}
} */

.loading__logo {
  opacity: 0;
  animation: logo_fade2 0.5s 1.8s forwards;
  width: 200px;
}
.loading svg {
  translate: none;
  rotate: none;
  scale: none;
  /* opacity: 1; */
  visibility: inherit;
  transform: translate(0px, 0px);
}
/*====================================
header style
=====================================*/
.header_inner{
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
	justify-content: space-between;
  margin-left: auto;
  margin-right: auto; 
  padding: 24px;
  backface-visibility: hidden;
  z-index: 99;
}
.head_pc_nav ul{
  display: flex;
  padding: 16px 60px;
  gap: 7rem;
}
.head_pc_nav ul a{
  line-height: 0.9;
  text-decoration: none;
  border-bottom: 1px solid #000;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  box-sizing: border-box;
  font-feature-settings: "palt";
  transition: .35s;
}
.head_link_move_frame {
  overflow: hidden;
  display: inline-block;
  line-height: 2;
}
.head_link_move_text {
  position: relative;
  display: block;
  transition: transform 500ms ease;
}
.head_link_move_text::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.footer_frame{
  width: 100%;
  max-width: 1260px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.rela{
  position: relative;
}
.bg_glass_header {
  border-radius: 3rem;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(250, 250, 250, .5);
  box-shadow: 1px 0 10px rgba(0, 0, 0, .05);
}
.nav01:hover{
  color: #ffbdbd;
  border-bottom: 1px solid #ffbdbd;
}
.nav02:hover{
  color: #0090dd;
  border-bottom: 1px solid #0090dd;
}
.nav03:hover{
  color: #ef3b3c;
  border-bottom: 1px solid #ef3b3c;
}
.nav04:hover{
  color: #ffce00;
  border-bottom: 1px solid #ffce00;
}
@media screen and (max-width: 1040px) {
  .header_logo svg{
    width: 60px;
    height: 60px;
  }
  .header_inner{
    padding: 4%;
  }
  .head_pc_nav{
    display: none;
  }
}

/*====================================
contact style
=====================================*/
.contact_content .icon-giga{
  font-size: 2rem;
  color: #ffd20c;
}
.contact_txt{
  margin-top: 40px;
}
.contact_content {
  background-image: url(../images/common/bg_img.jpg);
  background-position: center center;
  background-size: cover;
  padding: 200px 0;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_btn{
  width: 500px;
  max-width: 50%;
}
.contact_btn_top{
  width: 100%;
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact_btn_btm{
  width: 100%;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact_btn:hover .contact_btn_top{
  transform: translateX(14px);
}
.contact_btn:hover  .contact_btn_btm{
  transform: translateX(-14px);
}
@media screen and (max-width: 599px){
  .contact_content {
    padding: 50px 0;
  }
  .contact_btn{
    max-width: 85%;
    margin-bottom: 2rem;
  }
  .contact_txt {
    margin-top: 20px;
    margin-bottom: 20px;
}
}
/*====================================
footer style
=====================================*/
.footer_content{
  background-color: #2c2e30;
  color: #fff;
  padding: 50px 0 30px;
}
.footer_content .flex{
  align-items: flex-start;
}
.footer_nav{
  display: flex;
  align-items: center;
	justify-content: space-between;
  max-width: 92%;
  backface-visibility: hidden;
}
.footer_nav ul{
  display: flex;
}
.footer_nav ul a{
  line-height: 0.9;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-left: 100px;
  letter-spacing: -0.5px;
  box-sizing: border-box;
  font-feature-settings: "palt";
  transition: .35s;
}
.footer_nav ul a:hover{
  color: #ffce00;
  border-bottom: 1px solid #ffce00;
}
.footer_content p{
  font-size: 1.4rem;
  color: #a4a4a4;
  text-align: center;
  margin-top: 20rem;
}
.pagetop_container{
  position: relative;
}
.pagetop_circle{
  width: 120px;
  height: 120px;
  position: relative;
  position: absolute;
  right: 0;
}
.pagetop_circle .pagetop_circle_text{
  position: absolute;
  top: 5px;
  left: 6px;
  padding: 5px;
  background-color: #2bc17d;
  border-radius: 60px;
  z-index: 3;
  transition:all 0.3s;
}
.pagetop_circle_top{
  position: absolute;
  top: 42px;
  left: 41px;
  z-index: 3;
}
.pagetop_container a{
  display: block;
}
.pagetop_circle:hover .pagetop_circle_text{
  transform: scale(1.1);
  background-color: #ffce00;
}
.pagetop_circle:after{
  content: "";
  position: absolute;
  top: 1em;
  left: -30px;
  display: inline-block;
  pointer-events: none;
  width: 91px;
  height: 99px;
  transition: 0.3s;
  z-index: 1;
}
.pagetop_circle:hover:after{
  background: url(../images/common/pagetopinu.png);
  background-repeat: no-repeat;
  transform: translateX(-20%);
  transition: 0.3s;
}
.white_logo{
  fill: #fff;
}

@media screen and (max-width: 599px){
  .foot_logo svg{
    width: 70px;
    height: 70px;
  }
  .footer_nav ul{
    display: block;
  }
  .footer_nav ul a{
    margin-left: 0px;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .footer_content p{
    margin-top: 20rem;
  }
  .pagetop_circle{
    margin-top: 3rem;
  }
}

/*====================================
mv style
=====================================*/
.mv_frame{
  width: 100%;
  height: calc(100svh - var(--head-H));
  min-height: min(150vw, 900px);
}
.mv_top{
  display: flex;
  justify-content: space-between;
  width: min(90%,1536px);
  margin: 0 auto;
  height: 100lvh;
}
@media screen and (max-width: 599px){
  .mv_top{
    display: block;
    /* width: min(90%,1536px);
    margin: 0 auto;
    height: 100lvh; */
  }
}
.mv_top h2{
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 9.5rem;
  padding-top: 18rem;
}
@media screen and (max-width: 599px){
  .mv_top h2{
    font-size: 6.5rem;
    padding-top: 10rem;
  }
}
.txt_in {
  overflow: hidden;
}
.txt_in > * {
  display: block;
  line-height: 1.1;
  transform: translateY(100%);
}

.active .txt_in > * {
  animation: txt_in 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes txt_in {
  0% {transform: translateY(100%);}
  100% {transform: translateY(0%);}
}

.active .blur{
	animation-name:blurAnime;
	animation-duration:.8s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blur{
    opacity: 0;
}
.circle_in {
  overflow: hidden;
  clip-path: circle(0%);
  transform: translateY(70%);
  /* display: block; */
}
.active .circle_in {
  animation: circle_in 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  /* transition: 1s;
  transform: translateY(0); */
}
@keyframes circle_in {
  0% {
    clip-path: circle(0%);
    transform: translateY(20%);
  }
  100% {
    clip-path: circle(100%);
    transform: translateY(0%);
  }
}
.active .fade, .active.fade {
  animation: fade 0.3s linear forwards;
}
.t01 {
  animation-delay: .2s !important;
}
.t02 {
  animation-delay: .4s !important;
}
.t03 {
  animation-delay: .6s !important;
}
.t04 {
  animation-delay: .8s !important;
}
.fade {
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}

.mv_txt_english{
  font-size: 1.6rem;
}
.mv_txt_box{
  padding-left: 3rem;
  width: 40%;
}
@media screen and (max-width: 599px){
  .mv_txt_box{
    padding-left: 0;
  }
}
.mv_text{
  padding-top: 8rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px){.mv_text{
  padding-top: 2rem;
}
}
.mv_img{
  width: 60%;
}
/* 回る矢印 */
.in-scrolldown {
  width: 150px;
  top: 5rem;
  position: relative;
  margin-top: 4rem;
}
.in-scrolldown_img {
  top: 61%;
}
.in-scrolldown_img img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  animation:12s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
.in-scrolldown_img-arrow {
  top: 38%;
  left:47%;
  position: absolute;
}
.in-scrolldown_img-arrow img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.swiper-container{
  list-style: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 80%;
}
.slide-container{
  width: 100%;
  height: 100vh;
  perspective: 1000px;
  display: flex;
  align-items: center;
}
.swiper{
  border-radius: 50px;
  transform: rotateY(-33deg);
  height: 64%;
  overflow: hidden;
  width: 96%;
}
@media screen and (max-width: 599px){
  .in-scrolldown {
    width: 120px;
    top: 0;
    z-index: 1;
  }
  .mv_top{
    position: relative;
  }
  .mv_img{
    width: 100%;
    position: absolute;
    top: 250px;
  }
  .mv_txt_box{
    width: 100%;
  }
  .slide-container{
    height: 65vh;
    perspective: 600px;
    transform: translateX(-5vw);
  }
  .swiper{
    width: 100%;
  }
}




/*====================================
about style
=====================================*/

.icon {
	display: inline-block;
	color: #444444;
  width: 1em;
	height: 1em;
	fill: currentColor;
}
#top_about .icon-giga{
  font-size: 2rem;
  color: #0090dd;
}
#top_about .flex{
  padding: 60px 0;
}
.about_text{
  padding: 30px 0 30px 100px;
  width: 105%;
}
@media screen and (max-width: 599px){
  .about_text{
    padding: 0;
    width: 100%;
  }
}
.about_text p{
  line-height: 2;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
#top_about .link_btn{
  margin-top: 4rem;
}
.about_text .name_english{
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 3rem;
}
.about_text .name{
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.about_explain{
  font-size: 1.4rem;
}
@media screen and (max-width: 599px){
  #top_about .link_btn{
    margin: 4rem auto 0;
  }
}

/*====================================
loop
=====================================*/
.loop_slider{
  background-image: url(../images/index/yuda_img.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.loop_slider_wrap {
  display: flex;
  width: 400%;
  overflow: hidden;
  transform: scaleY(1.01);
}
@media screen and (max-width: 599px){
  .loop_slider_wrap {
    width: 700%;
  }

}
.loop_slider_list {
  animation: loop_slider_l 30s infinite linear 0.5s both;
}
.loop_slider_list {
  list-style: none;
  padding: 0;
}
.loop_slider_item {
  width: 100%;
  margin-left: -5px;
  box-sizing: border-box;
}
.loop_slider_item>img {
  width: 100%;
  display: block;
}
@keyframes loop_slider_l {
	from {
		transform: translateX(0);
	}
		to {
		transform: translateX(-100%);
	}
}
@keyframes loop_slider_t {
	from {
		transform: translateY(0);
	}
		to {
		transform: translateY(-100%);
	}
}

/*====================================
works style
=====================================*/
#top_works .icon-giga{
  font-size: 2rem;
  color: #f11b38;
}
.works_list.tabs {
  display: flex;
  color: #000;
  width: fit-content;
  font-size: 15px;
  margin-top: 40px;
  margin-bottom: 40px
}
.works_list li{
  margin-right: 40px;
  position: relative;
}
.works_list .bg {
  z-index: 0;
  position: absolute;
  top: 95%;
  left: 50%;
  aspect-ratio: 1 / 1;
  width: 0.8rem;
  height: auto;
  --fs-min: 9;
  --fs-max: 11;
  visibility: hidden;
  translate: -49% 12px;
  scale: 0 0;
  border-radius: 100%;
  background: #c1c4c9;
  color: transparent;
  white-space: nowrap;
  transition: translate .5s cubic-bezier(.34,1.1,.64,1.2), scale .6s cubic-bezier(.25,1,.5,1), visibility .6s linear;
}
.works_list .tab__menu-item:hover .bg, .works_list .tab__menu-item.is-active .bg {
  visibility: visible;
  translate: -49% 70%;
  scale: 1 1;
}
.works_cat_txt {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
}
.works_cat_txt:hover .works_cat_txt_span {
  transform: translateY(-1.5em);
}
.works_cat_txt .works_cat_txt_span {
  display: block;
  text-shadow: 0 1.5em 0 #000000;
  transition: .35s;
  line-height: 1.5;
}
.works_container li{
  position: relative;
}
.about-member-list-icon {
  top: 250px;
  right: 1px;
}
.about-member-list-icon {
  position: absolute;
  width: 8px;
}
.icon-arrow01 {
  display: block;
  height: 10px;
  width: 10px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgOS41IDkuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgOS41IDkuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtmaWxsOiMyMTIxMjE7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC41LDBDOC41LDAsOC41LDAsOC41LDBsMSwxYzAsMC0wLjEsMC4xLTAuMSwwLjFDOC4xLDIuNSw4LjIsNC43LDkuNSw2bC0xLDFDNy41LDYsNyw0LjgsNy4xLDMuNWwtNiw2TDAsOC40CglsNi02QzQuNywyLjUsMy41LDIsMi41LDFsMS0xQzQuOCwxLjQsNywxLjQsOC40LDAuMUM4LjUsMC4xLDguNSwwLDguNSwwTDguNSwweiIvPgo8L3N2Zz4K);
}
.works_container a:hover .icon-arrow01 {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: arrowSlide;
  animation-name: arrowSlide;
}

@keyframes arrowSlide{
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 8px -8px;
  }
  50.1% {
    background-position: -8px 8px;
  }
  100% {
    background-position: 0 0;
  }
}

.works_cat{
  width: 300px;
  height: 100px;
  border: solid 1px #000;
  border-radius: 100vh;
  padding: 0 8px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.tab__menu-item{
  cursor: pointer;
}
#top_works h3{
  margin-top: -30px;
  font-size: 1.6rem;
  font-weight: 400;
}
.three_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.three_flex li{
  margin-bottom: calc(60* 100% / 1200);
}
@media screen and (max-width: 768px) {
  .works_list li{
    margin: 10px 20px;
  }
  .works_list.tabs {
    margin-top: 0;
    margin-bottom: 0;
  }
  .three_flex{
    display: block;
  }
  .three_flex li{
    width: 100%;
    margin-bottom: 6rem;
  }
  .works_list.tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.photo_frame{
  position: relative;
  overflow: hidden;
  background: #eee;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  padding: 0;
  min-width: 0;
  min-height: 0;
  display: block;
  z-index: 2;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: 0.3S;
}
.photo_frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.hover_zoom {
  display: block;
}
.hover_zoom .photo_frame img {
  transform: translate3d(-50%, -50%, 0) scale(1.01);
  transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover_zoom:hover .photo_frame img {
  transform: translate3d(-50%, -50%, 0) scale(1.03);
}
a:hover .photo_frame{
  transform: translateY(-15px);
}
#top_works .link_btn{
  margin: 3rem auto 0;
}
.works_list_item a {
  display: block;
  line-height: 0;
  position: relative;
}
.link_btn_container{
  width: 26rem;
  margin-top: 2rem;
}
.works_container{
  margin-top: 8rem;
}
@media screen and (max-width: 599px){
  .link_btn_container{
    width: 95%;
    margin: 0 auto;
  }
  #top_works .link_btn{
    margin: 3rem auto 0;
  }
  .works_container {
    padding-bottom: 3rem;
}
}


/*===========================================================================
about page
============================================================================*/

/*------------ nav ------------*/
.about_nav_container{
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  max-width: 1600px;
}
.about_nav_inner{
  position: relative;
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: 740px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 100px;
}
.about_nav_content{
  display: grid;
  grid-template-columns: auto 1fr;
  z-index: 1;
}
.about_anchor_list{
  display: flex;
  flex-wrap: wrap;
  gap: 41px 60px;
}
.about_anchor_list .anchor_list_link:hover{
  color: #99a1ac;
}
.anchor_list_link{
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
  text-decoration: none;
  transition: color 500ms ease;
}
.anchor_list_link:hover svg{
  fill: #99a1ac;
}
.anchor_list_link_icon{
  line-height: 0;
  transition: color 500ms ease;
}
.icon_arrow_down{
  fill: #444c55;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  transition: color 500ms ease;
}
.anchor_list_link_label{
  font-feature-settings: "palt";
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .05em;
}
.anchor_list_link_label::before{
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5)* .5em);
}
.anchor_list_link_label::after{
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.5)* .5em);
}
.about_nav_inner:before {
  content: "";
  top: 0;
  position: absolute;
  width: calc(100% + 30vw);
  height: 100%;
  background-color: #fff;
  z-index: 0;
  border-radius: 24px 0 0 24px;
}
@media screen and (max-width: 599px){
  .about_anchor_list{
    gap: 30px 60px;
  }
  .about_nav_inner{
    margin-bottom: 50px;
  }
}

/*------------ profile ------------*/
.about_profile_text{
  padding: 30px 100px 30px 0;
  width: 115%;
}
#about_profile .icon-giga{
  font-size: 2rem;
  color: #ffbdbd;
}
.about_profile_container{
  margin-top: 3rem;
}
.about_profile_text .name_english{
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 2rem;
}
.about_profile_text .name{
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px){
  .about_profile_text{
    padding: 0;
    width: 100%;
    margin-bottom: 5rem;
  }
}
/*------------ career ------------*/
#about_career{
  background-color: #61646b;
  color: #ffffff;
}
#about_career .icon-giga{
  font-size: 2rem;
  color: #ff7f2d;
}
#about_career .inner_frame{
  padding-top: 10rem;
}
.career_inner{
  margin: 7rem auto 0;
  max-width: 900px;
  padding-bottom: 15rem;
}
.career_inner th{
  position: relative;
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 1px;
  vertical-align: top;
  border-right: 2px solid #ffffff;
  padding: 22px 70px 50px 0;
  vertical-align: top;
}
.career_inner th:after{
  content: "";
  background: #ffffff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: 34px;
}
.career_inner td{
  line-height: 2;
  padding: 20px 0 50px 70px;
  vertical-align: top;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px){
  #about_career .inner_frame {
    padding-top: 5rem;
  }
  .career_inner th{
    font-size: 1.8rem;
    padding: 22px 26px 50px 0;
  }
  .career_inner td{
    padding: 20px 0 50px 26px;
  }
  .career_inner{
    padding-bottom: 7rem;
    margin: 5rem auto 0;
  }
}
/*------------ skill ------------*/
#about_skill .inner_frame{
  padding-top: 8rem;
  padding-bottom: 10rem;
}
#about_skill .icon-giga{
  font-size: 2rem;
  color: #2bc17d;
}
.about_skill_content{
  margin-top: 4rem;
  padding: 45px;
  width: 48%;
  background-color: #ffffff;
  border-radius: 24px;
}
.about_skill_content img{
  max-width: 55%;
  display: block;
  margin: 0 auto;
}
.about_skill_ttl{
  font-family: "Clash Display" , sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1;
}
.about_skill_jp{
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1.8rem;
}
.about_skill_tool p{
  border: solid 1px #000;
  border-radius: 100vh;
  padding: 0 10px;
  text-align: center;
  margin-top: 15px;
  margin-right: 5px;
  font-size: 1.2rem;
}
#about_skill .link_btn{
  margin: 6rem auto 0;
}
.link_btn_works .btn_txt_more .btn_txt{
  margin: 0.5em 2.2em;
}
@media screen and (max-width: 599px){
  #about_skill .inner_frame{
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .about_skill_content{
    padding: 40px;
    width: 100%;
  }
  .about_deco{
    width: 250vw;
    margin-left: -16rem;
  }
}

/*===========================================================================
works list
============================================================================*/

.works_cat_container{
  background-color: #ffffff;
  max-width: 100%;
  padding: 5px;
  border-radius: 20px;
  margin-bottom: 100px;
}
.works_list_center{
  margin: 0 auto;
}
.tab__panel-box {
  display: none;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}
@media screen and (max-width: 768px) {
  .works_cat_container{
    padding: 15px;
  }
}

/*===========================================================================
works detail
============================================================================*/

.works_detail_container{
  margin-bottom: 10rem;
}
.works_detail_ttl h2{
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin: 30px 0 50px;
}
.works_detail_info::after{
  content: ":";
  position: relative;
  font-size: 1.3rem;
  margin-right: 10px;
  margin-left: 12px;
  color: #000000;
}
.works_detail_info_link svg{
  width: 16px;
  margin: 5px;
  stroke: #000;
}
.works_detail_info_link{
  transition: 0.35s;
}
.works_detail_info_link:hover{
  color: #2bc17d;
}
.works_detail_info_link .link_icon{
  fill: #000;
  transition: 0.35s;
}
.works_detail_info_link:hover .link_icon{
  fill: #2bc17d;
}
.works_detail_mv_container{
  text-align: center;
  padding: 8rem 0 6rem;
}
.works_detail_subimage{
  margin-left: calc(50% - 50vw);
  width: 100%;
  overflow: hidden;
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.works_detail_list{
  padding: 10rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.works_detail_list dt{
  font-size: 15px;
}
.works_detail_list dd{
  font-size: 15px;
}
.works_detail_column{
  display: flex;
  justify-content: space-between;
}
.works_detail_column:not(:last-of-type) {
  margin-bottom: 80px;
}
.works_detail_head{
  margin-bottom: 0;
}
.works_detail_body{
  width: 80%;
  max-width: 832px;
  font-size: 1.5rem;
  line-height: 2;
}
.underline{
  border-bottom: #000;
}
.works_detail_design{
  text-align: center;
  margin-top: 10rem;
}
.back_btn{
  margin: 6rem auto 11rem;
}
.works_detail_column a{
  transition: .3s;
}
.works_detail_column a:hover{
  color: #0090dd;
}
.icon_pdf{
  margin-right: 5px;
}
.works_explain{
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 599px){
  .works_detail_ttl h2 {
    margin: 10px 0 30px;
  }
  .works_detail_mv_container {
    padding: 5rem 0 6rem;
  }
  .works_detail_list{
    padding: 3.5rem 2.5rem;
  }
  .works_detail_column{
    display: block;
  }
  .works_detail_body{
    width: 100%;
  }
  .works_detail_column:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .works_detail_design {
    margin-top: 6rem;
  }
  .works_detail_subimage{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
