@charset "UTF-8";
/* _setting CSS */
html {
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 200;
}
*:before, *:after {
  box-sizing: border-box;
}

/*
input[type=text],
input[type=number],
input[type=password],
input[type=tel] {
	-webkit-appearance: none;
}
*/
header, footer, nav, main, article, section, figure, aside {
  display: block;
}

body {
  line-height: 1.7;
  background-color: #E7EBF5;
  background-image: linear-gradient(#CDD4E3 1px, transparent 1px), linear-gradient(to right, #CDD4E3 1px, #E7EBF5 1px);
  background-size: 30px 30px;
  color: #333333;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

::-webkit-input-placeholder {
  font-family: fot-tsukuardgothic-std, sans-serif;
}

:-moz-placeholder {
  font-family: fot-tsukuardgothic-std, sans-serif;
}

::-moz-placeholder {
  font-family: fot-tsukuardgothic-std, sans-serif;
}

:-ms-input-placeholder {
  font-family: fot-tsukuardgothic-std, sans-serif;
}

::placeholder {
  font-family: fot-tsukuardgothic-std, sans-serif;
}

/*
@media all and (-ms-high-contrast:none) {
	body {
		font-family: 'メイリオ',Meiryo,'游ゴシック',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	}
}
*/
h1, h2, h3, h4, h5, h6, pre, code, address, caption, code, th, td, select, p, li {
  font-size: 1.6rem;
  font-weight: inherit;
  font-style: normal;
}

span {
  font-weight: inherit;
}

em, strong {
  font-size: inherit;
}

em, strong, b {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td {
  line-height: 1.7;
  text-align: left;
}

/* base style
------------------------------------------------------------------------- */
li {
  list-style: none;
}

fieldset, img, hr {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-style: none;
}

th {
  vertical-align: top;
}
th br {
  display: block;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

td {
  vertical-align: top;
  word-break: break-all;
}

a {
  border: none;
  color: inherit;
  text-decoration: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=tel],
textarea {
  box-shadow: none;
  border: 1px solid #ccc;
  color: #dbd8c9;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.4rem;
}

textarea {
  line-height: 1.7;
  resize: vertical;
}

select {
  font-size: 1.4rem;
}

label,
input[type=checkbox],
input[type=radio],
input[type=button],
input[type=submit],
button {
  font-family: fot-tsukuardgothic-std, sans-serif;
  cursor: pointer;
}

button {
  display: block;
  border: none;
  background: none;
  outline: none;
  color: #dbd8c9;
  font-size: 1.4rem;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* max-width:750px | ~ 750px
------------------------------------------------------------------------- */
@media screen and (max-width: 750px) {
  /* @media screen
  ------------------------------------------------------------------------- */
  html {
    font-size: 2.6666666667vw;
  }

  body, h1, h2, h3, h4, h5, h6, pre, code, address, caption, code, th, td, select, p, li, em, strong {
    font-size: 1.6rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  iframe[src*=youtube] {
    max-width: 100%;
    height: 52vw;
  }
}
#wrapper {
  overflow-x: hidden;
}

.scroll_func {
  opacity: 0;
  transition: 0.8s;
  transform: translateY(50px);
}
.scroll_func.scroll_on {
  opacity: 1;
  transform: translateY(0);
}

.scroll_func_y0 {
  transform: translateY(0);
}
.scroll_func_y0.scroll_on {
  transform: translateY(0);
}

._attention {
  color: #e70607;
}

._flex {
  display: flex;
  flex-wrap: wrap;
}

._fwnw {
  flex-wrap: nowrap;
}

._jcsb {
  justify-content: space-between;
}

._jcc {
  justify-content: center;
}

._jcr {
  justify-content: flex-end;
}

._jcfe {
  justify-content: flex-end;
}

._aic {
  align-items: center;
}

._aife {
  align-items: flex-end;
}

._f18 {
  font-size: 1.8rem;
}

._f20 {
  font-size: 2rem;
}

._textc {
  text-align: center !important;
}

._textl {
  text-align: left !important;
}

._textr {
  text-align: right !important;
}

._mb1em {
  margin-bottom: 1em !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb60 {
  margin-bottom: 60px !important;
}

._mb100 {
  margin-bottom: 100px !important;
}

.btn1 {
  display: inline-block;
  position: relative;
  width: 267px;
  padding: 10px;
  border-radius: 6px;
  background: #CE792A;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}
.btn1 img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.btn1._disable {
  background: #909090;
  pointer-events: none;
}

#footer {
  display: flex;
  align-items: center;
  width: 1000px;
  margin: 35px auto 0;
}
#footer .sns {
  display: flex;
  align-items: center;
  margin: 0 35px 0 0;
}
#footer .sns p {
  margin: 0 10px 0 0;
}
#footer .sns ul {
  display: flex;
}
#footer .sns ul li {
  margin: 0 10px;
}
#footer .sns ul li a {
  transition: 0.3s;
}
#footer .sns ul li a:hover {
  opacity: 0.7;
}
#footer .nav {
  display: flex;
}
#footer .nav li {
  margin: 0 15px;
}
#footer .nav li a {
  font-weight: bold;
}
#footer .nav li a:hover {
  text-decoration: underline;
}
#footer .copyright {
  margin: 0 0 0 auto;
}

