@charset "utf-8";
/* CSS Document */

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 16px;
}

body  {
	background-color: #FFFFFF;
	background-attachment: fixed;
	z-index: 1;
	font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN","Yu Gothic", sans-serif;
	color: #664a4a;
	font-weight: 400;
	font-size: 1rem;
	overflow-x: hidden;
	letter-spacing: 0.03em;
	line-height: 1.7;
	padding-top: 76px; /* headerの高さ分 */
}

#wrapper {
    overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

h1 {
	font-size: 1.5rem;
} 
h2 {
	font-size: 1.75rem;
}
h3 {
	font-size: 1.25rem;
}


/*テキスト　---------------------------------*/

/* マゼンタ */
.txt-magenta {
  color: #D6007D;   /* 鮮やかすぎない医療系マゼンタ */
  font-weight: bold;
}

/* 青 */
.txt-blue {
  color: #0074C8;   /* 目に優しい深めの青 */
  font-weight: bold;
}

/* 青緑 */
.txt-bluegreen {
  color: #6abccb; 
}

/* 黒 */
.txt-bold {
  font-weight: bold;
}

/* 黒 */
.txt-recruit {
	padding:100px 0;
	text-align: center;
}

/* header　--------------------------------- */
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #ddd;	
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo small {
	font-size: 12px;
	display: block;
}

.logo h1 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.logo a{
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

/* メニュー設定---------------------------*/

.menu-icon {
	width: 30px;
	height: 30px;
 	position: fixed;
 	top: 20px;
 	right: 15px;
 	cursor: pointer;
 	z-index: 3;
 	display: inline-block;
}

.menu-icon span {
 	display: block;
 	height: 2px;
 	margin: 8px 0;
 	background: #333;
 	border-radius: 2px;
 	transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
 	transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
 	opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
 	transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
 	position: fixed;
 	inset: 0;
 	background: rgba(0,0,0,0.5);
 	opacity: 0;
 	pointer-events: none;
 	transition: 0.4s;
 	z-index: 1;
}

#menu-toggle:checked ~ .overlay {
 	opacity: 1;
 	pointer-events: auto;
}

/* メニュー本体 */
.menu {
 	position: fixed;
 	top: 74px;
 	right: -100%;
 	width: 100%;
 	height: 100%;
 	background: #6b5757;
 	transition: left 0.4s ease;
 	z-index: 2;
}

#menu-toggle:checked ~ .menu {
 	right: 0; 
}

.menu ul {
 	list-style: none;
 	padding: 20px 20px;
}

.menu li {
	padding: 15px;
	border-bottom:1px solid #fff;
}

.menu a {
 	text-decoration: none;
 	color: #fff;
 	transition: color 0.3s;
}

.menu a:hover {
 	color: #FFD4C1;
}



/*トップイメージ --------------------------*/

.hero{
	position:relative;
	height:55vh;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	overflow: hidden;
    background-color: #fff;
	
}

.hero::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url("../img/main.jpg") center/cover no-repeat;
	filter: brightness(1.2) opacity(0.8);
	z-index: 1;
}

.hero-title{
	position:relative;
	z-index: 2;
	color:#6f4b3e;
	font-size:28px;
	font-weight:500;
	letter-spacing:0.08em;
	text-shadow: 0 2px 10px rgba(111, 75, 62, 0.3);
	transform: translateY(-30px);
}


/*事業所一覧　------------------------------*/
.stations {
	background-image: url("../img/top-back.jpg");
	/*background: #feddd2;*/
	padding: 40px 0;
}

.station-grid {
	display: grid;
	gap: 30px;
}

.card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	text-decoration: none;
	color: inherit; 
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
	border: 2px solid #ffffff; /* メインの白枠 */
    outline: 1px solid rgba(0,0,0,0.05); /* ごく薄いグレーの線を外側に */
    outline-offset: -1px;
}

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

.card-photo {
	height: 170px;
	background: #ddd;
	overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}


.card-body {
	padding: 15px;
	text-align: center;
}

.card-sub {
	font-size: 16px;
	line-height: 1.2;
	font-weight: bold;
}

.card h3 {
	margin-bottom: 5px;
	font-size: 18px;
}

