@charset "UTF-8";

html {
  font-size:62.5%;
}
body {
  font-size:1.4rem;
}
*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}

/* Base */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: #EEEEEE;
  }
  
  .container, .section_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .main_about{
   border-bottom: solid 2px #ccc;
  margin:0 30px;

  }

  
  .main_about h1 {
  max-width: 1080px;

  text-align: center;
  font-size: 72px;
  font-weight: bold;
  padding:100px 0 24px ;

  }

  h2{
    display: inline-block;
    font-size: 5.5rem;
    font-weight: bold;
    padding: 8px 0 0 12px;
    margin: 4rem 0;
    border-bottom: #FF6200 solid 2px;
    border-left: #FF6200 solid 6px;
  }

  h3{
    font-size: 28px;
    font-weight: bold;
  }

  h4{
    font-size: 1.6rem;
    font-weight: bold;
    margin: 32px 0;
  }

  img{
    max-width: 100%;
    height: auto;
    display: block;
  }

  a{
    width: 100%;
  }
  
  /* Header */
  header{
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    margin-top: -114px;
    top: 0;
    z-index: 1000;
  }

  .on_header{
    width: 100px;
    height: 100px;
  }
  /* nav */


.circle{
  display: block;
  width: 80px;
  height: 80px;
  border: 2px solid #FF6200;
  border-radius: 50%;
  text-align:center;
  line-height: 75px;
  color: #FF6200;
  }

.circle:hover
{
  background-color: #ff6200;
  color: #333;
  box-shadow: 2px 2px 4px -2px gray
}

/* メニュー */
.menu {
width: 100vw;
height: 100vh;
background-color: #000;
position: fixed;
top: 0%;
left: 0%;
z-index: 1;
display: none;
color: #fff;
}

.menu.is-active {
  display: flex;
  justify-content:space-evenly;
  align-items: center;   /* 垂直方向の中央寄せ */
  
}

.menu .left li {
  font-size: 72px;
  margin-bottom: 56px;
  color: #ccc;
}

.menu .left li  a{
  color: #ccc;
  font-weight: bold;
}

.menu li a:hover,
.menu .right a:hover{
 color: #FF6200;
 transition: color 0.5s ease;
}

.menu .right a{
  width: 160px;
  height: 160px;
}

 .menu .right img{
  display: block;
  width: 140px;
  height: 140px;
  padding: 15px;
}
.menu .right .insta_img img{
  display: block;
  width: 140px;
  height: 140px;
}
.menu .right .mail_info{
  color: #ccc;
  font-size: 70px;
  font-weight: bold;
}

.menu .right .insta_a,
footer .insta_a{
  display: block;
  width: 24px;
  height: 24px;
  }




/* main */

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 100vh;
  width: 100%;
}

.main_container{
  display: flex;
  flex-direction: column; 
  align-items: center;         
  text-align: center;  
}

.main_container p{
padding-top: 20px;
color: #eee;
font-size: 2rem;
font-weight: bold;
}

.main_container img{
  width: 400px;
  height: 400px;
  margin: 0 auto;
  text-align: center;
}




/* about */

.about .container{
  margin: 40px 60px;
}

.about .container p{
  margin: 16px 0;
}

.about .container{
  align-items: right;
}



/* works */

#works h3{
  margin-bottom: 40px;
}
.work-title h5{
  font-size: 18px;
  padding-bottom: 10px;

}

.works-list li img{
  width: 300px;
  height: 300px;
}

.work-Link{
  color: #FF6200;
  padding-top: 10px;
  font-weight: 400;
}

/* Works Grid */
/* 横スクロール可能な外枠 */
.works-scroll-wrapper {
  max-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 10px 20px;
  box-sizing: border-box;
}

/* 横並びのリスト */
.works-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各 li のサイズとデザイン */
.works-list li {
  flex: 0 0 300px; /* 固定幅300px */
  height: 300px;
  scroll-snap-align: start;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 画像調整 */
.works-list li img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* 日付とタイトル */
.work-meta {
  font-size: 0.8rem;
  color: #999;
  margin-top: 8px;
}

.work-title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .works-list li { flex: 0 0 25vw; }
}

