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

*,*::before,*::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}

*{
margin: 0;
padding: 0;
}

body{
min-width: 1180px;
background-color: #d1eaf7;
font-family: "noto-sans-jp-", sans-serif;
}
@media (max-width:767px){
body{
min-width:auto;
}
}

.noto-sans-jp- {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
img{
max-width: 100%;
height:auto;
vertical-align: bottom;
}

.container{
width: 1080px;
margin: 0 auto;
}
@media (max-width:767px){
.container{
width:90%;
}
}

header{
height: 80px;
align-items: center;
}

header .container{
display: flex;
justify-content: space-between;
align-items: center;
}

h1{
width: 200px;
}

h1 img{
}

nav{
}

nav ul{
display: flex;
list-style: none;
justify-content: flex-end;
align-content: center;
}

nav a{
color: #000;
display: block;
text-decoration: none;
padding: 20px;
}
@media (max-width:767px){
nav a{
padding:5px;
}
}

nav a:hover{
text-decoration: underline;
}

/* PCではボタンを隠す */
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 6px; line-height: 1; color: #111; cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid #000; outline-offset: 2px; }

/* スマホ幅で切り替え */
@media (max-width: 767px) {
  /* ボタンを表示 */
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  /* navは初期非表示のオーバーレイ */
  #site-nav {
    position: fixed; left: 0; right: 0; top: 80px; bottom: 0;
    background: rgba(209,234,247,0.5);
	backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none; translate: 0 -8px;
    transition: opacity .2s ease, translate .2s ease;
    z-index: 999; padding: 16px 20px;
  }
  #site-nav ul { display: grid; gap: 16px; }
  #site-nav a { display: block; font-size: 18px; padding: 10px 4px; }

  /* 開いたとき（JSが付与） */
  #site-nav.is-open { opacity: 1; pointer-events: auto; translate: 0 0; }

  /* 背景スクロール停止 */
  body.menu-open { overflow: hidden; }
}

/* クリック貫通防止（必要なら） */
header { position: relative; z-index: 1000; }

/*
header{
height: 80px;
display: flex;
align-items: center;
}

header .container{
display: flex;
justify-content: space-between;
align-items: center;
}

header img{
width: 200px;
}

nav ul{
display: flex;
list-style: none;
justify-content: flex-end;
align-content: center;
}

nav a{
color: #000;
display: block;
text-decoration: none;
padding: 20px;
}
@media (max-width:767px){
nav a{
padding:5px;
}
}

nav a:hover{
text-decoration: underline;
}
*/

h2 img{ 
 position: relative;
 width: 100vw;
 height: 100%;
 overflow: hidden;
 }
span{
font-size:  0.85em;
}

.container{
width: 1080px;
margin: 0 auto;
text-align: center;
}
@media (max-width:767px){
.container{
width:90%;
}
}


main img{
width: 600px;
}

h3{
margin: 50px;
}

h4{
margin: 10px;
}

/* ▼ カレンダー全体の基本レイアウト */
 #calendar {
  max-width: 600px;
  margin: 20px auto;
  font-size: 14px;
  background-color: #fff;
  padding: 10px;         /* 余白を少し追加するときれい */
  border-radius: 6px;    /* 角丸にしたい場合 */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* カード風の影 */
}

  /* ▼ 定休日セル */
  #calendar .fc-daygrid-day.is-closed .fc-daygrid-day-frame {
    background-color: #ffeaea; /* 薄い赤背景 */
  }

  /* ▼ 定休日のバッジ */
  #calendar .closed-badge {
　margin-left: 10px;
  padding: 4px 8px;
  background: #ffdddd;
  color: #b53b3b;
  font-size: 12px;
  font-weight: bold;
  }

  /* ▼ 臨時休業日の背景イベント */
  #calendar .fc .fc-bg-event {
    background: #ffe8c7 !important; /* 薄いオレンジ */
  }

.btn a{
color:#0E32A8;
text-decoration: none;
text-align: center;
}

.btn a:hover{
/*
background-color: #91bcc2;
padding: 5px;
border-radius: 10px;
*/
text-decoration: underline;
}
.btn a:visited{
color:#0E32A8;
}

footer{
padding: 60px 0;
}


.footer__logo{
height: 220px;
display: flex;
justify-content: center;
align-items: center;
}

.footer__logo img{
width: 320px;
}

footer ul{
display: flex;
list-style: none;
justify-content: center;
margin-bottom: 20px;
}

footer li{
padding: 0 20px;
border-left:1px solid #000;
border-right: 1px solid #000;
margin-left:-1px;
}

footer a{
color: #000;
text-decoration: none;
}

footer a:hover{
text-decoration: underline;
}

footer a:visited{
color: #000;
}

footer p{
text-align: center;
}
 
.footer-pdf {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: center;    /* 中央揃え */
  margin: 1em 0;
}

.footer-pdf a {
  display: inline-flex;  
  align-items: center;
  gap: .5em;
  text-decoration: none;
  color: inherit;
}

.footer-pdf .pdf-icon {
  font-size: 1.3em;
}

.footer-pdf .pdf-note {
  margin-top: .3em;  /* 上のリンクと少し間隔 */
  font-size: 0.9em;
  color: #666;       /* 補足っぽくグレー */
}

/* まずデフォルトfocusは消す */
a:focus { outline: none; }

/* キーボード操作のときだけ見える枠を定義（アクセシビリティ配慮） */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* タッチ環境ではfocus-visibleも消す（好みに応じて） */
@media (hover: none) and (pointer: coarse) {
  a:focus-visible { outline: none; }
}

/* iOSのタップ時の薄いハイライトも消す */
a, button { -webkit-tap-highlight-color: transparent; }

/* ==== タッチ端末限定でフォーカス枠を消す（ページ末尾に追記） ==== */
@media (hover: none) and (pointer: coarse) {
  /* グローバルに保険をかける */
  *:focus { outline: none !important; }
  a:focus-visible { outline: none !important; }

  /* iOSのタップハイライトも無効化 */
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ヘッダーナビだけピンポイントで消したい場合（任意・併用可） */
.site-nav a:focus,
.site-nav a:active,
.site-nav a:focus-visible { outline: none !important; }

/* タップ時に枠線が出る指定が紛れていないかの対策 */
.site-nav a { border: none; box-shadow: none; }
.site-nav a:hover,
.site-nav a:active { border: none; box-shadow: none; }