/* ==========================================================================
   リセット
============================================================================= */
*,
*::before,
*::after{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
  touch-action: manipulation; 
}
body,
h1,h2,h3,h4,h5,h6,
p,
ul,ol,
dl,dt{
  margin:0;
  padding:0;
}
li{
  list-style:none;
}
fieldset,
img{
  border:0;
}
table{
  border-collapse:collapse;
}
button,
input,
textarea,
select{
  font:inherit;
  color:inherit;
}
button{
  appearance:none;
  -webkit-appearance:none;
  border:none;
  background:none;
  padding:0;
  margin:0;
  cursor:pointer;
}
a{
  color:inherit;
  outline:none;
  text-decoration: none;
}
i{
  display: inline-block;
  font-style: normal; /* iタグの斜体を解除 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   共有
============================================================================= */

:root{
  --shadow: 1px 2px 3px rgba(0,0,0,.2);
  --shadow2: 0px 2px 4px rgba(0,0,0,0.1);
  --top-TxTshadow:
      0 0 2px #fff,
      0 0 4px #fff,
      1px 1px 0 #fff,
      -1px -1px 0 #fff;
  --top-TxTshadow2:
      2px 0 #fff,
     -2px 0 #fff,
      0 2px #fff,
      0 -2px #fff,
      1px 1px #fff,
     -1px -1px #fff,
      1px -1px #fff,
     -1px 1px #fff;
  --wrap:3%;
  --top-radius:10px;
  --menu-height:60px;
  --wrap-padding-top: 28px;
  --wrap-padding-bottom: 40px;
  
  /*――――― 色 ―――――*/
  --color-font:#593a37;
  
  --color-cream:#fffcf3;
  --color-mint:#7cc7c2;
  --color-brown:#c69b5b;
  --color-bronze:#876827;
  --color-teal:#7fd1b7;
  
  --color-line:#ddd;
  --color-line2:#795800;
  --color-copyright:#e3f5f5;
  
  --txt-link:#e69892;
  --btn-link:#e68c81;
  
  /*――――― 色職種 ―――――*/
  --menu-tel:#b799c4; /* #b799c4 */
  --menu-entry:#f2bf47;
  --menu-tour:#f493ad; /* #f4a599 */
  --menu-rec:#63bcc6;
  --menu-rec2:#63bcc6;
  
  --job-opd: #75c9dd; /*外来*/
  --job-vis: #74c7aa; /*訪問*/
  --job-adm: #be8eb5; /*総務*/
  --job-color:#57b1af;
}

/* ==========================================================================
   設定
============================================================================= */

html{
  font-size:clamp(60%, 0.625vw, 62.5%);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
body{
  color:var(--color-font);
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height:1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a:not(.a-non *, .btn){
  color: var(--txt-link);
}
.main{
  flex: 1;
}

/*****************************************
  装飾
******************************************/
/* 文字色 */
.txt-rainbow{
  background: linear-gradient(to right, #febe79, #f6a0a0, #9cbbe7, #90d3bc);
}
.txt-gra-pink{
  background: linear-gradient(to right, #fa8f97, #ffa573);
}
.txt-gra-orange{
  background: linear-gradient(to right, #ffb36b, #ff9670);
}
.txt-gra-mint{
  background: linear-gradient(to right, #7edcc5, #8ed9e8);
}
.txt-gra-mint,
.txt-gra-orange,
.txt-gra-pink,
.txt-rainbow{
  width: fit-content;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.txt-shadow-W{
  text-shadow: var(--top-TxTshadow);
}


/* 中央揃え */
.txt-center{
  text-align: center;
  margin-inline: auto;
}
.txt-center .txt-tit{
  margin-inline: auto;
}
.txt-center .txt-sub {
  width: fit-content;
  margin-inline: auto;
}
/* 右揃え */
.txt-right{
  text-align: right;
  margin-left: auto;
}


/* 見出し */
.heading-main{
  display: flow-root;
  margin-bottom: 30px;
}
.txt-tit{
  font-size: clamp(2.9rem,3vw,3.5rem);
  font-weight:900;
  line-height:1.3;
}
.txt-sub {
  font-size: 1.7rem;
  color: var(--color-brown);
  margin: 2px 0 0 0.5em;
}

/* ＼ 見出し ／  */
.heading-bracket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.heading-bracket::before,
.heading-bracket::after {
  content: "";
  width: 25px;
  height: 2px;
  background: currentColor;
}
.heading-bracket::before {
  transform: rotate(60deg);
}
.heading-bracket::after {
  transform: rotate(-60deg);
}

/*サイズ */
.heading-sm .txt-tit{
  font-size: clamp(2.6rem,3vw,3.2rem);
}
.heading-ss .txt-tit{
  font-size: clamp(2.25rem,3vw,2.8rem);
}
/* ウェイト */
.txt-ws{
  font-weight: 700;
  line-height:1.35;
}

/* 見出し余白 */
.txt-mt{
  margin-top: 30px;
}
.txt-mb{
  margin-bottom: 30px;
}
.txt-pt{
  padding-top: 30px;
}

/* ボタン */
.btn{
  --btn:var(--btn-link);
  --btn-padding:18px 2em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  width:fit-content;
  padding:var(--btn-padding);
  font-size:1.6rem;
  font-weight:700;
  line-height:1;
  color:#fff;
  text-decoration:none;
  background:var(--btn);
  border:2px solid var(--btn);
  border-radius:100vh;
  transition:.2s cubic-bezier(0.45,0,0.55,1);
}
.btn i{
  transform:translateY(.06em);
}
.btn-entry{
  --btn:var(--menu-entry);
}


/*****************************************
 コンテンツ
 *****************************************/
.site-wrap{
  padding-left: var(--wrap);
  padding-right: var(--wrap);
}


/*****************************************
 ヘッダー
 *****************************************/
.site-header{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  padding: 22px var(--wrap) 26px;
  position: relative;
  isolation: isolate;
}
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.site-header::before {
  inset: 0;
  z-index: -1;
  background: linear-gradient(45deg, #ffffe0, #b0e0e6, #ffffe0, #f0ffff);
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}
.site-header::after {
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent,#fff);
  z-index: -1;
}
@keyframes gradient{
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}


.site-header-in{
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

/*****************************************
 ロゴ
 *****************************************/
.site-logo{
  font-weight:700;
  --logo-corp-font: 1.5rem;
  --logo-title-font: 2.8rem;
  --logo-sub-font: 1.6rem;
}
.logo-corp{
  font-size: var(--logo-corp-font);
  text-shadow: var(--top-TxTshadow);
}
.logo-name{
  text-shadow: var(--top-TxTshadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px 6px;
  margin-top: 4px;
}
.logo-title{
  font-size: var(--logo-title-font);
}
.logo-sub{
  font-size: var(--logo-sub-font);
  color: #fff;
  background: #7cc7c2;
  padding: 6px 1em;
  border-radius:100vh;
  display: inline-block;
  text-shadow:none;
  border: 1px solid rgba(255,255,255,0.8);
}


/*****************************************
 キャッチコピー
 *****************************************/
.top-catch{
  display: flex;
  flex-direction: column;
}
.top-txt-frame {
  position: relative;
  width: 100%;
  padding: 20px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #c9a063;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.001); /* レイアウト補助 */
}
.top-txt-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 160, 99, 0.75);
  pointer-events: none;
}
.top-txt-frame h2{
  font-size: clamp(2.1rem,2.5vw,2.5rem);
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: var(--top-TxTshadow2);
}
.top-catch-sub{
  color: var(--color-brown);
  line-height: 1.4;
  text-shadow: var(--top-TxTshadow);
  position: relative;
}




/*****************************************
  数字で見る
 *****************************************/
.top-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-stats h2{
  font-size: 1.8rem;
  color: #fff;
  background: #7cc7c2;
  border-radius: 100vh;
  padding: 6px 16px;
  text-align: center;
  z-index: 2;
  line-height: 1.3;
  width: calc(100% - (18px * 2) );
}
.top-stats ul{
  background: #fff;
  border-radius: var(--top-radius);
  padding: 20px 6px 0;
  width: 100%;
  box-shadow: var(--shadow);
  margin-top: -1.8rem;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.top-stats li{
  flex: 1 1 calc((100% - 20px) / 3); 
  display:grid;
  grid-template-rows:auto 1fr; /* アイコン / ラベル / 数字を下揃え */
  justify-items:center;
  align-items:end;
  gap:6px;
  padding:12px 6px;
  position: relative;
}
/******* 縦線 */
.top-stats li:not(:nth-child(3n+1))::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #ddd;
}
/****** 横線（2段目以降の上線） */
.top-stats li:nth-child(n+4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.stats-label{
  font-size: 1.5rem;
  line-height:1.3;
  display: flex;
  justify-content: center;
  gap:6px;
}
.stats-label i{
  font-size: 16px;
  color: #7cc7c2;
  line-height:1.3;
}
.stats-num{
  font-size: 2.8rem;
  color: #7cc7c2;
  font-weight:900;
}
.stats-num small{
  font-size: 0.6em;
  margin-left: 4px;
}
.stats-note{
  font-size: 1.2rem;
  color: #999;
  line-height:1.3;
  text-align: center;
}

/*****************************************
  職種一覧
 *****************************************/
.top-jobs{
  padding: 0 var(--wrap);
  margin: 20px 0 28px;
}
.top-jobs-head{
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.top-jobs-head h2{
  font-size: 2.2rem;
  border-left:8px solid #eb8f84;
  padding:6px 0 6px 12px;
  display:inline-block;
}
.top-jobs-head p{
  line-height:1.4;
}

.top-job-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
}
.top-job-content{
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.top-opd{
  --top-job-color: var(--job-opd);
  background: #effcfc;
}
.top-vis{
  --top-job-color: var(--job-vis);
  background: #f7fcfa;
}
.top-job-info{
  color: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:8px;
  background: var(--top-job-color);
}
.top-job-info p{
  line-height: 1.4;
}
.top-job-title{
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 6px;
}
.top-job-text{
  font-size: 1.5rem;
}
.top-job-time{
  font-size: 1.55rem;
  color: var(--top-job-color);
  display: inline-block;
  padding: 4px 1.5rem;
  background: #fff;
  border-radius: 100vh;
  font-weight: 700;
}

.top-job-main{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap:14px;
  padding: 18px 16px;
}
.top-job-main article{
  background:#fff;
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  text-align: center;
  gap:8px;
  border:1px solid var(--color-line);
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: .2s;
}
.top-job-main article > a{
  position: absolute;
  inset: 0;
  z-index: 10;
}
.top-job-image{
  position: relative;
}
.top-job-image img{
  width: 100%;
  border-radius: var(--top-radius);
}
.top-job-dept{
  font-size: 1.4rem;
  font-weight:700;
}
.top-job-name{
  font-size: 1.8rem;
  border-bottom: 2px dotted #ddd;
  padding-bottom: 8px;
  margin-bottom: 3px;
}
.top-job-desc{
  font-size: 1.5rem;
  line-height:1.45;
  text-align: left;
}
.job-opd{
  color:var(--job-opd);
}
.job-vis{
  color:var(--job-vis);
}
.job-adm{
  color: var(--job-adm);
}
.top-job-more,
.top-job-file,
.top-job-status{
  font-size: 1.5rem;
  color:#fff;
  background: var(--btn-link);
  border-radius: 100vh;
  padding: 8px 6px;
}
.top-job-more,
.top-job-status{
  margin-top: auto;
}
.top-job-image .top-job-status{
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  font-size: 1.4rem;
  padding: 4px 10px;
  white-space: nowrap;
}
.top-job-file{
  background: var(--color-mint);
  display:flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.top-job-file i{
  font-size: 16px;
}
.top-job-more{
  color:var(--color-font);
  background: #fff;
  border:2px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.top-job-more i{
  font-size: 12px;
  color: #999;
  transform: translateY(1px);
}

/* 募集終了 */
.top-job-closed .top-job-image .top-job-status{
  color:#fff;
  background: #877c7a;
}
.top-job-closed .top-job-status{
  color:#877c7a;
  background: #dedcdc;
}
/*****************************************
  ピックアップ
 *****************************************/

.top-pickup{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  padding: 0 var(--wrap);
  margin: 28px 0;
}
.top-pickup h2{
  font-size: 2.2rem;
  line-height: 1.3;
  text-align: center;
  font-weight:900;
  margin-bottom: 20px;
  color: #876827;
}
.top-pickup article{
  padding:14px 12px;
  border-radius: var(--top-radius);
}
/***  5つの魅力  ***/
.top-charm {
  background: #fcf4f2;
}
.top-charm h2 span{
  font-size: 1.5em;
}
.top-charm ul{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}
.top-charm li{
  display:flex;
  gap:8px;
  align-items:flex-start;
  line-height:1.3;
  padding: 0 8px 6px;
}
.top-charm li:not(:last-child) {
  border-bottom: 1px dashed var(--color-brown);
}
.top-charm li span{
  font-size: 1.15em;
  color: var(--color-brown);
  font-weight:700;
  transform: translateY(-2px);
}


/***  サポート制度  ***/
.top-support{
  background: #eaf7f9;
}
.top-support ul{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap: 8px;
  line-height: 1.3;
  text-align:center;
}
.top-support li{
  font-size: 1.5rem;
  background: #fff;
  border-radius: var(--top-radius);
  padding: 12px 6px;
}
.top-support i{
  color: #8fd3d9;
  font-size: 22px;
  margin-bottom: 8px;
}

/***  スタッフの声  ***/
.top-voice{
  background: #fff9e8;
}
.top-voice ul{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}
.top-voice li{
  background: #fff;
  padding: 10px;
  border-radius: var(--top-radius);
  display:grid;
  gap:8px;
}
.voice-text{
  line-height: 1.35;
}
.voice-name{
  font-size: 1.5rem;
  color: var(--color-brown);
  font-weight:700;
}

/*****************************************
  TOPメッセージ
******************************************/
.top-message{
  padding: 0 var(--wrap);
  margin: 28px 0;
}
.top-message-in{
  display: grid;
  grid-template-columns: 1fr clamp(240px, 28%, 360px);
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 18px;
  background: #e2f4f4;
}
.top-message-content{
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
  padding: 30px 32px;
}
.top-message-body{
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.top-message-body p{
  line-height: 1.9;
}
.top-message-img{
  min-width: 0;
  overflow: hidden;
  
  --top-message-gra:to right;
  -webkit-mask-image: linear-gradient(
    var(--top-message-gra),
    transparent 0%,
    rgba(0,0,0,.3) 8%,
    rgba(0,0,0,.8) 18%,
    #000 28%
  );
  mask-image: linear-gradient(
    var(--top-message-gra),
    transparent 0%,
    rgba(0,0,0,.3) 8%,
    rgba(0,0,0,.8) 18%,
    #000 28%
  );
}
.top-message-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-message h2{
  font-size: clamp(2.2rem,3vw,3rem);
  color: #57b1af;
  line-height: 1.5;
}
/* ボタン */
.btn-message{
  --btn: #57b1af;
  margin-top: 20px;
}
/*****************************************
  メッセージ内容
******************************************/
.message{
  background: #fff url("images/home-message-in-bg.svg") left center /100% 100% no-repeat;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 16px;
}
.message-body p{
  line-height: 1.6;
}
.message-body p+p{
  margin-top: 12px;
}
.message-title{
  font-size: 2rem;
  color: #57b1af;
  line-height: 1.5;
  margin-bottom: 12px;
}
.message-img {
  text-align: center;
  align-self: end;
}
.message-img img{
  max-height: 280px;
}

/*****************************************
  固定メニュー
******************************************/
.menu-nav{
  position:fixed;
  left:0;
  right: 0;
  bottom:0;
  z-index:9999;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  height: var(--menu-height);
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
  background: #fff;
  border-top: 2px solid var(--color-line2);
}
.menu-nav a:not(:first-child){
  border-left: 2px solid var(--color-line2);
}
.menu-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  gap:1px;
  transition:.2s;
  text-align:center;
  line-height:1.2;
  font-weight: 700;
  color: #fff;
}
.menu-nav i{
  font-size: 17px;
  margin-bottom: 3px;
  color: #fff;
}
.menu-tel{
  background: var(--menu-tel);
}
.menu-entry{
  background: var(--menu-entry);
}
.menu-tour{
  background: var(--menu-tour);
}
.menu-rec{
  background: var(--menu-rec);
  cursor:pointer;
}

/*****************************************
  ポップアップ TEL
******************************************/
.pop-tel{
  background:#fff;
  text-align: center;
  width: 320px;
  max-width: 88vw;
  --pop-tel-color:#16213e;
  padding: 32px 28px;
}
.pop-tel-icon{
  font-size: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef1f7;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-tel-title{
  font-size: 1.7rem;
  font-weight: 700;
}
.pop-tel-num{
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  font-weight: 900;
  padding:14px 26px;
  margin: 16px 0;
  background:#fff;
  border: 1px solid #ddd;
  box-shadow: var(--shadow);
  border-radius: 100vh;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
.pop-tel-time{
  font-size: 1.6rem;
  color: var(--color-brown);
  font-weight: 700;
}


/*****************************************
  ドロワーメニュー
******************************************/
.pushbar{
  background: color-mix(in srgb, var(--menu-rec) 80%, white);
  padding:20px var(--wrap) calc(25px + var(--menu-height));
}
.pushbar-title{
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin: 5px 0 0;
  text-shadow: 0 0 4px var(--menu-rec2);
}
.pushbar-title-dept{
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  margin: 20px 0 10px;
  text-align: left;
}
.pushbar-title-dept::before,
.pushbar-title-dept::after {
  content: "";
  max-width: 100%;
  height: 1px;
  background: #fff;
  flex: 1;
}

.pushbar-job{
  display: grid;
  gap: 12px;
}
.pushbar-job li{
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  white-space: nowrap;
}

.pushbar-split-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
}
.pushbar-split-link{
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  padding: 8px;
}
.pushbar-split-link i{
  color: var(--menu-rec);
  font-size: 14px;
  transform: translateY(1px);
}
.pushbar-split-link a{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--fontColor);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 100vh;
}
.pushbar-split-link a + a{
  margin-top: 7px;
}

.pushbar-job-dept {
  font-size: 1.5rem;
  font-weight: 700;
}
.pushbar-job-dept.job-opd{
  color:var(--job-opd);
}
.pushbar-job-dept.job-vis{
  color:var(--job-vis);
}


.pushbar-job-name {
  font-size: 1.8rem;
  font-weight: 700;
}
.pushbar-job-tag{
  font-size: 1.4rem;
  color: #fff;
  background: #e68c81;
  border-radius: 100vh;
  padding: 4px 16px;
  margin-top: 6px;
  display: inline-block;
}


.pushbar-home a{
  font-size: 1.5rem;
  display: block;
  color: #fff;
  padding: 0 0 10px;
  margin-bottom: 20px;
  border-bottom: 3px dotted rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

/*****************************************
  フッターSNSアイコン
******************************************/
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
}
.footer-sns a {
  --footer-sns: var(--color-line);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: .2s;
  padding: 4px 7px;
  color: #fff;
  border:2px solid var(--footer-sns);
  border-radius: 8px;
  background: var(--footer-sns);
  box-shadow: var(--shadow);
}
.footer-sns i {
  font-size: 22px;
}
.footer-sns .sns-opt{
    --footer-sns: #5ab8d9;
}
.footer-sns .sns-vis{
    --footer-sns: #74c7aa;
}
.footer-sns .sns-rec{
    --footer-sns: #a0a0d3;
}

/*****************************************
  フッターアクセス
******************************************/
.footer{
  background: var(--color-cream);
  padding-top: var(--wrap-padding-top);
  margin-bottom: var(--menu-height);
}
.clinic-access{
  display: grid;
  grid-template-columns: max-content 1fr 1fr;
  column-gap: 5%;
}

.access-list{
  margin-bottom: 10px;
}
.access-corp{
  font-size: 1em;
  font-weight:700;
  margin-bottom: 6px;
}
.access-name{
  font-size: clamp(2.4rem,2.5vw,3rem);
  font-weight:700;
  margin-bottom: 12px;
}
.access-tel,
.access-adr{
  margin-bottom: 10px;
}
.access-txt{
  margin: 10px 0 20px;
}
.access-tel{
  font-size: 2rem;
  font-weight:700;
}
.access-time{
  margin-bottom: 20px;
}
.copyright{
  padding: 20px 0;
  margin-top: 40px;
  background: var(--color-copyright);
  text-align: center;
}

/*****************************************
  404エラー
******************************************/
.error-page{
  margin: 40px 0;
}
.error-page p{
  margin-top: 10px;
  line-height: 1.4;
}