#wrapper {
  padding: 40px 0;
  opacity: 0;
  transition: 1s;
}
#wrapper.on {
  opacity: 1;
}

#contents {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#contents .copy {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  line-height: 1;
  font-size: 1.4rem;
}

#main {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  border: 3px solid #516EB7;
  border-radius: 15px;
  background: #fff;
  box-shadow: 10px 10px 0 rgba(65, 72, 90, 0.2);
}
#main .top .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 1000px;
  min-height: 660px;
  padding: 45px;
}
#main .top .inner .text {
  order: 2;
  width: 420px;
}
#main .top .inner .text h1 {
  margin: 0 0 30px;
  text-align: center;
}
#main .top .inner .text h1 img {
  margin: 0 auto;
}
#main .top .inner .text p {
  margin: 0 0 20px;
}
#main .top .inner .text .agree {
  margin: 35px 0 15px;
  text-align: center;
}
#main .top .inner .text .agree input {
  margin: 0 10px 0 0;
}
#main .top .inner .text .agree a {
  text-decoration: underline;
}
#main .top .inner .text .btn {
  margin-top: 40px;
  text-align: center;
}
#main .top .inner .img {
  width: 465px;
}
#main .step {
  position: relative;
}
#main .step .hd2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 90px;
  border-bottom: 3px solid #516EB7;
  text-align: center;
}
#main .step .hd2 img {
  margin: 0 auto;
}
#main .step .hd2 .date {
  position: absolute;
  top: 53%;
  right: 30px;
  transform: translateY(-50%);
}
#main .step .back {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 100;
  line-height: 1;
}
#main .step .back a {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  transition: 0.3s;
}
#main .step .back a img {
  margin: 0 10px 0 0;
}
#main .step .back a:hover {
  opacity: 0.7;
}
#main .step .back.on {
  display: block;
}
#main .step .copy {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  line-height: 1;
  font-size: 1.4rem;
}
#main .step #step_slide .slide_box .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  min-height: 570px;
  padding: 30px 30px 50px;
}
#main .step #step_slide .slide_box .step_box h3 {
  margin: 0 0 25px;
  color: #516EB7;
  font-size: 2.5rem;
  text-align: center;
}
#main .step #step_slide .slide_box .step_box h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 5px;
}
#main .step #step_slide .slide_box .step_box h3 span span {
  position: relative;
  top: -2px;
  width: 50px;
  height: 50px;
  margin: 0 0 0 10px;
  padding: 2px 0 0 2px;
  border: 1px solid #516EB7;
  border-radius: 100%;
  background: #E7EBF5;
  font-size: 2.3rem;
}
#main .step #step_slide .slide_box .step_box h3 b {
  color: #333333;
  font-size: 3.2rem;
}
#main .step #step_slide .slide_box .step_box .text {
  margin: 0 0 35px;
  text-align: center;
}
#main .step #step_slide .slide_box .q_box .text_box1 {
  width: 50%;
  padding: 0 45px 30px 0;
}
#main .step #step_slide .slide_box .q_box .text_box1 h4 {
  font-weight: bold;
  text-align: center;
}
#main .step #step_slide .slide_box .q_box .text_box1 h4 .cat {
  display: block;
  color: #516EB7;
  text-align: center;
}
#main .step #step_slide .slide_box .q_box .text_box1 h4 .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin: 10px auto 15px;
  border: 1px solid #516EB7;
  border-radius: 100%;
  background: #E7EBF5;
  color: #516EB7;
  font-size: 2.5rem;
}
#main .step #step_slide .slide_box .q_box .text_box1 h4 .num span {
  font-size: 1.8rem;
}
#main .step #step_slide .slide_box .q_box .text_box1 h4 .text {
  font-size: 2.8rem;
}
#main .step #step_slide .slide_box .q_box .text_box2 {
  width: 50%;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul {
  margin: 0 0 20px;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li {
  margin: 0 0 3px;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label {
  display: block;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label input {
  display: none;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap {
  display: block;
  position: relative;
  padding: 15px 15px 15px 55px;
  transition: 0.3s;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:before, #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 24px;
  height: 24px;
  border: 1px solid #D86F20;
  border-radius: 100%;
  background: #fff;
  transition: 0.3s;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:after {
  width: 10px;
  height: 10px;
  border: none;
  background: #fff;
  transform: translate(7px, 7px);
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap .text1 {
  display: block;
  margin: 0 0 3px;
  font-size: 1.9rem;
  font-weight: bold;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap .text2 {
  display: block;
  font-size: 1.8rem;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:hover {
  background: #F0E2D8;
}
#main .step #step_slide .slide_box .q_box .text_box2 ul li label input:checked + .text_wrap:after {
  background: #D86F20;
}
#main .step #step_slide .slide_box .goal_box .box .text {
  margin: 0 0 50px;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
#main .step .report {
  padding: 30px 30px 140px;
}
#main .step .report h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report p {
  margin: 0 0 35px;
}
#main .step .report .point_wrap {
  display: flex;
  justify-content: space-between;
}
#main .step .report .point_wrap .point {
  width: 194px;
  height: 194px;
  padding: 45px 0 0;
  border: 1px solid #3367CD;
  background: #ECF0F8;
}
#main .step .report .point_wrap .point._2 {
  border-color: #0D9517;
  background: #E7F5E8;
}
#main .step .report .point_wrap .point._2 p span {
  color: #0D9517;
}
#main .step .report .point_wrap .point._3 {
  border-color: #FF9A00;
  background: #FAEFDF;
}
#main .step .report .point_wrap .point._3 p span {
  color: #FF9A00;
}
#main .step .report .point_wrap .point._4 {
  border-color: #DC3911;
  background: #F8E1DC;
}
#main .step .report .point_wrap .point._4 p span {
  color: #DC3911;
}
#main .step .report .point_wrap .point h2 {
  margin: 0;
  text-align: center;
}
#main .step .report .point_wrap .point p {
  line-height: 1.4;
  color: #727272;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
