@charset "UTF-8";
/* *{
  outline: 2px red solid;
} */

/*フォント------------------------------------------------*/
p{
  font-family: 'Zen Maru Gothic', sans-serif;
}


li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
}

h1, h2 {
  font-family: 'Kaisei Opti', serif;
  font-weight: 500;
}

h1{
  font-size: 40px;
}


/*フォントここまで-----------------------------------------*/
html{
    max-width: auto;
}

#himawari{
  background-image: url(../image/himawari.png);
  background-color: rgba(255,255,255,0.8);
  background-blend-mode: lighten;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.logo {
  position: fixed;
  top: 35px;
  right: 5px;
  height: 80px; /* navと同じに */
  display: flex;
  align-items: center; /* 縦中央に揃える */
  z-index: 1000;
}

.logo img {
  height: 200px;  /* navより少し小さめに */
  width: auto;
  max-width: 100%;
}

/*ヘッダー-------------------------------------------------*/

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* 適当な高さ */
    background-color: rgb(7, 201, 249);
    box-shadow: 0px 2px 0 #878787;
    z-index: 999;
  }
  
  nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0 20px;
    margin-top: 5px;
  }
  
  nav li {
    padding: 0 1rem;
    list-style: none;
    color: #fff;
    line-height: 80px; /* navの高さと同じ */
    margin: 20px ;
  }
  


li a{
    color: #3b3b3b;
    /* margin: 40px; */
}

figure img {
    width: 100%;
}
.footer-circle li {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.6;
    color: #3b3b3b;
    position: relative;
    padding: 0em 0.3em 0.3em 1.3em;
    list-style: none;
  }
 
  .footer-circle li a {
    color: #3b3b3b;
    text-decoration: none;
    position: relative;
  }
  .footer-circle li a::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .footer-circle li a:hover::after {
    transform: scale(1, 1);
  }

  /* ハンバーガーのスタイル */
/* ハンバーガーアイコン（初期状態は非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-left: 25px;
  margin-top: 30px;
  z-index: 999;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #3b3b3b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ハンバーガーがアクティブなとき */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* スマホ用メディアクエリ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95); /* 半透明白 */
    position: absolute;
    top: 80px;
    left: 0;
    width: 200px;
    z-index: 998;
    padding: 5px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 55vh; /* 画面の高さ分しっかり背景を確保 */
  }

  nav ul.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav li {
    text-align: left;
    padding-left: 20px; /* ← li に余白を足して左に寄せる */
    margin: 10px 0;
  }

  nav li a {
    font-size: 18px;
    color: #3b3b3b;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: block;
    width: 100%;
    padding: 10px 0; /* ← 上下に余白をつけてクリックしやすく */
  }

  .logo {
    position: fixed;
    top: 35px;
    right: 0px;
    height: 65px; /* navと同じに */
    display: flex;
    align-items: center; /* 縦中央に揃える */
    z-index: 1000;
  }

  .logo img {
    height: 150px;  /* navより少し小さめに */
    width: auto;
    max-width: 100%;
  }
 
  /* nav li a:hover {
    background: #ffe4e1;
  } */
}



  /*ヘッダーここまで-------------------------------------------------*/
  
  /*メインビジュアル-------------------------------------------------*/
  
  
  
  
  /* .text-area {
    flex: 1 1 300px;
    padding-right: 20px;
    font-size: clamp(16px, 2vw, 24px);
    text-align: center;
    color: #3b3b3b;
    box-sizing: border-box;
  }
   */

   /* ★テキストを画像の上に重ねる */
   .text-area {
    position: absolute;
    top: 70%;
    left: 80%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
  
    /* 幅を中身に合わせる */
    width: auto;
  }
  

.text-area h1.shop {
  font-size: 55px;
  margin-bottom: 10px;
  white-space: nowrap; /* 改行を防ぐ */
  overflow: hidden;    /* はみ出した部分を隠す（必要に応じて） */
  text-overflow: ellipsis; /* はみ出したら「…」にする（必要に応じて） */
}

   .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    padding: 10px 0;
    margin-top: 10px;
  }
  
  
  .slideimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縦優先で切り取り */
    object-position: left center; /* ★左側を固定、右側が切れる */
  }
  
  /* 初期状態：スマホ用画像は非表示 */
.slider-container.sp {
  display: none;
}

@media screen and (max-width: 1400px) {
  .text-area h1.shop {
    font-size: 45px;
    margin-bottom: 10px;
  }
}

