@charset "utf-8";
/*
Theme Name: fukui-derika
Template:genesis_tcd103
Author:01 inc
Version:1.0
*/

/*
  ボタンデザイン
*/
.cb_design_arrow_button a {
    display: inline-block;
    background-color: #f6ab00;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(100,100,100,0.3);
    transition: all 0.25s ease;
    text-align: center;
}

.design_arrow_button a .label {
    margin-right: 0px;
	color: #fff !important;  
}

.cb_design_arrow_button .arrow_button {
    display: none !important;
}

/* ホバー時 */
.cb_design_arrow_button a:hover {
    background-color: #e69900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100,100,100,0.4);
}

.s_design_arrow_button a {
    display: inline-block;
    background-color: #f6ab00;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(100,100,100,0.3);
    transition: all 0.25s ease;
    text-align: center;
}

.design_arrow_button a .label {
    margin-right: 0px;
	color: #fff !important;  
}

.s_design_arrow_button .arrow_button {
    display: none !important;
}

.s_design_arrow_button {
    padding: 0px;
}

/* ホバー時 */
.s_design_arrow_button a:hover {
    background-color: #e69900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100,100,100,0.4);
}

/* テキスト装飾 */
.big-text {
  font-size: 16px;
}

.name {
  font-size: 18px;
}

@media screen and (max-width: 800px) {
        .desc {
            font-size: 13px;
        }
    }

/*
  問い合わせフォーム
*/
/* Contact Form 7 必須 */
.required-label {
    color: #ff4002;
    font-size: 12px;
}

.remarks-label {
    font-size: 12px;
}

/* Contact Form 7 送信ボタン */
.wpcf7-form input.wpcf7-submit {
    background-color: #f6ab00;       /* ボタン背景色 */
    color: #ffffff;                  /* 文字色 */
    border: none;                    /* 枠線なし */
    padding: 12px 40px;              /* 内側余白 */
    font-size: 16px;                 /* 文字サイズ */
    border-radius: 999px;            /* 丸型（pill型） */
    cursor: pointer;                 /* マウスカーソルを pointer に */
    box-shadow: 0 4px 12px rgba(100,100,100,0.3); /* 影付き */
    transition: all 0.25s ease;      /* ホバーアニメーション */
}

/* ホバー時 */
.wpcf7-form input.wpcf7-submit:hover {
    background-color: #e69900;       /* 少し暗めのオレンジ */
    transform: translateY(-2px);     /* 軽く浮く動き */
    box-shadow: 0 6px 16px rgba(100,100,100,0.4); /* ホバー時影を強化 */
}

/*
  実績ページ
*/
.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .work-gallery {
    grid-template-columns: 1fr;
  }
}

.work-item {
  text-align: center;
}

.work-item img {
  width: 100%;
  height: auto;
  display: block;
}

.work-item .caption {
  margin-top: -20px;
  font-size: 14px;
  color: #333;
}