@charset "UTF-8";
/* CSS Document */

/* contents */
#app {
	overflow-x: hidden;
	float: right;
	width: 800px;
	color: #5d2208;
	font-size: 18px;
    line-height: 160%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	background: #FFF;	
}
#app * {
    box-sizing: border-box;
}
#app a {
    color: #5d2208;
}
#app .sp {
    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: 50px;
}
#app .closing {
	position: relative;
}

/*------ ダウンロードボタン調整 ------*/
#app .dl-btn01 {
	display: flex;
	justify-content: space-between;
	width: 740px;
	margin: 50px auto 0;
}
#app .dl-btn02 {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 233px;
	left: 70px;
	width: 660px;
	height: auto;
}
#app .dl-btn03 {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 571px;
	left: 30px;
	width: 740px;
}
#app .dl-btn02 a:first-child {
	margin-right: 7px;	
}
#app .dl01 {
	position: relative;
}

/*------ 注意事項 ------*/
#app .attention {
	width: 800px;
	margin: 0 auto;
	padding: 20px 30px 60px;
	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: 410px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
}
#app .nav img {
	width: 100px;
	height: 107px;
}
#app .nav.prev {
	left: 10px;
}
#app .nav.next {
	right: 10px;
	transform: scale(-1, 1);
}
#app .indicators {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 24px auto 60px;
	cursor: pointer;
}
#app .dot {
	width: 20px;
	height: 20px;
	background-color: #fdbcc2;
	border-radius: 50%;
	transition: background-color 0.3s;
}
#app .dot.active {
	background-color: #fff447;
}