@media(max-width: 1100px){
  .text-area h1.shop{
    font-size: 35px;
  }
}
/* スマホサイズ以下のとき：PC画像を隠してスマホ画像だけ表示 */
@media (max-width: 600px) {
  .slider-container.pc {
    display: none;
  }
  .slider-container.sp {
    display: block;
  }
  .text-area {
    position: absolute;
    top: 80%;
    left: 70%;
  }
  .text-area h1.shop {
    font-size: 35px;
    margin-bottom: 10px;
      white-space: nowrap; /* 改行を防ぐ */
      overflow: hidden;    /* はみ出した部分を隠す（必要に応じて） */
      text-overflow: ellipsis; /* はみ出したら「…」にする（必要に応じて） */
  }
  .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    padding: 10px 0;
    margin-top: 0px;
  }
}

@media (max-width: 450px) {
  .slider-container.pc {
    display: none;
  }
  .slider-container.sp {
    display: block;
  }
  .text-area {
    position: absolute;
    top: 80%;
    left: 70%;
  }
  .text-area h1.shop {
    font-size: 27px;
    margin-bottom: 10px;
      white-space: nowrap; /* 改行を防ぐ */
      overflow: hidden;    /* はみ出した部分を隠す（必要に応じて） */
      text-overflow: ellipsis; /* はみ出したら「…」にする（必要に応じて） */
  }
  .slider-container {
    position: relative;
    width: 100%;
    height: 540px;
    padding: 10px 0;
    margin-top: 0px;
  }
}

  
  
  

/*メインビジュアルここまで-------------------------------------------------*/
  
  /*コメント-------------------------------------------------*/
 .logo-sub{
    text-align: center;
    margin-top: 80px;
 }

 .logo-sub img{
  width: 300px;
  height: auto;
 }
  .coment{
    text-align: center;
    margin-top: 80px;
  }
  /* .coment h1{
    border-bottom: 1px solid #3b3b3b;
  } */
  /*コメントここまで-------------------------------------------------*/

  /*ギャラリー-------------------------------------------------*/
  .gallery {
    text-align: center;
    margin-top: 180px;
  }
  .gallery img{
    margin: 15px;
    margin-top: 80px;
  }

  .image_link img{
    transition:0.3s;
  }
  .image_link:hover img{
    opacity:0.8;
  }

  .gallery h1{
    border-bottom: 1px solid #3b3b3b;
  }

  .view a{
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 30px;
  }

  .view{
    text-align: center;
  }
  .text {
    /* 文字色は透明にして背景が見えるようにする */
    color: transparent;
    font-size: 20px;
  
    /* オレンジと黒が50%の位置で切り替わるグラデーション */
    background: linear-gradient(to right,  rgb(7, 201, 249) 50%, #3b3b3b 50%) 100%;
    /* 背景をテキストで切り抜く */
    background-clip: text;
  
    /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
    background-size: 200% 100%;
  
    transition: background-position 0.3s;
    /* margin-left: 1100px; */
  }
  
  .text:hover {
    /* グラデーションの位置を移動して、オレンジ部分を見せる */
    background-position: 0 100%;
  }
  
  
 
  /*ギャラリーここまで-------------------------------------------------*/

  /*コンタクト-------------------------------------------------*/
  .contact{
    text-align: center;
    margin-top: 180px;
  }
  .contact h1{
    border-bottom: 1px solid #3b3b3b;
  }
  .contact p{
    font-size: 25px;
  }
  .contact a{
    text-decoration: none;
    color: #3b3b3b;
  }
  
.telephone{
  width: 450px;
  height: auto;
  margin: 0 auto;
}

.insta{
  width: 450px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
}

.image{
  margin: 0 auto;
}
  
.image a{
    transition: all .3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 5px 5px rgba(0,0,0,.1);
}

.image a:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 10px rgba(0,0,0,.2);
}




  
  /*コンタクトここまで-------------------------------------------------*/
/*犬たち----------------------------------------*/

.dog-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* gap: 40px; */
  padding: 50px 0;
  box-sizing: border-box;
  position: relative;
}

/* 共通の犬画像サイズと基本設定 */
/* 共通の犬画像サイズと基本設定 */
.dog {
  width: 15vw; /* ビューポート幅の15%に応じて可変 */
  max-width: 250px; /* 最大は今までと同じサイズに制限 */
  height: auto;
}

/* dog3 だけもう少し大きく */
#dog3 {
  width: 21vw;  /* 他より大きく */
  max-width: 350px;
}

/* dog5 だけ少し小さく */
#dog5 {
  width: 12vw;
  max-width: 200px;
}


/* 左右に傾くアニメーション（もっと大きく） */
@keyframes tilt {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-18deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(18deg); }
  100% { transform: rotate(0deg); }
}

.tilt {
  animation: tilt 1.2s ease-in-out infinite;
  animation-play-state: running !important; /* ← 停止させない */
}

