html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #333;
}
.wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main{
  flex: 1;
}


/* ヘッダー */

.site-header {
  background-color: #ffdfe4;
  text-align: center;
  padding: 10px 0;
  z-index: 999;
}

/* 犬アイコンの設定 */

.left-icon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 30px;
  background-color: transparent;
}
.left-icon img{
  width: 70px;
}

/* 後ろのハート設定 */

.heart-button::before,
.heart-button::after{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0;
}
.heart-button::before {
  background-image: url('heart.svg');
  top: -40;
  left: 40px;
}
/* 右下のハートのスタイル */
.heart-button::after {
  background-image: url('heart-reverse.svg');
  bottom: 20px;
  right: 20px;
}
/* ボタンホバー時のスタイル */
.heart-button:hover {
  border-color: #ef4b53;
  color: #ef4b53;
}
/* ボタンホバー時の左上のハートのスタイル */
.heart-button:hover::before {
  animation: heart 1.5s infinite ease-out;
}
/* ボタンホバー時の右下のハートのスタイル */
.heart-button:hover::after {
  animation: heart 1.5s 0.2s infinite ease-out;
}
/* ========= アニメーションの設定 ======== */
@keyframes heart {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0;
  }
}

/* ハンバーガーメニュー */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  position: fixed;
  right: 80px;
  top: 60px;
  z-index: 100;
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 13px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 13px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background-color: white;
  transition: .5s;
  text-align: center;
  padding-top: 200px;
}
/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}
.nav_item a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  padding: 10px;
  margin-bottom: 20px;
}
.nav_item a:hover{
  color: #f3c6cc;
}
.nav_content li{
  padding: 20px;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;
}
.site-tagline{
  padding-top: 20px;
}

/* ヘッダーここまで */











/* メインビジュアル */

.hello {
  background-color: #ffdfe4;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 230px;
}
.hello h1 {
  font-size: 150px;
  font-weight: bold;
  margin: 0;
}
.sub-title {
  display: block;
  width: 30%;
  margin-top: -60px;
  z-index: 1;
  position: relative;
  margin-left: 50%;
  overflow: hidden;
  opacity: 0;
  transform: rotate(-6deg);
  animation: fadeInLeft 2s ease-out forwards;
}
@keyframes fadeInLeft {
      to {
        opacity: 1;
      }
    }






/* 自己紹介 */
.introduction {
  background-image: url(pink_beige_goldleaf_style.png);
  background-repeat: no-repeat;
  background-attachment: fixed; /* ←これでスクロールしても背景が動かない！ */
  background-position: center;
  font-family: 'Noto Serif JP', serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 200px 150px;
}

.introduction h2 {
  color:  #1E2B45;
  font-size: 50px;
  font-family: "Times New Roman";
}
.introduction p {
  font-size: 20px;
  line-height: 1.5;
  color: #1E2B45;
  padding-bottom: 30px;
  animation: fadeIn 0.7s ease-in-out forwards;
}
.about {
  justify-content: center;
  width: 70%;
  border-radius: 50px;
  align-items: center;
  margin: 0 auto;
  text-align: left;
  display: flex;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.735);
  flex-direction: column;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 60px;
}
.about p{
  font-family: "Darumadrop One", sans-serif;
  font-size: 18px;
  line-height: 3;
  padding-top: 50px;
  color: #1E2B45;
}
.consult-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #D5B88A; /* ゴールドベージュ */
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  letter-spacing: 0.05em;
}

.consult-button:hover {
  background-color: #c3a77b;
  transform: translateY(-2px);
}

[data-aos] {
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1); /* プロっぽい加速 */
}







