@charset "UTF-8";

/* ========== フォント読み込み ========== */
@font-face {
  font-family: 'CustomFont';
  src: url('../fonts/nikumaru.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ========== ベース設定 ========== */
body {
  margin: 0;
  font-family: 'CustomFont', sans-serif;
  background-color: #faf7f3;
}


/* ========== メインビュー ========== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.slide-container {
  width: 85%;
  height: 85%;
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  margin-top: 10vh;
  clip-path: path("M40 0 Q0 0 0 40 L0 100 L100 100 L100 0 Z");
  -webkit-clip-path: path("M40 0 Q0 0 0 40 L0 100 L100 100 L100 0 Z");
}

@supports not (clip-path: path("")) {
  .slide-container {
    clip-path: inset(0 round 60px);
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  border-radius: inherit;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  z-index: 2;
  pointer-events: none;
}

.text-overlay {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* ========== カウンセリングBOX ========== */
.contact-box {
  position: absolute;
  bottom: 30px;
  right: 8%;
  width: 280px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 0px 25px 5px;
  text-align: center;
  z-index: 5;
  text-decoration: none;
}

.dog-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  top: -5px;
  z-index: 10;
}

.dog-img1 { width: 50px; }
.dog-img2 { width: 90px; }

.contact-btn {
  background-color: #6e4d30;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 15px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 5px;
}

.contact-box:hover .contact-btn {
  background-color: #4b361f;
}

.contact-text {
  margin-top: 15px;
  font-size: 1rem;
  color: #383838;
  font-weight: 600;
}

/* ========== SNSリンク ========== */
.sns-links {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sns-icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.sns-icon:hover {
  transform: scale(1.2);
}

.sns-icon.youtube   { background-image: url('../img/youtube-gray.png'); }
.sns-icon.instagram { background-image: url('../img/insta_gray.png'); }
.sns-icon.line      { background-image: url('../img/line-gray.png'); }

/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 1500px) {

  .text-overlay {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

}
/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 1100px) {


  .slide-container {
    clip-path: none;
    border-radius: 30px;
    margin: 140px auto 0;
    width: 90%;
    height: auto;
  }

  .slide {
    position: absolute;
    opacity: 0;
    display: none;
    width: 100%;
    height: auto;
  }

  .slide.active {
    opacity: 1;
    display: block;
    position: relative;
    z-index: 1;
  }

  .slide img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  .text-overlay {
    position: static;
    font-size: 1.3rem;
    color: #333;
    text-shadow: none;
    text-align: center;
    margin: 20px 0;
  }

  .slide img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  /* SNSアイコンは非表示 */
  .sns-links {
    display: none;
  }

  /* カウンセリングボックス */
  .contact-box {
    position: static;
    margin: 20px auto;
  }
  nav.desktop-nav {
    display: none;
  }

  .slide-container {
    width: 90%;
    height: auto;
    margin-top: 80px;
    clip-path: none;
    border-radius: 30px;
  }

  .text-overlay {
    position: static;
    font-size: 1.3rem;
    color: #333;
    text-shadow: none;
    text-align: center;
    margin: 20px 0;
  }

  .contact-box {
    position: static;
    margin: 20px auto;
  }

  .sns-links {
    display: none;
  }
}


/* ここまで */

.concept{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
.concept_detail_wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.concept h2{
  display: flex;
  align-items: center;
  font-size: 3em;
  gap: 20px;
  margin-bottom: 50px;
}
.concept h2 img{
  width: 50px;
}

.concept_main{
  max-width: 500px;
}
.concept_main img{
  width: 100%;
  opacity: .9;
}
.concept_detail{
  max-width: 400px;
}
.concept_detail p{
  color: #3f3f3f;
  line-height: 1.5;
}
.concept_detail h3{
  font-size: 2em;
  color: #d88237;
  margin-bottom: 1em;
  line-height: 1.3;
}
.concept_teacher{
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #e6e6e6;
  max-width: 600px;
  padding: 15px 20px;
  border-radius: 50px;
  color: #3f3f3f;
  margin-top: 50px;
}
.concept_teacher p{
  font-size: .8em;
}

.concept_teacher_img {
  width: 150px;
  height: 70px;
  background: white;
  border-radius: 50%;
  overflow: hidden; /* ← これで丸の外にはみ出た部分を隠す */
  display: flex;      /* ← 中央寄せ用 */
  align-items: center;
  justify-content: center;
  padding: 10px;         /* ← パディングは不要 */
}

.concept_teacher_img img {
  width: 100%;
  object-fit: cover; /* ← 正円にフィットさせる */
}

.point{
  color: rgb(199, 71, 71);
  margin-bottom: 10px;
}
.more{
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
.c-btn {
  background: #f06e23;
  border: 2px solid #f06e23;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
  text-decoration: none;
}
.c-btn.circle {
  background: #fff;
  color: #f06e23;
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}
.c-btn.circle::after {
  background: #f06e23;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
 
.c-btn.circle:hover {
  color: #fff;
}
.c-btn.circle:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
/* 初期状態：非表示で下にずらす */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示状態：透明度100%、元の位置 */
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 900px) {
.concept_detail_wrapper{
  flex-direction: column-reverse;
}

}
@media screen and (max-width: 500px) {
.concept h2{
  display: flex;
  align-items: center;
  font-size: 2em;
  gap: 20px;
  margin-bottom: 50px;
}
.concept_detail p{
  color: #3f3f3f;
  font-size: .9em;
}
.concept_detail h3{
  font-size: 1.5em;
  color: #d88237;
  margin-bottom: 1em;
}

.concept_teacher{
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: #e6e6e6;
  max-width: 600px;
  padding: 15px 10px;
  border-radius: 50px;
  color: #3f3f3f;
  margin-top: 50px;
}

.concept_teacher_img {
  width: 200px;
  height: 70px;
  background: white;
  border-radius: 50%;
  overflow: hidden; /* ← これで丸の外にはみ出た部分を隠す */
  display: flex;      /* ← 中央寄せ用 */
  align-items: center;
  justify-content: center;
  padding: 10px;         /* ← パディングは不要 */
}
.concept{
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
}

/* ここまで */

.service{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
.service h2{
  display: flex;
  align-items: center;
  font-size: 3em;
  gap: 20px;
  margin-bottom: 50px;
}
.service h2 img{
  width: 100px;
}
.service_detail{
  display: flex;
  gap: 30px;
  align-items: center;
  color: #333;
}

.service h3{
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
}

.dogs_photo{
  max-width: 500px;
  width: 100%;
}
.dogs_photo img{
  width: 100%;
}
.recommend_letter{
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 1.2em;
}
.recommend_letter img{
  width: 40px;
}

.recommend{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recommend li{
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}
.recommend img{
  width: 30px;
}


.recommend_wrapper{
  background-color: #dfdfdf;
  padding: 20px;
  border-radius: 20px;
  margin: 30px 0;
}

/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 900px) {
.service_detail{
  display: flex;
  gap: 30px;
  align-items: center;
  color: #333;
  flex-direction: column;
}

}
@media screen and (max-width: 500px) {
.service h2{
  display: flex;
  align-items: center;
  font-size: 2em;
  gap: 20px;
  margin-bottom: 50px;
}
.service h3{
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 50px;
}
.service{
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
}

/* ここまで */

.insta{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}

.insta h2{
  display: flex;
  align-items: center;
  font-size: 3em;
  gap: 20px;
  margin-bottom: 50px;
}
.insta h2 img{
  width: 60px;
}

@media screen and (max-width: 500px) {
.insta h2{
  display: flex;
  align-items: center;
  font-size: 2em;
  gap: 20px;
  margin-bottom: 50px;
}
.insta{
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
}

/* ここまで */

.blog{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}

.blog h2{
  display: flex;
  align-items: center;
  font-size: 3em;
  gap: 20px;
  margin-bottom: 50px;
}
.blog h2 img{
  width: 70px;
}
.blog a{
  text-decoration: none;
  color: #333;
}
.blog ul{
  list-style: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.blog li{
  max-width: 300px;
}
.article_photo{
  max-width: 250px;
  height: 170px;
  margin-bottom: 10px;
}
.article_photo img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 25px;
}

@media screen and (max-width: 500px) {
.blog ul{
  list-style: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px;
}
.blog{
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  color: rgb(29, 29, 29);
}
}

.cta{
  padding: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta:hover{
  opacity: 0.7;
}

.cta img{
  width: 100%;
}