@media (max-width: 900px) {
  .works-list li { flex: 0 0 45vw; }
}

@media (max-width: 600px) {
  .works-list li { flex: 0 0 80vw; }
}


  /* news */

  #news{
    margin-top: 40px;
    background-color: #000;
    padding: 60px 0;
  }

  #news h2,
  #news h3{
    color: #fff;
  }
  
  .news-list_container{
    padding: 4rem 2rem;
    display: flex;
    justify-content: flex-end;
  }
  
  .news-list_top {
    width: 100%;
    max-width: 600px;
    margin-right: 0;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .news-list_top li {
    padding: 1rem;
    border-bottom: 1px solid #fff;
    font-size: 1.5rem;
    color: #fff;
    transition: background-color 0.2s ease;
  }

  .news-list_top li:nth-child(1) { border-top:  1px solid #ccc; }
  
  /* モバイル対応：中央揃えに戻す */
  @media (max-width: 768px) {
    #news {
      justify-content: center;
    }
  
    #news .container {
      margin: 0 auto;
      text-align: center;
    }
  
    #news h2,
    #news h3 {
      text-align: center;
    }
  }

  /* member */

  .member-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    padding: 4rem;
    list-style: none;
    margin: 0;
  }
  
  .member-list li {
    background-color: #f9f9f9;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 300px;
    flex: 1 1 200px;
    transition: transform 0.3s ease;
    margin: 0 20px;
    padding-bottom: 1rem;
  }
  
  .member-list li:hover {
    transform: translateY(-5px);
  }
  
  .member-list img {
    display: inline-block;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    margin-bottom: 1.8rem;
  }
  
  .member-list h3 {
    margin: 0.5rem 0 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    padding-left: 2rem;
  }
  
  .member-list p {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    padding-left: 2rem;
  }
  
  /* モバイル対応 */
  @media (max-width: 600px) {
    .member-list {
      flex-direction: column;
      align-items: center;
    }
  
    .member-list li {
      max-width: 90%;
    }
  }


  /* contactus */
  #contactus{
    margin-bottom: 300px;
  }

#contactus .container{
  text-align: center;
}

.contact_wrapper{
  display: inline-block;
  margin: 60px 0;
  padding: 4rem 20rem;
  background-color: #333;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  border-radius: 10rem;
  text-decoration: none;
  cursor: pointer;
}

#contactus a{
  color: #fff;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .works-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .works-list {
      grid-template-columns: 1fr;
    }
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* Read More Button */
  .readmore{
  padding-top: 40px;
  display: flex;
  justify-content: right;
  }

.readmore a{
  color: #fff;
  padding: 16px 48px;
}

  .readmore_container {
    display: flex;
    background-color: #333;
    color: white;
    font-size: 20px;
    border-radius: 48px;
    text-decoration: none;
    cursor: pointer;
  }
  
  .readmore_container:hover,
  .contact_wrapper:hover,
  .works-genre li:hover,
  .contact_wrapper a:hover
  {
    transition: background-color 0.5s ease;
    background-color: #ff6200;
    color: #333;
  }

  /* footer */


  .appear-box {
    position: fixed;
    width: 100%;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 20px 40px;
    border-radius: 60px 60px 0 0;
    opacity: 0;
    transition: all 0.5s ease-out;
    z-index: 9999;
    pointer-events: none;
  }
  
  .appear-box.show {
    bottom: 0;
    opacity: 1;
  }

  footer h4{
    font-size: 48px;
  } 
