@charset "UTF-8";
/****************************************************************************
全施設共通（ハンバーガーメニュー）
--------------------------------------------------------
   Last up date   : 2025.10.22
****************************************************************************/
#hamburger, 
#menuWindow, 
.whiteBlock, 
.overlay {
	display: none;
}

@media screen and (max-width:1024px) {
/* ---------------------------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
#hamburger {
    display: block;
    background: #FFF;
    cursor: pointer;
    width: 30px;
    aspect-ratio: 1/1;
    margin-left: auto;
    /* ボタンがハンバーガーウィンドウの下に隠れないようにする指定 */
    position: fixed;
	top: 15px;
	right: 20px;
   z-index: 10000;
    margin-top: 0px;
}

/* ----------------- */
/* 三本線 */
/* ----------------- */
#hamburger span {
    /* 見た目のCSS */
    display: inline-block;
    background: #000;
    width: 100%;
    height: 1px;
    /* バーガー線の太さ */
    /*アニメーションの設定*/
    transition: all .4s;
    position: absolute;
    left: 50%;
    /* バーガー線の位置 */
    transform: translateX(-50%);
    z-index: 10000;
}
/* １本目 */
#hamburger span:nth-of-type(1) { top: 20%; }
/* ２本目 */
#hamburger span:nth-of-type(2) { top: 50%; }
/* ３本目 */
#hamburger span:nth-of-type(3) { top: 80%; }


/* ------------------ */
/* ×印 */
/* ------------------ */
/*activeクラスが付与されると線が回転して×になる*/
#hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 25%;
    transform: rotate(-45deg);
    width: 100%;
}

#hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 25%;
    transform: rotate(45deg);
    width: 100%;
}




/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#menuWindow {
	display: block;
    transition: 0.3s;
    text-align: center;
    /* 初期状態は非表示 */
    visibility: hidden;
    position: fixed;
    top: 0px;
    right: -100vw;
    z-index: 1002;
    /* 画面いっぱいに表示されるサイズに設定 */
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 50px);
	height: 100vh;
    /* 画面からはみ出したらスクロール可能にする */
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: #FFF;
    padding-top: 40px;
}

.nav_open .overlay {
  opacity: 0;
  visibility: visible;
}
/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
  background-color: #FFF;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 10;
}
.whiteBlock {
  background-color: #FFF;
  position: fixed;
  display: block;
  top:0;
  left: 0;
  width: 100vw;
  height: 60px;
  z-index: 9990;
}

/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar{
    display:none;
}

#menuWindow.open {
    visibility: visible;
    right: 0;
    height: 100%;
}


ul.menuWindowList::before {
    background-size: 10px;
    content: '';
    display: inline-block;
    height: auto;
   width: 90%;
   margin-bottom: 10px;
}


.accordion-content {
    display: none;
}

.accordion-header {
	width: 90%;
	margin: 0 auto;
	padding: 0;
	transition: background .3s ease;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #999;
	position: relative;
}

.accordion-content {
	text-align:left;
	margin-top: 10px;
}

ul.subMenu, 
ul.infoArea {
	width:90%;
	margin: 10px auto 0 auto;
}
.accordion-header span.accordion-menu,
.accordion-content span{
	color: #4D4D4D;
	font-size: 16px;
	position: relative;
	text-align:left;
	display:block;
    margin: 0;
    width: 100%;
	padding:0;
}
.accordion-header span.accordion-menu a {
	display: block;
	position: relative;
	width: 100%;
	padding: 20px 0 20px 10px;
	  transition: color 0.3s ease; /* スムーズに色が変わる */
}
.accordion-header span.accordion-menu a:hover {
	color: var(--pink1);
}

.accordion-header span.accordion-menu a::after {
	content: "";
	width: 20px;
	height: 20px;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 3%;
	z-index: 0;
}



summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display:none;
}




} /**** END media screen *****/
