@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/************************************
** 全体
************************************/
body {
  background-color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

.container {
  background-color: #F9F5F4;
}

main {
  background: #F9F5F4 !important;
}

section {
  scroll-margin-top: 80px;
}

#footer {
  display: none;
}

.main-content {
  max-width: 1220px;
}

/* 見出し */
h1 {
  line-height: 1.5;
  margin-bottom: 40px;
}
.title-en {
  display: block;
  font-size: 72px;
  color: #ce1d1d;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

.title-ja {
  display: block;
  font-size: 24px;
  font-weight: normal;
  padding-left: 6px;
}

/************************************
** ヘッダー
************************************/
/* ヘッダー全体の余白 */
#header-container {
  padding: 20px;
  width: 100%;

  background: transparent;
  z-index: 999;
}

/* カプセル本体 */
#header-container-in {
  margin: 0 auto;
  max-width: 2000px;

  border-radius: 999px;
  padding: 15px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ロゴ */
.logo-header {
  display: flex;
  align-items: center;
}
.site-logo-image {
  height: 40px;
  width: auto;
}

/* ナビ全体 */
#navi {
  margin: 0;
}
#navi-in {
  padding: 0;
}

/* メニュー横並び */
.menu-header {
  display: flex;
  gap: clamp(2px, 0.5vw, 28px);
  align-items: center;
  justify-content: flex-end;
}

/* li */
.menu-header li {
  list-style: none;
}

/* リンク */
.menu-header a {
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

/* ホバー */
.menu-header a:hover {
  background-color: white;
  color: red;
}



/************************************
** 
************************************/
/* ボタン全体を中央寄せ */
.wp-block-buttons {
  display: flex;
  justify-content: center;
}

/* ボタン（枠線＋透明） */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 42px;
  padding: 12px 30px;
}




/************************************
** お客様の声
************************************/
/* お客様の声 */
.voice-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.voice-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}
.voice-industry {
  font-size: 12px;
  color: #666;
}
.voice-company {
  font-weight: bold;
  margin-bottom: 10px;
}
.voice-content {
  margin: 10px 0 20px;
}
.voice-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  text-decoration: none;
}
.voice-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image {
  font-size: 12px;
  color: #999;
}



/************************************
** ブログ記事
************************************/
.blog-container {
  display: flex;
  gap: 40px;
}

.blog-main {
  width: 70%;
}

.blog-sidebar {
  width: 30%;
}

/* カテゴリ */
.blog-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.category-btn {
  background: #eee;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

.category-btn.active {
  background: red;
  color: #fff;
}

/* 記事カード */
.blog-card {
  display: flex;
  margin-bottom: 30px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

.blog-card .thumb {
  width: 40%;
  position: relative;
}

.blog-card .category {
  position: absolute;
  bottom: 0;
  left: 0;
  background: red;
  color: #fff;
  padding: 5px 10px;
}

.blog-card .content {
  padding: 20px;
  width: 60%;
}

.blog-card .title {
  font-size: 20px;
  margin: 10px 0;
}

/* サイドバー */
.sidebar-box {
  margin-bottom: 30px;
  padding: 20px;
  background: #f5f5f5;
}

.tag-list a {
  display: inline-block;
  margin: 5px;
}



/************************************
** お問い合わせ
************************************/
.contact-page {
  max-width: 1220px;
  margin: 0 auto;
}

/* 電話ボックス */
.contact-box {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

.contact-box .tel {
  font-size: 20px;
  margin-top: 10px;
}

/* フォーム */
.contact-form-wrap {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  border-top: 4px solid #e60012;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
}

.required {
  background: #e60012;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  margin-left: 10px;
  border-radius: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background: #eaeaea;
  border-radius: 5px;
}

textarea {
  height: 150px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

input[type="submit"] {
  background: #e60012;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  border: none;
}


/************************************
** お問い合わせ - 完了画面
************************************/
.thanks-wrapper {
  background: white !important;
  padding: 80px 20px;
  text-align: center;
  border-radius: 40px;
}

.thanks-title {
  color: #e60012;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  background-color: white !important;
}

.thanks-text {
  color: #333;
  font-size: 14px;
  line-height: 2;
}



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

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
