@charset "UTF-8";
/* CSS Document */

/* contents */
#app {
	overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
	width: 100%;
    color: #5d2208;
    font-size: 14px;
    line-height: 150%;
	background: #FFF;
}
#app * {
    box-sizing: border-box;
}
#app a {
    color: #5d2208;
}
#app .pc {
    display: none !important;
}
#app img,
#app p {
	border: 0;
	margin: 0;
	vertical-align: top;
}
#app h2,h3,h4 {
    margin: 0;
    padding: 0;
}
#app dl, dt, dd, ol, ul, li {
    margin: 0;
    padding: 0;
}

/*------ メイン・クロージング ------*/
#app .main {
	background: #ea616f;
	padding-bottom: 6.25%;
}
#app .closing {
	position: relative;
}

/*------ ダウンロードボタン調整 ------*/
#app .dl-btn01 {
	display: flex;
	justify-content: space-between;
	width: 92%;
	margin: 6.25% auto 0;
}
#app .dl-btn02 {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 25%;
	left: 8.75%;
	width: 82.5%;
}
#app .dl-btn03 {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 61%;
	left: 3.75%;
	width: 92%;
}
#app .dl-btn01 a:first-child {
	margin-right: 5px;
}
#app .dl-btn02 a:first-child {
	margin-right: 5px;
}
#app .dl-btn03 a:first-child {
	margin-right: 5px;
}
#app .dl01 {
	position: relative;
}

/*------ 注意事項 ------*/
#app .attention {
	width: 100%;
	margin: 0 auto;
	padding: 2.5% 3.75% 7.5%;
	background: #fff;
}
#app .attention h3 {
	font-size: 20px;
	margin: 30px 0 10px;
}
#app .attention p {
	font-size: 16px;
	line-height: 160%;
}

#app .attention span {
	color: #ea616f;
}

/*------ カルーセル ------*/
#app .carousel-container {
	position: relative;
	width: 100%;
	background: #ea616f;
	overflow: hidden;
}
#app .carousel {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 100%;
}
#app .slide {
	flex-shrink: 0;
	width: 100%;
}
#app .slide img {
	display: block;
	width: 100%;
	height: auto;
}
#app .nav {
	position: absolute;
	top: 40%;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
}
#app .nav-app {
	position: absolute;
	top: 30%;
}
#app .nav img {
	width: 40px;
	height: auto;
}
#app .nav.prev {
	left: 1%;
}
#app .nav.next {
	right: 1%;
	transform: scaleX(-1);
}
#app .indicators {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 3% auto 7.5%;
	cursor: pointer;
}
#app .dot {
	width: 15px;
	height: 15px;
	background-color: #fdbcc2;
	border-radius: 50%;
	transition: background-color 0.3s;
}
#app .dot.active {
	background-color: #fff447;
}
