@charset "utf-8";

/* 外部CSSの読み込み */
@import url("https://unpkg.com/sanitize.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("animation.css");
@import url("inview.css");

/* テーマカラーの定義（CSS変数） */
:root {
	--primary-color: #000;
	--secondary-color: #f29600;
	--primary-text-color: #eeeeee;
}

/* 全体の設定 */
html, body {
	font-size: 13px;
}

@media screen and (min-width: 900px) {
	html, body {
		font-size: 16px;
	}
}

body {
	font-family: "Noto Serif JP", serif;
	-webkit-text-size-adjust: none;
	background: #fefefe;
	color: #696a6a;
	line-height: 2;
}

/* リセット */
figure, dd, nav {
	margin: 0;
}

nav {
	padding: 0;
	font-family: "Noto Sans JP", "hiragino gothic pro", "メイリオ", Meiryo, "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 700;
}

@media screen and (max-width: 899px) {
	nav {
		font-size: 2rem;
	}

}

table {
	border-collapse: collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

video, iframe {
	max-width: 100%;
}

input {
	font-size: 1rem;
}

/* リンクテキスト全般 */
a {
	color: #696a6a;
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;
}

/* ユーティリティクラス */
.center, .c {
	text-align: center;
}

.bold {
	font-weight: 700;
}

.Sans-serif {
	font-family: "Noto Sans JP", "hiragino gothic pro", "メイリオ", Meiryo, "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.bg_c {
	background: #fdecd2;
	z-index: 1;
}

.bg_g {
	padding: 5rem;
	background: #ddd;
	z-index: 1;
}

.top_-5 {
	margin-top: -5rem;
	font-size: 1.2rem;
}

.red {
	color: #cd0000;
}

.color-check, .color-check a {
	color: #ff0000 !important;
}

.color-theme, .color-theme a {
	color: var(--secondary-color) !important;
}

.l {
	text-align: left !important;
}

.r {
	text-align: right !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb5rem {
	margin-bottom: 5rem !important;
}

.small {
	font-size: 0.75em;
}

.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

/* コンテナー */
#container {
	max-width: 100vw;
	margin: 0 auto;
	overflow-x: hidden;
}

/* セクションと記事の余白 */
main>section, main>article {
	padding: 2% 5%;
}

/* ヘッダー */
header {
	background: rgba(255, 255, 255, 0.8);
	color: #696a6a;
	text-align: center;
	padding: 5px 5%;
	position: fixed;
	width: 100vw;
	z-index: 100;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

header a {
	color: inherit;
}

@media screen and (min-width: 360px) {
	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-right: 65px;
	}
}

/* ロゴ */
#logo {
	margin: 0;
	margin-bottom: 5%;
	width: 215px;
}

#logo img {
	display: block;
}

@media screen and (min-width: 360px) {
	#logo {
		margin-bottom: 0;
	}
}

/* ヘッダー右側のボタン */
header .btn {
	padding: 0;
	margin: 0;
	list-style: none;
}

header .btn li a {
	display: block;
	text-decoration: none;
	background: linear-gradient(#ffc000, #ffa800);
	color: #333;
	border-radius: 3px;
	padding: 0.5rem 1.5rem;
}

/* メニューブロック初期設定 */
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar a {
	display: block;
	text-decoration: none;
}

.large-screen #menubar, .small-screen #menubar.display-block {
	display: block;
}

#menubar_hdr.display-none {
	display: none;
}

.ddmenu_parent ul {
	display: none;
}

a.ddmenu {
	cursor: default;
}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 1em;
	font-size: 0.8rem;
}

/* 大きな端末用のメニューブロック */
.large-screen #menubar>nav>ul {
	display: flex;
	margin-left: 30px;
	font-size: 1rem;
	letter-spacing: 0.1em;
}

.large-screen #menubar>nav>ul li a:hover {
	color: #f29600;
}

.large-screen #menubar li a {
	padding: 10px;
}

/* ドロップダウンメニュー共通 */
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}

/* 大きな端末用のドロップダウンメニュー */
.large-screen #menubar ul ul {
	position: absolute;
	z-index: 100;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	color: #fff;
}

.large-screen #menubar ul ul a {
	color: inherit;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
}

/* 小さな端末用の開閉ブロック */
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;
	background: rgba(0, 0, 0, 0.9);
	text-align: center;
	animation: animation1 0.2s both;
	color: #fff;
}