#main .step .report .point_wrap .point p span {
  color: #3367CD;
  font-size: 5.9rem;
}
#main .step .report .point_wrap .point_list {
  width: 710px;
}
#main .step .report .point_wrap .point_list h3 {
  line-height: 1;
  margin: 0 0 15px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report .point_wrap .point_list h3 span {
  background: #FFDFC6;
}
#main .step .report .point_wrap .point_list ul {
  margin: 0 0 8px;
}
#main .step .report .point_wrap .point_list ul li {
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 20px;
}
#main .step .report .point_wrap .point_list ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  border-radius: 100%;
  background: #889CCE;
}
#main .step .report .point_wrap .point_list ul li .level {
  padding: 1px 2px 2px;
  border: 1px solid #3367CD;
  background: #ECF0F8;
}
#main .step .report .point_wrap .point_list ul li .level._2 {
  border-color: #0A9517;
  background: #E7F5E8;
}
#main .step .report .point_wrap .point_list ul li .level._3 {
  border-color: #FF9A00;
  background: #FAEFDF;
}
#main .step .report .point_wrap .point_list ul li .level._4 {
  border-color: #DC3911;
  background: #F8E1DC;
}
#main .step .report .point_wrap .point_list p {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 2rem;
  font-feature-settings: "palt";
}
#main .step .report .point_wrap .point_list p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 19px;
  margin: -9px 0 0;
  background: url(../images/icon-arrow4.svg) no-repeat 0/100%;
}
#main .step .report .point_wrap .point_list p b {
  margin: 0 5px;
  background: #FFDFC6;
}
#main .step .report .evaluation_wrap h3 {
  position: relative;
  margin: 0 0 20px;
  font-size: 2.8rem;
  font-weight: bold;
}
#main .step .report .evaluation_wrap h3 span {
  position: relative;
  padding: 0 30px 0 0;
  background: #fff;
}
#main .step .report .evaluation_wrap h3:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 1px dashed #516EB7;
}
#main .step .report .evaluation_wrap table {
  margin: 0 0 30px;
}
#main .step .report .evaluation_wrap table th,
#main .step .report .evaluation_wrap table td {
  padding: 8px 15px;
  border: 1px solid #889CCE;
  font-size: 1.6rem;
  font-weight: bold;
}
#main .step .report .evaluation_wrap table tr th {
  width: 118px;
  background: #E7EBF5;
  text-align: center;
}
#main .step .report .evaluation_wrap table tr th:nth-child(1) {
  min-width: 160px;
}
#main .step .report .evaluation_wrap table tr td {
  text-align: right;
}
#main .step .report .evaluation_wrap table tr td:nth-child(1) {
  text-align: left;
}
#main .step .report .evaluation_wrap table tr:last-child td {
  border-top-width: 2px;
}
#main .step .report .chart_wrap {
  position: relative;
  margin: -20px 0 0;
}
#main .step .report .chart_wrap ul {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 100;
  width: 100%;
}
#main .step .report .chart_wrap ul li {
  margin: 0 12px;
  font-size: 1.7rem;
}
#main .step .report .chart_wrap ul li span {
  color: #3367CD;
}
#main .step .report .chart_wrap ul li:nth-of-type(2) span {
  color: #0A9517;
}
#main .step .report .chart_wrap ul li:nth-of-type(3) span {
  color: #FFFE03;
}
#main .step .report .chart_wrap ul li:nth-of-type(4) span {
  color: #DC3911;
}
#main .step .report .text1 {
  line-height: 1.5;
  margin: 0 0 10px;
  padding: 18px 20px 15px;
  background: #E7EBF5;
  font-size: 2.4rem;
  font-weight: bold;
}
#main .step .report .text2 {
  margin: 0 0 55px;
  padding: 18px 20px 15px;
}
#main .step .report .text3 h4 {
  position: relative;
  margin: 60px 0 10px;
  padding: 0 0 0 17px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report .text3 h4:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 70%;
  margin: 1px 0 0;
  background: #889CCE;
  transform: translateY(-50%);
}
#main .step .report .text3 h4:first-of-type {
  margin-top: 0;
}
#main .step .report .text3 h4:first-of-type:after {
  display: none;
}
#main .step .report .text3 h4.total:before {
  background: #CE792A;
}
#main .step .report .text3 ol {
  padding: 0 0 0 1.8em;
}
#main .step .report .text4 h4,
#main .step .report .text5 h4 {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 35px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report .text4 h4 img,
#main .step .report .text5 h4 img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#main .step .report .text5 {
  margin: 60px 0 45px;
  padding: 35px 0 0;
  border-top: 1px solid #516EB7;
}
#main .step .report .text5 h4 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report .text5 .btn {
  width: 100%;
  text-align: center;
}
#main .step .report .text5 .btn a {
  background: #516EB7;
}
#main .step .report .text6 {
  position: relative;
  height: 100%;
  padding: 0 0 35px;
}
#main .step .report .text6 h4 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
#main .step .report .text6 h4 span {
  color: #516EB7;
  margin: 0 10px 0 0;
}
#main .step .report .text6 p {
  margin: 0 0 15px;
}
#main .step .report .text7 {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #E7EBF5;
}
#main .step .report .text7 .hd {
  margin: 0 40px 0 0;
}
#main .step .report .text7 .hd h4 {
  margin: 0 0 5px;
  font-size: 2rem;
  font-weight: bold;
}
#main .step .report .text7 .hd p {
  margin: 0;
  font-size: 1.6rem;
}
#main .step .report .text7 .hd p span {
  margin: 0 10px 0 0;
  padding: 2px 4px;
  background: #fff;
  font-weight: bold;
}
#main .step .report .text7 .btn {
  margin: 0;
}
#main .step .report .img1 {
  margin: 0 0 60px;
}
#main .step .report .text_wrap {
  display: flex;
  justify-content: space-between;
}
#main .step .report .text_wrap .col {
  width: 440px;
}

