@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
:root {
  --takefuchi-green-50: #EAF3DE;
  --takefuchi-green-100: #C0DD97;
  --takefuchi-green-600: #3B6D11;
  --takefuchi-green-700: #4D8420;
  --takefuchi-green-800: #27500A;
  --takefuchi-green-900: #173404;
  --takefuchi-amber-100: #FAC775;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f7f5f0;
}

.takefuchi-header-container {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(77, 132, 32, 0.96);
  box-shadow: 0 2px 14px rgba(23,52,4,0.16);
  backdrop-filter: blur(10px);
}

.admin-bar .takefuchi-header-container {
  top: 32px;
}

.takefuchi-header-container-in,
.takefuchi-site-header,
.takefuchi-topnav {
  background: transparent;
}

.takefuchi-topnav {
  width: 100%;
  max-width: none;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
}

.takefuchi-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  display: flex;
  gap: 5px;
}

.takefuchi-logo-text:hover {
  color: #fff;
}

.takefuchi-nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.takefuchi-nav-links li {
  margin: 0;
}

.takefuchi-nav-links a {
  display: block;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14px;
  padding: 7px 15px;
  letter-spacing: 0.04em;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}

.takefuchi-nav-links a:hover,
.takefuchi-nav-links .current-menu-item > a,
.takefuchi-nav-links .current_page_item > a {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.takefuchi-mobile-menu-button {
  display: none;
}

.takefuchi-menu-open {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.takefuchi-menu-open span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 24px;
}

.takefuchi-mobile-menu-content {
  color: var(--takefuchi-green-900);
  z-index: 10002;
}

#navi-menu-close {
  z-index: 10001;
}

.takefuchi-mobile-menu-content.navi-menu-content {
  left: auto;
  right: 0;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}

.takefuchi-mobile-menu-content .menu-drawer {
  padding-top: 3rem;
}

.takefuchi-mobile-menu-content .menu-drawer a {
  color: var(--takefuchi-green-900);
  font-weight: 700;
  text-decoration: none;
}

.mobile-header-menu-buttons {
  display: none !important;
}

.footer-container {
  background: var(--takefuchi-green-900);
  color: rgba(255,255,255,0.55);
}

.footer-in.wrap {
  max-width: none;
}

.takefuchi-footer-bottom {
  text-align: center;
  padding: 1.75rem;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.takefuchi-footer-bottom a {
  color: rgba(255,255,255,0.72);
}

.takefuchi-footer-name {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.takefuchi-footer-address,
.takefuchi-footer-bottom .copyright {
  color: rgba(255,255,255,0.55);
}

.takefuchi-footer-bottom .navi-footer-in > .menu-footer {
  justify-content: center;
  margin: 0 0 0.75rem;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  .takefuchi-topnav {
    padding: 0.85rem 1.5rem;
  }

  .takefuchi-nav {
    display: none;
  }

  .takefuchi-mobile-menu-button {
    display: block;
  }
}

/*782px以下*/
@media screen and (max-width: 782px){
  .admin-bar .takefuchi-header-container {
    top: 46px;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .takefuchi-topnav {
    min-height: 64px;
    padding: 0.75rem 1rem;
  }

  .takefuchi-logo-text {
    font-size: 13px;
  }

  .takefuchi-footer-bottom {
    padding: 1.5rem 1rem;
  }
}
