@charset "UTF-8";

/* リセット */
@import url('reset.css');
li{
	list-style-type: none;
}

/* ----------------------------------------------
共通
------------------------------------------------ */

body{
	background-color:#52a1c2;
}

/* ボタン */
#simulation button{
	border:none;
	padding:12px;
	display: block;
	margin:auto;
	position: relative;
	cursor: pointer;
	background-color: #ffb528;
	color: #fff;
	text-align: center;
	box-shadow: rgb(39 39 39 / 30%) 3px 3px 4px;
}
#simulation button:hover{
	background-color: #fdba3c;
}
#simulation button a{
	color:#fff;
	text-decoration: none;
}
#simulation button.contact{
	background-color: #828282;
}
#simulation button.contact:hover{
	background-color: #aaa;
}
#simulation button.contact_02{
	background-color: #828282;
}
#simulation button.contact_02:hover{
	background-color: #aaa;
}

/* 全体レイアウト */
#simulation > div{
	height:auto;
}

/* ----------------------------------------------
ページ別スタイル
------------------------------------------------ */
/* TOP */
#simulation #home{
	background: url('/store/html/user_data/assets/img/torikae/top-bg.jpg') top center;
	background-size: cover;
	color:#fff;
	padding:0 calc((100% - 1060px)/2);
}
#simulation #home h1{
	padding: 0;
	font-size: 70px;
	text-align: center;
}
#simulation #home p{
	color: #39393a;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
}
#simulation #home button{
	width:320px;
	font-size:20px;
	border-radius: 30px;
	margin: 0 auto 20px;
}
#simulation #home button::after{
	position: absolute;
	display: block;
	content: '';
	width:16px;
	height:16px;
	top:calc(50% - 8px);
	right:30px;
	border-top:solid 2px #fff;
	border-right:solid 2px #fff;
	transform:rotate(45deg);
}
#simulation #toriae-inner {
	background-color: #ffffffd8;
    margin: 120px 0;
    padding: 0 50px 30px;
    border-radius: 30px;
}
#simulation #toriae-inner img {
	width: 80%;
}
/* 下層 */
#simulation .page{
	/* width:1060px; */
	max-width: 1060px;
                min-height: 720px;
	background-color:#f2f2f2;
	margin: auto;
                padding-bottom: 20px;
}
#simulation .page button{
	width:220px;
	font-size: 16px;
	border-radius: 20px;
	margin-bottom: 10px;
}
#simulation .page button::after{
	position: absolute;
	display: block;
	content: '';
	width:10px;
	height:10px;
	top:calc(50% - 5px);
	right:20px;
	border-top:solid 2px #fff;
	border-right:solid 2px #fff;
	transform:rotate(45deg);
}
/* ダミー用：納品時削除する */
#simulation .page .dummy{
	text-align: center;
	margin:0 auto;
}
#simulation .page .dummy img{
	height: 650px;
}
/* 共通ナビゲーション */
#simulation .step{
	padding-top:10px;
	position: relative;
}
#simulation .nav{
	display: flex;
	margin-top: 20px;
}
#simulation .nav li{
	width:calc(100%/6);
	background-color:#ccc;
	color:#555;
	padding:10px;
	font-size:14px;
	text-align: center;
}
#simulation .nav li:not(:last-child){
	border-right: solid 1px #aaa;
}
/* 前に戻れるようにする */
#simulation .nav .q1,
#simulation .nav .q2,
#simulation .nav .q3,
#simulation .nav .q4,
#simulation .nav .q5{
	cursor: pointer;
}
#simulation .nav .q1:hover,
#simulation .nav .q2:hover,
#simulation .nav .q3:hover,
#simulation .nav .q4:hover,
#simulation .nav .q5:hover{
	background-color:#52a1c2;
	color:#fff;
}
#simulation .nav li.current{
	background-color:#52a1c2;
	color:#fff;
}
/* 設問 */
#simulation .step h1{
	margin-left: 50%;
	padding:50px 0;
	text-align: center;
	font-size:16px;
                line-height: 24px;
                color:#555;
}
#simulation h1>span{
	font-size:18px;
}
#simulation .qa{
	height: 490px;
	display: flex;
	position: relative;
}
#simulation .qa > *{
	width:50%;
	display: flex;
	align-items: center;
	justify-content: center;
                margin: 0;
}
#simulation .ans{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
#simulation .s-ans {
	margin-bottom: 55px;
}
#simulation .ans li{
	width:50%;
	font-size:12px;
	color:#828282;
	cursor: pointer;
	margin-bottom:30px;
}
#simulation .s-ans li {
	margin-bottom: 20px;
}
#simulation .ans li figure{
	width:180px;
	height:180px;
	margin: 0 0 8px 0!important;
	border:solid 3px #ccc;
	border-radius: 5px;
	box-shadow: rgba(39, 39, 39, 0.3) 3px 3px 4px;
	position: relative;
                box-sizing: content-box;
}
#simulation .ans li figure::after{
	position: absolute;
	content: '';
	background: url('/store/html/user_data/assets/img/torikae/chk-off.png');
	background-size: contain;
	width: 36px;
	height: 36px;
	top: -2px;
	right: -2px;
	border-radius: 4px;
}
#simulation .ans li figure.on,
#simulation .ans li:hover figure{
	border:solid 3px #ffb936;
}
#simulation .ans li figure.on::after,
#simulation .ans li:hover figure::after{
	position: absolute;
	content: '';
	background: url('/store/html/user_data/assets/img/torikae/chk.png');
	background-size: contain;
	width: 36px;
	height: 36px;
	top: -2px;
	right: -2px;
	border-radius: 4px;
}
#simulation button.back{
	background-color: #d6d6d6;
	color:#808080;
	width:140px;
	padding:8px;
	margin-top: 20px;
}
#simulation button.back:hover{
	background-color:#ccc;
}
#simulation button.back::after{
	left:20px;
	right:auto;
	border-top:solid 2px #808080;
	border-right:solid 2px #808080;
	transform:rotate(-135deg);
}
/* やり直す */
.repeat{
	text-align: center;
	font-size:14px;
	color:#333;
	margin:30px;
	cursor: pointer;
}
.repeat span{
	border-bottom:solid 1px #aaa;
	padding:0 20px;
	position: relative;
}
.repeat span::after{
	content: '';
	position: absolute;
	right:6px;
	top:6px;
	width:8px;
	height:8px;
	border-top:solid 1px #aaa;
	border-right:solid 1px #aaa;
	transform:rotate(45deg);
}