#mail_box {
  width: 420px;
  padding: 20px;
  position: absolute;
  bottom: 80px;
  left: 240px;
  background: #fff;
  border: #f9efeb 2px solid;
  border-radius: 15px;
  display: none;
  box-shadow: 0 0 10px 0 #eee;
}
#mail_box h2 {
  font-size: 182%;
  margin-bottom: 20px;
  font-weight: bold;
}
#mail_box .close {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url(../images/btn_close.png) no-repeat;
  text-indent: -9999px;
  cursor: pointer;
}
#mail_box .text {
  width: 300px;
  font-size: 123.1%;
  border: #ddd 1px solid;
  margin-bottom: 20px;
  padding: 10px;
  color: #333;
  border-radius: 0px;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
}
#mail_box .textarea {
  width: 400px;
  height: 80px;
  font-size: 123.1%;
  border: #ddd 1px solid;
  margin-bottom: 20px;
  padding: 10px;
  color: #333;
  border-radius: 0px;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
}
#mail_box .submit {
  display: block;
  width: 220px;
  height: 40px;
  margin: 0px auto;
  border: none;
  background: url(../images/mail_submit.png) no-repeat;
  text-indent: -9999px;
  cursor: pointer;
}
#mail_box .error {
  margin-bottom: 16px;
  color: #a34646;
  font-size: 12px;
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }

  .btn1:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .btn1 {
    width: 71.2vw;
    padding: 2.6666666667vw;
    font-size: 2.1rem;
    text-align: center;
  }
  .btn1 img {
    position: absolute;
    top: 50%;
    right: 4vw;
    width: 5.3333333333vw;
    transform: translateY(-50%);
  }
  .btn1:hover {
    opacity: 0.7;
  }
  .btn1._disable {
    background: #909090;
    pointer-events: none;
  }

  #footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 5.3333333333vw auto 0;
  }
  #footer .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 2.6666666667vw;
  }
  #footer .sns p {
    margin: 0 3.4666666667vw 0 1.8666666667vw;
  }
  #footer .sns ul {
    display: flex;
  }
  #footer .sns ul li {
    margin: 0 1.8666666667vw;
  }
  #footer .sns ul li a img {
    width: 8vw;
  }
  #footer .nav {
    display: flex;
    order: 3;
  }
  #footer .nav li {
    margin: 0 1.8666666667vw;
  }
  #footer .nav li a {
    font-weight: bold;
    font-size: 1.2rem;
  }
  #footer .copyright {
    width: 40vw;
    margin: 0;
  }

  #wrapper {
    padding: 5.3333333333vw 0;
  }

  #contents {
    position: relative;
    width: 92vw;
    margin: 0 auto;
  }
  #contents .copy {
    position: absolute;
    bottom: 4vw;
    right: auto;
    left: 50%;
    width: 100%;
    z-index: 1000;
    line-height: 1;
    transform: translateX(-50%);
    font-size: 1rem;
    text-align: center;
  }

  #main {
    position: relative;
    width: 92vw;
    margin: 0 auto;
    border: 3px solid #516EB7;
    border-radius: 15px;
    box-shadow: 5px 5px 0 rgba(65, 72, 90, 0.2);
  }
  #main .top .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 92vw;
    min-height: 0;
    padding: 5.3333333333vw;
  }
  #main .top .inner .text {
    width: 100%;
  }
  #main .top .inner .text h1 {
    width: 75.2vw;
    margin: 0 auto 2.6666666667vw;
    text-align: center;
  }
  #main .top .inner .text h1 img {
    margin: 0 auto;
  }
  #main .top .inner .text .img {
    width: 58.6666666667vw;
    margin: 0 auto 2.6666666667vw;
  }
  #main .top .inner .text p {
    margin: 0 0 5.3333333333vw;
  }
  #main .top .inner .text .btn {
    margin-top: 5.3333333333vw;
  }
  #main .step .hd2 {
    flex-wrap: wrap;
    height: auto;
    padding: 2.6666666667vw 0 1.6vw;
  }
  #main .step .hd2 img {
    width: 28.8vw;
  }
  #main .step .hd2 .date {
    display: block;
    position: static;
    width: 100%;
    padding: 1.3333333333vw 0 0;
    transform: none;
    font-size: 1.4rem;
    text-align: center;
  }
  #main .step .back {
    bottom: 8vw;
    left: 5.3333333333vw;
  }
  #main .step .back a img {
    width: 5.3333333333vw;
    margin: 0 2.6666666667vw 0 0;
  }
  #main .step .copy {
    position: absolute;
    bottom: 2.6666666667vw;
    right: 0;
    width: 100%;
    z-index: 1000;
    line-height: 1;
    font-size: 1rem;
  }
  #main .step #step_slide .slide_box .inner {
    display: block;
    width: 92vw;
    padding: 5.3333333333vw;
    min-height: 160vw;
  }
  #main .step #step_slide .slide_box .step_box h3 {
    margin: 0 0 8vw;
    font-size: 2.2rem;
  }
  #main .step #step_slide .slide_box .step_box h3 span {
    margin: 0 0 1.3333333333vw;
  }
  #main .step #step_slide .slide_box .step_box h3 span span {
    top: -0.5333333333vw;
    width: 9.6vw;
    height: 9.6vw;
    margin: 0 0 0 2.6666666667vw;
    padding: 2px 0 0 1px;
    font-size: 1.8rem;
  }
  #main .step #step_slide .slide_box .step_box h3 b {
    font-size: 2.2rem;
  }
  #main .step #step_slide .slide_box .step_box .text {
    margin: 0 0 9.3333333333vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box1 {
    width: 100%;
    padding: 0 0 2.6666666667vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box1 h4 .num {
    width: 22.4vw;
    height: 22.4vw;
    margin: 1.8666666667vw auto 4vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box1 h4 .text {
    display: block;
    line-height: 1.4;
    font-size: 2.2rem;
    text-align: left;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 {
    width: 100%;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul {
    margin: 0 0 4vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li {
    margin: 0;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label {
    line-height: 1.4;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap {
    padding: 2.1333333333vw 2.1333333333vw 2.1333333333vw 9.3333333333vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:before, #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:after {
    top: 2.6666666667vw;
    left: 1.3333333333vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:after {
    top: 4.2666666667vw;
    left: 2.9333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    transform: none;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap .text1 {
    margin: 0;
    font-size: 1.8rem;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap .text2 {
    font-size: 1.6rem;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label .text_wrap:hover {
    background: #F0E2D8;
  }
  #main .step #step_slide .slide_box .q_box .text_box2 ul li label input:checked + .text_wrap:after {
    background: #D86F20;
  }
  #main .step #step_slide .slide_box .goal_box .box .text {
    margin: 0 0 8vw;
    font-size: 2.2rem;
    text-align: left;
  }
  #main .step .report {
    padding: 5.3333333333vw 4.2666666667vw 21.3333333333vw;
  }
  #main .step .report + .back {
    bottom: 12vw;
  }
  #main .step .report h2 {
    margin: 0 0 2.6666666667vw;
  }
  #main .step .report p {
    margin: 0 0 8vw;
  }
  #main .step .report .point_wrap {
    display: block;
  }
  #main .step .report .point_wrap .point {
    width: 100%;
    height: auto;
    margin: 0 0 4vw;
    padding: 4vw 0 2.6666666667vw;
  }
  #main .step .report .point_wrap .point p {
    line-height: 1.2;
    margin: 0;
  }
  #main .step .report .point_wrap .point_list {
    width: 100%;
  }
  #main .step .report .point_wrap .point_list h3 {
    line-height: 1.6;
    margin: 0 0 4vw;
    font-size: 1.8rem;
  }
  #main .step .report .point_wrap .point_list ul {
    margin: 0 0 8px;
  }
  #main .step .report .point_wrap .point_list ul li {
    position: relative;
    margin: 0 0 1.3333333333vw;
    padding: 0 0 0 5.3333333333vw;
  }
  #main .step .report .point_wrap .point_list ul li:before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin: -1.3333333333vw 0 0;
  }
  #main .step .report .point_wrap .point_list p {
    padding: 0 0 0 6.6666666667vw;
    font-size: 1.8rem;
  }
  #main .step .report .point_wrap .point_list p:before {
    top: 1.3333333333vw;
    width: 4.2666666667vw;
    height: 5.0666666667vw;
    margin: 0;
  }
  #main .step .report .point_wrap .point_list p b {
    margin: 0 1.3333333333vw;
  }
  #main .step .report .evaluation_wrap h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 4vw;
    font-size: 2.2rem;
  }
  #main .step .report .evaluation_wrap h3 span {
    padding: 0 4vw 0 0;
  }
  #main .step .report .evaluation_wrap table {
    margin: 0 0 6.6666666667vw;
  }
  #main .step .report .evaluation_wrap table th,