/* サービス */
  .accordion-toggle {
    /* display: none; PCではボタン非表示 */
    color: black;
    font-size: 20px;
    font-weight: bold;
  }

  .accordion-content {
    max-height: none !important;
    overflow: visible;
  }

  .service {
    text-align: center;
    padding: 200px 150px;
  }

  .service h2{
    font-size: 50px;
    font-family: "Times New Roman";
  }
  .service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 24px;
    margin: auto;
  }

  .service-box {
    background: rgba(255, 234, 234, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-box:hover {
    background-color: rgba(149, 149, 149, 0.55);
  }

  .service-box img {
    width: 60%;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
  }

  .service-box p {
    font-family: "Darumadrop One", sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    text-align: left;
    margin: 0 auto;
    width: 80%;
  }







/* 成績実績 */
.skills {
  background-image: url(pink_beige_goldleaf_style.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 150px 20px;
}

.skills h2 {
  font-size: 50px;
  font-family: "Times New Roman";
}

.skills p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  text-align: center;
}
.chart-wrapper {
  width: 15%;
  position: relative;
  display: inline-block;
  margin: 20px;
  text-align: center;
}
.chart-list{
  padding-top: 70px;
}
.chart-wrapper h3{
  font-size: 20px;
  font-family:  "Darumadrop One", sans-serif;
  margin-top: 10px;
}
.tools{
  justify-content: center;
  width: 70%;
  border-radius: 50px;
  align-items: center;
  margin: 0 auto;
  text-align: left;
  display: flex;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.735);
  flex-direction: column;
  margin-top: 100px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.tools p{
  font-family: "Darumadrop One", sans-serif;
  font-size: 18px;
  line-height: 3;
  padding-top: 50px;
  color: #1E2B45;
  text-align: left;
}





/* コンタクト */

.contact{
  background-color: #ffe6e8;;
  position: relative;
  text-align: center;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2{
  color: black;
  font-size: 50px;
  font-family: "Times New Roman";
  padding-top: 150px;
}
.contact p{
  font-size: 20px;
  line-height: 1.5;
  color: #1E2B45;
  padding-bottom: 50px;
}

.contact-img{
  width: 20%; /* サイズ調整してね */
}
.btn-heart {
  display: inline-block;
  background-color: black;
  color: white;
  margin-top: 50px;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.btn-heart:hover {
  background-color: white;
  color: black;
}

.btn-heart i {
  margin-right: 8px;
}



/* フッター */
.footer {
  background-color: #f3c6cc;
  color: #444;
  letter-spacing: 1px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px;
  flex-shrink: 0;
  margin-top: auto;
}



















@media screen and (max-width: 480px) and (hover: none) and (pointer: coarse) {
	/* 480px以下に適用されるCSS（スマホ用） */



  /* ヘッダー */
.left-icon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  background-color: transparent;
}
.left-icon img{
  width: 60px;
}
/* 後ろのハート設定 */
.heart-button::before,
.heart-button::after{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0;
}
.heart-button::before {
  background-image: url('heart.svg');
  top: 30px;
  left: 10px;
}
/* 右下のハートのスタイル */
.heart-button::after {
  background-image: url('heart-reverse.svg');
  bottom: 0px;
  right: 10px;
}
/* ボタンホバー時のスタイル */
.heart-button:active {
  border-color: #ef4b53;
  color: #ef4b53;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 10px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 10px;
}

/* ボタンホバー時の左上のハートのスタイル */
.heart-button:active::before {
  animation: heart 1.5s infinite ease-out;
}
/* ボタンホバー時の右下のハートのスタイル */
.heart-button:active::after {
  animation: heart 1.5s 0.2s infinite ease-out;
  animation-play-state: paused;
}
/* ========= アニメーションの設定 ======== */
@keyframes heart {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0;
  }
}
/* ハンバーガーメニュー */
.drawer_open {
  position: fixed;
  right: 60px;
  top: 45px;
  z-index: 100;
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
.site-tagline{
  padding-top: 30px;
  font-size: 12px;
}







/* メイン */
.hello {
  background-color: #ffdfe4;
  text-align: center;
  padding-top: 200px;
  padding-bottom: 300px;
}
.hello h1 {
  font-size: 65px;
  font-weight: bold;
  margin: 0;
}
.sub-title {
  display: block;
  width: 55%;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  transform: rotate(-8deg);
  margin-left: 40%;
}









/* 自己紹介 */
.introduction {
  background-repeat: no-repeat;
  background-attachment: fixed; /* ←これでスクロールしても背景が動かない！ */
  background-position: center;
  font-family: 'Noto Serif JP', serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 0;
  padding-bottom: 100px;
}

.introduction h2 {
  color:  #1E2B45;
  font-size: 30px;
  font-family: "Times New Roman";
  padding-top: 100px;
}
.introduction p {
  font-size: 15px;
  line-height: 1.5;
  color: #1E2B45;
  padding-top: 10px;
  animation: fadeIn 0.7s ease-in-out forwards;
}
.about {
  justify-content: center;
  width: 90%;
  border-radius: 50px;
  align-items: center;
  text-align: left;
  display: flex;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.735);
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 30px;
  margin-top: 30px;
}
.about p{
  font-family: "Darumadrop One", sans-serif;
  font-size: 13px;
  line-height: 2.5;
  padding-top: 30px;
  color: #1E2B45;
  text-align: center;
}
.consult-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #D5B88A; /* ゴールドベージュ */
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  letter-spacing: 0.05em;
}

.consult-button:hover {
  background-color: #c3a77b;
  transform: translateY(-2px);
}

[data-aos] {
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1); /* プロっぽい加速 */
}








/* サービス */
.accordion-toggle {
    display: block;
    background: transparent;
    color: black;
    font-size: 20px;
    font-weight: bold;
    border: none;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .service-box.active .accordion-content {
    max-height: 400px; /* 内容に応じて調整してね */
  }
  .service {
    padding:0;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .service h2{
    font-size: 30px;
    text-align: center;
    font-family: "Times New Roman";
  }
  .service p{
    color: #1E2B45;
    font-size: 15px;
  }
    .service-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .service-box {
    width: 100%;
    height: 30px;
    background-color: #ffe6e8;
    transition: background-color 0.3s ease;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 12px;
    justify-content: space-between;
    text-align: center;
    height: 150px;
  }
  .service-box:hover {
    background-color: #ffe6e8;

  }
  .service-box img {
    display: none;
  }

  .service-box h3 {
    color: #2C3E50;
    font-size: 20px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
  }

.service-box p {
  font-size: 15px;
  color: #444;
  line-height: 1;
  text-align: left;
  margin: 0 auto;
  width: 80%;
}




/* 成績実績 */
.skills {
  background-image: url(pink_beige_goldleaf_style.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.skills h2 {
  font-size: 30px;
  font-family: "Times New Roman";
}

.skills p {
  font-size: 17px;
}
.chart-wrapper {
  width: 30%;
  position: relative;
  display: inline-block;
  text-align: center;
}
.chart-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.chart-wrapper h3{
  font-size: 18px;
  font-family:  "Times New Roman";
  margin-top: 20px;
}
.tools{
  justify-content: center;
  width: 100%;
}
.tools p{
  font-family: "Darumadrop One", sans-serif;
  font-size: 13px;
  line-height: 3;
  padding: 30px;
  color: #1E2B45;
  text-align: center;
}




/* コンタクト */
.contact h2{
  font-size: 30px;
}
.contact p{
  font-size: 15px;
  padding-bottom: 30px;
}
.contact-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
}
.btn-heart{
  padding: 10px 20px;
}

.contact-img {
  width: 50%; /* サイズ調整してね */
  margin-bottom: 30px;
}


/* フッター */
.footer {
  background-color: #f3c6cc;
  text-align: center;
  padding: 10px;
  font-size: 10px;
}
}



























@media (min-width: 768px) and (max-width: 1024px) {
  /* タブレットだけに効くスタイルをここに書く */
  .hero {
  background-color: #f3c6cc;
  text-align: center;
  padding-top: 300px;
  padding-bottom: 300px;
}
.hero h1 {
  font-size: 130px;
  font-weight: bold;
  margin: 0;
}
.sub-title {
  display: block;
  width: 40%;
  margin-top: -60px;
  z-index: 1;
  position: relative;
  margin-left: 50%;
  overflow: hidden;
  opacity: 0;
  transform: rotate(-5deg);
  animation: fadeInLeft 1.5s ease-out forwards;
}


/* 自己紹介 */
.about {
  text-align: center;
  padding: 100px 0px;
}
.about p{
  font-size: 20px;
  padding: 20px;
}




/* サービス */
.service {
  text-align: center;
  padding: 100px 20px;
}
.service h2{
  font-size: 50px;
  display: inline-block;
  font-family: "Times New Roman";
}
.skill-img{
  width: 100%;
}

}
