@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://use.fontawesome.com/releases/v6.2.0/css/all.css');

:root {
	--color-pink: #E73462;
	--color-light-pink: #EFC6D6;
	--color-yellow: #FFF577;
	--color-gray: #666464;
	--color-light-gray: #BABDBE;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, textarea {
	padding: 0.25em 0.5em !important;
}

html {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	max-width: 576px;
	margin: 0 auto;
}

header {
	padding: 15px 0 5px;
	background: var(--color-pink);
	text-align: center;
}

header .container {
	display: flex;
	justify-content: center;
	align-items: center;
}
header .container i {
	font-size: 3.6rem;
	color: #fff;
	position: absolute;
	right: 0.5em;
}

header img {
	width: 50%;
}

footer {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 576px;
	height: 60px;
	color: #fff;
	background: #fff;
	padding: 3px 0;
	text-align: center;
	border-top: solid 1px var(--color-light-gray);
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}

#loadingMessage {
	text-align:center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	width:300px;
	padding: 40px 20px;
	border-radius: 5px;
	z-index: 1001;
	display: none;
}

ul.error {
	text-align: left;
	line-height: 1.25em;
	font-size: 1.45em;
}
ul.error li {
	list-style-type: disc;
	margin-left: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
	font-size: 1.5em !important;
}

div.icon img {
	max-height: 32px;
}
div.icon p {
	font-size: 1.4rem;
	color: var(--color-gray);
	margin-top: -5px;
}

main {
	padding-bottom: 66px;
}

.top_midashi {
	text-align: center;
	margin-bottom: -10px;
}

.top_midashi h1 {
	font-size: 2.4rem;
	color: #fff;
	background: var(--color-pink);
	border-radius: 1.6rem;
	margin-top: 10px;
	padding: 0.5em;
}

.top_midashi h1 strong {
	display: block;
	font-size: 1.2em;
	color: var(--color-yellow);
	margin-top: 5px;
}

.top_midashi i, i.expand_more {
	line-height: 20px;
	color: var(--color-light-gray);
}

.check {
	display:inline-block;
}

.check h2 {
	display: flex;
	font-size: 2.9rem;
	font-weight: bold;
	margin: 16px 0;
	&::before {
		content: "";
		display: inline-block;
		background-image: url("../images/icon/icon-check.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 40px;
	}
}
.uline_light_pink {
	background: linear-gradient(transparent 75%,rgba(239, 198, 214, 0.2) 75%,rgb(239, 198, 214) 85%,rgba(239, 198, 214, 0.2));
}
a.takephoto, button.takephoto {
	display: block;
	position: relative;
	width: 60%;
	background: #4EA2CA;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	padding: 0.25em 0 0.35em;
	margin: 1em auto;
	border-radius: 1.5em;
	border: solid 2px #fff;
	filter: drop-shadow(3px 3px 3px #aaa);
	&::after {
		font-family: 'Material Icons';
		content: "chevron_right";
		position: absolute;
		right: 1em;
	}
}

a.btn-help {
	position: fixed;
	right: 10px;
	bottom: 70px;
	font-size: 4rem;
	font-weight: bold;
	background: var(--color-pink);
	&:hover {
		background: #F06281;
	}
}

button.swal2-cancel.swal2-styled {
	font-size: 1.5rem;
}
