@charset "utf-8";

/* ----------------------------------------------------------
   リセット / 新要素設定
------------------------------------------------------------- */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, form, fieldset, legend, table, th, td, caption, a, article, aside, nav, section, figure, figcaption, footer, header, main, audio, canvas, video, menu, details {
    margin: 0;
    padding: 0;
    background: transparent;
    vertical-align: baseline;
}
fieldset, legend, img { border: 0; }
article, aside, nav, section, figure, figcaption, footer, header, main, menu, details { display: block; }
video, audio, canvas {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
audio:not([controls]) { display: none; }
[hidden] { display: none; }


/* ----------------------------------------------------------
   ベース（背景白、文字サイズ調整）
------------------------------------------------------------- */
html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    background: #1c2833;
    color: #222;
    font: Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
    -moz-font-feature-settings: "pkna";
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    letter-spacing: .01em;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

/* 画面幅が小さくなった際の文字サイズを大きく調整 (min-width: 481px未満の調整) */
@media screen and ( max-width: 480px ) {
	body , html {
		/* 480px以下では14pxを基準とする */
		font-size: 14px; 
	}
}
@media screen and (min-width: 481px) and (max-width: 560px) {
		body , html {
		font-size: 14px; /* 14pxを維持 */
	}
}
@media screen and (min-width: 561px) and (max-width: 640px) {
		body , html {
		font-size: 15px; /* 15pxを維持 */
	}
}
@media screen and (min-width: 641px) and (max-width: 720px) {
		body , html {
		font-size: 16px; /* 16pxを維持 */
	}
}
@media all and ( min-width: 721px ) {
		body , html {
		font-size: 16px;
	}
}

/* ----------------------------------------------------------
   要素
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    max-height: 100%;
    font-weight: normal;
    -moz-font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    line-height: 1.2;
    color: #222;
}
p {
    max-height: 100%;
    margin: 0 0 1em;
}
ul {
    max-height: 100%;
    list-style: none;
}
ol {
    max-height: 100%;
    list-style: none;
}
dt {
    max-height: 100%;
    font-weight: bold;
}
dd { max-height: 100%; }
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc; 
}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
pre {
    font-family: monospace, serif;
    white-space: pre-wrap;
    word-wrap: break-word;
}

figure { margin: 0 0 1em; }

a { color: #4bf; } 
a:link, a.visited { text-decoration: underline; }
a:hover, a.active { text-decoration: none; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

img { vertical-align: middle; }

address, cite, em, dfn, i, var { font-style: normal; }
em { font-weight: bold; }
strong, b { font-weight: bold; }
code, samp, kbd { font-family: monospace, sans-serif; }
abbr {
    border: 0;
    font-variant: normal;
}
abbr[title], dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
del { text-decoration: line-through; }
mark {
    background-color: #ff0;
    color: #333;
    font-style: italic;
    font-weight: bold;
}
br { *letter-spacing: 0; }


table {
    border-collapse: collapse;
    border-spacing: 0;
}
th, td {
    font-weight: normal;
    text-align: left;
}
th { font-weight: bold; }
caption {
    font-weight: normal;
    text-align: left;
}

/* ----------------------------------------------------------
   フォーム系（入力欄のフォントサイズと幅統一）
------------------------------------------------------------- */
input, textarea, select {
    margin: 0;
    font-family: inherit;
    /* 全ての入力欄と都道府県欄のフォントサイズを統一 */
    font-size: 100%; 
    *font-size: 100%; 
}
input, button {
    line-height: normal;
    vertical-align: middle;
    /* ボタン以外はベースサイズに揃える */
    font-size: 100%; 
}

input[type=text],
input[type=password],
textarea,
select {
    padding: 8px 2%;
    /* 入力欄を白に近い色に設定 */
    background: #f7f7f7; 
    color: #222; 
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-box-shadow: inset 1px 1px 3px 0 rgba(0,0,0,0.1); 
    -webkit-box-shadow: inset 1px 1px 3px 0 rgba(0,0,0,0.1);
    box-shadow: inset 1px 1px 3px 0 rgba(0,0,0,0.1);
    box-sizing: border-box; 
}

/* お問い合わせ内容以外の入力欄の幅を広げ統一（500px）*/
input[type=text]:not([name^="zip"]), /* 郵便番号 (zip) を除外 */
input[type=password],
select:not([name$="pref"]) { /* 都道府県 (pref) を除外 */
    width: 100%; 
    max-width: 500px; 
}

/* 郵便番号と都道府県は既存の仕様を維持（幅を狭く保つ） */
input[name^="zip"],
select[name$="pref"] {
    width: 100%;
    max-width: 150px; 
}

/* テキストエリアは広めに設定 */
textarea {
    width: 98%;
    max-width: 600px;
    overflow: auto;
    vertical-align: top;
}


input[type=text]:focus,
input[type=password]:focus,
textarea:focus { 
    border: 1px solid #0056b3; 
    background: #fff; 
    outline: none;
}

input[type=button] { cursor: pointer; }

.box__ttl input[type=button] {
    margin-right: 5px;
    height: 26px;
    line-height: 26px;
}

/* 送信ボタンのオフィシャル感とレスポンシブ対応を強化 */
input[type=submit] {
    /* ボタンは視認性のため少し大きめのサイズを維持 */
    background-color: #0056b3; 
    color: #fff;
    border: 1px solid #0056b3;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 110%; /* 110%を維持 */
    transition: background-color 0.3s;
    width: auto;
    min-width: 180px; 
}

input[type=submit]:hover {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

input[type=checkbox] { cursor: pointer; }

input[type=submit]:disabled,
input[type=button]:disabled,
input[type=checkbox]:disabled { cursor: default; }

select {
    padding: 8px; 
    line-height: normal;
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #222;
    box-sizing: border-box;
}
label { cursor: pointer; }
legend {
    *margin-left: -7px;
    color: #222; 
}

/* ----------------------------------------------------------
   汎用
------------------------------------------------------------- */
/* マージン系 */
.m0 { margin: 0 !important; }
.m5 { margin: 5px !important; }
.m10 { margin: 10px !important; }
.m15 { margin: 15px !important; }
.m20 { margin: 20px !important; }
.m25 { margin: 25px !important; }
.m30 { margin: 30px !important; }
.m35 { margin: 35px !important; }
.m40 { margin: 40px !important; }
.m44 { margin: 44px !important; }
.m40 { margin: 40px !important; }
.mt0 { margin-top: 0 !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.ml0 { margin-left: 0 !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml25 { margin-left: 25px !important; }
.ml30 { margin-left: 30px !important; }
.ml35 { margin-left: 35px !important; }
.ml40 { margin-left: 40px !important; }
.ml45 { margin-left: 45px !important; }
.ml50 { margin-left: 50px !important; }
.mr0 { margin-right: 0 !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr25 { margin-right: 25px !important; }
.mr30 { margin-right: 30px !important; }
.mr35 { margin-right: 35px !important; }
.mr40 { margin-right: 40px !important; }
.mr45 { margin-right: 45px !important; }
.mr50 { margin-right: 50px !important; }

/* パディング系 */
.p0 { padding: 0 !important; }
.p5 { padding: 5px !important; }
.p10 { padding: 10px !important; }
.p15 { padding: 15px !important; }
.p20 { padding: 20px !important; }
.p25 { padding: 25px !important; }
.p30 { padding: 30px !important; }
.p35 { padding: 35px !important; }
.p40 { padding: 40px !important; }
.p45 { padding: 45px !important; }
.p50 { padding: 50px !important; }
.pt0 { padding-top: 0 !important; }
.pt5 { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt35 { padding-top: 35px !important; }
.pt40 { padding-top: 40px !important; }
.pt45 { padding-top: 45px !important; }
.pt50 { padding-top: 50px !important; }
.pb0 { padding-bottom: 0 !important; }
.pb5 { padding-bottom: 5px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb45 { padding-bottom: 45px !important; }
.pb50 { padding-bottom: 50px !important; }
.pl0 { padding-left: 0 !important; }
.pl5 { padding-left: 5px !important; }
.pl10 { padding-left: 10px !important; }
.pl15 { padding-left: 15px !important; }
.pl20 { padding-left: 20px !important; }
.pl25 { padding-left: 25px !important; }
.pl30 { padding-left: 30px !important; }
.pl35 { padding-left: 35px !important; }
.pl40 { padding-left: 40px !important; }
.pl45 { padding-left: 45px !important; }
.pl50 { padding-left: 50px !important; }
.pr0 { padding-right: 0 !important; }
.pr5 { padding-right: 5px !important; }
.pr10 { padding-right: 10px !important; }
.pr15 { padding-right: 15px !important; }
.pr20 { padding-right: 20px !important; }
.pr25 { padding-right: 25px !important; }
.pr30 { padding-right: 30px !important; }
.pr35 { padding-right: 35px !important; }
.pr40 { padding-right: 40px !important; }
.pr45 { padding-right: 45px !important; }
.pr50 { padding-right: 50px !important; }

/* 幅指定(%) */
.w5per { width: 5% !important; }
.w10per { width: 10% !important; }
.w15per { width: 15% !important; }
.w20per { width: 20% !important; }
.w25per { width: 25% !important; }
.w30per { width: 30% !important; }
.w35per { width: 35% !important; }
.w40per { width: 40% !important; }
.w45per { width: 45% !important; }
.w50per { width: 50% !important; }
.w55per { width: 55% !important; }
.w60per { width: 60% !important; }
.w65per { width: 65% !important; }
.w70per { width: 70% !important; }
.w75per { width: 75% !important; }
.w80per { width: 80% !important; }
.w85per { width: 85% !important; }
.w90per { width: 90% !important; }
.w95per { width: 95% !important; }
.w100per { width: 100% !important; }

/* フロート */
.fl { float: left !important; }
.fr { float: right !important; }

/* テキスト系 */
.tal { text-align: left !important; }
.tar { text-align: right !important; }
.tac { text-align: center !important; }
.breakAll { word-break: break-all !important; }

/* 表示系 */
.dispN { display: none !important; }
.dispI { display: inline !important; }
.dispIB { display: inline-block !important; }
.dispB { display: block !important; }
.dispF { display: flex !important; }

/* フォント系 */
.fontNormal { font-weight: normal !important; }
.fontBold { font-weight: bold !important; }
.font10 { font-size: 100% !important; }
.font12 { font-size: 110% !important; }
.font14 { font-size: 120% !important; }

/* カラー系 */
.colorBlack { color: #000; }

/* Clearfix */
.clear, .cf { clear: both; }
.clearfix:before, .clearfix:after,
.cf:before, .cf:after {
    content: " ";
    display: table;
}
.clearfix:after, .cf:after { clear: both; }
.clearfix, .cf { *zoom: 1; }

/* ボタンを囲うclassタグ */
.button_box {
	clear : both ;
	padding : 20px ; 
	text-align : center ;
    font-size: 110%;
}

#main > .button_box:last-child {
    background-color: #1c2833;
    margin-top: 20px;
    border-top: 1px solid #ccc;
}


/* 左詰の文字を表示するためのclassタグ */
.left_txt {
	text-align : left;
}

/* 説明文を表示するためのタグ */
#txt_explain {
	color: #222;
    font-size: 110%;
    padding-bottom: 15px;
}

/* ----------------------------------------------------------
   メインコンテンツ
------------------------------------------------------------- */
#wrapper {
    max-width : 800px; 
    width: 100%;
    min-width: 320px;
    margin: 50px auto 50px; 
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1); 
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    background : #fff; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
}

#header { padding: 40px 25px 40px; }

.red_txt {
    color: #ff3333;
    padding-bottom: 10px;
    font-weight: bold;
}

#footer {
    margin-top: 40px;
    padding: 15px 0;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 110%;
}

#main { padding: 30px; } 

.section { margin-bottom: 40px; }
.section:last-child { margin-bottom: 0; }
.section__ttl {
    padding: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    color:#fff;
    /* 見出しを暗い色に変更 */
    background : #1c2833; 
    text-align: center;
    font-size: 180%;
    border-radius: 4px;
}
.section__body { padding: 0; }

.block { margin-bottom: 15px; }
.block:last-child { margin-bottom: 0; }
.block__ttl {
    margin-bottom: 10px;
    font-size: 140%;
    font-weight: bold;
}
.block__body {}

/* フォームテーブルの調整（レスポンシブ対応強化） */
.table {
    width: 100%;
    margin-bottom: 25px;
    border-top: 1px solid #ccc; 
    border-left: 1px solid #ccc;
}
.table th {
    width: 25%;
    padding: 15px 10px;
    background : #1c2833;
    color: #fefefe;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
    font-size: 110%;
    text-align: center; 
}
.table td {
    width: 75%;
    padding: 15px;
    /* 入力セルの背景を白に近い色に */
    background: #fcfcfc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    color: #222; 
    font-size: 110%;
}

/* スマートフォンでのレスポンシブ対応 */
@media screen and (max-width: 600px) {
    #main {
        padding: 20px;
    }
    
    /* tableをブロック要素に変更し、縦積みで表示 */
    .table, .table tbody, .table tr, .table th, .table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* th（項目名）のスタイル調整 */
    .table th {
        text-align: left;
        padding: 10px;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #ccc;
        font-size: 100%;
    }
    
    /* td（入力欄）のスタイル調整 */
    .table td {
        padding: 10px;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #ccc;
        background: #fff;
        color: #222;
    }

    /* 必須項目の説明文の調整 */
    #txt_explain {
        font-size: 100%;
    }

    /* input/textareaの幅を調整 */
    input[type=text],
    input[type=password],
    textarea,
    select {
        width: 100%;
        max-width: 100%; /* スマホでは全幅に */
        font-size: 100%; 
    }
}
.red{
   color : #f00;
}
.logo{
   width: 98%;
   max-width: 480px;
   min-width: 320px;
   margin: auto;
   padding: 1%;"
}
.logo img{
   width: 100%;
}
.tel_ti{
   font-size: 160%;
   font-weight: bold;
   text-align: center;
   padding-bottom: 25px;
}
.tel_shop{
   font-size: 110%;
   font-weight: bold;
   text-align: center;
   margin: 0;
}
.tel_num{
   font-size: 160%;
   font-weight: bold;
   text-align: center;
   color: #600;
   margin: 5px 0;
}
.tel_num a:link {color:#600;}
.tel_num a:visited {color:#600;}
.tel_num a:hover {color:#f00;}
.tel_num a:active {color:#f00;}

@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}