@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f6f6f6;
  color: #111;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

ul {
  list-style: none;
}


a {
  text-decoration: none;
  color: inherit;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 60px;

  background: transparent;

  z-index: 999;

  pointer-events: none;
	
  opacity: 0;

  transition:
    opacity 0.6s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}

.header.show {
  opacity: 1;

  pointer-events: auto;
}

.logo {
  display: flex;
  align-items: center;

  height: 52px;
}

.logo a {
  display: flex;
  align-items: center;

  height: 100%;
}

.logo img {
  height: 100%;
  width: auto;

  display: block;

  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: 42px;
}

.nav-list a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0%;
  height: 1px;

  background: #6a8dff;

  transition: 0.3s;
}

.nav-list a:hover::after {
  width: 100%;
}

.hamburger{
  display: none;
}

/* Hero */
.hero {
  position: relative;

  width: 100%;

  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;

  display: block;
}

.hero-content {
  padding: 120px 60px 80px;

  background: #f6f6f6;
}

.hero-text {
  text-align: center;

  color: #111;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 500;

  margin-bottom: 12px;

  letter-spacing: 0.04em;
}

.hero-text h1 span {
  font-size: 1.6rem;

  font-family: 'Cormorant Garamond', serif;

  letter-spacing: 0.08em;

  color: #000;

  margin-left: 8px;

  vertical-align: middle;
	
  display: inline-block;

  transform: translateY(7px);
}

.hero-line {
  display: block;

  width: 144px;
  height: 1px;

  background: #7da2ff;

  margin: 20px auto 24px;
}

.hero-text p {
  font-size: 0.92rem;
  letter-spacing: 0.12em;

  color: #666;
}

.scroll-text {
  position: absolute;
  bottom: 48px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;

  font-size: 0.72rem;
  letter-spacing: 0.2em;

  color: rgba(150,150,150,0.80);

  text-decoration: none;
	
  opacity: 0;

  transition: opacity 0.6s ease;
}

.scroll-text.show {
  opacity: 1;
}

.scroll-line {
  width: 1px;
  height: 42px;

  background: rgba(150,150,150,0.60);

  animation: scrollLine 2s ease-in-out infinite;
}

.header.scrolled {
  background: rgba(246,246,246,0.9);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid #e5e5e5;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
}

/* Works */
.works {
  padding: 140px 60px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 500;
}

.section-title span {
  display: block;
  width: 64px;
  height: 2px;
  background: #7da2ff;

  margin-top: 20px;
}

.works-category {
  display: flex;
  gap: 32px;

  margin-top: 72px;
  margin-bottom: 72px;
}

.works-category button {
  background: none;
  border: none;

  font-size: 0.82rem;
  letter-spacing: 0.12em;

  cursor: pointer;

  color: #666;

  transition: 0.3s;
}