/* ジャンプアニメーション（もっと跳ねる） */
@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-60px); } /* 高さUP */
}

.jump {
  animation: jump 1s ease-in-out infinite;
  animation-play-state: running !important; /* ← 停止させない */
}



/*犬たちここまで*/
  /*フッター-------------------------------------------------*/
  footer{
    background-color: rgb(7, 201, 249);
    padding: 25px ;
    margin-top: 50px;
  }
  footer p{
    text-align: center;
  }
 
  
  /*アクセスページ----------------------------------------------*/
  .map1 h1 {
    font-size: 2rem;
    text-align: left;
    margin: 0 auto 10px auto;
    width: fit-content;           /* テキストの幅にフィット！ */
    position: relative;
    right: 50%;                    /* 真ん中より少し左に寄せる */
    width: calc(100% + 1%);
  }
  
  .map1 h1::after {
    content: "";
    display: block;
    height: 2px;
    background-color: rgb(7, 201, 249); /* 線の色 */
    margin-top: 5px;
    width: 100%;                   /* h1のテキストに合わせた長さ！ */
  }
   .map1 {
    /* margin: 50px 0; */
      margin: 50px auto;        /* 上下マージン、左右中央寄せ */
      max-width: 600px;         /* 中央寄せ＋横幅制限 */
      padding: 0 20px;          /* 余白 */
  }
  /* .map1{
    margin-top: 100px;
    text-align: center;
    border-bottom: 3px solid #3b3b3b;
  }
  .map1 h1{
    color: #3b3b3b;
  } */
  /* .map2{
    text-align: center;
  } */
  .map2 {
    width: 100%;
    max-width: 800px; /* 必要に応じて */
    margin: 0 auto;
  }
  
  .map2 iframe {
    width: 100%;
    height: 400px;  /* 横長にしたい場合は高さを少し低めに固定 */
    border: 0;
  }
  
  
  .moere{
    text-align: center;
    margin-top: 80px;
    color: #3b3b3b;
    font-size: 20px;
  }
  /* .moere p{
    color: #3b3b3b;
    font-size: 30px;
  } */
   /*アクセスページここまで-----------------------------------------------*/

   /*会社概要--------------------------------------------------*/
   .company h1 {
    font-size: 2rem;
    text-align: left;
    margin: 0 auto 10px auto;
    width: fit-content;           /* テキストの幅にフィット！ */
    position: relative;
    right: 50%;                    /* 真ん中より少し左に寄せる */
    width: calc(100% + 1%);
  }
  
  .company h1::after {
    content: "";
    display: block;
    height: 2px;
    background-color: rgb(7, 201, 249); /* 線の色 */
    margin-top: 5px;
    width: 100%;                   /* h1のテキストに合わせた長さ！ */
  }
   .company {
    /* margin: 50px 0; */
      margin: 50px auto;        /* 上下マージン、左右中央寄せ */
      max-width: 600px;         /* 中央寄せ＋横幅制限 */
      padding: 0 20px;          /* 余白 */
  }
  
  .info-block {
    display: flex;
    align-items: baseline; /* ← 高さをベースラインに揃える！ */
    padding: 10px 0 10px 15px;
    position: relative;
    margin-left: 10px;
    margin: 30px;
  }
  
  .info-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 90%;
    background-color: rgb(7, 201, 249); /* ←縦線の色 */
  }
  
  .info-block h3 {
    min-width: 100px;
    margin-right: 20px;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .info-block p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
  }
  /*会社概要--------------------------------------------------*/
  
  /*フォトギャラリーページ--------------------------------------------*/
  .photo-gallery h1 {
    font-size: 2rem;
    text-align: left;
    margin: 0 0 10px 0;
    width: fit-content;           /* テキストの幅にフィット！ */
    position: relative;
    right: 50%;                    /* 真ん中より少し左に寄せる */
    width: calc(100% + 1%);
  }
  
  .photo-gallery h1::after {
    content: "";
    display: block;
    height: 2px;
    background-color: rgb(7, 201, 249); /* 線の色 */
    margin-top: 5px;
    width: 100%;                   /* h1のテキストに合わせた長さ！ */
  }
   .photo-gallery {
    /* margin: 50px 0; */
      margin: 50px auto;        /* 上下マージン、左右中央寄せ */
      max-width: 600px;         /* 中央寄せ＋横幅制限 */
      padding: 0 20px;          /* 余白 */
  }

  .slide-contents img {
    width: 100%;
    height: auto;
  object-fit: cover; /* 必要なら追加 */
}

.slide-contents li {
    list-style: none;
}

.slide-contents ul {
    margin: 0;
    padding: 0;
}