/* ----TOPページ----------------------- */
#simulation .torikae {
	display: flex;
}
#home-img {
	height: 675px;
	padding: 120px 0 0 120px;
}
/* ----ページ共通----------------------- */
#simulation .sp-only{
display: none;
}
#simulation .page-style {
	background-color: #f2f2f2;
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
	padding-bottom: 50px;
}
#simulation #cau li{
	margin-bottom: 180px;
}
#simulation .page-title {
	margin-bottom: 40px;
}
#simulation .page-title h2 {
	font-size: 30px;
                padding-top: 40px;
                text-align: center;
                margin-top: 0;
}
#simulation .page-title h3 {
	font-size: 18px;
                line-height: 28px;
                text-align: center;
	font-weight: 400;
}
#simulation .page-title p {
	color: #52a1c2;
	font-size: 20px;
	line-height: 28px;
}
#simulation #ans-note {
	position: relative;
                top: -10px;
}
#simulation .caution_box {
	display: flex;
                flex-wrap: wrap;
                background-color: #ffffffd2;
                width: 42%;
                padding: 20px;
                justify-content: space-between;
                border: #52a1c2 solid 1px;
                border-radius: 30px;
                position: absolute;
                top: 280px;
                left: 50%;
 }
#simulation .caution_inner {
	font-size: 14px;
    width: 58%;
    margin: 10px;
    line-height: 20px;
}
#simulation .caution_text {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}
/* 見出し下線 */
#simulation .balloon {
    position: relative;
    display: block;
    border-bottom: solid 2px #525252;
    padding: 10px 0 15px;
    width: 550px;
    max-width: 100%;
    text-align: center;
	margin: 0 auto 30px;
}
#simulation .balloon:before,
#simulation .balloon:after {
    content: "";
    position: absolute;
    top: 101%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