#main .step .report .evaluation_wrap table td {
    padding: 2.1333333333vw 2.6666666667vw;
    border: 1px solid #889CCE;
    font-size: 1.6rem;
    font-weight: bold;
  }
  #main .step .report .evaluation_wrap table tr th {
    width: 17.6vw;
    background: #E7EBF5;
    text-align: center;
  }
  #main .step .report .evaluation_wrap table tr th:nth-child(1) {
    min-width: 28.2666666667vw;
  }
  #main .step .report .evaluation_wrap table tr td {
    text-align: right;
    font-size: 1.4rem;
  }
  #main .step .report .evaluation_wrap table tr td:nth-child(1) {
    text-align: left;
  }
  #main .step .report .evaluation_wrap table tr:last-child td {
    border-top-width: 2px;
  }
  #main .step .report .chart_wrap {
    position: relative;
    margin: -16vw 0 0;
  }
  #main .step .report .chart_wrap #chart_div {
    width: 140% !important;
    margin: 0 0 0 -15% !important;
  }
  #main .step .report .chart_wrap ul {
    top: 13.3333333333vw;
  }
  #main .step .report .chart_wrap ul li {
    margin: 0 2.6666666667vw;
    font-size: 1.2rem;
  }
  #main .step .report .text1 {
    margin: 0 0 5.3333333333vw;
    font-size: 2.2rem;
  }
  #main .step .report .text2 {
    margin: 0 0 14.6666666667vw;
    padding: 0;
  }
  #main .step .report .text3 h4 {
    margin: 8vw 0 2.6666666667vw;
    padding: 0 0 0 4vw;
    line-height: 1.6;
    font-size: 1.8rem;
  }
  #main .step .report .text3 h4:before {
    top: 1.3333333333vw;
    width: 1.3333333333vw;
    height: 1em;
    transform: none;
  }
  #main .step .report .text3 h4:first-of-type {
    margin-top: 0;
  }
  #main .step .report .text3 h4:first-of-type:after {
    display: none;
  }
  #main .step .report .text3 ol {
    padding: 0 0 0 1.8em;
  }
  #main .step .report .text4 h4,