.detail {
	margin-top: 8px;
	padding: 6px 16px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	display: inline-block;
	transition: 0.2s;
	border: 1px solid #333;
	border-radius: 20px;
}


.card:hover .detail {
	background: #FF856E;
	color: #fff;
	border-color: #FF856E;
}

.detail::after {
  content: "→";
  margin-left: 6px;
  transition: 0.3s;
}

.card:hover .detail::after {
	margin-left: 10px;
}



/*メッセージ----------------------*/
.message{
	width: 100%;
	padding:40px 20px;
	background:#F6F5F1;
}

/* PC中央寄せ */
.m-container{
	max-width:1000px;
	margin:auto;
}

/* 説明カード */
.message-card{
	background:#fff;
	border-radius:25px;
	padding:30px 20px;
	text-align:center;
}

/* タイトル */
.message-title{
	font-size:14px;
	line-height:1.8;
	font-weight:500;
	color:#664a4a;
}

/* 区切り線 */
.message-line{
	width:100%;
	height:2px;
	background:#FFD4C1;
	margin:20px 0;
}

/* 説明文 */
.message-text{
	font-size:13px;
	line-height:1.8;
	color:#555;
	text-align:left;
}

/* 採用ボックス-------------------- */
.recruit-area{
  text-align:center;
  margin-top:50px;
}

.recruit-box{
	margin-top:40px;
	padding:20px 30px;
	border-radius:20px;
	display:flex;
	justify-content:center;
	align-items:center;
	text-decoration:none;
	color:#664a4a;
	font-weight:600;
    background:linear-gradient(90deg,#fda085,#f6d365);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.recruit-box span{
 	font-size:16px;
}

.recruit-box:hover{
 	opacity:0.9;
 	transform:translateY(-3px);
 	transition:0.3s;
}

.recruit-micro{
	color:#6b5757;
	margin-bottom:12px;
	letter-spacing:0.05em;
}

.recruit-micro span{
 	font-size:13px;
	font-weight: bold;
}

.recruit-box{
  margin-top:0;
}


/* お知らせ一覧メニュー -----------------------*/
.news{
  width:100%;
  padding:60px 20px;
}

.news-inner{
  max-width:1000px;
  margin:auto;
}

/* タイトル */

.news-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}

.news-title h2{
  color:#664a4a;
  font-size:20px;
  font-weight:600;
  letter-spacing:0.1em;
}

.line{
  flex:1;
  height:1px;
  background:#664a4a;
}

/* ニュースリスト */

.news-list{
  list-style:none;
  padding:0;
  margin:0;
  border-top:1px solid #ddd;
}

.news-list li{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #ddd;
}

/* 日付 */

.news-date{
  color:#6b5757;
  font-size:14px;
}

/* タグ */

.news-tag{
  background:#FF856E;
  color:white;
  font-size:12px;
  padding:0px 12px;
  border-radius:15px;
}

/* テキスト */

.news-text{
  color:#6b5757;
  text-decoration:none;
  font-size:14px;
}

/* ボタン */

.news-more{
  text-align:right;
  margin-top:30px;
}

.news-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:5px 22px;
  background:#FF856E;
  color:white;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
}

/* 丸矢印 */

.arrow{
  width:20px;
  height:20px;
  border-radius:50%;
  background:white;
  position:relative;
}

.arrow::after{
  content:"";
  position:absolute;
  top:50%;
  left:45%;
  width:5px;
  height:5px;
  border-top:2px solid #f19280;
  border-right:2px solid #f19280;
  transform:translate(-50%,-50%) rotate(45deg);
}


/* 一覧へ戻るボタン */
.news-back-wrap {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.news-back-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	padding: 20px 0;
	border-radius: 40px;
	background: #f5f5f5;
	color: #333;
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	gap: 12px;
}

.back-icon {
	font-size: 1.2rem;
}



/*よくある質問------------------------*/

.qa{
	width:100%;
	padding:60px 20px 30px;
	background-color: #FFF5EE;
}

.qa-inner{
	max-width:1000px;
	margin:auto;
}

/* タイトル */

.qa-title{
  text-align:center;
  color:#6b5757;
  font-size:22px;
  margin-bottom:40px;
}

/* QAボックス */

.qa-item{
  border:2px solid #FDAE9E;
  border-radius:15px;
  overflow:hidden;
  margin-bottom:45px;
}