#simulation .balloon:before {
    border: solid 12px transparent;
    border-top: solid 12px #525252;
}
#simulation .balloon:after {
    border: solid 15px transparent;
    border-top: solid 14px #f2f2f2;
    margin-top: -5px;
}
#simulation .balloon p {
    margin: 0;
    padding: 0;
}
#simulation .hint-text {
	display: block;
    text-align: center;
    color: #828282;
    font-size: 14px;
    margin: 10px 0;
    text-decoration: none;
}
#simulation .hint-text img {
    padding: 0 3px 5px 0;
}
#simulation .hint-text:hover {
	text-decoration: underline;
}
#simulation .setumei {
    display: flex;
    flex-wrap: wrap;
    width: 44%;
    padding: 0 0 0 20px;
    justify-content: space-between;
    position: absolute;
    top: 430px;
    left: 49%;
    color: #828282;
    text-align: 14px;
    font-size: 14px;
    line-height: 20px;
}
/* ----ABOUTページ----------------------- */
/* 矢印 */
#simulation .arrow{
    position: relative;
    display: inline-block;
    padding: 0 16px 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
#simulation .arrow::before,
#simulation .arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
#simulation .step-arrow::before{
    left: 12px;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border: 12px solid transparent;
    border-left: 12px solid #52a1c2;
}
/* ステップ */
#guide-box {
	width: 80%;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin: 0 auto 50px;
}
#simulation .guide-inner {
	width: 30%;
	max-width: 200px;
	border: #000 1px solid;
	position: relative;
	padding: 20px 20px 10px 20px;
	text-align: center;
}
#simulation .guide-inner p {
	font-size: 16px;
	line-height: 30px;
	text-align: left;
}
#simulation .step-mark {
	position: absolute;
	top: -10%;
	left: 36%;
}
#simulation .step-img {
	margin: 20px 0;
	height: 40%;
}
#simulation .under {
	color: #52a1c2;
	border-bottom: #52a1c2 1px solid;
}
/* ---CHECKページ------------------------ */
#simulation .check-inner {
	width: 30%;
}
#simulation .mark {
	border: #202020 solid 1px;
	border-radius: 5px;
	background-color: #ffffffe8;
	margin: 0 0 10px 0;
	padding: 15px 15px 15px 30px;
	font-size: 16px;
	line-height: 26px;
	position: relative;
}
#simulation .mark img {
	position: absolute;
	left: -5%;
	top: 28%;
	height: 32px;
}
#simulation .mark02 img {
	top: 22%;
}
#check-box {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
#simulation .hosoku {
	font-size: 14px;
	margin: 10px 0;
	line-height: 22px;
}
#zizen-img {
	margin-right: 20px;
	height: 430px;
}
/* ---結果ページ------------------------ */
#simulation .result-item {
	text-align: center;
}
#simulation .result-item h4 {
	color: #52a1c2;
	font-size: 34px;
	margin-bottom: 20px;
}
#simulation .result-item img {
	height: 210px;
}
#simulation .result-item p {
	margin: 20px;
                font-size: 16px;
	line-height: 30px;
	text-align: center;
}
#simulation ul {
	padding-inline-start: 0px;
}
#simulation .result-item span {
	color: #e40000;
                font-size: 14px;
}
#contact-text {
	margin: 50px 0 !important;
}
#simulation .link {
    position: relative;
    display: block;
    width: 220px;
    margin: 0 auto 10px;
    height: 42px;
    line-height: 42px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 20px;
    background-color: #ffb528;
    box-shadow: rgb(39 39 39 / 30%) 3px 3px 4px;
    text-align: center;
}
#simulation .link::after{
	position: absolute;
	display: block;
	content: '';
	width:10px;
	height:10px;
	top:calc(50% - 5px);
	right:20px;
	border-top:solid 2px #fff;
	border-right:solid 2px #fff;
	transform:rotate(45deg);
}
#simulation .link:hover{
	background-color: #fdba3c;
}
/* ----モーダル----------------------- */
#simulation .modal__content>.mdl-midasi {
	font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
