/* ===============================
company（会社概要ページ）スコープ付き
================================ */

#company {
 padding: 80px 0;
 background: #fff;
}

#company .company-header {
 display: flex;
 align-items: flex-end;
 flex-wrap: wrap;
 margin-bottom: 40px;
 justify-content: space-between;
}

#company .company-logo-title {
 display: flex;
 align-items: center;
 flex-direction: row;
}

@media screen and (min-width: 768px) {
 #company .company-logo-title {
  align-items: flex-start;
 }
}

#company .company-icon {
 width: 50px;
 height: auto;
 margin-right: 16px;
}

@media screen and (min-width: 768px) {
 #company .company-icon {
  width: 90px;
 }
}

#company .company-title-group {
 display: flex;
 flex-direction: column;
}

#company .company-title-group .en-title {
 font-size: 17px;
 font-weight: 600;
 margin: 0;
 color: #5c4534;
 letter-spacing: 0.05em;
}

#company .company-title-group .jp-title {
 font-size: 2.2em;
 color: #3a2d27;
}

@media screen and (min-width: 768px) {
 #company .company-title-group .jp-title {
  font-size: 3.2em;
 }
}

#company .company-lead {
 font-size: 16px;
 color: #3a2d27;
 line-height: 1.7;
}

/* メインビジュアル */
#company .company-mainvisual img {
 width: 100%;
 height: auto;
 margin-bottom: 80px;
}

/* 概要・コンセプト共通 */
#company .company-feature {
 margin-bottom: 80px;
}

#company .company-feature-title {
 color: #584c42;
 font-size: 1.75em;
 font-weight: bold;
 text-align: center;
 margin-bottom: 30px;
 position: relative;
}

@media screen and (min-width: 768px) {
 #company .company-feature-title {
  font-size: 2em;
 }
}

#company .company-title-underline {
 display: block;
 margin: 8px auto 0;
 width: 300px;
 height: auto;
}

/* 画像＋テキストレイアウト */
#company .company-feature-body {
 display: flex;
 flex-direction: row;
 align-items: flex-start;
 gap: 50px;
}

@media screen and (max-width: 768px) {
 #company .company-feature-body {
  flex-direction: column;
  gap: 30px;
 }
}

#company .company-image {
 flex: 1;
}

#company .company-image img {
 width: 100%;
 height: auto;
}

#company .company-text {
 flex: 1;
 font-size: 16px;
 line-height: 1.8;
 display: flex;
 flex-direction: column;
 gap: 20px;
}

@media screen and (min-width: 768px) {
 #company .company-text {
  font-size: 17px;
 }
}

#company .company-text p {
 width: 100%;
}

@media screen and (min-width: 768px) {
 #company .company-text p {
  width: 90%;
 }
}

/* 会社概要テーブル */
#company .company-table {
 width: 100%;
 border-collapse: collapse;
 margin: 40px 0;
 font-size: 16px;
 background-color: #fff;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#company .company-table th,
#company .company-table td {
 border: 1px solid #ddd;
 padding: 18px 20px;
 text-align: left;
 vertical-align: top;
}

#company .company-table th {
 background-color: #f1f1f1;
 color: #3a2d27;
 font-weight: bold;
 width: 30%;
 white-space: nowrap;
}

#company .company-table td {
 background-color: #ffffff;
 color: #3a2d27;
 line-height: 1.8;
}

#company .company-table td img {
 vertical-align: middle;
 margin-right: 6px;
 height: 18px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
 #company .company-table th,
 #company .company-table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
 }

 #company .company-table tr {
  display: block;
  margin-bottom: 10px;
  border: 1px solid #ddd;
 }

 #company .company-table th {
  padding: 12px 16px;
 }

 #company .company-table td {
  padding: 12px 16px;
 }
}

/* アクセスマップ仮 */
#company .company-map-placeholder {
 width: 100%;
 height: 400px;
 background-color: #f0f0f0;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 16px;
 color: #666;
}

/* メニューリンク */
#company .company-menu-nav {
 background: #fff;
 padding-bottom: 60px;
 text-align: center;
}

#company .company-menu-title {
 font-size: 2em;
 color: #51443b;
 margin-bottom: 30px;
}

#company .company-menu-list {
 display: flex;
 flex-wrap: nowrap;
 justify-content: space-between;
 gap: 20px;
 padding: 0;
 list-style: none;
}

#company .company-menu-list li a {
 display: inline-block;
 background: #51443b;
 color: #fff;
 font-size: 14px;
 padding: 10px 18px;
 border-radius: 2px;
 text-decoration: none;
 transition: background 0.3s;
 width: 270px;
 text-align: center;
}

#company .company-menu-list li a:hover {
 background: #77695e;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
 #company .company-menu-list {
  flex-direction: column;
  gap: 15px;
 }

 #company .company-menu-list li a {
  width: 100%;
  margin: 0 auto;
 }
}

