﻿/* モーダルウィンドウ */
.modal-window {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 11;
	top: 0;
	left: 0;
}

/* 閉じるボタン */
.button-close {
	top: 40px;
	right: 0;
	position: absolute;
	cursor: pointer;
	border: none;
	background-color: transparent;
	z-index: 99;
}
@media screen and (max-width: 767px) {
	.button-close {
		top: 20px;
	}
}
.button-close--inner {
	transform: rotate(45deg);
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	width: 5em;
	height: 0.42em;
	background: currentColor;
	border-radius: 0.1em;
	color: rgba(102, 102, 102, 1);
}
.button-close--inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
	transition: 1s;
}
.button-close:hover .button-close--inner {
	color: rgba(102, 102, 102, 0.5);
}
@media screen and (max-width: 767px) {
	.button-close--inner {
		width: 3em;
		height: 0.32em;
	}
}

/* オーバーレイ */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #ebe5d5;
	opacity: 0.9;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.no_scroll {
	overflow: hidden;
}

.caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	transform: rotate(0.03deg);
	background-color: rgba(99, 63, 49, 0.5);
	height: 100px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.caption {
		height: 70px;
	}
}
.caption > a {
	text-decoration: none;
}
.caption__inner {
	display: inline-block;
	color: #fff;
	font-family: 'Zen Maru Gothic', serif !important;
	font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
	.caption__inner {
		font-size: 1.3rem;
	}
}
.caption__inner:hover {
	opacity: 0.7;
	transition: 0.6s;
}
.caption_person {
	font-weight: 500;
}
.caption_account {
	font-size: 0.75em;
	margin-block-start: 10px;
}
@media screen and (max-width: 767px) {
	.caption_account {
		margin-block-start: 5px;
	}
}
