@charset "utf-8";

body {
	font-family:Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "游ゴシック", YuGothic, sans-serif;
    background-color: #f2f2f2;
}

/* window size */
@media only screen and (max-width: 1439px) {
	body {
		transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
	}
}
@media only screen and (max-width: 1339px) {
	body {
		transform: scale(0.8);
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
	}
}
@media only screen and (max-width: 1189px) {
	body {
		transform: scale(0.7);
		-webkit-transform: scale(0.7);
		-moz-transform: scale(0.7);
	}
}

#wrapper {
	width: 100%;
    height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
    /*overflow: hidden;*/
}
/* header */
#headerWrapper {
	width: 100%;
	z-index: 1100;
}
#header {
    width: 1440px;
    height: 80px;
    position: relative;
	background-color: #fff;
	margin: 0 auto;
}
#canonLogo {
	width: 151px;
	height: 31px;
	position: absolute;
	top: 25px;
	left: 50px;
	margin: 0;
	padding: 0;
}
#productLogo {
	width: 680px;
	height: 35px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
#headerBtn {
	width: 100px;
	height: 24px;
	position: absolute;
	top: 31px;
	right: 50px;
	margin: 0;
	padding: 0;
    z-index: 1200;
}
/* contents */
#contentsWrapper {
	width: 100%;
	height: 680px;
}
#contents {
	width: 1440px;
	height: 680px;
	position: relative;
	margin: 0 auto;
}
/* button */
.btnStyle {
	color: #333;
	background: #fff;
    border-radius: 6px;
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	border: solid 1px #843c0c;
}
.btnStyle:hover {
    text-decoration: underline;
    color: #fff;
	background: #d26317;
}
.btnDisableStyle {
	color: #333;
	background: #fff;
    border-radius: 6px;
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	border: solid 1px #843c0c;
}
/* slide switch */
.switchArea {
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    font-size: 12px;
    position: relative;
    margin: auto;
    width: 72px;
    background-color: transparent;
}
.switchArea input[type="checkbox"] {display: none;}
.switchArea label {
    display: block;
    box-sizing: content-box;
    background: #fff;
    border: 2px solid #aaaaaa;
    border-radius: 12px;
    cursor: pointer;
}
.switchArea input[type="checkbox"]:checked +label {border-color: #843c0c;}
.switchArea label span:after {
    content: "OFF";
    padding: 0 12px 0 0;
    color: #aaaaaa;
}
.switchArea  input[type="checkbox"]:checked + label span:after {
    content: "ON";
    padding: 0 0 0 12px;
    color: #843c0c;
}
.switchArea #swImg {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #aaaaaa;
    top: 4px;
    left: 52px;
    border-radius: 10px;
    transition: .2s;
}
.switchArea input[type="checkbox"]:checked ~ #swImg {
    transform: translateX(-48px);
    background: #843c0c;
}
/* attention */
#topGuide {
    max-width: 1440px;
    height: 28px;
    position: relative;
	margin: 0 auto;
	padding: 12px 0 0 0;
    font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #666;
}
#attention {
    max-width: 1340px;
    height: 48px;
    position: relative;
	margin: 0 auto;
    margin-top: 580px;
	padding: 0;
    font-size: 10px;
	line-height: 13px;
	text-align: left;
	color: #666;
    pointer-events: none;
}

/* 2023/08/10追加 */
.site-header{
    display: none;
}
body{
    letter-spacing: normal;
}
*, ::after, ::before {
    box-sizing: content-box;
}

/* 2023/08/17追加 */
.disc li{
    list-style: disc;
}
