@charset "utf-8";

body {
  font-family: "Noto serif jp", serif;
}
/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1080px;
  z-index: 10;
  height: 1rem;
  transition: background-color 0.3s ease;
  background-image: linear-gradient(0deg, transparent, #ffffff);
}

/* ロゴ */
header .logo {
  width: 2rem;
  position: absolute;
  top: 0.3rem;
  left: 0.5rem;
}

@media screen and (max-width: 640px) {
  header .logo {
    width: 1.5rem;
    height: auto;
    z-index: 10;
		top: 0.1rem;
		left: 0.2rem;
  }
}

/* ナビゲーション */
header .glo_navi {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
  header .glo_navi {
    top: 0;
    left: 0;
    right: auto;
    z-index: 1;
    transform: translate(0);
    width: 100%;
    height: 100dvh;
    display: none;
  }
  header .glo_navi::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
}

header .glo_navi .list {
  display: flex;
  gap: 0 0.45rem;
  padding-right: 0.45rem;
}

@media screen and (max-width: 640px) {
  header .glo_navi .list {
    padding: 0.9rem 0.3rem 0;
    box-sizing: border-box;
    gap: 0.3rem 0;
    flex-wrap: wrap;
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
  }
}

header .glo_navi .list .link {
}

@media screen and (max-width: 640px) {
  header .glo_navi .list .link {
    width: 100%;
  }
}

header .glo_navi .list .link a {
  display: block;
  /* font-family: "Noto Serif JP", serif; */
  font-size: 0.16rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #191919;
  position: relative;
  text-shadow: 0 0 0.08rem rgba(0, 0, 0, 0.16);
}

header .glo_navi .list .link a::after {
  position: absolute;
  bottom: -0.06rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

header .glo_navi .list .link a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* スクロール時 */
header.scr {
  background-color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 640px) {
  header.scr {
    backdrop-filter: blur(0);
  }
}

header.scr .glo_navi .list .link a {
  color: #191919;
  text-shadow: none;
}

@media screen and (max-width: 640px) {
  header.scr .glo_navi .list .link a {
    color: #fff;
  }
}

header.scr .glo_navi .list .link a::after {
  background-color: #191919;
}

@media screen and (max-width: 640px) {
  header.scr .glo_navi .list .link a::after {
    background-color: transparent;
  }
}

header.scr #SPnaviBtn span {
  background-color: #191919;
}

header.scr #SPnaviBtn.active span {
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  header {
    min-width: auto;
    height: 0.6rem;
  }
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
 */

/*============================
フッター
============================*/
footer {
  background: #011062;
  color: #fff;
  padding: 1rem 0;
  z-index: 100;
  position: relative;
  overflow: hidden;
}

footer .cont_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .cont_wrap .nav_wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 0.8rem;
}
@media screen and (max-width: 640px) {
  footer .cont_wrap .nav_wrap {
    width: 100%;
    margin-top: 0.4rem;
		padding-left: 0.25rem;
		box-sizing: border-box;
  }
}


footer .cont_wrap .nav_wrap .nav_list .item {
  margin-bottom: 0.3rem;
}

footer .cont_wrap .nav_wrap .nav_list .item a {
  color: #fff;
  font-size: 0.16rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  footer .cont_wrap .nav_wrap .nav_list .item a {
    font-size: 0.14rem;
  }
}

footer .cont_wrap .nav_wrap .nav_list .item a:hover {
  opacity: 0.8;
}

footer .cont_wrap .nav_wrap .nav_list .item a::before {
  content: "";
  width: 0.15rem;
  height: 0.02rem;
  background: #fff;
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  footer .cont_wrap .nav_wrap .nav_list .item a::before {
    width: 0.1rem;
		height: 0.01rem;
  }
}

footer .cont_wrap .nav_wrap .nav_list .item a:hover::before {
  width: 0.1rem;
}

.copyright {
  text-align: center;
  padding: 0.3rem 0;
  background: #fff;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 640px) {
	.copyright {
		padding: 0.2rem 0;
  }
}
.copyright small {
  font-size: 0.12rem;
}

footer .footer_deco {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  opacity: 0.2;
}