#simulation .content{
    margin: 0 auto;
}
#simulation .content a {
	color: rgb(94, 94, 94);
}
#simulation .modal{
    display: none;
    height: 100vh;
    top: 0;
    width: 100%;
}
#simulation .modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
	top: 0%;
	left: 0%;
    width: 100%;
}
#simulation .modal__content{
    background: #fff;
	min-width: 600px;
    padding: 20px 25px;
    position: absolute;
    top: 50%;
	left: 50%;
    transform: translate(-50%,-50%);
	border: 5px solid #52a1c2;
}
#simulation .modal__content li {
	line-height: 24px;
	font-size: 14px;
}
#simulation .modal__content p {
	margin-bottom: 30px;
	line-height: 24px;
	font-size: 14px;
}
#simulation .modal__content a {
	margin-bottom: 30px;
	line-height: 24px;
	text-decoration: none;
	color: #52a1c2;
}
#simulation .modal__content a:hover {
	text-decoration: underline;
}
#simulation .modal__content ul {
    text-indent: -0.5em;
    margin-left: 1em;
	margin-bottom: 10px;
	line-height: 24px;
}

/* 閉じるボタン */
.dli-close {
	display: inline-block;
	vertical-align: middle;
	color: #52a1c2;
	line-height: 1;
	width: 1em;
	height: 0.1em;
	background: currentColor;
	border-radius: 0.1em;
	position: relative;
	transform: rotate(45deg);
	margin: 0 5px 1px 0;
}
.dli-close::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
}
#simulation #q3_mdl_img img{
	margin: 10px 50px 30px 20px;
}


  /* ---------------------------- */
  /* --- Animation --- */
  /* ---------------------------- */
  /* TOPのアニメーション */
.Item{
	opacity: 0;
	animation: fadeIn 0.4s;
	animation-fill-mode: both;
}
@keyframes fadeIn{
	0%{
	opacity: 0;
	}
	100%{
	opacity: 1;
	}
}
/* 各ページのアニメーション */
.Headline{
	animation: SlideIn 1s;
}
@keyframes SlideIn {
	0% {
	opacity: 0;/*初期状態では透明に*/
	transform: translateX(64px);
	}
	100% {
	opacity: 1;
	transform: translateX(0);
	}
}

/* ----------------------------------------------------- */
/* max-width:1060pxの設定
===============================================================*/
@media(max-width:1060px){
/* トップページ */
#simulation .torikae {
	justify-content: space-evenly;
}
#simulation #toriae-inner {
	width: 45%;
                padding: 0px 40px 20px;
}
#simulation #toriae-inner img {
    width: 100%;
}
#simulation #home h1 {
    padding: 0;
    margin: 20px 0;
}
#simulation #home p {
    color: #39393a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}