/* ===============================
staff（スタッフ紹介ページ）スコープ付き
================================ */

#staff {
 padding: 80px 0;
 background: #fff;
}

#staff .staff-header {
 display: flex;
 align-items: flex-end;
 flex-wrap: wrap;
 justify-content: space-between;
 margin-bottom: 40px;
}

#staff .staff-logo-title {
 display: flex;
 align-items: center;
}

#staff .staff-icon {
 width: 90px;
 height: auto;
 margin-right: 16px;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
 #staff .staff-icon {
  width: 50px;
 }
}

#staff .staff-title-group .en-title {
 font-size: 17px;
 font-weight: 600;
 color: #5c4534;
 margin: 0;
 letter-spacing: 0.05em;
}

#staff .staff-title-group .jp-title {
 font-size: 3.2em;
 color: #3a2d27;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
 #staff .staff-title-group .jp-title {
  font-size: 2.2em;
 }
}

#staff .staff-lead {
 font-size: 16px;
 color: #3a2d27;
 line-height: 1.7;
}

#staff .staff-mainvisual {
 margin: 40px 0 60px;
}

#staff .staff-mainvisual img {
 width: 100%;
 height: auto;
}

#staff .staff-list {
 display: flex;
 flex-wrap: wrap;
 gap: 40px 3%;
 justify-content: center;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
 #staff .staff-list {
  flex-direction: column;
  gap: 30px;
 }
}

#staff .staff-card {
 width: 30%;
 display: flex;
 flex-direction: column;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
 #staff .staff-card {
  width: 100%;
 }
}

#staff .staff-photo {
 background-color: #5a4c42;
}

#staff .staff-photo img {
 width: 100%;
 height: auto;
}

#staff .staff-info {
 margin: 15px;
 width: 90%;
}

#staff .staff-name {
 font-weight: bold;
 color: #3a2d27;
 font-size: 15px;
 margin-bottom: 6px;
}

#staff .staff-comment {
 font-size: 15px;
 color: #3a2d27;
 line-height: 1.7;
}
#staff .staff-list.under-construction {
 padding: 60px 20px;
 text-align: center;
 background-color: #f9f9f9;
 border-radius: 10px;
}

#staff .coming-soon-box {
 max-width: 600px;
 margin: 0 auto;
}

#staff .coming-soon-text {
 font-size: 1.5rem;
 font-weight: bold;
 color: #444;
 margin-bottom: 10px;
}

#staff .coming-soon-subtext {
 font-size: 1.2rem;
 color: #888;
}

/* ===============================
recruit（採用情報ページ）スコープ付き
================================ */

#recruit {
 padding: 80px 0;
 background: #fff;
}
/* 会社概要テーブル */
#recruit .company-table {
 width: 100%;
 border-collapse: collapse;
 margin: 40px 0;
 font-size: 16px;
 background-color: #fff;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#recruit .company-table th,
#recruit .company-table td {
 border: 1px solid #ddd;
 padding: 18px 20px;
 text-align: left;
 vertical-align: top;
}

#recruit .company-table th {
 background-color: #f1f1f1;
 color: #3a2d27;
 font-weight: bold;
 width: 30%;
 white-space: nowrap;
}

#recruit .company-table td {
 background-color: #ffffff;
 color: #3a2d27;
 line-height: 1.8;
}

#recruit .company-table td img {
 vertical-align: middle;
 margin-right: 6px;
 height: 18px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
 #recruit .company-table th,
 #recruit .company-table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
 }

 #recruit .company-table tr {
  display: block;
  margin-bottom: 10px;
  border: 1px solid #ddd;
 }

 #recruit .company-table th {
  padding: 12px 16px;
 }

 #recruit .company-table td {
  padding: 12px 16px;
 }
}
/* --- ヘッダー --- */
#recruit .recruit-header {
 display: flex;
 align-items: flex-end;
 flex-wrap: wrap;
 justify-content: space-between;
 margin-bottom: 40px;
}

#recruit .recruit-logo-title {
 display: flex;
 align-items: center;
}

#recruit .recruit-icon {
 width: 50px;
 height: auto;
 margin-right: 16px;
}

#recruit .recruit-title-group .en-title {
 font-size: 17px;
 font-weight: 600;
 color: #5c4534;
 margin: 0;
 letter-spacing: 0.05em;
}

#recruit .recruit-title-group .jp-title {
 font-size: 2.2em;
 color: #3a2d27;
}

@media screen and (min-width: 768px) {
 #recruit .recruit-icon {
  width: 90px;
 }

 #recruit .recruit-title-group .jp-title {
  font-size: 3.2em;
 }
}

