@charset "UTF-8";

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}


.fade-in {
  /* アニメーションの命令 */
  animation: scrollAnime linear;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes scrollAnime {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

header {
  border-bottom: solid;
  border-color: #4e4e4e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background-color: #fff;
}

header a img {
  width: 100px;
}

header h1 {
  font-family: "Archivo Black", sans-serif;
    color: #282828;
    font-size: 60px;
    display: flex;
    justify-content: center;
}


header nav ul {
  font-size: 20px;
  color: #4e4e4e;
  font-family: "Archivo Black", sans-serif;
  display: flex;
  justify-content: right;
}

nav ul img {
  width: 40px;
  margin: 10px 20px 0px 20px;
}

nav a {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-right: 20px;
}

nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #282828;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

nav a:hover {
  color: #282828;
}

nav a:visited {
  color: #4e4e4e;
}

nav a:hover::after {
  transform: scale(1, 1);
}
/* ーーーーーーーーーーハンバーガーメニューーーーーーーーーーーー */
/* ハンバーガーメニューの基本スタイル */
.hamburger {
  display: none; /* デフォルトでは非表示 */
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 4px;
  background-color: #4e4e4e;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ナビゲーションの初期状態（PCでは表示） */
/* ナビゲーションの全体設定 */
nav {
  display: flex;
  flex-direction: column; /* 縦に並べる */
  align-items: flex-end; /* 右寄せ */
  gap: 10px; /* 項目同士の間隔 */
  margin-top: 50px;
}

.nav ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.nav ul li {
  margin: 0 10px;
}

.nav ul li a {
  text-decoration: none;
  color: #4e4e4e;
}

/* メニュー*/
.menu {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  justify-content: flex-end; /* 右寄せ */
  gap: 20px; /* メニュー項目の間隔 */
}


/* スマホ画面（768px以下）の場合 */
@media screen and (max-width: 768px) {
  .hamburger {
      display: flex; /* スマホでは表示 */
  }

  .nav {
    display: none; /* 初期状態で非表示 */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 50%;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;  /* 縦スクロールを可能にする */
    height: 600px;
}

  .nav ul {
      flex-direction: column;
      text-align: center;
  }

  .nav ul li {
      margin: 10px 0;
  }

  .nav ul img {
    width: 20px;
  }

  /* メニューが開いたときの表示 */
  .nav.active {
      display: flex;
  }
  @media screen and (min-width: 768px) {
    /* ここにPCサイズ用のスタイルを追加 */
    .menu {
      display: flex; /* 例: PCではメニューを横並びに */
    }
  
    .hamburger-menu {
      display: none; /* 例: PCではハンバーガーメニューを非表示 */
    }
  }
}
/* ーーーーーーーーーーハンバーガーメニューーーーーーーーーーーー */
@media screen and (max-width: 768px) {
  body h1 {
    font-size: 40px;
  }
  
  body a img {
    width: 60px;
  }
}
/* -------------about--------------- */
.abouttop {
    text-align: center;
    color: #4e4e4e;
}

.abouttop h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
   font-size: 25px;
    letter-spacing: 10px;
    margin-bottom:-20px;
    margin-top: 50px;
}

.abouttop h3 {
    font-size: 90px;
    font-family: "Archivo Black", sans-serif;
    margin-bottom: 20px;
}

.abouttop img {
    width: 1000px;
    display: block;
    margin: 0 auto;
    margin-top: 250px;
}

@media screen and (max-width: 768px) {
  .abouttop h2 {
    font-size: 20px;
  }
  .abouttop h3 {
    font-size: 70px;
  }
  .abouttop img {
    width: 100%;
    margin-top: 100px;
  }
}

.about {
    color: #4e4e4e;
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: center;
}

.aboutleft {
  text-align: center;
}

.aboutleft p {
  display: inline-block;
  text-align: left;
}

.aboutcenter {
  text-align: center;
}

.about p {
    padding: 30px;
    line-height: 35px;
    font-size: 18px;
}

.about h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: -10px;
  margin-top: 80px;
  font-size: 20px;
}

.about h5 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: 35px;
  margin-top: 10px;
}


.aboutcenter h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 25px;
  margin-bottom: -30px;
  color: #282828;
}

@media screen and (max-width: 768px){
.aboutleft p {
  font-size: 14px;
}
.about h4 {
  font-size: 15px;
}
.about h5 {
  font-size: 25px;
}
.aboutcenter h5 {
  font-size: 18px;
}
.aboutcenter p {
  font-size: 14px;
}
}

