@charset "UTF-8";

div#mf_wrapper {
	width: 1000px;
	margin: auto;
}

div#mf_header h1 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	color: #125C11;
	border: 3px double #125C11;
	padding-left: 10px;
	padding-top: 3px;
}

div#mf_header h2 {
	font-size: 16px;
	color: #999999;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
form#mailform {
	padding: 5px;
}

.txtx-red {
	color: #CC0000;
	font-weight: bold;
}

#mf_header {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
}
	
.button-1 {
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 250px;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    background-color: #FB9734;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-1:hover {
    background-color: #FFB367;
}

input[name="住所"] {
  width: 90%;       /* 親要素の幅いっぱい（レスポンシブ対応）に広げる */
  max-width: 400px;  /* ただし、PCなどの広い画面で広がりすぎないように上限を設定 */
  box-sizing: border-box; /* paddingやborderを含めて幅を計算させる安全設定 */
}

.indent-text {
  display: inline-block; 
  text-indent: -1em;
  padding-left: 1em;
}

.box-text {
  display: inline-block; 
  border: 1px solid #333; 
  padding: 5px 8px;
  margin: 5px 0;
}

/* レスポンシブ対応（スマホ用） */
@media screen and (max-width: 768px) {
    div#mf_wrapper {
        width: 90%;
        margin: 0 auto;
    }

    div#mf_wrapper img {
        max-width: 100%;
        height: auto;
    }
        
    form#mailform {
        padding: 0;
    }

    /* テーブル幅のはみ出し防止：ブロック化して縦並びにする */
    table.mailform {
        width: 100% !important;
        table-layout: auto !important;
        border-collapse: collapse;
    }

    table.mailform tr,
    table.mailform th,
    table.mailform td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 人数・金額エリアの調整 */
    table.mailform td[rowspan="5"] {
        text-align: right !important;
        background-color: #f9f9f9;
        padding: 10px !important;
        border-top: 1px dashed #ccc;
    }

    /* 入力欄やセレクトボックスを幅いっぱいに広げる */
    table.mailform input[type="text"],
    table.mailform input[type="email"],
    table.mailform input[type="tel"],
    table.mailform select,
    table.mailform textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}


	