@charset "euc-jp";
/* CSS Document */

body {
  background: #F3F3F3;
}

.is-opacity:hover {
    -ms-filter: 'alpha( opacity=70)';
    filter: alpha( opacity=70);
    opacity: 0.7;
}

header {
  background: #FFF;
}

.header-in {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1.logo {
  width: 203px;
}

header h2 {
  font-size: 34px;
  font-weight: bold;
}

.main-img {
  width: 980px;
  margin: 0 auto;
  padding-bottom: 30px;
}

section .question {
  line-height: 2em;
  padding: 10px;
  font-weight: bold;
  width: 980px;
  margin: 40px auto 0px auto;
  font-size: 30px;
  text-align: center;
}

section .question:before {
  background: url("../img/icon_01.png") no-repeat;
  content:"";
	display:inline-block;
	width:0.9em;
	height:0.9em;
  background-size:contain;
  padding: 0 10px 0 0;
}

fieldset, .result_wrap {
  border: none;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  width: 980px;
  border-radius: 10px;
}

fieldset .fieldset-wrap {
  width: 850px;
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.radio-inline__label {
  padding: 20px 0 16px;
  line-height: 1.4;
  margin-right: 0px;
  margin-bottom: 30px;
  transition: all .2s;
  background: #EFEFEF;
  width: 400px;
  border-radius: 10px;
  border: #EFEFEF 1px solid;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.radio-inline__input:checked + .radio-inline__label {
  padding: 20px 0 16px;
  line-height: 1.4;
  background: #FF5151;
  border: #D80000 1px solid;
  color: #fff;
  font-weight: bold;
  width: 398px;
  box-shadow: none;
}

.radio-inline__label:hover {
  background: #F5F5F5;
  border: #F5F5F5 1px solid;
  color: #999;
}

.radio-inline__input:focus + .radio-inline__label {
  outline-color: #4D90FE;
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px;
}

.result_wrap {
  border: none;
  margin: 70px auto 0;
  text-align: center;
  background: #FFF;
  width: 980px;
  border-radius: 10px;
  padding: 30px 0;
}

.result_ttl{
  width: 885px;
  margin: 0 auto;
  padding: 20px 0 16px;
  line-height: 1.4;
  background: #FF5151;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  font-size: 30px;
}

.result_box {
  width: 885px;
  margin: 30px auto 0;
}

.result_box p{
  font-size: 20px;
  line-height: 1.75em;
  font-weight: bold;
  margin-bottom: 30px;
}

footer {
  background: #FFF;
  margin-top: 70px;
  padding-top: 30px;
}

.footer_wrap {
  width: 885px;
  margin: 0 auto;
}

.footer_wrap p {
  width: 885px;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

.btn_area {
  text-align: center;
}

.btn01 {
  display: inline-block;
  margin: 0 30px 0 auto;
  text-align: center;
  text-decoration: none;
  background: #32BFF5;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  min-width: 350px;
}

.btn02 {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  background: #49CF30;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  min-width: 350px;
}

.btn01 a, .btn02 a{
  display: block;
  text-decoration: none;
  border: 0;
  padding: 25px;
  margin: 0;
  background: 0;
  cursor: pointer;
  color: #FFF;
  font-weight: bold;
  font-size: 30px;
}

.btn01 a:hover, .btn02 a:hover{
  opacity: 0.7;
}

.footer-links {
  margin: 0 auto;
  padding: 70px 0 10px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-links li {
    position: relative;
    height: 18px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1;
    border-right: 1px solid #3B3B3B;
}

.footer-links li:last-child {
    border-right: none;
}

.footer-links li a{
  color: #6F7579;
  text-decoration: none;
  position: relative;
}

.footer-links li a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FF5151;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .1s;
}

.footer-links li a:hover{
  color: #FF5151;
}

.footer-links li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer-copyright {
    padding: 3px;
    font-size: 16px;
    line-height: 1.85;
    text-align: center;
}

@media screen and (min-width: 769px) {
  .pc_no { display: none; }
}

@media only screen and (max-width: 768px) {
.sp_no { display: none; }
.pc_no { display: block; }
html {
  -webkit-text-size-adjust: 100%;
  min-width: 100%;
}
body { min-width: 100%;}
  
.header-in {
  width: 98%;
}
  
h1.logo {
  width: 40%;
}
  
h1.logo img {
  width: 100%;
}  
  
header h2 {
  font-size: 18px;
}

.main-img {
  width: 100%;
  padding-bottom: 0px;
}
.main-img img { 
  width: 100%;
}
  
section .question {
  width: 90%;
  margin: 30px auto 0px auto;
  font-size: 20px;
}
  
fieldset, .result_wrap {
  width: 90%;
  padding: 20px 0 10px;
}

fieldset .fieldset-wrap {
  width: 90%;
  margin: 10px auto 0 auto;
}
  
.radio-inline__label {
  width: 98%;
}
  
.radio-inline__input:checked + .radio-inline__label {
    width: 98%;
}
  
.result_ttl {
  width: 85%;
  font-size: 20px;
  padding: 20px 10px 16px;
}

.result_box {
  width: 90%;
  margin: 30px auto 0;
}

.result_box p {
  font-size: 18px;
  line-height: 1.75em;
  font-weight: bold;
  margin-bottom: 30px;
  overflow-wrap: break-word;
ˇˇword-wrap: break-word;
}

footer {
  margin-top: 50px;
}  

.footer_wrap {
  width: 100%;
  margin: 0 auto;
}
  
.footer_wrap p {
  width: 100%;
  font-size: 20px;
}
  
.footer-links {
  display: block;
  padding: 50px 0 0 0;
}
  
.footer-links li {
  border-right: none;
  margin-bottom: 30px;
  text-align: center;
}
  
.btn_area {
  text-align: center;
}
  
.btn01, .btn02 {
  width: 50%;
  min-width: 90%;
  margin: 0 auto;
}
  
.btn01 {
  margin: 0 auto 20px;
}
  
.btn01 a, .btn02 a {
    padding: 15px;
    font-size: 20px;
}
  
  
}