@charset "UTF-8";

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	background: #005C4C;
}
/* チェックボックスを非表示にする */
.drawer_hidden {
	display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
	cursor: pointer;
	
}
/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #F9F0E2;
	transition: 0.5s;
	position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
	bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
	top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 99;
	background: #D2E1D4;
	transition: .5s;
	
}

.nav_item{
      font-size: 2rem;


}

.nav_list {
	color: #005C4C;
	list-style: none;
}

.nav_list a {
	font-size: 2rem;
	color: #005C4C;
	text-decoration: none;
	padding: 30 0 30 0;
}

.nav_list a:hover {
	color: #4F3A25;
}

.nav_menu {
	color: #005C4C;
	font-size: 2rem;
	padding: 0 40px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
	left: 80%;
}

body {
	color: #444444;
	background-color: #005C4C;
	font-family: "Hina Mincho", serif;
  　font-weight: 400;
  　font-style: normal;
        overflow: hidden;

}

/* 幅750px以下の場合 */
@media (max-width: 750px) {
	#drawer_input:checked ~ .nav_content {
	left: 0%;
	}
}



.kitouhou {
	text-align: center;
}

.kitouhou p {
	writing-mode: vertical-rl;
	display: inline-block;
	color: #D2E1D4;
	font-size: 2rem;
}

/* CSSでSVGの色などを操作 */
.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.wave-svg path {
  fill: var(--wave-color, #F9F0E2); /* CSS変数で色を制御 */
}

@media (max-width: 750px) {
	body {
		background-image: url("../image/mobile2.svg");
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: center center;
		background-size: cover;
	}
}


footer {
  position: fixed;
  bottom: 0;
  width: 100%;
	background-color: #F9F0E2;
}

footer a {
	text-decoration: none;
}

.sns_link {
	padding: 0;
	text-align: center;
}

.sns_item {
	list-style: none;
	display: inline-block;
	padding: 0 5px;
}

.copyright {
	text-align: center;

}

.anim-box {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* CSS Document */