/*
Theme Name: Lightning Child
Template: lightning
Version: 15.29.9
*/

@charset "utf-8";


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6,body{
	color:#593f3f;
}

h5{
	border-bottom:none;
}

.site-header-logo{
	display:none;
}


/*ヘッダー*/

.custom-header {
  background-color: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  font-family: 'Noto Sans JP', sans-serif;
}

.custom-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.custom-header-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 5.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left li a,
.nav-right li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  color: #bf7777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: #593f3f;
}

.nav-left img,
.nav-right img {
  width: 80px;
  height: 80px;
  margin-bottom: 0.25rem;
  fill:#bf7777;
}

.site-logo img {
  max-width: 350px;
}

@media (max-width: 768px) {
  .custom-header-inner {
    flex-direction: column;
  }
  .custom-header-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-left,
  .nav-right {
    display: none !important;
  }
}


/*各タイトル部分*/

.top-title {
  position: relative;
  display: flex; /* ← ここが重要 */
  justify-content: center; /* 子要素を横中央に */
  align-items: center;
  width: 100%; /* ← 横幅を確保 */
  margin: 100px 0 auto;
  text-align: center;
}

.top-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  background-color: #593f3f;
}

.wp-block-button .wp-block-button__link:hover {
  background-color: #593f3f !important;
  color: #ffffff !important;
  border-color: #593f3f !important;
}


/*４つのカテゴリ画像*/


.works-img{
	min-width:260px;
}

@media (max-width: 768px) {
  .wp-block-columns.is-layout-flex {
    gap: 0 !important;
  }

  .wp-block-columns {
    margin-bottom: 0;
  }

  .wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-095674b8.wp-block-columns-is-layout-flex {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

/*ボタンの横幅を決める*/
.wp-block-button{
	min-width:300px;
}

/*固定ページタイトルを消す*/

.page-header {
  display: none;
}


/*コンタクトフォーム*/

.form-control{
	border-radius:0px;
	background-color:#E0C5C5;
	color:#593F3F;
	
}
.wpcf7 form label {
  color:#593F3F;
  font-size: 16px;
}
.wp-block-contact-form-7-contact-form-selector {
  max-width:500px;
  margin: 0 auto;
  padding: 1rem;
	width: 100%;
}

.wpcf7 form {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}




/* テキスト、メール、電話、textareaだけ幅100% */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75em;
  font-size: 16px;
  box-sizing: border-box;
}

/* チェックボックスやラジオは幅指定しない */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto; /* 必要に応じて */
  padding: 0;
  margin-right: 0.5em; /* 横のコメントとの間隔調整 */
}


.wpcf7 input[type="submit"]:hover {
  background-color: #fff !important;
  color: #593F3F; !important;
}




/*記事一覧ページ*/

.entry-meta-item .entry-meta-item-updated .entry-meta-item .entry-meta-item-author{
	display:none;
}