.small-screen #menubar a {
	color: inherit;
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 5px;
	margin-bottom: 2rem;
}

/* ハンバーガーアイコン */
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 6px;
	top: 5px;
	padding: 16px 14px;
	width: 46px;
	height: 46px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: rgba(242, 150, 0, 0.8);
}

#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 2px solid var(--primary-text-color);
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
}

#menubar_hdr.ham span:nth-of-type(1) {
	transform: rotate(45deg) translate(3.8px, 5px);
}

#menubar_hdr.ham span:nth-of-type(3) {
	transform: rotate(-45deg) translate(3.8px, -5px);
}

#menubar_hdr.ham span:nth-of-type(2) {
	display: none;
}

/* スライドショー */
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 45%;
	position: relative;
	margin-top: 62px;
	z-index: -1;
}

@media screen and (max-width: 899px) {
	#mainimg-box {
		margin-top: 57px
	}

}

#mainimg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* コンテンツ */
#contents {
	flex: 1;
}

/* メインブロック */
main {
	width: 100vw;
	display: flex;
	flex-direction: column;
	padding: 0 12vw;
}

@media screen and (max-width: 499px) {
	main {
		padding: 0 5vw;
	}
}

main h2 {
	position: relative;
	z-index: 3;
	text-align: center;
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: -2em;
	color: #000;
}


main h2 span {
	display: block;
	font-size: 0.3em;
	opacity: 0.5;
	letter-spacing: 0.5em;
}

.h2_bg {
	position: relative;
	display: inline-block;
	font-size: 2.8rem;
	padding: 1rem;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	height: 20px;
	background-color: #f29600;
	z-index: -1;
}

@media screen and (max-width: 899px) {
	main h2 {
		font-size: 2.5rem;
	}

	.h2_bg {
		font-size: 2.5rem;
		padding: 0.5rem;
		top: -15px;
		height: 15px;
	}
}

main h2.normal {
	text-align: left;
	font-size: 2rem;
	border-bottom: 1px solid #d1d3d3;
	margin-bottom: 0.5em;
}

/* フッターメニュー */
#footermenu {
	margin: 0;
	padding: 20px;
	text-align: center;
	font-size: 0.8rem;
}

#footermenu li {
	display: inline-block;
	padding: 0 10px;
}

/* フッター */
footer {
	font-size: 0.7rem;
	background: #dfd498;
	color: #fff;
	text-align: center;
	padding: 20px;
}

footer small {
	font-size: 100%;
}