.english {
    border: solid 5px;
    border-color: #4e4e4e;
    border-radius: 50px;
    margin: 100px;
    padding: 50px 200px;
}

.english p {
  font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    line-height: 50px;
    font-size: 18px;
}

.english h5 {
  font-family: "Archivo Black", sans-serif;
    color: #282828;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: -10px;
}

@media screen and (max-width: 768px) {
  .english {
    border: solid 5px;
    border-color: #4e4e4e;
    border-radius: 50px;
    margin: 5px;
    padding: 50px 10px;
}
.english p {
  font-size: 15px;
  line-height: 25px;
}
.english h5 {
  font-size: 20px;
  margin-bottom: 5px;
}
}

.TOOLS {
  padding: 30px;
    line-height: 50px;
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  display: flex;
  justify-content: center;
}

.TOOLS h6 {
  font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
  font-size: 25px;
}

.TOOLS p {
  display: flex;
  text-align: left;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .TOOLS {
    font-size: 14px;
  }
}

.tothegorilla {
  display: flex;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: -200px;
}

.tothegorilla :hover{
	transform:scale(1.1);
	transition:2s;
}

.tothegorilla dt {
  font-family: "Archivo Black", sans-serif;
  color: #282828;
  font-size:30px;

}

.tothegorilla dd img {
  width: 400px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transition: 1s all;
}

@media screen and (max-width: 768px) {
  .tothegorilla {
    margin: 100px auto; 
  }
  .tothegorilla dt {
    font-size: 20px;
    text-align: center;
  }
  .tothegorilla dd img {
    width: 300px;
  }
}

.aboutcontact {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.aboutcontact h6{
  width: 100px;
  font-size: 40px;
  display: flex;
  align-items: center;
  font-family: "Cardo", serif;
  color: #4e4e4e;
  margin: 40px;
}

.aboutcontact img {
  width: 300px;
  margin-bottom: -100px;
  display: block;
  transition: transform 0.5s ease; 
  border-radius: 100px;
  padding: 30px;
}

.aboutcontact img:hover {
  transform: scale(1.1); 
}

/* -------------aboutここまで--------------- */
/* --------------WORK------------- */
  .ORDER h2 {
    font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    font-size: 50px;
    border-bottom: solid;
    border-color: #4e4e4e;
    margin-top: 100px;
  }

  .ORDER {
    margin-top: 300px;
  }

  .illustration h2 {
    font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    font-size: 50px;
    border-bottom: solid;
    border-color: #4e4e4e;
    margin-top: 200px;
  }

  .backgray {
    background-color: #4e4e4e;
    padding-bottom: 100px;
  }

  .goods h2 {
    font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    font-size: 50px;
    border-bottom: solid;
    border-color: #4e4e4e;
    margin-top: 200px;
  }


  .goods img {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-top: 30px;
  }

  .ordergrid {
    display: flex; 
    gap: 24px; 
    overflow: scroll; 
    -ms-overflow-style: none; 
    padding: 200px 20px;
  }
  .ordergrid a {
    display: inline-block; 
    flex: none; 
    min-width: calc(25% - 80px); 
    word-break: break-all; 
    text-align: justify;
    position: relative; 
  }
  

  .item img {
  transition: 1s all;
  width: 100%;
  display: block;
  
  }

  .item img:hover{
	transform:scale(1.2);
	transition:1.5s;
}

.item p {
  font-size: 15px;
  color: #4e4e4e;
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.ordergrid .item {
  width: 250px; /* ← 好きなサイズに変更してOK */
  flex-shrink: 0; /* はみ出しても縮まないように */
  text-align: center;
}

.illustration .item p {
  color: #fff;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #4e4e4e; 
  padding: 50px 0;
  position: relative;
  margin-top: -200px;
}


.marquee__inner {
  display: flex;
  animation: marquee-scroll 15s linear infinite;
}

.marquee__inner p {
  font-size: 2rem;
  font-family: serif;
  margin: 0;
  padding-right: 40px;
  color: #fff;
  font-size: 30px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------WORKここまで------------- */

/* ------------withgorilla----------------- */
.topgorilla{
  margin-bottom: 200px;
}

.topgorilla img {
  width: 600px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 200px;
}

.topgorilla h2 {
  font-family:  "Cardo", serif;
  font-size: 60px;
  color: #4e4e4e;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: -100px;
}


.image img {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 30px;
  margin-top: 100px;
}

.container {
  border: solid 5px;
  border-radius: 40px;
  border-color: #4e4e4e;
  padding: 60px;
  margin: 30px auto;
  display: block;
  justify-content: center;
  width: fit-content;
}

.container-inner {
  max-width: 800px;         /* 幅の上限をつける */
  margin: 0 auto;           /* 中央寄せ */
  text-align: left;         /* 文字は左寄せ */
}

.container p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #4e4e4e;
  font-size: 18px;
  line-height: 50px;
  text-align: left;
}

.describe h2 {
  font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    font-size: 45px;
    display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
}


.gorillagrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(30px, auto));
  justify-content: center;
  align-items: stretch;
  margin-bottom: -200px;
}