.slide-animation {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%; /* ←変更 */
  max-width: 1150px; /* ←必要なら制限 */
    margin: 0 auto;
}

.slide-animation li {
  width: 60vw; /* ビューポート幅の比率に */
  max-width: 300px; /* 最大幅制限 */
  flex-shrink: 0;
}

.slide-contents {
    display: flex;
    gap: 10px;
    animation: loopAnimation 30s linear infinite;
}

.h h2{
  margin-left: 120px;
  margin-top: 100px;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.inu {
  margin-bottom: 4px;  /* h2の下の余白を小さく */
  line-height: 1.2;    /* 行の高さを少し詰める（通常は1.5前後） */
}

.inu2 {
  margin-top: 0;       /* pの上の余白をなくす */
  font-size: 14px;
  line-height: 1.4;    /* 小さい文字には少し余裕を持たせてもOK */
  margin-left: 120px;
}


@keyframes loopAnimation {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
}

/*レスポンシブ対応----------------------------------------------*/
/* 画面幅が960px以下（iPad以下） */
/* @media screen and (max-width: 960px) {
  .logo img {
    margin-left: 10%;
    width: 160px;
    height: auto;
    margin-bottom: 12px;
  }
} */

/* デフォルトは横並び（既存のままでOK） */

/* スマホ・タブレット用：画面幅が960px以下のとき縦並びにする */
@media screen and (max-width: 960px) {

  
  

  .logo-sub{
    text-align: center;
    margin-top: 80px;
 }

 h1{
  font-size: 28px;
}

.coment p{
  font-size: 13px;
}

.coment{
  margin: 10px ;
}

.gallery {
  text-align: center;
  /* margin-top: 180px; */
}
.gallery img{
  margin: 15px;
  margin-top: 50px;
  width: 300px;
  height: auto;
}

.view a{
  font-size: 20px;
}



.telephone{
  width: 250px;
  height: auto;
}

.insta{
  width: 250px;
  height: auto;
}

/*ギャラリースマホ------------------------------------------------*/
.slide-contents li {
  width: 80vw;
}

.h h2 {
  margin-left: 3vw;
  text-align: left;
  font-size: 24px;
}

.inu2 {
  font-size: 14px;
  margin-left: 3vw;
}
.photo-gallery h1 {
  font-size: 2rem;
  text-align: left;
  margin: 0 0 10px 0;
  padding-left: 20px;  /* ← これで左に固定位置を作る */
  width: 100%;         /* ← 常に画面幅いっぱいにする */
  box-sizing: border-box; /* ← padding含めて幅調整 */
  right: 0; /* 通常の位置戻し */
}

.photo-gallery h1::after {
  content: "";
  display: block;
  height: 2px;
  background-color: rgb(7, 201, 249);
  margin-top: 5px;
  width: 100%;  /* h1の幅に合わせて下線を敷く */
}
.slide-contents img {
  width: 80%;
}

/*ギャラリースマホ終わり------------------------------------------*/

/*会社概要スマホ-------------------------------------------------*/

.company h1 {
  font-size: 2rem;
  text-align: left;
  margin: 0 0 10px 0;
  padding-left: 20px;  /* ← これで左に固定位置を作る */
  width: 100%;         /* ← 常に画面幅いっぱいにする */
  box-sizing: border-box; /* ← padding含めて幅調整 */
  right: 0; /* 通常の位置戻し */
}

.company h1::after {
  content: "";
  display: block;
  height: 2px;
  background-color: rgb(7, 201, 249);
  margin-top: 5px;
  width: 100%;  /* h1の幅に合わせて下線を敷く */
}

/*会社概要スマホ終わり-------------------------------------------------*/

/*アクセススマホ-------------------------------------------------*/
.map1 h1 {
  font-size: 2rem;
  text-align: left;
  margin: 0 0 10px 0;
  padding-left: 20px;  /* ← これで左に固定位置を作る */
  width: 100%;         /* ← 常に画面幅いっぱいにする */
  box-sizing: border-box; /* ← padding含めて幅調整 */
  right: 0; /* 通常の位置戻し */
}

.map1 h1::after {
  content: "";
  display: block;
  height: 2px;
  background-color: rgb(7, 201, 249);
  margin-top: 5px;
  width: 100%;  /* h1の幅に合わせて下線を敷く */
}

.map2 {
  width: 90%;
  max-width: 800px; /* 必要に応じて */
  text-align: center;
}

.map2 iframe {
  width: 90%;
  height: 400px;  /* 横長にしたい場合は高さを少し低めに固定 */
  border: 0;
}
#himawari{
  background-image: none;
  background-color: #ffffff;
  background-blend-mode: lighten;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
}