.footer_top {
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.footer_top img {
	width: 60%;
}

.footer_inner {
	width: 80vw;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer_logo {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer_list {
	width: 75%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.footer_list dl {
	text-align: left;
	line-height: 1.2;
}

.footer_list dt {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-weight: 700;
}

.footer_list dd {
	font-size: 0.8rem;
}

.footer_list ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
}

.footer_list ul li a:hover {
	color: #f29600;
}

footer a {
	color: inherit;
	text-decoration: none;
}

footer small {
	width: 100%;
	display: block;
}

@media screen and (max-width: 899px) {
	.footer_top img {
		width: 100vw;
	}

	.footer_inner {
		flex-direction: column;
		width: 100%;

	}

	.footer_logo {
		width: 100%;
		max-width: 400px;
		margin-bottom: 0;
	}

	.footer_list {
		width: 100%;
	}

	.footer_list dl {
		text-align: left;
		line-height: 1.8;
	}

	.footer_list dd {
		font-size: 0.9rem;
	}

	.footer_list ul {
		list-style: none;
		display: block;
		text-align: left;
		font-size: 1.2rem;
	}

}


/* 横長タイプのボックス */
.list-normal .list {
	padding: 2rem 0;
}

.list-normal .list figure {
	margin-bottom: 1rem;
}

.list-normal .list h4 {
	margin: 0;
	margin-bottom: 0.5em;
	font-size: 1.3rem;
}

.list-normal .list p {
	margin: 0;
	font-size: 0.9rem;
}

@media screen and (min-width: 900px) {
	.list-normal .list {
		display: flex;
		align-items: center;
	}

	.list-normal .list div {
		flex: 1;
	}

	.list-normal .list figure {
		margin-bottom: 0;
		width: 40%;
		margin-right: 2rem;
	}
}

/* 2カラムブロック（お客様の声） */
.list-half .list {
	display: flex;
	flex-direction: column;
	margin-bottom: 5rem;
}

.list-half .list h4 {
	margin: 0;
	font-size: 1.5rem;
}

.list-half .image-l img, .list-half .image-r img {
	border-radius: 10px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 900px) {
	.list-half .list {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.list-half .image-l, .list-half .image-r {
		width: 30%;
	}

	.list-half .image-r {
		margin-left: 2rem;
	}

	.list-half .image-l {
		order: -1;
		margin-right: 2rem;
	}

	.list-half .text {
		flex: 1;
	}
}

/* ハウスメーカーからのお礼 */
.list-half .list-re {
	background: #e7f1f1;
	margin-top: -2rem;
	margin-bottom: 5rem;
	padding: 2rem;
	font-size: 0.9rem;
	border-radius: 10px;
	position: relative;
}

.list-half .list-re::before {
	content: "▲";
	font-size: 30px;
	color: #e7f1f1;
	position: absolute;
	top: -1.2em;
	left: calc(50% - 0.5em);
	transform: scale(1.5, 0.8);
}

/* 3列タイプのボックス（grid） */
.list-grid .list {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto;
	margin-bottom: 1rem;
}

.list-grid .list h4 {
	margin: 0;
}

.list-grid .list .text p {
	margin: 0;
	font-size: 0.8em;
	line-height: 1.5;
}

.list-grid .list figure {
	margin-bottom: 1rem;
}

.list-grid .btn a {
	display: block;
	text-decoration: none;
	text-align: center;
	background: var(--primary-color);
	color: var(--primary-text-color);
	padding: 5px 10px;
	margin-top: 1rem;
}

@media screen and (min-width: 900px) {
	.list-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.list-grid .list {
		margin-bottom: 0;
	}
}

/* 完成までのフローセクション */
.flow-section .list-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.flow-section .list-grid .list {
	margin-bottom: 1rem;
}

@media screen and (min-width: 900px) {
	.flow-section .list-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 2rem;
	}

	.flow-section .list-grid .list {
		margin-bottom: 0;
		width: calc(33.33% - 2rem);
	}
}

/* 新着情報ブロック */
.new {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.new dt, .new dd {
	padding: 5px 0;
}

.new dt {
	width: 8em;
}

.new dt span {
	display: none;
}

.new dd {
	width: calc(100% - 8em);
}

@media screen and (min-width: 900px) {
	.new dt {
		width: 14em;
		display: flex;
		justify-content: space-between;
	}

	.new dt span {
		display: inline-block;
		width: 7em;
		background: #999;
		color: #fff;
		font-size: 0.8em;
		text-align: center;
		margin-right: 1em;
		align-self: flex-start;
		line-height: 1.8;
		position: relative;
		top: 0.4em;
		border-radius: 2px;
	}

	.new dt span.icon-bg1 {
		background: #cd0000;
	}

	.new dt span.icon-bg2 {
		background: #006acd;
	}

	.new dd {
		width: calc(100% - 14em);
	}
}

/* FAQ */
.faq dt {
	border-radius: 3px;
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid #ccc;
	text-indent: -2rem;
	padding: 5px 1em 5px 3em;
}

.faq dt::before {
	font-family: "Font Awesome 5 Free";
	content: "\f059";
	padding-right: 1rem;
}

.faq dd {
	padding: 5px 1rem 30px 3rem;
}

.openclose {
	cursor: pointer;
}

/* サムネイル切り替えブロック */
.thumbnail-view {
	max-width: 1000px;
	margin: 0 auto 1rem;
	text-align: center;
}

.thumbnail {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.thumbnail img {
	width: 100px;
	margin: 2px;
	cursor: pointer;
	transition: 0.3s;
}

.thumbnail img:hover {
	opacity: 0.8;
}

/* 前のページに戻るボタン */
.back {
	text-align: center;
}

.back a {
	text-decoration: none;
	display: inline-block;
	padding: 0.5rem 2rem;
	border-radius: 30px;
	background: #eee;
}

.back a::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0d9";
	padding-right: 0.8em;
	font-weight: bold;
	opacity: 0.5;
}

/* 背景色付きブロック */
.bg1 {
	background: var(--secondary-color);
	color: var(--primary-text-color);
}

.bg1 a {
	color: inherit;
}

/* テーブル */
.ta1 {
	border-top: none;
	width: 100%;
	margin: 0 auto 2em;
}

.ta1 caption {
	font-weight: bold;
	padding: 15px 10px;
	background: #555;
	margin-bottom: 15px;
	border-radius: 5px;
	color: #fff;
}

.ta1 tr {
	border-bottom: none;
}

.ta1 th, .ta1 td {
	padding: 15px 10px;
	word-break: break-all;
}

.ta1 th {
	width: 30%;
	text-align: left;
	background: none;
	font-size: 1.2rem;
	font-weight: 500;
}

.ta1 th span {
	font-size: 1rem;
	background: #cd0000;
	color: #fff;
	padding: 0.1rem 0.8rem;
}

/* お問い合わせ詳細とリフォーム内容の見出し（th） */
.ta1 th[colspan="2"] {
	text-align: left;
	padding-bottom: 5px;
}

/* お問い合わせ詳細とリフォーム内容（td） */
.ta1 td[colspan="2"] {
	padding-top: 0;
}

/* small タグ（コメント）のスタイル */
.ta1 th[colspan="2"] small {
	display: inline;
	font-size: 0.9rem;
	color: #696a6a;
	margin-top: 5px;
}

/* チェックボックス（リフォーム種別） */
.ta1 td label {
	display: inline-block;
	margin: 5px 10px 5px 0;
	font-size: 1.1rem;
	min-width: 240px;
}

/* 入力欄（テキスト、テキストエリア） */
.ws, .wl {
	width: 100%;
	display: block;
	font-size: 1.2rem;
	padding: 10px;
	border: 1px solid #000;
	border-radius: 5px;
}

.wl {
	height: 150px;
}

/* 必須項目のテキスト */
.qtion {
	font-size: 1rem;
	color: #cd0000;
	margin-bottom: 1rem;
}

/* ボタン（送信、リセット） */
.c {
	font-size: 1.2rem;
}

.c .btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f29600;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
}

.c .btn:hover {
	background-color: #f29600;
}

.c input[type="submit"],
.c input[type="reset"],
.c input[type="button"] {
	padding: 12px 30px;
	font-size: 1.1rem;
	background-color: #cd0000;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin: 0 10px;
}

.c input[type="button"] {
	background-color: #f29600;
}

.c input[type="submit"]:hover,
.c input[type="reset"]:hover {
	background-color: #e08500;
}

/* 画面幅900px以上の追加指定 */
@media screen and (min-width: 900px) {
	.ta1 {
		max-width: 800px;
		color: #000;
	}

	.ta1 caption {
		padding: 5px 15px;
	}

	.ta1 th, .ta1 td {
		padding: 20px 15px;
	}

	.ta1 th {
		width: 30%;
	}

	.ta1 th[colspan="2"], .ta1 td[colspan="2"] {
		width: 100%;
	}

	.ws {
		width: 100%;
		display: inline;
	}

	.wl {
		height: 200px;
	}

	.ws, .wl {
		font-size: 1.3rem;
	}

	.ta1 td label {
		font-size: 1.2rem;
	}

	.c input[type="submit"],
	.c input[type="reset"],
	.c input[type="button"] {
		padding: 15px 40px;
		font-size: 1.2rem;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}
}

/* PAGE TOPボタン */
.pagetop-show {
	display: block;
}

.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: rgba(0, 0, 0, 0.3);
	width: 50px;
	line-height: 50px;
	color: #fff;
}

/* その他 */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.look {
	display: inline-block;
	padding: 0 10px;
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

/* 会社概要 */
.main_text {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 899px) {
	.main_text {
		font-size: 1.4rem;
	}

}

.main_text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.overview_txt {
	width: 65%;
	margin: 0 auto;
	padding: 2rem;
	font-size: 1.2rem;
}

@media screen and (max-width: 1209px) {
	.overview_txt {
		width: 90%;
	}
}

.overview_txt dl {
	width: auto;
	padding: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
	border: 2px solid #f29600;
	border-radius: 10px;
}

.overview_txt dt {
	width: 30%;
	text-align: right;
	padding-right: 1rem;
}

.overview_txt dd {
	width: 70%;
	text-align: left;
}

@media screen and (max-width: 899px) {
	.overview_txt {
		width: 100%;
		padding: 0;
		font-size: 1rem;
	}

	.overview_txt dl {
		padding: 0.5rem;
	}

	.overview_txt dt {
		width: 30%;
		padding-right: 0;
	}

	.overview_txt dd {
		width: 70%;
	}

}


/* MAP */
.map iframe {
	width: 100%;
	height: 31.25vw;
}

@media screen and (max-width: 899px) {
	.map iframe {
		height: auto;
		aspect-ratio: 1;
	}

}

/* ハウスメーカー */
.manufacturers {
	width: 100%;
}

.manufacturers h4 {
	width: 100%;
	text-align: center;
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	background-image: url('../images/manufacturers_title_bg.png');
	background-repeat: repeat-y;
	background-size: 100% auto;
	background-position: center;
	display: block;
	padding: 0;
	box-sizing: border-box;
	margin: 0 auto;
	line-height: 1.5;
	z-index: 1;
}

.manufacturers ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.manufacturers li {
	width: 23%;
	margin: 0.5%;
	padding: 0.5%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 5px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

@media screen and (max-width: 899px) {
	.manufacturers ul {
		margin: 0;
		padding: 0;
	}

	.manufacturers li {
		width: 49%;
	}

}

.manufacturers li:hover {
	border-color: #f29600;
}

.bg_c .text h4 {
	font-size: 1.2rem;
	color: #000;
	margin-top: -0.8rem;
}

/* チェックボックスのカスタムスタイル */
.ta1 td input[type="checkbox"] {
	-webkit-appearance: none;
	/* デフォルトスタイルをリセット（WebKit系ブラウザ用） */
	appearance: none;
	/* デフォルトスタイルをリセット */
	width: 1.3rem;
	height: 1.3rem;
	background: #fff;
	border: 1px solid #000;
	vertical-align: middle;
	position: relative;
	cursor: pointer;
}

/* チェックされた状態のスタイル */
.ta1 td input[type="checkbox"]:checked {
	background: #ffffff;
	/* チェックされても背景は白のまま */
}

/* チェックマークのカスタム（疑似要素で作成） */
.ta1 td input[type="checkbox"]:checked::after {
	content: "\f00c";
	/* Font Awesomeのチェックマークアイコン */
	font-family: "Font Awesome 6 Free";
	/* Font Awesomeを使用 */
	font-weight: 900;
	/* アイコンの太さ */
	color: #cd0000;
	/* チェックマークの色 */
	font-size: 1rem;
	/* チェックマークのサイズ（ボックスより少し小さめ） */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* 中央に配置 */
}

/* ラベルとの間隔調整 */
.ta1 td label {
	display: inline-block;
	margin: 5px 10px 5px 0;
	font-size: 1.2rem;
	vertical-align: middle;
	/* チェックボックスとラベルを垂直方向で中央揃え */
}

tr .form_chack label {
	min-width: 235px;
}

.tel_small {
	font-size: 0.9rem;
	color: #696a6a;
}


/*フォームSP用*/
@media screen and (max-width: 899px) {

	/* フォームのテーブルを縦並びにする */
	.ta1 tr {
		display: block;
		/* 行をブロック要素に */
		margin-bottom: 1rem;
		/* 行間の調整 */
	}

	.ta1 th,
	.ta1 td {
		display: block;
		/* セルをブロック要素に */
		width: 100%;
		/* 幅を100%に */
		text-align: left;
		/* テキストを左揃え */
		padding: 10px;
		padding-bottom: 0;
		/* パディングの調整 */
	}

	/* thの必須ラベルやコメントの調整 */
	.ta1 th span,
	.ta1 th small {
		display: inline-block;
		margin-left: 0.5rem;
	}

	.ta1 th span {
		padding: 0 8px;
	}

	/* チェックボックスのラベルを調整 */
	.ta1 td label {
		display: inline-block;
		width: auto;
		min-width: 0;
	}

	/* テキストエリアや入力欄の幅を調整 */
	.ws,
	.wl {
		width: 100%;
		box-sizing: border-box;
	}

	.wl {
		height: 300px;
	}

	/* ボタンの調整 */
	.c input[type="submit"],
	.c input[type="reset"] {
		width: 100%;
		margin: 10px 0;
	}
}



/*--------追加20250530スライドショー--------*/

#link11 {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.voice_slider {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.voice_list {
	width: 31%;
	margin: 0 10px;
	box-sizing: border-box;
}

.voice_img img {
	width: 100%;
	object-fit: cover;
}

/* SP表示用（899px以下） */
@media screen and (max-width: 899px) {
	.voice_list {
		width: 97%;
		/* 1枚表示にするため、幅を広く */
		margin: 0 5px;
		/* マージンを小さく調整 */
	}
}

/*--------PC/SP表示非表示--------*/
@media screen and (min-width: 900px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 899px) {
	.pc {
		display: none !important;
	}
}