/* 質問 */

.qa-question{
	display:flex;
	gap:15px;
	align-items:flex-start;
	background:#FDAE9E;
	padding:10px 20px;
	color:#6b5757;
	font-weight: 500;
}

.qa-question span{
	font-size: 16px;
	line-height: 1.2;
}

/* 回答 */

.qa-answer{
  display:flex;
  gap:15px;
  align-items:flex-start;
  background:white;
  padding:20px;
  color:#6b5757;
  border-top:2px solid #FDAE9E;
  line-height:1.8;
}

.qa-answer span{
	font-size: 14px;
	line-height: 1.8;
}

.qa-answer strong {
  font-size: inherit; 
  font-weight: 700;
}	

/* Q A アイコン */

.qa-icon{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  font-weight:700;
  font-size:14px;
  flex-shrink:0;
}

/* Q */
.qa-icon.q{
  background:white;
  color:#FDAE9E;
  border:2px solid white;
}

/* A */
.qa-icon.a{
  background:#FDAE9E;
  color:white;
}



/*サブページ（各事業所）------------------------------*/
.sub-hero {
  background: #f5f5f5;
  padding: 30px 15px;
}

.sub-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.area {
  font-size: 16px;
  color: #666;
	font-weight: bold;
}

.title {
  font-size: 22px;
  margin-bottom: 15px;
}

.address {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
}

.sub-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* 特徴 */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-list span {
  background: #F4B8A8;
  padding: 5px 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
	font-weight: bold;
}

/*サブページメッセージ-------------------------*/
.sub_message{
	width: 100%;
	padding: 40px 20px;
	background-image: url("../img/top-back.jpg");
	/*background: #FFD4C1;*/
}

.subm-container{
	max-width:1000px;
	margin:auto;
}

/* 説明カード */
.submessage-card{
	background:#fff;
	border-radius:25px;
	padding:30px;
	text-align:center;
}

/* Messageラベル */
.submessage-label {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* タイトル */
.submessage-title{
	font-size: 16px;
	line-height:1.8;
	font-weight:500;
	color:#664a4a;
}

/* 区切り線 */
.submessage-line{
	width:100%;
	height:2px;
	background:#FFD4C1;
	margin:20px 0;
}

/* 説明文 */
.submessage-text{
	font-size:13px;
	line-height:1.8;
	color:#555;
	text-align:left;
}

/* 管理者 */
.submessage-author {
	margin-top: 20px;
  text-align: right;
  font-size: 13px;
  color: #666;
}

/*共通タイトル-------------------------------*/
.co-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}

.co-title h2{
  color:#664a4a;
  font-size:20px;
  font-weight:600;
  letter-spacing:0.1em;
}

.co-line{
  flex:1;
  height:1px;
  background:#664a4a;
}


/*サービス内容------------------------------*/
.service {
  padding: 40px 20px;
  background: #fff;
}

.service-inner{
  max-width:1000px;
  margin:auto;
}

/* カード */
.service-card {
  background: #fff;
  border: 2px solid #FFD4C1;
	margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.6;
}

/* ●マーク */
.service-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #6b5757;
  font-size: 12px;
  top: 2px;
}

/* 画像 */
.service-image img {
  width: 100%;
  height: auto;
  display: block;
}


/*対応疾患----------------------------------*/

.pill-section {
  background: #FFF5EE;
  padding: 40px 20px;
}

.pill-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* グリッド */
.pill-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  padding: 0 ;
  margin: 0;
}

/* ピル */
.pill-list li {
  position: relative;
  background: #ffc3b7;
  border-radius: 999px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-list .text {
  text-align: center;
  width: 100%;
  pointer-events: none;
}

/* アイコン（白背景＋色付き中身） */
.icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 14px;
  height: 14px;
  fill: #e6b9a7;
}

/* 注釈 */
.pill-note {
margin-top: 20px;
  font-size: 13px;
  color: #666;
  text-align: right;
}


/*概要--------------------------------------*/
.facility {
  background: #fff;
  padding: 40px 20px;
}

