@charset "utf-8";

/*------------------------------
		all
------------------------------*/
.bold{
	font-weight: bold;
}
.pc_hide {
	display: none;
}
/* ハンバーガー */
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 5;
  display: inline-block;
}

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

#menu-toggle:checked + .menu-icon span:nth-child(1) {
  /* バツ印の回転中心を線の中心にする */
  transform-origin: center;
  /* 2番目の線の位置に移動させて、45度回転 */
  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-origin: center;
  /* 2番目の線の位置に移動させて、-45度回転 */
  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: 3;
}

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

/* メニュー本体（左から出す） */
.menu {
  position: fixed;
  top: 0;
  right: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 4;
}

#menu-toggle:checked ~ .menu {
  right: 0; /* ← 開いたときは左0へ */
}

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

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #007bff;
}

/*------------------------------
		mainContents
------------------------------*/
.privacy_wrap {
    width: 800px;
    margin: 95px auto;
}
.policy_tx {
	margin: 0 0 30px 0;
}
.privacy_tx {
	margin: 0 0 20px 0;
}

.policy_item {
	margin: 0 0 30px 0;
}

.policy_ttl {
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: bold;
	color: var(--color-primary);
	letter-spacing: 0.1em;
}

.policy_item p {
	font-size: 14px;
}

.policy_date {
	margin: 15px 0 60px 0;
	align-self: flex-end;
	text-align: end;
	font-size: 14px;
	font-weight: bold;
}

@media screen and (max-width: 960px) {
	.pc_hide {
		display: block;
	}
	.sp_hide {
		display: none !important;
	}
	
	.privacy_wrap {
		width: 100%;
		padding: 0 15px;
	}
	.policy_list {
		width: 100%;
	}
	.policy_item p {
		display: block;
	}
	.policy_item a {
		display: block;
		width: auto;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
}

@media screen and (max-width: 768px) {


}

@media screen and (max-width: 480px) {
	
}