/*
Theme Name:Forma Salon
Template:twentytwentyfive
Description:骨格美容サロン FORMA
Author:VoidSystem
Version:1.0.0
*/

body {
    font-family: sans-serif;
}
a.wp-element-button {
    font-family: sans-serif;
}
/* 字詰め設定 */
.zume { 
    font-feature-settings: "palt"; 
}

/* ボタン色 */
.wp-block-button a:hover {
    background-color:#dd4285;
}

/* お知らせリスト */
ul.wp-block-latest-posts__list li{
    padding: 5px 10px;
    border-bottom: solid 1px #DDD;
}
ul.wp-block-latest-posts__list li:hover{
    background-color: #F5F5F5;
}
ul.wp-block-latest-posts__list li time{
    float: right;
    padding-top: 5px;
}

/* 見出しh2　装飾ライン */
.h-line {
    display: flex;
    align-items: center;
}

.h-line:before,
.h-line:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #999;
    display: block;
}

.h-line:before {
    margin-right: .4em;
}

.h-line:after {
    margin-left: .4em;
}
/* トップページ　サービスメニュー　バナー */
.service-menu-box {
    border:solid 1px #cba;
}

/* テキストドロップシャドウ白 */
.white-shadow {
  text-shadow:
    1px 1px 2px white;
}

/* FAQ */
.faq-Q {
    font-weight: bold;
}

.faq-Q strong{
    color: #e0126c;
    font-size: 1.3rem;
    font-weight: normal;
}

.faq-A {
    padding-bottom: 20px;
}

.faq-A strong {
    font-weight: normal;
}

/*** ご予約ボタン ***/
.btn-reserv {
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 999;
    box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%);
    writing-mode: vertical-lr;
}
.btn-reserv a{
    padding:30px 20px 30px 8px !important;
}
.btn-reserv a:hover {
    background-color: #dd4285;
    padding-right: 28px !important;
}

/*** お問い合せフォーム ***/
.required {
    color: #e0126c;
    margin-left: 2px; /* 文字と*の間に少し隙間を空ける */
}

p label {
    display: grid;
    /* 左側(文字エリア)を150px、右側(入力欄)を残り全部 */
    grid-template-columns: 150px 1fr; 
    align-items: center;
    gap: 10px;
}

p label .label-text {
    /* 文字が120pxの中でどう配置されるか（必要なら右寄せ等はここで） */
    text-align: left; 
}

/* 改行タグ無効化 */
p label br { display: none; }

/* 入力欄の枠設定 */
p label .wpcf7-form-control-wrap {
    width: 100%;
}

p label input {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}
p input.wpcf7-submit {
    width: 100%;
    padding: 15px;
    background-color: #999;
    color: white;
    border: 0;
    border-radius: 3px;
    font-size: 1.3rem;
}
p input.wpcf7-submit:hover {
    background-color:#e0126c
}

.wpcf7-turnstile {
    text-align: center;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {


/*** お問い合せフォーム ***/
    p label {
        display: block;
    }
    p label br { display: block; }
    
    p label .wpcf7-form-control-wrap {
        display: block;
        margin-top: 4px;
    }
}