.facility-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* テーブル（モバイル） */
.facility-table dl {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.row {
  border-bottom: 1px solid #ddd;
  padding: 14px 16px;
}

.row:last-child {
  border-bottom: none;
}

dt {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

dd {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* 地図 */
.facility-map {
  margin-top: 30px;
}

.facility-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}


/*サブページタイトル(共通ページ)------------------------*/
.subpage-hero {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
	background-image: url("../img/title_back.jpg");
  /*background: #eee;  背景写真に変更可 */
}

.subpage-hero h1 {
  font-size: 22px;
  font-weight: 600;
}

.subpage-intro {
  padding: 30px 20px;
  text-align: center;
}

.subpage-intro p {
  font-size: 14px;
  color: #666;
}

/*ご利用の流れ------------------------*/
.flow-steps {
  padding: 0 20px 60px;
}


.flow-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 2px solid #f3b7a8;
  border-radius: 14px;
  background: #fff;
}


.flow-illustration {
  width: 80px; 
  height: 80px; 
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-bottom: 10px; 
}

/* --- 各ステップのイラスト画像を指定 --- */
.icon-01 {
  background-image: url("../img/illust04.jpg"); 
}

.icon-02 {
  background-image: url("../img/illust05.jpg");
}

.icon-03 {
  background-image: url("../img/illust06.jpg");
}

.icon-04 {
  background-image: url("../img/illust07.jpg");
}

.flow-text {
  width: 100%;
}

.flow-text h2 {
  font-size: 16px;
  margin: 0 0 8px;
}

.flow-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}


.flow-arrow {
  width: 0;
  height: 0;
  margin: 18px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #f3b7a8;
}


/*重要事項説明書-------------------------*/

.banner-wrapper {
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto; 
  background-color: #bc9f89; 
        }