#main .step .report .text5 h4 {
    margin: 0 0 2.6666666667vw;
    font-size: 1.8rem;
  }
  #main .step .report .text5 {
    margin: 10.6666666667vw 0;
    padding: 9.3333333333vw 0 0;
  }
  #main .step .report .text5 h4 {
    margin: 0 0 2.6666666667vw;
    font-size: 1.8rem;
  }
  #main .step .report .text6 {
    padding: 0 0 8vw;
  }
  #main .step .report .text6 h4 {
    margin: 0 0 1.3333333333vw;
    font-weight: bold;
  }
  #main .step .report .text6 h4 span {
    margin: 0 1.3333333333vw 0 0;
  }
  #main .step .report .text6 p {
    margin: 0 0 2.6666666667vw;
  }
  #main .step .report .text7 {
    display: block;
    padding: 4vw;
  }
  #main .step .report .text7 .hd {
    margin: 0 0 4vw;
  }
  #main .step .report .text7 .hd h4 {
    line-height: 1.4;
    margin: 0 0 2.6666666667vw;
  }
  #main .step .report .text7 .btn {
    margin: 0;
  }
  #main .step .report .img1 {
    margin: 0 0 2.6666666667vw;
  }
  #main .step .report .text_wrap {
    display: flex;
    justify-content: space-between;
  }
  #main .step .report .text_wrap .col {
    width: 100%;
  }

  #mail_box {
    position: absolute;
    bottom: 21.3333333333vw;
    left: 50%;
    width: 85.3333333333vw;
    padding: 5.3333333333vw;
    transform: translateX(-50%);
  }
  #mail_box h2 {
    margin-bottom: 4vw;
  }
  #mail_box .close {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: url(../images/btn_close.png) no-repeat 0/100%;
    text-indent: -9999px;
    cursor: pointer;
  }
  #mail_box .text {
    width: 72vw;
    margin-bottom: 2.6666666667vw;
    padding: 2.6666666667vw;
  }
  #mail_box .submit {
    display: block;
    width: 58.6666666667vw;
    height: 10.6666666667vw;
    background: url(../images/mail_submit.png) no-repeat 0/100%;
  }
}

/*# sourceMappingURL=style.css.map */
