@charset "UTF-8";

/* =========================================
   メタ情報ページ用CSS
========================================= */

/* メタ情報ページ共通スタイル */
.meta-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
    color: #333;
    line-height: 1.8;
	font-family: inherit;
}

/* ヘッダー・見出し */
/* WP標準の記事タイトル(H1)へのデザイン適用 */
h1.typesquare_option {
    text-align: center !important;
    font-size: 26px !important;
    margin-top: 20px;
    position: relative;
    padding: 15px;
    letter-spacing: 0.05em;
    font-weight: bold;
    border: none !important; /* テーマのデフォルト線を消す */
}

/* タイトル下の装飾線 */
h1.typesquare_option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 2px;
    background-color: #F59F9F;
}

/* H2の見出しデザイン（H1に合わせて中央寄せ＋下線） */
.meta-page-container h2 {
    text-align: center;
    font-size: 20px;
    margin: 60px 0 30px;
    padding-bottom: 12px !important;
    position: relative;
    border: none !important; /* 以前の左線を消す */
    background: none;
}

.meta-page-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--wp--preset--color--sango-main);
}

/* テーブルのスタイル */

.meta-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.meta-table th, .meta-table td {
    padding: 20px;
    text-align: left;
}

.meta-table th {
    width: 30%;
    background-color: #fcfcfc;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .meta-table th, .meta-table td {
        display: block;
        width: 100%;
    }
	.meta-table th{
	border-right: none;
	}
}

/* リストスタイル */

.meta-table .meta-list {
    list-style: none; /* デフォルトの「・」を消す */
    padding: 0;
    margin: 0;
}

.meta-content  .meta-list {
    list-style: none; /* デフォルトの「・」を消す */
    padding: 0;
    margin: 0;
	background: #fdfbfb;
}

.meta-list li {
    position: relative;
    padding-left: 1.5em; /* アイコン分の余白 */
    margin-bottom: 0.5em;
}

/* シェブロンマーク（＞）の作成 */
.meta-list li::before {
    content: '';
    position: absolute;
    left: 0.2em;
    top: 0.9em; /* 位置の微調整 */
    width: 6px;   /* マークの幅 */
    height: 6px;  /* マークの高さ */
    border-top: 2px solid #50b1a0;  /* 指定のグリーン系カラー */
    border-right: 2px solid #50b1a0; /* 指定のグリーン系カラー */
    transform: rotate(45deg); /* 45度回転させて「＞」にする */
}

/* お問い合わせページの埋め込みフォームを整える */
.page-id-623 .entry-content iframe {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border: none; /* Googleフォームの境界線を消す */
}

/* 「meta-page-container」の枠組みを使う場合 */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
}

/* 策定日・運営者情報のボックス調整 */
.meta-footer-info {
    display: inline-block; /* 中身の幅に合わせる */
    text-align: left;      /* テキストは左寄せ */
}

.meta-footer-info-wrapper {
    text-align: right;     /* ボックス自体を右に寄せる */
    margin-top: 40px;      /* 上との余白 */
    font-size: 0.9em;
    color: #666;
}

.meta-footer-info p {
    margin: 0;
}