.banner-container {
  width: 100%;
  padding: 30px 20px; /* 上下に余白を持たせて高さを確保 */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* ボタン要素（白いボックス） */
.pdf-button {
    background-color: #ffffff;
    width: 100%;
    max-width: 340px; /* モバイルでのほどよい幅 */
    height: 60px;
    
    /* リンクの装飾をリセット */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    border-radius: 10px;
}

/* ボタン内のテキスト */
.pdf-button span {
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* モバイルでのタップ時 / PCでのホバー時 */
.pdf-button:hover, 
.pdf-button:active {
    background-color: #f5f5f5; /* 押した感が出るように少しグレーに */
    opacity: 0.9;
}

/* アイコンなどを追加したい場合（任意） */
.pdf-button::after {
    content: "（PDF）"; /* 形式を明示するのは親切な設計です */
    font-size: 10px;
    margin-left: 5px;
    color: #999;
}


/*採用情報---------------------------------*/
/* カード全体のコンテナ */
.job-container {
    max-width: 1000px;
    margin: 0 auto;
	padding-bottom: 40px;
}

/* 募集カードのスタイル */
.job-card {
    background: #fff;
    border-radius: 20px; /* 角丸 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 柔らかい影 */
	margin: 0 15px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column; /* モバイルでは縦並び */
    align-items: flex-start;
    gap: 20px;
	border: solid 1px #ff856e;
}

/* 勤務地タイトル */
.station-name {
    font-size: 1.1rem;
    font-weight: normal;
    margin: 0 0 10px 0;
    color: #555;
}

/* 募集要項リスト */
.job-list {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
}

.job-item {
    margin-bottom: 2px;
}

/* ボタンのスタイル */
.entry-button {
    display: inline-block;
    background-color: #ff856e; 
    color: #fff;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 50px; /* カプセル型 */
    font-size: 0.95rem;
    transition: opacity 0.3s;
    text-align: center;
    width: 100%; /* モバイルでは幅いっぱい */
    box-sizing: border-box;
}

.entry-button:hover {
    opacity: 0.8;
}

/*お知らせページ-----------------------------*/
.notice-container {
  background: #fff;
  padding: 30px 30px;
  border: 1px solid #a0522d;
  max-width: 1000px; /* PCでの最大幅 */
  margin: 0 auto;
}

/* ヘッダー・メタ情報 */
.notice-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.notice-meta time {
  color: #666;
  letter-spacing: 0.05em;
}

.category {
  background-color: #FF856E; 
  color: #fff;
  padding: 2px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.notice-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.divider {
  border: 0;
  border-top: 1px solid #a0522d;
  margin: 20px 0 30px 0;
}

/* 本文 */
.notice-body p {
  margin-bottom: 20px;
  font-size: 15px;
}

.notice-box {
  margin: 30px 0;
}

/* フッター（リンク） */
.notice-footer {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.notice-footer a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.notice-footer a:hover {
  opacity: 0.7;
}

.back-to-list {
  text-decoration: underline !important;
}




/*問い合わせ--------------------------------*/	
.contact {
  background: #f5f5f5;
  padding: 40px 20px;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 横線 */
.contact-title::before,
.contact-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #ccc;
}

.contact-title::before { left: 0; }
.contact-title::after { right: 0; }

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column; /* モバイル縦 */
  gap: 10px;
}

/* 左側 */
.contact-info {
  text-align: center;
}

.area {
  display: block;
  font-size: 12px;
  color: #888;
}

.name {
  font-size: 16px;
  font-weight: 500;
}

/* TEL */
.contact-tel {
  text-align: center;
}

.contact-tel a {
  display: inline-block;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}



/*フッター----------------------------------*/
.contact-footer{
  width:100%;
  background:#fff;
	border-top: solid 1px #ffdbdb;
}

.footer-inner{
  max-width:1000px;
  margin:auto;
	padding:50px 20px 40px;
}

.footer-inner2{
  margin:auto;
	width: 100%;
	padding: 5px 0; 
	background: #FDAE9E;
	border-top: #fff solid 1px;
}


/* カード */

.facility-list{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.facility-card{
  border:1px solid #a0522d;
  border-radius:15px;
  padding:22px;
  text-align:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
	background-color: #fff;
}

/* 都市 */

.facility-city{
  font-size:14px;
  color:#FDAE9E;
  font-weight:600;
  margin-bottom:6px;
}

/* 施設名 */

.facility-name{
  font-size:18px;
	font-weight: 500;
	line-height: 1.4;
  color:#6b5757;
  margin-bottom:10px;
}

/* 電話 */

.facility-tel{
  color:#6b5757;
}

.facility-tel a{
	display:inline-block;
	margin-top:6px;
	padding:3px 20px;
	border:1px solid #FDAE9E;
	border-radius:30px;
	color:#6b5757;
	text-decoration:none;
	font-size:23px;
	min-width:250px;
	font-weight: 500;
}


/*共通*/
.footer-links{
  list-style:none;
  padding:0;
  margin:0;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-links li{
  font-size:14px;
	width:100%;
  text-align:center;
  padding:10px 0;
	border-bottom:1px solid rgba(107,87,87,0.2);
}

.footer-links li:last-child{
  border-bottom:none;
}

.footer-links a{
  color:#6b5757;
  text-decoration:none;
}

	
.footer-links a:hover{
  opacity:0.7;
}	


/* コピーライト */
.footer-copy {
	background: #fff;
	padding: 12px 0;
	text-align: center;
	font-size: 0.85rem;
	color: #555;
	border-radius: 10px;
}



/*プライバシーポリシー------------------------*/

.policy-section {
 	padding: 40px 20px;
}

/* ボックス本体（モバイル → 100%　PC → max-widthで広め） */
.policy-container {
 	width: 100%;
 	max-width: 1000px; /* PC時に自然に広がる幅 */
 	margin: 0 auto;
 	background: #fff;
 	padding: 40px 30px;
 	border-radius: 12px;
 	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	box-sizing: border-box;	
}

.policy-content p {
  	line-height: 1.7;
 	font-size: 0.95rem;
 	color: #444;
 	margin-bottom: 30px;
}

.policy-date{
  text-align:right;
  margin-top:40px;
  line-height:1.8;
  font-size:14px;
  color:#6b5757;
}


/*ページスクロール-----------------*/

.pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(107,87,87); /* 黒の50%透過 */
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 60px;
    border-radius: 50px; /* 角丸 */
    text-decoration: none;
    display: none; /* 最初は非表示 */
    transition: opacity 0.3s ease;
    z-index: 9999;
}

/* スクロールしたら表示 */
.pagetop.active {
    display: block;
    opacity: 1;
}



/* -------------------------------------------- */
/* ▼タブレット用デザインとして付け足すデザイン */
/* -------------------------------------------- */

@media (min-width: 768px) {
	
.logo h1 {
    font-size: 24px;
  }

.hero{
  height:70vh;
}

.hero-title{
  font-size:44px;
}

.station-grid {
    grid-template-columns: repeat(2, 1fr);
  }

	

/*メッセージ-----------------------------------*/	
.message-card{
  padding:40px;
}

.message-title{
  font-size:22px;
	line-height: 1.5;
}

.message-text{
  font-size:16px;
}

.recruit-box span{
 	font-size:18px;
}

	
/*お知らせ-----------------------------------*/
	
.news-title h2{
  font-size:24px;
}

.news-text{
  font-size:16px;
}

.news-list li{
  gap:20px;
}


/*よくある質問-------------------------------*/
.qa{
  padding:80px 40px 20px;
}

.qa-title{
  font-size:26px;
}
	
.qa-item{
  margin-bottom:35px;
}

.qa-question,
.qa-answer{
  padding:15px 30px;
}
	
.qa-question span{
	font-size: 18px;
	line-height: 1.2;
}
	
.qa-answer span{
	font-size: 16px;
	line-height: 2;
}

/*サブページ（事業所）------------------------------*/	
.sub-hero{
    padding: 60px 20px;
  }

.sub-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    align-items: start;
  }

  /* 左側まとめる */
.area,
.title,
.address {
    grid-column: 1;
  }

  /* 右に画像 */
.sub-hero-image {
    grid-column: 2;
    grid-row: 1 / 5;
  }

.area {
    margin: 0;
	font-size: 20px;
  }

.title {
    margin: 5px 0;
    line-height: 1.3;
	  font-size: 32px;
  }

.address {
    margin: 5px 0 10px;
	  font-size: 16px;
  }

/* 特徴 */
.feature-list {
  gap: 15px;
}

.feature-list span {
  padding: 10px 10px;
  font-size: 16px;
}
	
	
/*サブメッセージ----------------------------*/
.submessage-section {
    padding: 80px 20px;
  }

.submessage-inner {
    padding: 40px 60px;
  }
	
/* 説明カード */
.submessage-card{
	border-radius:25px;
	padding:30px 40px;
	text-align:center;
}

/* 区切り線 */
.submessage-line{
	margin: 10px 0 20px;
}	
	
.submessage-title {
    font-size: 22px;
  }

.submessage-text {
    font-size: 15px;
  }
	

/*共通タイトル-----------------------------------*/
.co-title h2{
  font-size:24px;
}

.co-text{
  font-size:16px;
}

.co-list li{
  gap:20px;
}	
	
	
/*サービス内容-------------------------------*/
.service-card {
    flex-direction: row;
    align-items: stretch;
  }
.service-content {
    width: 50%;
    padding: 40px;
  }
.service-image {
    width: 50%;
  }
.service-image img {
    height: 100%;
    object-fit: cover;
  }
	

/*対応疾患----------------------------------*/
  .pill-list {
    grid-template-columns: repeat(2, 1fr);
  }	
	

/*施設概要----------------------------------*/
	  .facility {
    padding: 80px 20px 40px;
  }


  /* テーブルを横並び風に */
  .row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 16px 20px;
  }

  dt {
    margin-bottom: 0;
    font-size: 16px;
    color: #555;
  }

  dd {
    font-size: 16px;
  }

  /* 地図サイズ */
  .facility-map iframe {
    height: 400px;
  }
	
/*採用情報--------------------*/
.job-card {
    /* FlexboxからGridへ変更 */
    display: grid;
    grid-template-columns: 1fr auto; /* 左カラムは残り、右カラムは自動 */
    grid-template-areas: "info button";
    justify-content: stretch;
    align-items: start; /* デフォルトは上揃え */
    gap: 20px 40px; /* 行間と列間を個別に設定 */
    padding: 40px 50px;
}

.job-info {
    grid-area: info;
    align-self: start; /* テキストは上揃え */
}

.entry-button {
    grid-area: button;
    width: auto;
    min-width: 200px;
    /* エントリーボタンをカードの下揃えにする */
    align-self: flex-end;
 }

.station-name {
    font-size: 1.5rem;
}

/*利用の流れ--------------------------------*/
	 .flow-hero {
    height: 260px;
  }

  .flow-hero h1 {
    font-size: 28px;
  }


  .flow-intro {
    padding: 50px 20px;
  }

  .flow-intro p {
    font-size: 15px;
  }


  .flow-steps {
    max-width: 900px;
    margin: auto;
  }


.flow-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left; 
    padding: 30px; 
    gap: 25px; 
  }


.flow-illustration {
    width: 100px; 
    height: 100px;
    margin-bottom: 0; 
  }


  .flow-text h2 {
    font-size: 18px;
  }

  .flow-text p {
    font-size: 14px;
  }

	
/*お知らせページ----------------------------------*/
.notice-container {
	margin: 50px auto 0;
   padding: 60px 80px; /* PCでは余白を広く */
  }
  
.notice-title {
   font-size: 1.8rem;
  }
	

/*重要事項説明書-------------------------*/

.banner-wrapper {
  margin: 0 auto 50px; 
        }	
	
	
/*お問合せ----------------------------------*/
.contact {
    padding: 80px 20px;
}

.footer-inner{
	padding:50px 20px 20px;
}	
	
.contact-card {
    flex-direction: row;
    justify-content: center;
    align-items: center;
	border-radius: 14px;
    padding: 20px 50px;
	gap:40px;
}

.contact-info {
    text-align: left;
}

.contact-tel {
    text-align: right;
}	
	
.area {
  font-size: 12px;
}

.name {
	letter-spacing: 0.05em;
	font-size: 23px;
}

.contact-tel a {
	margin-top: 12px;
 	letter-spacing: 0.05em;
	font-size: 28px;
}	
	
/*フッター----------------------------------*/	
.facility-list{
  grid-template-columns:1fr 1fr;
}
	
.facility-tel a{
	padding:3px 15px;
	font-size:22px;
	min-width:250px;
}

.facility-name{
  font-size:20px;
}
	
/*フッター共通*/
.footer-inner2{
	margin-top: 0px;
}	
	
	
  .footer-links{
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
  }
	
  .footer-links li{
    border-bottom:none;!important; 
    width:auto;
    padding:0;
  }	
	
  /* 区切り線「｜」 */

  .footer-links li:not(:last-child)::after{
    content:"｜";
    margin-left:20px;
    color:#6b5757;
  }


	
/*プライバシーポリシー-----------------------*/
.policy-section {
 	padding: 60px 20px;
}

.policy-container {
 	padding: 50px 60px;
}
	
.policy-content p {
 	font-size: 1.1rem;
}
	

/*ページスクロール-----------------*/

.pagetop {
    width: 80px;
    height: 80px;
    font-size: 30px;
    line-height: 75px;
}
}
	
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */

@media (min-width: 1025px) {
  /* ハンバーガー非表示 */
.menu-icon {
    display: none;
}

#menu-toggle {
    display: none; /* チェックボックス消す */
}		

.menu {
	position: static; 
 	width: auto;
    height: auto;
    box-shadow: none;
    background: none;
    transition: none;
}

.menu ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0;
}

