<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@media print, screen and (min-width: 640px) {
/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ボディ */
body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* ヘッダー */
header {
  background-color: #e29b59;
  color: white;
  padding: 1rem 0;
}

.header-container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  height: 80px;
  margin: 0px;
}

.header-right {
  text-align: center;
}

header h1 {
  font-size: 1.8rem;
  color: #fff9c4;
}

nav {
  display: block;
  width: fit-content;
  margin: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  font-size: 19px;
  margin:0px 2rem 0px 0px;
}

nav ul li:last-of-type {
  margin: 0px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* セクション */
.section {
  width: 70%;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section p, .section ul {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.section ul {
  padding-left: 1rem;
}

.section ul li {
  list-style-type: disc;
  margin-left: 1rem;
}

.facility-button {
    display: block;
    margin: 1rem auto;
    text-align: center;
    padding: 0.7rem 1.2rem;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.facility-button:hover {
    background-color: #c87800;
}

#introduction img {
  display: block;
  width: 45%;
  margin: 0px auto 30px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.service-card {
  flex: 1 1 calc(50% - 1rem); /* 2列レイアウト */
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 65%;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

#services .services-attention {
  margin-top: 20px;
  font-size: 0.9rem;
}

#program div {
  justify-content: center;
}

#program .program-button {
  width: fit-content;
  display: block;
  margin: 0.5rem auto;
  padding: 0.5rem 1rem;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.access-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.map-wrap {
  width: 33%; /* ここに横幅を指定 */
}

.f-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

.f-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-text p {
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  background-color: #ffebb8;
  display: block;
  margin: 20px auto 30px;
  width: 80%;
  padding: 10px 0px;
}

/* 求人募集セクション */

.jobs-container {
  margin: 0 auto;
}

.job-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:center;
}

.section .job-list li {
  list-style: none;
  margin: 0 10px;
}

.job-item {
  background: #fff;
  text-align: center;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.job-item p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.job-button {
  display: block;
  margin: 0.5rem auto;
  padding: 0.5rem 1rem;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.job-button:hover {
  background-color: #c87800;
}

.job-card {
  flex: 1 1 calc(50% - 1rem); /* 2列レイアウト */
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.job-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.job-card&gt;.job-button {
  display: block;
  text-align: center;
  margin: auto;
}

.appeal-points-box {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin:0 auto 35px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  text-align: center;
  width: 90%;
}

.appeal-points-box h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.appeal-points-box h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 10px auto 0;
  border-radius: 2px;
}

.appeal-points-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.appeal-points-box ul li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(90% - 20px);
  max-width: calc(90% - 20px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  /* アイコンとテキストの配置を調整 */
  flex-direction: column; /* 内容を縦に並べる */
  align-items: flex-start; /* 左寄せ */
  min-width: 280px;
  font-size: 24px;
}

.appeal-points-box ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.appeal-points-box ul li i {
  color: #3498db;
  margin-right: 15px; /* メインテキストとアイコンの間隔 */
  margin-bottom: 10px; /* アイコンと補足説明の間隔 */
  font-size: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}

/* 補足説明のスタイル */
.appeal-points-box ul li small {
  display: block; /* 独立したブロック要素に */
  font-size: 14px; /* 小さめの文字サイズ */
  color: #666; /* 少し薄めの文字色 */
  margin-top: 8px; /* メインテキストとの間に少し余白 */
  line-height: 1.5;
}

/* アイコンとテキストの配置を再調整（Flexboxの入れ子構造） */
.appeal-points-box ul li .main-content {
  display: flex;
  align-items: flex-start;
}

.section .job-details {
  list-style: none;
  padding-left: 0;
  margin-left: 0%;
}

.section .job-details&gt;li {
  padding-left: 0;
  margin-left: 0%;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: first baseline;
}

.job-details li span {
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}

.job-details li strong {
  font-size: 1.15rem;
  color: #b30600;
}

.job-details .job-example li {
  font-size: 1.15rem;
  color: #b30600;
}

.job-details ul {
  margin-top: 0.3rem;
  list-style: disc;
}

.job-details ul li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.job-details ul li .kasanlist-a {
  color: #555;
  font-weight: normal;
  display: block;
}

.job-details p {
  margin-left:30px ;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

#job-branches .contact-text {
  width: 70%;
  margin: auto;
}

/* アコーディオンスタイル */
.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 非表示のチェックボックス */
.accordion-toggle {
  display: none;
}

/* アコーディオンヘッダー */
.accordion-header {
  background-color: #af5b4c;
  color: white;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  display: block;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #a06c45;
}

/* アコーディオンコンテンツ */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fff;
  padding: 0 1rem;
}

/* チェックが入った場合にコンテンツを表示 */
.accordion-toggle:checked + .accordion-header + .accordion-content {
  max-height:980px ; /* 適切な高さを設定 */
  padding: 1rem;
}

form label {
  display: block;
  margin-top: 0.5rem;
}

form input, form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

form button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

form button:hover {
  background-color: #45a049;
}


/* フッター */


footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer div div {
display: flex;
text-align: left;
margin-top: 30px;
}

footer div div ul {
width: 300px;
font-size: 0.9vw;
text-align: left;
}

footer div div ul a {
color: #fff;
}


}
</pre></body></html>