.works-category button:hover,
.works-category .active {
  color: #6a8dff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.work-card {
  transition: 0.4s ease;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-image {
  width: 100%;
  aspect-ratio: 4 / 3;

  background: linear-gradient(135deg, #5f9cff, #6476ff);

  margin-bottom: 20px;
}

.work-image.purple {
  background: linear-gradient(135deg, #6d3cff, #9b68ff);
}

.work-image.blue {
  background: linear-gradient(135deg, #3e82ff, #588cff);
}

.work-category-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #777;

  margin-bottom: 12px;
}

.work-info h3 {
  font-size: 1.2rem;
  font-weight: 500;

  margin-bottom: 10px;
}

.work-info p {
  color: #777;
  line-height: 1.7;
}

/* Responsive */
@media screen and (max-width: 1024px) {

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


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

	body{
  padding-top: 64px;
}
	
	.header{
  z-index: 1000;
}

.nav-list{
  z-index: 998;
}

.hamburger{
  z-index: 1001;
}
	
  .header {
    padding: 10px 20px;
	

  position: fixed;
  top: -9px;
  left: 0;
	  
	width: 100%;
	  
	background: rgba(246,246,246,0.92);

    border-bottom: 1px solid #e5e5e5;
   }

  .logo img {
  height: 36px;
  }
  .nav-list {
    gap: 18px;
  }
	
/* ナビ非表示 */
.nav-list{
  position: fixed;

  inset: 0;

  background:
    rgba(246,246,246,0.94);

  backdrop-filter: blur(18px);

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 40px;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.5s ease;

  z-index: 998;
}

.nav-list.active{
  opacity: 1;
  pointer-events: auto;
}

.nav-list a{
  font-size: 22px;
  letter-spacing: 0.14em;
}

/* hamburger */
.hamburger{
  width: 42px;
  height: 42px;

  border: none;
  background: none;

  display: flex;
  flex-direction: column;

  justify-content: center;
  gap: 8px;

  cursor: pointer;

  z-index: 999;

  position: relative;
}

.hamburger span{
  display: block;

  width: 24px;
  height: 1px;

  background: #111;

  transition: 0.4s ease;
}

/* open animation */
.hamburger.active span:nth-child(1){
  transform:
    translateY(4.5px)
    rotate(45deg);
}

.hamburger.active span:nth-child(2){
  transform:
    translateY(-4.5px)
    rotate(-45deg);
}

  .works {
    padding: 100px 24px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 3rem;
  }
	
  .hero {
    height: auto;
    overflow: hidden;
	padding-top: 0;
  }

  .hero-video {
    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: contain;

    display: block;
  }

  .hero-content {
    padding: 80px 24px 60px;
  }

  .hero-text h1 {
    font-size: 3.4rem;
  }
	
  .scroll-text {
  display: none;
  }

}

/* =========================
SECTION
========================= */

.section{
  padding: 180px 12%;
}

.section-head{
  margin-bottom: 80px;
}

.section-head h2{
  font-size: 72px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.section-line{
  display: block;
  width: 60px;
  height: 2px;
  background: #7ea8ff;
  margin-top: 20px;
}


/* =========================
WORKS
========================= */

.works-filter{
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
}

.works-filter button{
  background: none;
  border: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: #888;
}

.works-filter .active{
  color: #7ea8ff;
}

.works-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
	  grid-auto-flow: dense;
}

.work-item{
  text-decoration: none;
  color: #111;

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.work-item.hide{
  opacity: 0;
  transform: scale(0.96) translateY(10px);
}

.thumb{
  width: 100%;
  aspect-ratio: 1.3;
  background: #5ca5ff;
  margin-bottom: 20px;
  transition: 0.4s;
}

.thumb img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.work-item:hover .thumb img{
  transform: scale(1.05);
}

.category{
  font-size: 12px;
  color: #777;
  letter-spacing: 0.08em;
}

.work-info h3{
  font-size: 24px;
  margin: 10px 0;
  font-weight: 500;
}

.work-info p{
  font-size: 14px;
  color: #666;
}

.works-more{
  margin-top: 100px;
  text-align: center;
}

.view-more-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 240px;
  height: 64px;

  border: 1px solid #111;

  font-size: 13px;
  letter-spacing: 0.18em;

  position: relative;

  overflow: hidden;

  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}

.view-more-btn::before{
  content: "";

  position: absolute;
  inset: 0;

  background: #111;

  transform: translateY(100%);

  transition: transform 0.4s ease;

  z-index: -1;
}

.view-more-btn:hover{
  color: #fff;
}

.view-more-btn:hover::before{
  transform: translateY(0%);
}

/* =========================
PROFILE
========================= */

.small-title{
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #666;
  margin-bottom: 30px;
}

.about{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;

  align-items: start;

  margin-bottom: 140px;
}

.about-image img{
  width: 100%;
  display: block;

  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-text h3{
  font-size: 38px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 500;
}

.about-text p{
  line-height: 2.2;
  color: #666;
}

.profile-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.profile-grid h4{
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.profile-grid ul{
  list-style: none;
}

.profile-grid li{
  margin-bottom: 15px;
  color: #555;
}

.available-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.available-grid ul{
  list-style: disc;
  padding-left: 20px;
}

.available-grid li{
  margin-bottom: 20px;
}

.profile-block{
  margin-bottom: 120px;
}


/* =========================
CONTACT
========================= */

.contact{
  padding-bottom: 220px;
}

.contact-text{
  margin-bottom: 80px;
  color: #666;
}

.contact-form{
  max-width: 900px;
}

.form-group{
  margin-bottom: 60px;
}

.form-group label{
  display: block;
  font-size: 13px;
  margin-bottom: 20px;
  color: #666;
}

.form-group input,
.form-group textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: none;
  padding: 15px 0;
  font-size: 16px;
  outline: none;
}

.form-group textarea{
  height: 160px;
  resize: none;
}

.submit-btn{
  width: 260px;
  height: 70px;
  background: none;
  border: 1px solid #111;
  color:#111;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.submit-btn:hover{
  background: #111;
  color: #fff;
}


/* =========================
FOOTER
========================= */

.footer{
  border-top: 1px solid #eee;
  padding: 40px 12%;
}

.footer p{
  font-size: 12px;
  color: #777;
  letter-spacing: 0.08em;
  text-align: center;
}


/* =========================
RESPONSIVE
========================= */

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

  .section{
    padding: 120px 7%;
  }

  .section-head h2{
    font-size: 52px;
  }

  .works-grid,
  .profile-grid,
  .available-grid{
    grid-template-columns: 1fr;
  }

.about{
  grid-template-columns: 1fr;
  gap: 50px;
}

.about-text h3{
  font-size: 28px;
}

  .submit-btn{
    width: 100%;
  }

}










/* =========================
PAGE HERO
========================= */

.page-hero{
  padding:
    220px 12% 0px;
}

.page-hero h1{
  font-size: 92px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;

  margin-bottom: 12px;
}

.page-hero h1::after{
  content: "";

  display: block;

  width: 60px;
  height: 2px;

  background: #7ea8ff;

  margin-top: 24px;
}

.page-hero p{
  color: #666;
}


/* =========================
KARAOKE LAYOUT
========================= */

.karaoke-layout{
  display: grid;

  grid-template-columns:
    440px
    minmax(0, 760px);

  justify-content: space-between;

  gap: 80px;
}

.karaoke-sticky{
  position: sticky;

  top: 140px;
}

.karaoke-info h1{
  font-size: 54px;
  line-height: 1.4;

  margin:
    18px 0 40px;

  font-weight: 500;
}

.karaoke-text{
  color: #666;

  line-height: 2.1;

  margin-bottom: 60px;
}

.karaoke-meta{
  display: flex;
  flex-direction: column;

  gap: 40px;

  margin-bottom: 60px;
}

.karaoke-meta span{
  display: block;

  font-size: 12px;
  letter-spacing: 0.08em;

  color: #777;

  margin-bottom: 14px;
}

.karaoke-meta ul{
  list-style: none;
}

.karaoke-meta li{
  margin-bottom: 12px;

  color: #555;
}

.karaoke-meta p{
  color: #555;

  line-height: 1.9;
}

.karaoke-works{
  display: flex;
  flex-direction: column;

  gap: 100px;
}

.karaoke-item{
  width: 100%;
}

.karaoke-title{
  margin-top: 18px;

  font-size: 14px;

  color: #666;

  letter-spacing: 0.04em;
}

.karaoke-info h1::after{
  content: "";

  display: block;

  width: 60px;
  height: 2px;

  background: #7ea8ff;

  margin-top: 24px;
}


/* =========================
work01のRESPONSIVE
========================= */

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

  .karaoke-layout{
    grid-template-columns: 1fr;

    gap: 80px;
  }

  .karaoke-sticky{
    position: static;
  }

  .karaoke-info h1{
    font-size: 38px;
  }

  .karaoke-works{
    gap: 70px;
  }
	
  .karaoke-info{
    text-align: center;
  }

  .karaoke-meta ul{
    padding-left: 0;
  }

  .karaoke-meta li{
    list-style: none;
  }

  .view-more-btn{
    margin: 0 auto;
  }

  .karaoke-item{
    text-align: center;
  }
  .karaoke-info h1::after{
    margin:
      24px auto 0;
  }

}



/* =========================
WORKS HOVER
========================= */

.thumb{
  overflow: hidden;
}

.thumb img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.work-item{
  position: relative;
}

.work-item::after{
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.08);

  opacity: 0;

  transition: 0.5s ease;

  pointer-events: none;
}

.work-item:hover::after{
  opacity: 1;
}

.work-item:hover .thumb img{
  transform: scale(1.05);
}

.work-item:hover .work-info h3{
  transform: translateY(-2px);
}

.work-info h3{
  transition: 0.4s ease;
}


/* =========================
RESPONSIVE
========================= */

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

  .page-hero{
    padding:
      140px 7% 80px;
  }

  .page-hero h1{
    font-size: 64px;
  }

  .work-detail{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-visual{
    order: 1;
  }

  .work-info-area{
    order: 2;
  }

  .work-info-area h1{
    font-size: 38px;
  }

  .contact-cta-inner{
    padding: 80px 7%;
  }

  .contact-cta-inner h2{
    font-size: 34px;
    line-height: 1.6;
  }

}


/* =========================
WOKSの方のSCROLL ANIMATION
========================= */

.fade-up{
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.show{
  opacity: 1;

  transform: translateY(0);
}



/* =========================
work02のMV LAYOUT
========================= */

.mv-layout{
  display: grid;

  grid-template-columns:
    420px
    minmax(0, 1fr);

  gap: 100px;

  align-items: start;
}

.mv-sticky{
  position: sticky;

  top: 140px;
}

.mv-info h1{
  font-size: 54px;
  line-height: 1.4;

  font-weight: 500;

  margin:
    18px 0 40px;
}


/* blue line */

.mv-info h1::after{
  content: "";

  display: block;

  width: 60px;
  height: 2px;

  background: #7ea8ff;

  margin-top: 24px;
}


.mv-text{
  line-height: 2.1;

  color: #666;

  margin-bottom: 60px;
}

.mv-meta{
  display: flex;
  flex-direction: column;

  gap: 40px;

  margin-bottom: 60px;
}

.mv-meta span{
  display: block;

  font-size: 12px;
  letter-spacing: 0.08em;

  color: #777;

  margin-bottom: 14px;
}

.mv-meta p{
  line-height: 1.9;

  color: #555;
}

.mv-work{
  width: 100%;
}

.video-wrap{
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;
}

.video-wrap iframe{
  width: 100%;
  height: 100%;

  border: none;

  display: block;
}

.mv-title{
  margin-top: 20px;

  font-size: 14px;

  color: #666;

  line-height: 1.8;
}


/* =========================
work02のRESPONSIVE
========================= */

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

  .mv-layout{
    grid-template-columns: 1fr;

    gap: 80px;
  }

  .mv-sticky{
    position: static;

    text-align: center;
  }

  .mv-info h1{
    font-size: 38px;
  }

  .mv-info h1::after{
    margin:
      24px auto 0;
  }

  .view-more-btn{
    margin: 0 auto;
  }

  .mv-work{
    text-align: center;
  }

}


/* =========================
work3のBRANDING LAYOUT
========================= */

.branding-layout{
  display:grid;

  grid-template-columns:
    minmax(320px,420px)
    minmax(0,1fr);

  gap:80px;
}

.branding-sticky{
  position: sticky;

  top: 140px;
}


/* title */

.branding-info h1{
  font-size: 54px;

  line-height: 1.4;

  font-weight: 500;

  margin:
    18px 0 40px;
}

.branding-info h1::after{
  content: "";

  display: block;

  width: 60px;
  height: 2px;

  background: #7ea8ff;

  margin-top: 24px;
}


/* text */

.branding-text{
  line-height: 2.1;

  color: #666;

  margin-bottom: 60px;
}


/* meta */

.branding-meta{
  display: flex;
  flex-direction: column;

  gap: 40px;

  margin-bottom: 60px;
}

.branding-meta span{
  display: block;

  font-size: 12px;

  letter-spacing: 0.08em;

  color: #777;

  margin-bottom: 14px;
}

.branding-meta p{
  line-height: 1.9;

  color: #555;
}


/* right */

.branding-work{
  display: flex;

  flex-direction: column;

  gap: 80px;
}

.branding-work img{
  width:100%;
  height:auto;
  display:block;
}


/* image block */

.branding-block{
  padding: 0;
  background: none;
}

.branding-block img{
  width: 100%;

  display: block;
}


/* variations */

.branding-variations{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:20px;
}

.branding-variations img{
  width: 100%;
  display: block;
}

.variation-section{
  width: 100%;
}

.variation-title{
  text-align: center;

  margin-top: 20px;

  font-size: 13px;

  letter-spacing: 0.08em;

  color: #777;
}

.variation-section{
  text-align:center;
}

.branding-sublogos{
  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 30px;
}

.branding-caption{
  margin-top: 18px;

  text-align: center;

  font-size: 13px;

  letter-spacing: 0.08em;

  color: #777;
}




/* =========================
work3のRESPONSIVE
========================= */

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

  .branding-layout{
    grid-template-columns: 1fr;

    gap: 80px;
  }

  .branding-sticky{
    position: static;

    text-align: center;
  }

  .branding-info h1{
    font-size: 38px;
  }

  .branding-info h1::after{
    margin:
      24px auto 0;
  }

  .view-more-btn{
    margin: 0 auto;
  }

  .branding-variations{
    grid-template-columns: 1fr;
  }

  .branding-block{
    padding: 30px;
  }
	
.branding-sublogos{
  grid-template-columns: 1fr;
}
	
}