.menu a {
	color: #333;
	font-size: 1rem;
	position: relative;
	top: 15px;
}
	
.overlay {
    display: none;
}
	
	
.station-grid {
    grid-template-columns: repeat(4, 1fr);
  }

.hero h2 {
    font-size: 34px;
  }
	
/*message---------------------------*/
.message-info{
	padding:80px 20px;
}

.message-title{
  font-size:24px;
}

.message-text{
  max-width:850px;
  margin:auto;
}

/*採用情報(TOP)---------------------------*/
.recruit-box{
	padding:30px 30px;
}	
	
.recruit-box span{
 	font-size:24px;
}	

.recruit-micro span{
	font-size:16px;
	font-weight: bold;
}	

	
/*対応疾患----------------------------------*/
  .pill-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 40px;
  }

  .pill-list li {
    padding: 16px 20px;
    font-size: 15px;
  }	

/* 注釈 */
.pill-note {
	margin-top: 20px;
	font-size: 14px;
	color: #666;
	text-align: right;
}

	
/*フッター----------------------------*/
.footer-inner{
	padding:50px 0px;
}
	
.facility-list{
  grid-template-columns:repeat(4,1fr);
}

.facility-tel a{
	display:inline-block;
	margin-top:6px;
	padding:3px 15px;
	font-size:18px;
	min-width:180px;
	font-weight: 500;
}	

.facility-name{
  font-size:18px;
}	
	
.footer-heading h2{
  font-size:26px;
}
	
}