@charset "UTF-8";
@import url("grid.css");

:root {
    /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

body {
    position: relative;
}

img {
    max-width: 100%;
    height: auto; /*高さ自動*/
}
a {
    display: block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover {
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
    display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
    margin-left: auto;
    margin-top: 8px;
}
.contact-button {
    padding: 1rem;
    border: 2px solid var(--base-color);
}
nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin: 1rem 0 0 0;
}
nav li {
    flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 769px) {
    /* PC時はMENUボタンを非表示 */
    #open,
    #close {
        display: none !important;
    }

    #navi {
        display: block !important;
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .header #open,
    #close {
        position: absolute;
        top: 20px;
        right: 12px;
    }
    nav ul {
        flex-direction: column;
    }
    .header li {
        padding-top: 0;
    }
    /* スマホ時はMENUボタンを表示 */
    #open {
        display: block;
        background: url(https://bless-inc.jp/wp-content/themes/bls/persLP/img/button.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }
    #close {
        display: block;
        background: url(https://bless-inc.jp/wp-content/themes/bls/persLP/img/button2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }
    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
    }
}

/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
    margin: 5rem 0;
    padding: 3rem 0;
}
.gray-back {
    background-color: var(--back-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding: 0 1rem 1rem 1rem;
}
.center {
    text-align: center;
    margin-bottom: 4rem;
}

.catch h2 .under {
    display: inline-block;
    width: 60%;
    padding-bottom: 0.3em;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
    margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
    padding: 5rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 2rem 0;
}
.table {
    margin: 4rem 0;
}
.table th {
    width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
    display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}

/*お問い合わせエリアへ移動するボタン
-------------------------------------*/
#pageinq {
    position: fixed;
    bottom: 15px;
    right: 80px;
}
#pageinq a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 150px;
    padding: 10px 5px;
    text-align: center;
}
#pageinq a:hover {
    background-color: var(--link-color);
}

/*-----------------------------------*/
.detail {
    display: inline-block;
    text-align: left;
    font-size: 2rem;
}
@media screen and (max-width: 768px) {
    .detail {
        padding: 0 10px 0 10px;
    }
}

.message {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
    .message {
        text-align: left;
        padding: 0 10px 0 10px;
        font-size: 2.2rem;
    }
}

.comment {
    display: inline-block;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .comment {
        padding: 0 10px 0 10px;
    }
}
@media screen and (min-width: 769px) {
    .comment {
        font-size: 2rem;
    }
}

.isPc {
    display: block;
}
.isMobile {
    display: none;
}
@media screen and (max-width: 768px) {
    .isPc {
        display: none;
    }

    .isMobile {
        display: block;
    }
}

/*-----------------------------------*/

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px) {
    /*ヘッダー
-------------------------------------*/
    .header-box {
        display: none;
    }
    /*お問い合わせ
-------------------------------------*/
    .table th {
        width: 100%;
        display: block;
    }
    .table td {
        display: block;
    }
}



/*--------------------------------------
お問い合わせ専用のCSS
----------------------------------------*/

/* ===== フォーム全体 ===== */
.mw_wp_form {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

/* ===== 項目全体 ===== */
.mw_wp_form dl {
  width: 100%;
}

.mw_wp_form dl > div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px; /* 項目間の余白 */
  padding-bottom: 8px;
  border-bottom: 1px solid #eee; /* 薄い仕切り線だけ */
}

/* ===== 項目名（dt） ===== */
.mw_wp_form dt {
  width: 25%;
  padding: 8px 0;
  font-weight: bold;
  box-sizing: border-box;
}

/* ===== 必須マーク（dd.sym） ===== */
.mw_wp_form dd.sym {
  width: 10%;
  padding: 8px 0;
  color: red;
  font-weight: bold;
  box-sizing: border-box;
}





/* ===== 入力欄（dd.ent） ===== */
.mw_wp_form dd.ent {
  width: 65%;
  padding: 8px 0;
  box-sizing: border-box;
}

/* ===== 入力フィールド共通 ===== */
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea,
.mw_wp_form select {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.mw_wp_form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== 電話番号 横並び ===== */
.mw_wp_form .mwform-tel-field {
  display: flex;
  gap: 6px;
}
.mw_wp_form .mwform-tel-field input[type="tel"] {
  width: auto;
  flex: 1;
}

/* ===== エラーメッセージ ===== */
.mw_wp_form .error {
  display: block;
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* ===== 送信ボタン ===== */
.mw_wp_form .btn {
  text-align: center;
  margin-top: 20px;
}
.mw_wp_form input[type="submit"] {
  background-color: #ff9800;
  color: white;
  border: none;
  --padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.mw_wp_form input[type="submit"]:hover {
  background-color: #e68900;
}

/* ===== スマホ対応 ===== */
@media screen and (max-width: 768px) {
  .mw_wp_form dt,
  .mw_wp_form dd.sym,
  .mw_wp_form dd.ent {
    width: 100%;
  }
  .mw_wp_form dl > div {
    flex-direction: column;
  }
  .mw_wp_form .mwform-tel-field {
    flex-direction: column;
  }

  .mw_wp_form dl > div {
    padding-bottom: 0px;
  }
  .mw_wp_form dd.ent {
    padding: 0px 0;
   }
  .mw_wp_form dd.sym {
    padding: 8px 0;
  }
  .mw_wp_form dt {
    padding: 0px 0;
   }
}