/* =========================
work04のYOUTUBE
========================= */

.youtube-item{
  margin-bottom: 100px;
}

.youtube-item iframe{
  width: 100%;
  aspect-ratio: 16 / 9;

  border: none;

  display: block;
}



/* =========================
work04のSTREAMING
========================= */

.streaming-box{
  text-align: center;

  padding: 80px 40px;

  border: 1px solid #e5e5e5;
}

.streaming-box h3{
  font-size: 18px;

  letter-spacing: 0.1em;

  margin-bottom: 20px;
}

.streaming-box p{
  color: #666;

  margin-bottom: 40px;
}


/* =========================
work04のSP
========================= */

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

  .youtube-item{
    text-align: center;
  }

  .streaming-box{
    padding: 60px 24px;
  }

}

/* =========================
work05
========================= */

.youtube-item{
  margin-bottom:80px;
}

.youtube-item iframe{
  width:100%;
  aspect-ratio:16 / 9;
  border:none;
  display:block;
}

.branding-caption{
  margin-top:12px;
  text-align:center;

  font-size:14px;
  color:#666;
}

.branding-info h1{
  position:relative;
  display:inline-block;
  margin-bottom:48px;
}

.branding-info h1::after{
  content:"";
  position:absolute;

  left:0;
  bottom:-16px;

  width:60px;
  height:2px;

  background:#6ea8ff;
}

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

  .branding-info h1::after{
    left:50%;
    transform:translateX(-50%);
  }

}

