@charset "utf-8";

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* 画像ロゴがあるときだけ、直後のテキスト版ロゴを隠す */
#logo + #logo-text { display: none; }

/* GoogleMap等のiframeの枠線を消す */
iframe { border: 0; }

/*contact_form.html*/
.contact-alert{
    background:#f0fff2;border:1px solid #bde5c8;color:#1c6b2a;
    padding:.8rem 1rem;border-radius:6px;margin:0 0 1rem;
}
.contact-alert.error{background: #fffbda;border: 1px solid #f3c4c4;color:#b00020;}

input[type=text], input[type=email], input[type=tel],textarea {
    width:100%;
    max-width:100%;
}
input, select, textarea, button[type=submit] {font-size: 1rem;}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.8);
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*以下beginner10専用*/

/*header（ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ（※テキストで使う場合）*/
#logo-text a {
	text-decoration: none;
	display: block;
	font-size: 1.2rem;	/*文字サイズ120%*/
}

/*btn（ボタン）
---------------------------------------------------------------------------*/
/*大きな端末で出るヘッダーのメニュー*/
.large-screen #menubar a .btn {
	display: block;
	background: var(--primary-color) !important;		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color) !important;	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	border-radius: 5px;	/*角を少し丸くする*/
	padding: 0.5rem 2rem;	/*上下、左右への余白。*/
}

/*Google Map用
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	aspect-ratio: 16 / 9;	/*マップのアスペクト比。お好みで。*/
	position: relative;
	overflow: hidden;
}
.iframe-box1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*1週間テーブル
---------------------------------------------------------------------------*/
.week2 {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 10px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}

/*受付時間の幅*/
.week2 th:first-child,
.week2 td:first-child {
	width: 25%;
}

/*各曜日の幅*/
.week2 th:not(:first-child),
.week2 td:not(:first-child) {
	width: calc(75% / 7);	/*受付時間で25%とっているので残りの75%を7で割る*/
}

/*th(曜日)とtd(時間)*/
.week2 th,
.week2 td {
	padding: 1rem 0;	/*ボックス内の余白。上下に１文字分、左右は0。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}

/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.week2 th:last-child,
.week2 td:last-child {
	border-right: none;
}

/*最後の行の下線を消す*/
.week2 tr:last-child td {
	border-bottom: none;
}

/*th(曜日)の追加指定*/
.week2 th {
	background: #eee;	/*背景色*/
}
.week2 td {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
