body {
	background-color: #f7fbfe;
	background-image: url('../images/illustration/brushed-alum-dark.png');
}


/* ロゴ画像 */
#logo {
	height: 250px;
    text-align: center;
    margin-top: 0;
	display: flex;
  	justify-content: center; /* 横方向中央 */
 	align-items: center;   
}

#logo img {
	margin-top: 20%;
    width: 120px;
    height: auto;
}

/* 会社概要タイトル */
.about-title {
    background: #333;
    padding: 1.5rem;
    margin: 0;
    font-size: 2rem;
    text-align: center;
    color: #fff;
}
.contact-form p {
    margin-top: 1.5rem; 
}

/* about.php company-profile style */
.company-profile {
    padding: 2rem; /* 余白を調整 */
  }
  
.company-profile table {
	border-collapse: separate; /* separateでセル同士を離せる */
	border-spacing: 0 10px; /* セルとセルの間に10pxの隙間 */
	width: 100%;
	margin: 20px 0;
	font-size: 16px;
	background: #fff; /* テーブル全体を白背景に */
	border-radius: 10px; /* 角丸 */
	box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* ふんわり影 */
	overflow: hidden; /* 丸みにあわせて内容も切る */
}

/* テーブルのセル共通 */
.company-profile th,
.company-profile td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #eee; /* 下だけ細い線 */
	background: #fff;
}

/* 見出しセルだけ */
.company-profile th {
	font-weight: bold;
	background: #f8f8f8; /* thだけちょっとグレー背景 */
	color: #333;
}

/* 最後の行のボーダー消す */
.company-profile tr:last-child th,
.company-profile tr:last-child td {
	border-bottom: none;
}

/* 資格リスト（ul） */
.company-profile ul {
	margin: 0;
	padding-left: 20px;
}

/* お問い合わせフォーム用 */
.contact-form {
    padding: 2rem;
}

.contact-form table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form th,
.contact-form td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background: #fff;
    vertical-align: top;
}

.contact-form th {
    font-weight: bold;
    background: #f8f8f8;
    color: #333;
    width: 25%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    background: #333;
    color: #fff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .btn:hover {
    opacity: 0.8;
}
