@charset "UTF-8";

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
  overflow-x: hidden;
}

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;
}
@media screen and (max-width: 768px) {
  header a img {
    width: 50px;
    display: flex;
    align-items: center;
  }
}

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;
  }
}
/* ーーーーーーーーーースクロールーーーーーーーーーーーーー */
.wrapper {
  display: flex;
  justify-content: center;
  margin: 300px;
}
.wrapper .col{
  width:50%;
  display: flex;
  justify-content: center;
}

.scroll-down-box svg{
  fill: #4e4e4e;
}

.scroll-down-box{
  display:block;
  position:relative;
  text-decoration:none;
}

.scroll-down-box .scroll-text{
  width:300px;
  height:auto;
  -webkit-animation: rotation 10s infinite linear;
  animation: rotation 10s infinite linear;
}


.scroll-down-box .scroll-icon{
  width:25px;
  height:auto;
  position:absolute;
  top:50%;
  left:50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition:all 0.2s ease-in;
  transition:all 0.2s ease-in;
}

.scroll-down-box.alt .scroll-icon{
  width:80px;
}


@keyframes rotation {
    from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg); transform: rotate(359deg);}
}
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg); transform: rotate(359deg);}
}

@keyframes move {
    0% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    25% {-ms-transform: translate(-50%,-35%); -webkit-transform: translate(-50%,-35%); transform: translate(-50%,-35%);}
    50% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    75% {-ms-transform: translate(-50%,-65%); -webkit-transform: translate(-50%,-65%); transform: translate(-50%,-65%);}
    100% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
}
@-webkit-keyframes move {
    0% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    25% {-ms-transform: translate(-50%,-40%); -webkit-transform: translate(-50%,-40%); transform: translate(-50%,-40%);}
    50% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    75% {-ms-transform: translate(-50%,-60%); -webkit-transform: translate(-50%,-60%); transform: translate(-50%,-60%);}
    100% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
}

@media screen and (max-width: 768px) {
  .wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 300px 20px; /* 上下300px, 左右20pxに変更 */
    max-width: 100%; /* 念のため横幅制限 */
    overflow-x: hidden;
}
.wrapper .col{
  display: flex;
  justify-content: center;
  width: 10px;
}
.scroll-down-box .scroll-text{
  width:150px;
}
.scroll-down-box.alt .scroll-icon{
  width:50px;
}
}
/* ーーーーーーーーーースクロールーーーーーーーーーーーーー */

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

@keyframes scrollAnime {
  from {
      opacity: 0;
  }
  to {
      opacity: 2;
  }
}
/* -----------Top page----------------- */

.topwrap {
 font-family: "Cardo", serif;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  color: #4e4e4e;
  margin-top: -350px;
}
.top h2 {
    display: flex;
  justify-content: center; 
}

.top h3 {
    display: flex;
  justify-content: center; 
}

.top img {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 300px auto; 
}
@media screen and (max-width: 768px) {
  .top img {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto; 
}
  .topwrap {
    font-size: 25px;
    margin-top: 70px;
  }
  
}

.topabout {
  margin-bottom: 300px;
}

.topabout h2 {
  font-size: 60px;
  margin-bottom: 40px;
  font-family: "Archivo Black", sans-serif;
  color: #4e4e4e;
  text-align: center;
  font-size: 80px;
  margin-bottom: -100px;
}

.topabout h2 a:visited {
  color: #4e4e4e;
}

.topabout a {
    overflow: hidden;
    color: #4e4e4e;
}

.topaboutbox h3 {
  font-size: 60px;
  font-family: "Archivo Black", sans-serif;
  color: #4e4e4e;
  text-align: center;
  margin-bottom: 40px;
}

.topaboutbox h3 a:visited {
  color: #4e4e4e;
}

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

.topaboutbox img:hover {
    transform: scale(1.2, 1.2);
    transition: 1s all;
}

.topaboutbox {
  font-family: "Archivo Black", sans-serif;
  color: #4e4e4e;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  border: solid 10px;
  border-color: #4e4e4e;
  border-radius: 50px;
  padding: 50px;
  margin: 30px;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .topabout h2 {
    font-size: 40px;
  }
  .topaboutbox a img{
    width: 200px;
  }
  .topaboutbox h3 {
    font-size: 35px;
  }
  .topabout p {
    text-align: left;
    line-height: 30px;
  }
}

.topillust {
    margin: 60px;
}

@media screen and (max-width: 768px) {
  .topillust {
    margin: 0 auto;
  }
}

.topillust h2 {
  font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    text-align: center;
    font-size: 80px;
}

@media screen and (max-width: 768px) {
  .topillust h2 {
    font-size: 40px;
  }
}

.topillust a {
    overflow: hidden;
}

.topillust a img {
    transition: 1s all;
  width: 300px;
  margin: 200px 20px;
}

@media screen and (max-width: 768px) {
  .topillust a img {
    width: 200px;
    margin: 100px 0px;
  }
  
}

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

.backgray {
  background-color: #4e4e4e;
}

.ordergrid {
  display: flex; 
  gap: 24px; 
  overflow: scroll; 
  -ms-overflow-style: none; 
  padding: 0 24px; /* 上下左右に24pxのパディングを持つ */
}
.ordergrid a {
  display: inline-block; 
  flex: 1; 
  min-width: calc(25% - 80px); 
  word-break: break-all; 
  text-align: justify;
  position: relative; 
}

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


.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%);
  }
}

.topcontact {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
    font-size: 15px;
    color: #4e4e4e;
    margin-top: 200px;
    margin-bottom: -200px;

}

.topcontact h2 {
  font-family: "Archivo Black", sans-serif;
    color: #4e4e4e;
    text-align: center;
    font-size: 80px;
}

@media screen and (max-width: 768px) {
  .topcontact h2 {
    font-size: 40px;
  }
}

.topcontact a {
    overflow:hidden;
}

.topcontact img {
    width: 400px;
    transition:1s all;
    margin-top: 50px;
    
   margin: 50px auto;
   border-radius: 50px;
   animation: fuwafuwa 3s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* -----------Top pageここまで----------------- */
/* ーーーーーーーーーリンクボタンーーーーーーーーーーーー */
.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;
  }
}
/* ーーーーーーーーーリンクボタンーーーーーーーーーーーー */

/* ーーーーーーーーーーー動く画像ーーーーーーーーーーーーーー */
.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%; /* 画面の右端を越えて移動 */
  }
}
/* ーーーーーーーーーーー動く画像ーーーーーーーーーーーーーー */


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

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

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

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