*{
	scroll-behavior: smooth;
}

body {
	font-family: 'kiwi maru',serif;
	margin: 0;
	padding: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	background-color: black;
  z-index: -1; /* 背景をコンテンツの下に配置 */
	background-image: url(IMG_5329.JPG);
  background-repeat: no-repeat;/* 必要に応じて */
	background-size: cover;
  background-position: center;
	height: 100vh;
}

.headtitle a {
	color: #0a757d;
}

.headtitle,.contents{
	width: calc(100vw - 1rem);
	padding: 0 0.8rem;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(2px);
}

.maintitle{
	font-family: 'Hachi Maru Pop',serif;
}

.mainbar{
	margin: 0;
	padding: 0;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1;
}

textarea.siteurl {
	font-size: 1em;
	line-height: 0.5em;
}

/* ================================================= */
/* ■段組構成（画面の幅が801px以上ある広い場合限定） */
/* ================================================= */
@media all and (min-width: 801px) {

.hamburger-menu{
	display: none;
}
}

/* 横幅800px以下の環境の場合 */
	@media all and (max-width: 800px) {
		.pankuzu{display: none;
		}
	}

/*パンクズリスト設置*/
.pankuzu {
	background-color: rgba(255, 255, 255, 0.6);
	& .material-symbols-rounded{
		font-size: 2rem;
				position: relative;
						top: 0.4rem;}
}
.pankuzu ul {
	display: flex;
	justify-content: flex-end;
}
.pankuzu ul li {
	font-size: 1rem;
    list-style: none;
}
.pankuzu ul li:after{
	content: "\00A0";
	font-size: 2rem;
    list-style: none;
}
.pankuzu ul li a{
	color: #0a757d;
    text-decoration: none;
}
		
.menumoji{
	display: block;
	width: 60px;
	font-size: 10px;
    color: #fff;
    margin-top: 40px;
		margin-right: -30px;

}
.menu-btn {
    position: fixed;
    top: calc(100vh / 3 * 2.1);
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
		border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
.menu-btn span.sen,
.menu-btn span.sen:before,
.menu-btn span.sen:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: rgba(53,132,187,0.4);
		backdrop-filter: blur(10px);
		& .material-symbols-rounded{font-size: 1.5rem;
				position: relative;
						top: 0.3rem;}
}
.menu-content ul{
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(53,132,187,0.4);
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content p {
	text-align: right;
  padding: 9px 15px 10px 0;
}
.menu-content p a{
	color: white;
	text-decoration: none;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}