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

/* リセット */
body, h1, a {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-decoration: none;
}
/*ロゴカラー*/
/* 白にする */
.white {
  filter: brightness(0) invert(1);
}

/* 水色にする（明るいシアン） */
.light-blue {
  filter: brightness(0) saturate(100%) invert(74%) sepia(19%) saturate(462%) hue-rotate(156deg) brightness(105%) contrast(98%);
}

/* 青にする（#007BFF系） */
.blue {
  filter: brightness(0) saturate(100%) invert(31%) sepia(99%) saturate(2612%) hue-rotate(205deg) brightness(98%) contrast(101%);
}
/*画像を薄く*/
.opac {
	opacity: 0.6; /* 0〜1で指定。0は透明、1は不透明 */

}
/* 全体 */
.page-header {
	display: flex;
	height: 600px;
	overflow: hidden;
	position: relative;
	margin-top: 70px;
}

/* 左側：スライド部分 */
.header-left {
  position: relative;
  flex: 0 0 85%;
  overflow: hidden;
}

/* スライド全体 */
.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* スライド1枚あたり */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  animation: fadeSlide 18s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 6s;
}
.slide:nth-child(3) {
  animation-delay: 12s;
}

/* --- フェードインアニメーション定義 --- */
@keyframes fadeSlide {
  0% { opacity: 0; }
  10% { opacity: 1; }   /* 徐々に表示 */
  30% { opacity: 1; }   /* 表示維持 */
  40% { opacity: 0; }   /* 次へフェードアウト */
  100% { opacity: 0; }  /* 準備中 */
}

/* 写真＋薄いグラデーション */
.header-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 1;
  border-bottom-right-radius: 50px;
}

/* テキスト */
.header-content {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 2;
}

.breadcrumb {
	font-size: 1.6em;
	opacity: 0.7;
	display: inline-block; /* ←ここを変更 */
	padding: 5px 10px; /* ←少し余白を付けると見た目が整う */
	color: #FFFFFF;
	transition: opacity 0.2s;
	background-color: hsla(224,64%,48%,1.00);
}
.breadcrumb a:hover {
  opacity: 1;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* 右側（白い余白＋装飾） */
.header-right {
  position: relative;
  flex: 0 0 15%;
  background: #fff;
}

.square {
  position: absolute;
  background: linear-gradient(135deg, #0078d7, #00aaff);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.large-square {
  width: 110px;
  height: 110px;
  bottom: 0;
  right: 0;
}

.small-square {
  width: 75px;
  height: 75px;
  bottom: 120px;
  right: 110px;
}

@media screen and (max-width: 768px) {
  /* page-headerの高さを自動にする */
  .page-header {
    height: auto;
  }
  /* 右側を完全に非表示 */
  .header-right {
    display: none !important;
  }

  /* 左側のスライド部分を全面に表示 */
  .header-left {
    flex: none;
    width: 100%;
    height: 70vw; /* 画面幅基準の高さ */
    min-height: 280px;
    position: relative;
    z-index: 100; /* ← 最前面に確実に出す */
    overflow: hidden;
  }
/* テキスト */
.header-content {
  position: absolute;
  bottom: 80px;
  left: 10px;
  z-index: 2;
}
	.breadcrumb {
	font-size: 1em;
	opacity: 0.7;
	display: inline-block; /* ←ここを変更 */
	padding: 5px 10px; /* ←少し余白を付けると見た目が整う */
	color: #FFFFFF;
	transition: opacity 0.9s;
	background-color: hsla(224,64%,48%,1.00);
	border-top-width: 0px;
}
.breadcrumb a:hover {
  opacity: 1;
}
	
	.mk01{
	height: 100px;
	width: auto;
	text-align: center;
}
  .slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 99;
  }
.page-title {
	font-size: 1.7em;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeSlide 18s infinite;
  }

  .slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
  .slide:nth-child(2) { animation-delay: 6s; }
  .slide:nth-child(3) { animation-delay: 12s; }

  .header-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