#simulation #home button {
    width: 280px;
    font-size: 20px;
    border-radius: 30px;
    margin: 0 auto 10px;
}
#home-img {
    height: 550px;
    padding: 130px 0 0 40px;
    margin-top: 50px;
}
/* ページ共通--------------------- */
#simulation .page-title h2 {
    font-size: 28px;
    padding-top: 40px;
    text-align: center;
}
#simulation .page-title p {
    font-size: 19px;
    line-height: 24px;
}
#simulation .page-title h3 {
    font-size: 16px;
    line-height: 28px;
}
/* Aboutページ--------------------- */
#simulation .guide-inner {
    width: 25%;
    padding: 20px 20px 0;
}
#guide-box {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 40px;
	padding-top: 10px;
    justify-content: space-evenly;
}
#simulation .arrow {
    padding: 0 30px 0 0px;
    font-size: 15px;
}
#simulation .step-img {
    margin: 20px 0;
    height: 35%;
}
#simulation .step-mark {
    position: absolute;
    top: -10%;
    left: 36%;
    width: 60px;
}
#simulation .guide-inner p {
    font-size: 15px;
    line-height: 28px;
}
/* 質問ページ--------------------- */
#simulation .page {
    max-width: 1060px;
    background-color: #f2f2f2;
    margin: auto;
    padding-bottom: 20px;
}
#simulation .nav li {
    padding: 10px 5px;
    font-size: 14px;
}
#simulation .step h1 {
    margin-left: 50%;
    padding: 35px 0;
    font-size: 14px;
}
#simulation h1>span{
	font-size:16px;
}
#simulation .ans li img {
	width: 140px;
	height:140px;
    margin-bottom: 8px;
    border-radius: 5px;
    box-shadow: rgb(39 39 39 / 30%) 3px 3px 4px;
}
#simulation .ans li figure::after {
    width: 32px;
    height: 32px;
}
#simulation .ans li figure.on::after, #simulation .ans li figure:hover::after {
    width: 32px;
    height: 32px;
}
#simulation .ans li figure{
	width:140px;
	height:140px;
	margin-bottom:8px;
	border:solid 3px #ccc;
	border-radius: 5px;
	box-shadow: rgba(39, 39, 39, 0.3) 3px 3px 4px;
	position: relative;
}
#simulation figure > img {
	height: 380px;
}
#simulation .caution_box {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffffd2;
    width: 39%;
    padding: 15px 10px;
    justify-content: space-between;
    border: #52a1c2 solid 1px;
    border-radius: 30px;
    position: absolute;
    top: 265px;
    left: 54%;
}
#simulation #q3_mdl_img img {
    margin: 10px 50px 30px 20px;
    width: 90px;
}
#simulation .setumei {
    width: 46%;
    padding: 20px;
    justify-content: space-between;
    top: 365px;
    left: 48%;
    text-align: 14px;
    font-size: 14px;
    line-height: 20px;
}
}
/* max-width:767pxの設定
===============================================================*/
@media(max-width:767px){
                #simulation > div {
                                height: auto;
                }
	/* TOPページ----------------------------------- */
	#home-img {
		height: 580px;
		padding: 170px 0 0 40px;
	}
	#simulation #toriae-inner img {
		width: 100%;
	}
	#simulation #home p {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 20px;
		text-align: left;
	}
	#simulation #home button {
		width: 250px;
		font-size: 18px;
		border-radius: 30px;
		margin: 0 auto 15px;
	}
	/* Checkページ------------------------------------ */
                #simulation .page-title h2 {
                                padding-top: 70px;
                }
	#zizen-img {
		margin-right: 20px;
		margin-top: 40px;
		height: 350px;
	}
	#simulation .check-inner {
		width: 40%;
	}
	#simulation .hosoku {
		font-size: 14px;
		margin: 15px 0;
	}
	/* 質問ページ--------------------- */
                #simulation .step {
                                padding-top: 50px;
                }
	#simulation .qa {
		height: 450px;
		display: flex;
		position: relative;
		align-items: center;
	}
                #simulation .ans li figure {
                               margin: 0 0 8px;
                }
	#simulation figure > img {
		height: 350px;
	}
	#simulation .ans li img {
		/* width: 140px; */
		margin-bottom: 8px;
		border-radius: 5px;
		box-shadow: rgb(39 39 39 / 30%) 3px 3px 4px;
	}
	#simulation button.back {
		background-color: #d6d6d6;
		color: #808080;
		width: 140px;
		padding: 8px;
		margin-top: 20px;
	}
	#simulation .caution_box {
		display: flex;
		flex-wrap: wrap;
		background-color: #ffffffd2;
		width: 45%;
                                padding: 10px 12px;
                                justify-content: space-around;
                                border: #52a1c2 solid 1px;
                                border-radius: 30px;
                                position: absolute;
                                top: 225px;
                                left: 50%
	}
	#simulation .caution_inner {
		font-size: 14px;
		width: 52%;
		margin: 10px;
		line-height: 20px;
	}
	#simulation .caution_text {
		font-size: 16px;
		margin-bottom: 5px;
		text-align: left;
	}
	#simulation .setumei {
		width: 50%;
		top: 345px;
		left: 47%;
	}
               #simulation .js-modal-close {
                                font-size: 16px;
               }
}
	/* max-width:650pxの設定
===============================================================*/
@media(max-width:650px){
	/* TOPページ----------------------------------- */
	#simulation .pc-only{
		display: none;
		}
	#simulation .sp-only{
		display:block;
		}
	#simulation .torikae {
		display: block;
	}
	#simulation #home button {
		width: 230px;
		font-size: 17px;
	}
	#simulation #home-img {
		height: 300px;
		margin: 0 auto;
		padding: 10px 0 0 0px;
	}
	#simulation #toriae-inner {
		width: 80%;
		margin: 20px auto;
		padding-bottom: 20px;
	}
	#simulation #home h1 {
		padding: 20px 0 ;
                                margin: 0;
	}
	#simulation #toriae-inner img {
		width: 60%;
	}
	#simulation #toriae-inner {
		padding: 0 40px 10px;
	}
	#simulation #home button{
		width:270px;
		font-size: 18px;
		border-radius: 30px;
		margin: 0 auto 15px;
	}
	#simulation #home button::after{
		width:12px;
		height:12px;
	}
	/* Checkページ------------------------------------ */
	#zizen-img {
		height: 250px;
	}
	#simulation .check-inner {
		width: 45%;
	}
	#simulation .mark {
		margin: 0 0 10px 0;
		padding: 10px 10px 10px 25px;
		font-size: 15px;
		line-height: 26px;
		position: relative;
	}
	#simulation .hosoku {
		font-size: 14px;
		margin: 20px 20px;
	}
	#simulation .mark02 img {
		top: 16%;
	}
	/* 質問ページ--------------------- */
	#simulation .caution_box {
		display: flex;
		flex-wrap: wrap;
		background-color: #ffffffd2;
		width: 80%;
		padding: 15px 10px;
		justify-content: space-around;
		border: #52a1c2 solid 1px;
		border-radius: 30px;
		position: absolute;
		top: 355px;
		left: 7%;
		flex-direction: row;
	}
	#simulation .step h1 {
		margin: 0 auto;
		padding: 30px 0 20px;
		font-size: 14px;
	}
	#simulation .qa {
		height: 570px;
		display: flex;
		position: relative;
		align-items: center;
		flex-direction: column;
	}
	#simulation #mb {
		margin-bottom: 50px;
	}
	#simulation .ans li figure {
		width: 130px;
		height: 130px;
	}
	#simulation .ans li img {
		height: 130px;
	}
	#simulation figure > img {
		height: 250px;
	}
	#simulation .qa > * {
		width: 60%;
		display: flex;
		align-items: center;
		/* margin: 0 auto; */
	}
	#simulation .ans {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 50px;
	}
	#simulation .sp-ans {
		margin-top: 10px!important;
	}
	#simulation .ans li {
		width: 50%;
		font-size: 12px;
		color: #828282;
		cursor: pointer;
		margin-bottom: 10px;
	}
	#simulation .ans li img {
		width: 130px;
		margin-bottom: 8px;
	}
	#simulation .caution_box {
		display: flex;
		flex-wrap: wrap;
		background-color: #ffffffd2;
		width: 80%;
		padding: 15px 10px;
		justify-content: space-around;
		border: #52a1c2 solid 1px;
		border-radius: 30px;
		position: absolute;
		top: 418px;
		left: 12%;
		flex-direction: row;
	}
	#simulation .caution_inner {
		font-size: 14px;
		width: 52%;
		margin: 0;
		line-height: 20px;
	}
	#simulation .ans li {
		width: 40%;
		font-size: 12px;
	}
	#simulation #cau li {
		margin-bottom: 0;
	}
	#simulation .setumei {
		padding: 40px 0 10px;
		left: 20%;
		top: 450px;
	}
	#simulation .content {
		margin: 20px auto;
	}
	#simulation .modal__content {
		min-width: 450px;
	}
}
/* max-width:570pxの設定
===============================================================*/
@media(max-width:570px){
/* TOPページ----------------------------------- */
	#simulation #toriae-inner {
		padding: 0 30px 10px;
	}
	#simulation #toriae-inner img {
		width: 70%;
	}
                #simulation #home {
                                padding-top: 30px;
                }
	#simulation #home h1 {
		padding: 30px 0 10px;
	}