/* =========================
work06
========================= */

.work-section{
  margin-bottom:100px;
}

.section-title{
  font-size:18px;
  margin-bottom:24px;
  letter-spacing:.08em;
}

.portfolio-video{
  width:100%;
  display:block;
  border:none;
}

.logo-showcase{
  text-align:center;
}

.logo-showcase img{
  max-width:320px;
  width:100%;
  height:auto;
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.feature-item{
  padding:20px;
  border:1px solid #ddd;
  text-align:center;
}

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

  .feature-list{
    grid-template-columns:1fr;
  }

  .logo-showcase img{
    max-width:220px;
  }

}

/* =========================
work7YouTube
========================= */

.youtube-item iframe{
  width:100%;
  aspect-ratio:16 / 9;

  border:none;
  display:block;
}

.branding-caption{
  margin-top:12px;

  text-align:center;

  color:#666;
  font-size:14px;
}


/* =========================
work7Title Line
========================= */

.branding-info h1{
  position:relative;
  display:inline-block;

  margin-bottom:48px;
}

.branding-info h1::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-16px;

  width:60px;
  height:2px;

  background:#6ea8ff;
}


/* =========================
work7SP
========================= */

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

  .branding-caption{
    text-align:center;
  }

  .branding-info h1::after{
    left:50%;
    transform:translateX(-50%);
  }

}

/* =========================
work8
========================= */
.work-section{
  margin-bottom:100px;
}

.work-section img{
  width:100%;
  height:auto;
  display:block;
  margin-bottom:12px;
}

.section-title{
  margin-bottom:32px;
}

.branding-caption{
  text-align:center;
  margin-bottom:40px;
  color:#666;
  font-size:14px;
}

.branding-info h1{
  position:relative;
  display:inline-block;
  margin-bottom:48px;
}

.branding-info h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-16px;
  width:60px;
  height:2px;
  background:#6ea8ff;
}

.button-center{
  display:flex;
  justify-content:center;

  margin:32px 0 64px;
}

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

  .branding-info h1::after{
    left:50%;
    transform:translateX(-50%);
  }

}