.copy{
  text-align: right;
    color: #FF6200;
}
.footer_right p{
  padding-top: 20px;
}
.footer_right .insta{
  padding: 10px 0 0 20px;
}


  /* aboutページ  */

  .about_content li{
    font-size: 48px;
    font-weight: bold;
    margin: 64px 0;
  }

  #about h4{
    font-size: 36px;
    margin-bottom: 64px;
    border-bottom: solid 2px black;
  }

  #about p{
    font-weight: bold;
    font-size: 20px;
  }

  .about_content li span{
    padding: 0 36px;
    font-size: 24px;
    font-weight: bold;
  }

  #company{
    background-color: black;
    color: #fff;
    padding-bottom: 260px;
  }

  .company-list li{
    color: #fff; 
    padding: 2rem 1rem;
    border-bottom: 1px solid #ccc;
    font-size: 1.5rem;
  }

  .company-list_container{
    padding: 4rem 2rem;
    display: flex;
    justify-content: flex-end;
  }
  
  .company-list {
    width: 100%;
    max-width: 600px;
    margin-right: 0;
    text-align: left;
    list-style: none;
    padding: 16px 0;
    margin: 0;
  }

  .company-list li:nth-child(1) { border-top:  1px solid #ccc;
   }


  /* 下からふわりアニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時の状態 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


.fade-up:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-up:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-up:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------
   ▼ タブレット対応（768px以下）
-------------------------------- */
@media screen and (max-width: 768px) {

  html {
    font-size: 56.25%; /* ≒ 9px (基準値下げ) */
  }

  .container,
  .section_wrapper {
    padding: 0 32px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .on_header {
    width: 50px;
    height: 50px;
  }

  .circle {
    width: 64px;
    height: 64px;
    line-height: 60px;
    font-size: 1.2rem;
  }

  .menu .left li {
    font-size: 4rem;
    margin-bottom: 32px;
  }

  .menu .right .mail_info {
    font-size: 3rem;
  }

  .main_container img {
    width: 280px;
    height: 280px;
  }

  .main_container p {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  #about p {
    font-size: 1.6rem;
  }

  .readmore {
    text-align: center;
  }

  .readmore_container {
    font-size: 1.6rem;
    padding: 12px 32px;
  }


  .contact_wrapper {
    font-size: 2.4rem;
    padding: 2rem 6rem;
  }

  .member-list {
    padding: 2rem;
    gap: 2rem;
  }

  .member-list img {
    width: 100%;
    height: auto;
  }
}


/* -------------------------------
   ▼ モバイル対応（375px以下）
-------------------------------- */
@media screen and (max-width: 480px) {

  html {
    font-size: 50%; /* ≒ 8px */
  }
  .container,
  .section_wrapper {
    padding: 0 16px;
  }

  .main_container img {
    width: 200px;
    height: 200px;
  }

  .main_container p {
    font-size: 1.4rem;
  }

  .menu .left li {
    font-size: 2.4rem;
  }

  .menu .right .mail_info {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.6rem;
  }
  .main {
    height: 700px;
  }
  /* .main_container{
    padding-top: 200px;
  } */

  #about h4 {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  #about p {
    font-size: 1.4rem;
  }

 .about .container{
    margin: 0;
  } 

  .member-list li {
    margin: 0 auto;
  }

  .contact_wrapper {
    font-size: 2rem;
    padding: 1.5rem 4rem;
  }
  #company{
    padding-bottom:80px;
    padding-top:80px;
  }
  .container h2{
    margin: 80px 0;
  }
  .about .container p{
    margin: 16px 0 40px;
  }

  .readmore_container {
    font-size: 1.4rem;
    padding: 12px 24px;
  }
  .about_content li{
    font-size: 24px;
    margin:20px 0
  }
  .about_content li span{
    font-size: 16px;
  }

  .works-list li {
    flex: 0 0 85vw;
  }

  footer h4 {
    font-size: 2.4rem;
  }

  .appear-box {
    padding: 1rem 2rem;
    border-radius: 32px 32px 0 0;
  }

}

/* works ページ */

.works-contents{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  
}

.works-genre{
  display: flex;
  align-items: center;
}

.works-genre a{
  color: #fff;
}

.works-genre ul{
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
}

.works-genre ul li{
  padding: 10px 20px;
  background-color: #999;
  color: #f5f5f5;
  border-radius: 20px;
  margin-left: 20px;
}


/* 横並びのリスト */
.work_in-info{
  width: 100%;
  margin: 0 auto;
}

.works_in-list{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

/* 各 li のサイズとデザイン */
.works_in-list li {
  flex: 0 0 300px; /* 固定幅300px */
  height: 300px;
  scroll-snap-align: start;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 画像調整 */
.works_in-list li img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}