.gorillagrid img {
  transition:1s all;
  width: 300px;
  height: auto;
  object-fit: contain;
}

.gorillagrid img:hover {
  transform:scale(1.2);
    transition:1.5s;
}

@media screen and (max-width: 768px) {
  .topgorilla img {
    width: 300px;
  }
  .topgorilla h2 {
    font-size: 40px;
  }
  .describe h2 {
    font-size: 30px;
    margin-top: 30px;
  }
  .container {
    padding: 10px;
  }
  .container p {
    font-size: 12px;
    line-height: 35px;
    letter-spacing: -0.05em;
  }
  .gorillagrid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(30px, auto));
  justify-content: center;
  align-items: stretch;
}
}

/* ------------withgorillaここまで----------------- */
/* ーーーーーーーーーリンクボタンーーーーーーーーーーーー */
.button {
  text-align: center;
  margin-top: 200px;
  display: flex;
  justify-content: center;
}

.button dl {
  margin: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

.button dt{
 margin-bottom: 20px;
 font-size: 20px;
 text-align: center;
}
.button dd {
 text-align: center;
 font-family: "Archivo Black", sans-serif;
 font-size: 20px;
}

a.btn_04 {
	display: block;
	text-decoration: none;
	width: 140px;
  text-align: center;
	padding: 1rem 2rem;
  margin: 0 auto;
	font-weight: bold;
	border: 3px solid #282828;
	background: #282828;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_04:hover {
	color: #282828;
	background: #fff;
}

@media screen and (max-width: 768px){
  .button {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;     /* ボタン中央寄せ */
  }

  .button dl {
    margin: 20px 0;          /* 上下だけマージン */
    text-align: center;
  }

  a.btn_04 {
    a.btn_04 {
      width: 220px;           /* 幅を全ボタンで統一 */
      height: 60px;           /* 高さも統一（必要なら） */
      line-height: 60px;      /* テキストを縦方向で中央に */
      font-size: 18px;        /* 文字サイズもそろえる */
      padding: 0;             /* paddingを無効化して高さ固定に */
    }         /* テキストも少し小さく */
  }

  .button dt,
  .button dd {
    font-size: 16px;
  }
}
/* ーーーーーーーーーリンクボタンーーーーーーーーーーーー */

/* -----------contact--------------- */
.contacttop {
  margin-top: 300px;
}

.contacttop h2 {
  font-size: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.contacttop p {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 15px;
  line-height: 40px;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.Form {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  font-family: "Noto Sans JP", sans-serif;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 780px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #737373;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #737373;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 15px;
  }
}
/* ーーーーーーーーーーー動く画像ーーーーーーーーーーーーーー */
.image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: -300px;
}

.moving-image {
  position: absolute;
  top: 50%;
  right: 0; /* 初期位置は画面の外 */
  transform: translateY(-50%); /* 縦方向でセンタリング */
  animation: moveImage 8s linear infinite; /* ◯◯秒で移動し、無限ループ */
  width: 300px;
}

@keyframes moveImage {
  0% {
      right: -100%; /* 画面外からスタート */
  }

  100% {
      right: 100%; /* 画面の右端を越えて移動 */
  }
}
/* ーーーーーーーーーーー動く画像ーーーーーーーーーーーーーー */
/* ----------------thanks------------------------ */
.thankstop {
  text-align: center;
  padding: 100px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 200px;
}

.thankstop h2 {
  font-size: 2rem;
  margin-bottom: 1em;
}

.thankstop p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2em;
  font-weight: 200;
}

.btn-back {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: #282828;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-back:hover {
  background: #4e4e4e;
}
/* ----------------thanks------------------------ */

/* -----------contactここまで--------------- */

footer {
    border-top: solid;
    border-color: #4e4e4e;
    margin-top: 20px;
    margin-bottom: 100px;
}

footer small {
    display: flex;
    justify-content: center;
    font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    margin-top: 100px;
}

#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: auto;
}

#page_top img {
  display: block;
  width: 80%;
}



/* === 共通スタイル === */
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 90%;
  margin: 0 auto;
}

/* === 共通スタイル === */
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 90%;
  margin: 0 auto;
}