/* ページ共通------------------------------------ */
#simulation .page-title {
    margin-bottom: 10px;
}
#simulation .page-title p {
    font-size: 16px;
    line-height: 14px;
}
#simulation .page-title h2 {
    font-size: 24px;
    padding-top: 35px;
}
#simulation .balloon {
    position: relative;
    display: block;
    border-bottom: solid 2px #525252;
    padding: 10px 0;
    width: 360px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 20px;
}
#simulation .page-title h3 {
    font-size: 15px;
    line-height: 26px;
    width: 80%;
    margin: 0 auto;
}
/* Aboutページ------------------------------------ */
#guide-box {
    width: 90%;
    max-width:none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 10px;
    padding-top: 10px;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}
#simulation .step-mark {
    position: absolute;
    top: 33%;
    left: -7%;
    width: 50px;
}
#simulation .step-img {
    margin: 10px 20px;
    height: 85px;
}
#simulation .guide-inner {
    width: 80%;
    padding: 10px 10px 10px 20px;
    display: flex;
    max-width: none;
	margin-top: 28px;
}
#simulation .guide-inner p {
    font-size: 14px;
    line-height: 28px;
    margin: 10px;
}
#simulation .arrow {
    padding: 0 30px 0 0px;
    font-size: 15px;
}
#simulation .step-arrow::before {
    left: 0px;
	top: 40px;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #52a1c2;
}
#simulation .arrow::after {
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 0px;
    margin: auto;
    content: "";
    vertical-align: middle;
}
#simulation .sp-mt {
	margin-top: 0;
}
/* Checkページ------------------------------------ */
#zizen-img {
    height: 250px;
	margin: 0 0 10px 0;
}
#simulation .check-inner {
    width: 93%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#simulation .mark {
    margin: 0px 0px 5px 0;
    padding: 10px 10px 10px 25px;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    width: 48%;
}
#simulation .hosoku {
    font-size: 13px;
    margin: 10px 20px;
}