#recruit .recruit-lead {
 font-size: 16px;
 color: #3a2d27;
 line-height: 1.7;
}

/* --- メインビジュアル --- */
#recruit .recruit-mainvisual {
 margin: 40px 0 60px;
}

#recruit .recruit-mainvisual img {
 width: 100%;
 height: auto;
}

/* --- セクション --- */
#recruit .recruit-feature {
 margin-bottom: 80px;
}

#recruit .recruit-feature-title {
 color: #584c42;
 font-size: 1.8em;
 font-weight: bold;
 text-align: center;
 margin-bottom: 15px;
}

#recruit .recruit-title-underline {
 display: block;
 margin: 0 auto 40px;
 width: 300px;
 height: auto;
}

#recruit .recruit-feature-body {
 display: flex;
 flex-direction: row;
 align-items: flex-start;
 gap: 50px;
}

@media screen and (max-width: 768px) {
 #recruit .recruit-feature-body {
  flex-direction: column;
  gap: 30px;
 }
}

#recruit .feature-image {
 flex: 1;
}

#recruit .feature-image img {
 width: 100%;
 height: auto;
}

#recruit .feature-text {
 flex: 1;
 font-size: 16px;
 color: #3a2d27;
 line-height: 1.8;
 display: flex;
 flex-direction: column;
 gap: 20px;
}

@media screen and (min-width: 768px) {
 #recruit .feature-text {
  font-size: 17px;
 }
}

/* --- 応募フォーム --- */
#recruit .recruit-form-horizontal {
 max-width: 700px;
 margin: 0 auto;
 font-family: "Noto Sans JP", sans-serif;
}

#recruit .recruit-lead-text {
 text-align: center;
 font-size: 15px;
 color: #3a2d27;
 margin-bottom: 40px;
}

#recruit .form-row {
 display: flex;
 align-items: center;
 margin-bottom: 24px;
}

#recruit .form-row label {
 width: 180px;
 font-size: 15px;
 color: #3a2d27;
 margin-right: 20px;
 text-align: left;
 line-height: 1.5;
}
#recruit .contact-required {
 font-size: 13px;
 color: #b40000;
 margin-bottom: 30px;
 text-align: center;
}
#recruit .form-row input[type="text"],
#recruit .form-row input[type="email"],
#recruit .form-row input[type="tel"],
#recruit .form-row input[type="file"],
#recruit .form-row textarea {
 flex: 1;
 height: 42px;
 font-size: 15px;
 padding: 8px 12px;
 border: 1px solid #ccc;
 border-radius: 4px;
 background: #f8f8f8;
 box-sizing: border-box;
}

#recruit .form-row textarea {
 height: auto;
 resize: vertical;
}

#recruit .form-radio label {
 margin-right: 20px;
 font-size: 14px;
 color: #3a2d27;
 display: inline-block;
}

#recruit .form-row input[type="file"] {
 background: #fff;
 padding: 8px 10px;
 height: auto;
}

#recruit .form-submit {
 text-align: center;
 margin-top: 40px;
}

#recruit .form-submit button {
 background-color: #51443b;
 color: #fff;
 font-size: 15px;
 padding: 12px 36px;
 border: none;
 border-radius: 2px;
 cursor: pointer;
 transition: background-color 0.3s;
}

#recruit .form-submit button:hover {
 background-color: #77695e;
}

/* --- ラジオボタン --- */
#recruit .form-radio {
 display: flex;
 gap: 24px;
 flex-wrap: wrap;
}

#recruit .form-radio label {
 display: flex;
 align-items: center;
 gap: 6px;
 font-size: 14px;
 color: #3a2d27;
 white-space: nowrap;
}

#recruit .form-radio input[type="radio"] {
 margin: 0;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
 #recruit .form-row {
  flex-direction: column;
  align-items: flex-start;
 }

 #recruit .form-row label {
  width: 100%;
  margin-bottom: 6px;
 }

 #recruit .form-row input,
 #recruit .form-row textarea {
  width: 100%;
 }

 #recruit .form-radio {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
 }

 #recruit .form-radio label {
  width: auto;
  margin-right: 0;
 }
}

/* ===============================
privacy（プライバシーポリシーページ）スコープ付き
================================ */

#privacy {
 padding: 80px 0;
 background: #fff;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 1.8;
 color: #3a2d27;
}

/* --- ヘッダー --- */
#privacy .privacy-header {
 margin-bottom: 50px;
 text-align: center;
}

#privacy .privacy-title {
 font-size: 2.2em;
 margin-bottom: 10px;
 color: #3a2d27;
}

#privacy .privacy-lead {
 font-size: 15px;
}

/* --- 本文エリア --- */
#privacy .privacy-body h2 {
 font-size: 1.3em;
 margin-top: 40px;
 margin-bottom: 10px;
 color: #51443b;
}

