/*
Theme Name:VoidSystem
Template:twentytwentyfive
Description:VoidSystem Official Site
Author:VoidSystem
Version:1.0.0
*/

/* 字詰め設定 */


h1,h2,h3 {
   font-feature-settings: "palt"; 
   letter-spacing: 0.1em;
}

.zume { 
    font-feature-settings: "palt"; 
}

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

/* お知らせリスト */
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: #155b77;
    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: #155b77;
}

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

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

.btn-reserv {
    position: absolute;
    position: fixed;
    top: 30px;
    right: 0px;
    z-index: 999;
    box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%);
}
.btn-reserv a{
    padding-right:40px !important;
}
.btn-reserv:hover {
    background-color: #EEE;
}

/*** お問い合せフォーム ***/
.required {
    color: red;
    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%;
    padding: 5px;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 1.0rem;
}
p input.wpcf7-submit {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background-color: #999;
    color: white;
    border: 0px;
    border-radius: 5px;
    font-size: 1.3rem;
}
p input.wpcf7-submit:hover {
    background-color:red;
}
/* スマホ対応 */
@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;
    }
}