/* 質問ページ------------------------------------ */
#simulation .step {
    padding-top: 10px;
}
#simulation .nav li {
    width: 32%;
    height: 42px;
    margin-right: 2px;
    margin-bottom: 2px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}
#simulation .nav {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
}
#simulation .ans li figure::after {
    width: 32px;
    height: 32px;
}
#simulation .ans li figure::after {
    width: 32px;
    height: 32px;
}
#simulation .ans li figure.on::after,
#simulation .ans li figure:hover::after{
	width: 32px;
	height: 32px;
}
#simulation > div {
    min-height: 800px;
}
#simulation .content {
    margin-top: 30px;
}
#simulation .modal__content {
    min-width: 350px;
}
#simulation .setumei {
    padding: 40px 0 10px;
    left: 56%;
    top: 380px;
    width: 29%;
}
#simulation .result-item h4 {
    font-size: 28px;
    margin-bottom: 20px;
}
}
/* max-width:450pxの設定
===============================================================*/
@media(max-width:450px){
	/* TOPページ----------------------------------- */
	#simulation #home-img {
		height: 235px;
		margin: 0 auto;
		padding: 10px 0 0 0px;
	}
	#simulation #home h1 {
		padding: 15px 0 10px;
	}
	#simulation #toriae-inner img {
		width: 80%;
	}
	#simulation #home p {
		font-size: 15px;
	}
	#simulation #home button {
		width: 230px;
                                height: 50px;
	}
                #simulation #toriae-inner {
                                width: 90%;
                }
	/* ページ共通------------------------------------ */
               #simulation .page {
                                max-width: 1060px;
                                background-color: #f2f2f2;
                                margin: auto;
                                padding-bottom: 20px;
                                padding-top: 30px;
                }
	#simulation .page-title h2 {
		font-size: 20px;
		padding-top: 20px;
	}
	#simulation .page-title p {
		font-size: 15px;
		line-height: 10px;
	}
	#simulation .page-title h3 {
		font-size: 14px;
		line-height: 24px;
		width: 90%;
		margin: 0 auto;
	}
	#simulation .balloon {
		width: 330px;
	}
	/* Aboutページ------------------------------------ */
	#guide-box {
		width: 98%;
		margin: 0 auto 20px;
		padding-top: 10px;
	}
	#simulation .step-mark {
		width: 45px;
	}
	#simulation .step-img {
		margin: 5px 20px 0 10px;
		height: 85px;
	}
	#simulation .guide-inner p {
		font-size: 14px;
		line-height: 24px;
		margin: 0;
	}
	/* Checkページ------------------------------------ */
	#zizen-img {
		height: 200px;
		margin: 0 0 10px 0;
	}
	#simulation .mark {
		margin: 0px 0px 5px 0;
		padding: 10px 10px 10px 20px;
		font-size: 14px;
		line-height: 20px;
		width: 47%;
	}
	#simulation .check-inner {
		width: 93%;
		display: flex;
		flex-wrap: wrap;
	}
	#simulation .mark img {
		position: absolute;
		left: -8%;
		top: 28%;
		height: 32px;
	}
	#simulation .mark02 img {
		top: 30%;
	}
	#simulation .hosoku {
		font-size: 13px;
		margin: 5px 20px;
	}
	/* 質問ページ------------------------------------ */
	#simulation .nav {
		margin-top: 0px;
	}
	#simulation .nav li {
		width: 32%;
		height: 40px;
		line-height: 14px;
		margin-right: 2px;
		margin-bottom: 2px;
		padding: 10px 3px;
		font-size: 14px;
		text-align: center;
	}
                #simulation .step {
                                padding-top: 20px;
                }
	#simulation .step h1 {
		padding: 15px;
	}
	#simulation .qa > * {
		width: 80%;
	}
	#simulation .ans li {
		width: 45%;
		margin-bottom: 0;
	}
	#simulation .ans {
		margin-top: 40px;
	}
                #simulation .ans li figure.on::after, #simulation .ans li figure:hover::after {
                                width: 28px;
                                height: 28px;
                }
                #simulation .ans li figure::after {
                                width: 28px;
                                height: 28px;
                }
	#simulation .qa {
		height: 530px;
	}
	#simulation figure > img {
		height: 200px;
	}
	#simulation .ans li figure {
		width: 120px;
		height: 120px;
	}
	#simulation .ans li img {
		width: 120px;
		height: 120px;
	}
	#simulation #mb {
		margin-bottom: 70px;
	}
	#simulation .hint-text {
		font-size: 12px;
	}
	#simulation .hint-text {
		font-size: 12px;
		margin: 10px 0 0;
	}
	#simulation span.mdl-midasi {
		font-size: 14px;
	}
	#simulation .setumei {
		padding: 5px 0 0;
		left: 54%;
		top: 350px;
		width: 35%;
		font-size: 13px;
	}
	#simulation .caution_box {
		width: 85%;
		padding: 10px;
		top: 350px;
		left: 7%;
	}
	#simulation .caution_text {
		font-size: 15px;
		margin-bottom: 3px;
	}
	#simulation .caution_inner {
		font-size: 12px;
		margin: 5px;
                                width: 45%;
	}
	#simulation .result-item h4 {
		font-size: 24px;
                                margin-top: 40px;
		margin-bottom: 20px;
	}
	#simulation .result-item p {
		margin: 20px 0;
		line-height: 30px;
		font-size: 15px;
	}
                #simulation .result-item {
                                text-align: center;
                                max-width: 90%;
                                margin: 0 auto;
                }
                #simulation .link {
                                font-size: 14px;
                }
	#simulation .modal__content {
		min-width: 300px;
                                padding: 20px 15px;
                                overflow-y: scroll;
                                max-height: 500px;
	}
	#simulation #q3_mdl_img img {
		margin: 0px 50px 0px 20px;
		width: 70px;
	}
	#simulation .modal__content p {
		margin-bottom: 10px;
		line-height: 24px;
		font-size: 14px;
	}
}