#privacy .privacy-body p,
#privacy .privacy-body ul {
 margin-bottom: 20px;
 font-size: 15px;
}

#privacy .privacy-body ul {
 padding-left: 20px;
 list-style-type: disc;
}

#privacy .privacy-body a {
 color: #3a2d27;
 text-decoration: underline;
}

/* --- モバイル対応 --- */
@media screen and (max-width: 768px) {
 #privacy {
  padding: 60px 20px;
 }

 #privacy .privacy-title {
  font-size: 1.8em;
 }
}
/* ===============================
contact
================================ */
.contact-section02 {
 padding: 60px 0;
 font-family: "Noto Sans JP", sans-serif;
}
.contact-section02 .title-contact {
 padding-bottom: 30px;
}
.contact-section02 .contact-heading {
 font-size: 26px;
 text-align: center;
 margin-bottom: 10px;
}

.contact-section02 .contact-lead {
 text-align: center;
 margin-bottom: 30px;
}

.contact-section02 .contact-phone-box {
 background: #d9d3bd;
 padding: 30px;
 text-align: center;
 border: 1px solid #ccc;
 margin-bottom: 40px;
 display: flex;
 flex-direction: column;
 align-items: center;
}
.contact-section02 .container {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 20px;
}
.contact-section02 .container-img {
 display: flex;
 flex-direction: column;
 gap: 30px;
}
@media screen and (min-width: 768px) {
 .contact-section02 .container-img {
  display: flex;
  flex-direction: row;
  gap: 70px;
 }
}
.contact-section02 .phone-label {
 font-size: 16px;
 color: #fff;
 font-weight: bold;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .contact-section02 .phone-label {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
 }
}
@media screen and (min-width: 768px) {
 .contact-section02 .contact-method02 {
  text-align: center;
  display: flex;
  color: #fff;
  flex-direction: column;
  align-items: center;
  gap: 20px;
 }
}
.contact-section02 .contact-method02 {
 text-align: center;
 display: flex;
 color: #fff;
 flex-direction: column;
 align-items: center;
 gap: 5px;
}
.contact-section02 .phone-number {
 font-size: 24px;
 color: #4b703e;
 letter-spacing: 2px;
 font-weight: bold;
}

.contact-section02 .phone-hours {
 font-size: 15px;
 color: #fff;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .contact-section02 .phone-hours {
  font-size: 18px;
  color: #fff;
 }
}
.contact-section02 .contact-divider {
 margin: 40px 0;
 text-align: center;
}

.contact-section02 .contact-instruction {
 font-size: 14px;
 margin-bottom: 10px;
 text-align: center;
}

.contact-section02 .contact-required {
 font-size: 13px;
 color: #b40000;
 margin-bottom: 30px;
 text-align: center;
}

.contact-section02 .contact-form {
 max-width: 720px;
 margin: 0 auto;
}

.contact-section02 .form-group {
 margin-bottom: 25px;
}

.contact-section02 .form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: bold;
}

.contact-section02 .contact-form input[type="text"],
.contact-section02 .contact-form input[type="tel"],
.contact-section02 .contact-form input[type="email"],
.contact-section02 .contact-form select,
.contact-section02 .contact-form textarea {
 width: 100%;
 padding: 10px;
 border: 1px solid #bbb;
 font-size: 14px;
 box-sizing: border-box;
}

.contact-section02 .checkbox-group label {
 display: block;
 margin-bottom: 6px;
}

.contact-section02 .consent label {
 font-size: 14px;
}

.contact-section02 .center {
 text-align: center;
}

.contact-section02 .submit-btn {
 padding: 12px 30px;
 background-color: #7a5340;
 color: #fff;
 font-size: 16px;
 border: none;
 border-radius: 4px;
 transition: background-color 0.3s ease;
}

.contact-section02 .submit-btn:hover {
 background-color: #5c4030;
}
#isisdm {
 padding: 80px 0;
 background: #fff;
}

#isisdm .dm-list ul {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 24px 32px;
 padding-left: 0;
 margin: 0;
 list-style: none;
 font-size: 16px;
 line-height: 1.8;
}

#isisdm .dm-list li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 flex-direction: column;
 background-color: #f9f8f6;
 border: 1px solid #e5e0da;
 border-radius: 8px;
 padding: 20px;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#isisdm .dm-list li:hover {
 background-color: #fff8f0;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#isisdm .dm-date {
 font-weight: bold;
 color: #51443b;
 white-space: nowrap;
 font-size: 14px;
 border-bottom: 1px dotted #ccc;
 padding-bottom: 4px;
}

#isisdm .dm-list a {
 color: #333;
 font-weight: 500;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 transition: color 0.3s ease;
}

#isisdm .dm-list a:hover {
 color: #b37b4e;
 text-decoration: underline;
}
