*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 15px;
}

body {
	margin: 0;
    --color-text: #1c1c1c;
    --color-text-alt: #747474;
    --color-bg: #F6F6F6;
    --color-link: #161616;
    --color-link-hover: #797979;
    color: var(--color-text);
    background: var(--color-bg);
    --cursor-stroke: #000000;
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
    transition: ease .3s;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
    transition: ease .3s;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	background: transparent;
}
/*************************************/
a.btn_toggle {
  background-color: transparent;
  position: fixed;
  top: 20px;
  right: 30px;
  width: 80px;
  height: 80px;
  z-index: 9999;
  cursor: pointer;
  mix-blend-mode: difference;
}

a.btn_toggle span {
  display: block;
  width: 50px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s ease;
  background-color: white; /* 白ベース */
}

a.btn_toggle span:nth-child(1) {
  top: 30px;
}

a.btn_toggle span:nth-child(2) {
  top: 50px;
}

a.btn_toggle.active span:nth-child(1) {
  top: 40px;
  transform: translateX(-50%) rotate(45deg);
}

a.btn_toggle.active span:nth-child(2) {
  top: 40px;
  transform: translateX(-50%) rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #dbd4c4 0%, #dbd4c4 80%, #3a3937 80%, #3a3937 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
  transition: all 0.5s ease;
  z-index: 1000;
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.menu {
  justify-content: flex-start;  
  padding-left: 6vw; 
}
.menu ul img{
	max-width: 350px;
  transition: all 0.8s ease;
}


@media screen and (max-width: 768px) {

.menu {
  background: linear-gradient(90deg, #dbd4c4 0%, #dbd4c4 75%, #3a3937 75%, #3a3937 100%);
}

.menu {
  padding-left: 1vw; 
}

.menu ul {
  gap: 7vw;
}
.menu ul img{
	max-width:70vw;
}

}
.menu ul img:hover{
	opacity: .7;
	transform: scale(.96);
  transition: all 0.8s ease;
}
/* 表示状態 */
.menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

h1{
	margin: 0;
	padding: 0;
}
h1 img{
max-width: 120px;
position: fixed;
left: 30px;
top:30px;
margin: 0;
padding: 0;
z-index: 9999;
}
.cursor {
	display: none;
}


@media (any-pointer:fine) {
	.cursor {
		position: fixed;
		top: 0;
		left: 0;
		display: block;
		pointer-events: none;
		z-index: 10000;
	}

	.cursor__inner {
		fill: none;
		stroke: var(--cursor-stroke);
		stroke-width: 1.2px;
	}

	.no-js .cursor {
		display: none;
	}

}