@charset "UTF-8";
/*------------------

Common

------------------*/
body {
  margin: 0;
  position: relative;
  background-color: #E9F0E8;
  overflow-x: hidden;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
}

p {
  margin: 0;
}

a:visited,
a:link,
a:active {
  color: #000;
  text-decoration: none;
}

li {
  list-style: none;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
}

header img {
  position: relative;
  top: 25px;
  left: 30px;
  z-index: 100;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.left-top {
  left: 0;
  top: 0;
}

.left-bottom {
  bottom: 0;
  left: 0;
}

.right-top {
  right: 0;
  top: 0;
}

.right-bottom {
  right: 0;
  bottom: 0;
}

.left-top,
.left-bottom,
.right-top,
.right-bottom {
  position: fixed;
  z-index: 0;
}

.wrapper {
  text-align: center;
  position: relative;
  max-width: 1400px;
  margin: 80px auto 0;
}

.container {
  display: flex;
  justify-content: center;
}

/*------------------

診断ページトップ

------------------*/
#shindan_top p {
  margin-top: 5em;
}

.top-visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  z-index: 10;
}

.top-visual-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 60%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
}

.btn {
  position: absolute;
  z-index: 100;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%, -50%);
}
.btn img {
  width: 70%;
  max-width: 400px;
  transition: all 0.6s ease 0s;
}
.btn img:hover {
  transform: scale(1.1, 1.1);
}

.parts01,
.parts02,
.parts03,
.parts04,
.parts05,
.parts06 {
  position: absolute;
}

.parts01 {
  bottom: -5%;
  left: 0%;
  width: 25%;
  max-width: 400px;
}

.parts02 {
  bottom: -5%;
  right: 0%;
  width: 25%;
  max-width: 400px;
}

/*------------------

２拓ページ

------------------*/
#question .wrapper {
  margin-top: 20px;
}

.q_no {
  font-size: 1.4em;
}
.q_no span {
  font-size: 1.6em;
  font-weight: bold;
  vertical-align: middle;
}

.q_text {
  font-size: 1.8em;
}

.q_step img {
  width: 120px;
}

.q_top01,
.q_top02 {
  position: absolute;
  top: 40px;
}

.q_top01 {
  left: 40px;
  width: 15%;
}

.q_top02 {
  right: 40px;
  width: 20%;
}

.q_a,
.q_b {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  border: solid #000 2px;
  padding: 30px 40px;
  margin: 50px 20px 0;
  transition: all 0.3s;
}
.q_a p,
.q_b p {
  font-size: 1.5em;
  text-align: left;
  margin-left: 6em;
  margin-bottom: 15px;
}
.q_a img,
.q_b img {
  max-width: 420px;
}

.q_a img:first-of-type {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 95px;
}
.q_a:hover {
  border: solid #F7B03C 2px;
  background-color: #ffdba1;
}

.q_b img:first-of-type {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 95px;
}
.q_b:hover {
  border: solid #F4717C 2px;
  background-color: #f9c1c6;
}

/*------------------

アンケート

------------------*/
fieldset {
  border: none;
  max-width: 1080px;
  padding: 0;
  margin: 40px auto;
}
fieldset .container {
  justify-content: flex-start;
}

#questionnaire fieldset {
  max-width: 1200px;
}
#questionnaire fieldset:last-of-type .container {
  flex-wrap: wrap;
}

legend {
  text-align: left;
  padding-left: 1.5em;
}
legend::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: solid 0.3em #307F9C;
  margin-bottom: -0.3em;
  margin-left: -1.5em;
  margin-right: 0.3em;
}

input {
  display: none;
}

select {
  width: 50%;
  min-width: 280px;
  padding: 0.7em;
  font-size: 1em;
}

/* チェックボックス  */
.check {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-basis: 98%;
  margin: 10px;
  padding: 0.5em;
  min-height: 0%;
  border: solid 1px;
  background-color: #FFF;
  font-weight: bold;
  line-height: 1;
  transition: prop time;
  max-width: 255px;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.2);
}
.check:hover > .check_dummy {
  background: #DDDDDD !important;
  border: solid 2px #333333;
}

.check_input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.check_input:focus + .check_dummy {
  background: #DDDDDD !important;
  border: solid 2px #333333;
}
.check_input:checked + .check_dummy {
  border: solid 2px #333333;
  background: #FFFFFF;
}
.check_input:checked + .check_dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
  background-size: contain;
}

.check_input:checked + .check_dummy {
  border: solid 2px #333333;
  background: #FFFFFF;
}
.check_input:checked + .check_dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
  background-size: contain;
}

.check_dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: solid 2px #888888;
  background: #FFFFFF;
  border-radius: 4px;
}

.check_text {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.submit_btn.check {
  width: 400px;
  max-width: none;
  margin: 0 auto 80px;
  justify-content: center;
  font-size: 1.5em;
  padding: 1em;
  background-color: #FC5166;
  color: #fff;
  transition: all 0.2s ease 0s;
}
.submit_btn.check:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}

/*------------------

結果ページ

------------------*/
#result {
  overflow: auto;
}
#result main,
#result .wrapper {
  z-index: 0;
}
#result .q_top01,
#result .q_top02 {
  z-index: 100;
  top: -100px;
}

.frame {
  position: relative;
  border-radius: 20px;
  border: solid #000 2px;
  max-width: 1080px;
  margin: 120px auto 0;
  z-index: 0;
  background-color: #fff;
}

.osusume_tabi {
  display: block;
  transition: all 0.3s;
  padding: 40px 30px;
}
.osusume_tabi h1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
}
.osusume_tabi h1 img {
  width: 100%;
}
.osusume_tabi h2 {
  color: #61A29E;
  margin-top: 50px;
  font-size: 1.5em;
}
.osusume_tabi p {
  text-align: left;
  width: 90%;
  margin-left: 30px;
  font-size: 0.9em;
  align-items: center;
  display: flex;
  line-height: 1.8;
}
.osusume_tabi a:first-of-type .container {
  margin-bottom: 60px;
}
.osusume_tabi .submit_btn.check {
  width: 58%;
  padding: 0.5em 0.8em;
  font-size: 0.9em;
  margin-top: 20px;
}
.osusume_tabi .container {
  align-items: center;
}

.replay {
  display: inline-block;
  margin: 40px auto;
}
.replay img {
  width: 85%;
  transition: all 0.6s ease 0s;
}
.replay img:hover {
  transform: scale(1.1, 1.1);
}

.share {
  background-color: rgb(248, 199, 42);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  max-width: 1080px;
  padding: 30px 40px;
  justify-content: flex-start;
  align-items: center;
}
.share > .container {
  margin: 0 auto;
}
.share p {
  font-size: 1.5em;
  letter-spacing: 0.2em;
  margin: 0 1em;
}
.share .finger {
  width: 80px;
}
.share ul {
  align-items: center;
}
.share li {
  margin: 0 15px;
}
.share li:first-of-type {
  margin-top: -7px;
}
.share li img {
  margin-top: 7px;
}
.share li img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1150px) {
  /*------------------

  Common

  ------------------*/
  .wrapper {
    margin-top: 120px;
  }
  /*------------------

  診断ページトップ

  ------------------*/
  #shindan_top p {
    margin-top: 6em;
    margin-left: 20px;
  }
  .top-visual {
    width: 80%;
  }
  .top-visual-bg {
    position: absolute;
    z-index: -1;
    top: 30%;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
  }
  .parts01 {
    width: 23%;
    left: 4%;
    bottom: 6%;
  }
  .parts02 {
    width: 23%;
    right: 4%;
    bottom: 6%;
  }
  .btn {
    width: 40%;
    bottom: 12%;
    transform: translate(-48%, 0);
  }
  .btn img {
    width: 90%;
  }
  /*------------------

  ２拓ページ

  ------------------*/
  #question .container {
    margin: 0 20px;
  }
  .q_text {
    font-size: 1.7em;
  }
  .q_a,
  .q_b {
    padding: 20px 30px;
    width: 50%;
    margin: 60px 10px;
  }
  .q_a p,
  .q_b p {
    font-size: 1.2em;
    margin-left: 30%;
    margin-bottom: 10px;
  }
  .q_a img:first-of-type,
  .q_b img:first-of-type {
    top: -30px;
    left: 20px;
    width: 18%;
    min-width: 70px;
  }
  .q_a img:last-of-type,
  .q_b img:last-of-type {
    width: 100%;
  }
  /*------------------

  結果ページ

  ------------------*/
  #result .q_top01,
  #result .q_top02 {
    top: -70px;
  }
  #result .q_top01 {
    width: 20%;
    left: 0;
  }
  #result .q_top02 {
    width: 20%;
    right: 0;
  }
  .frame {
    margin: 40px 40px 0;
  }
  .osusume_tabi {
    padding: 30px 20px 30px 30px;
  }
  .osusume_tabi h1 img {
    width: 50%;
    min-width: 420px;
  }
  .osusume_tabi h2 {
    margin-top: 50px;
    font-size: 1.3em;
  }
  .osusume_tabi .container img {
    width: 100%;
    max-width: 416px;
  }
  .osusume_tabi p {
    width: 80%;
    font-size: 0.8em;
    max-width: 516px;
  }
  .share {
    align-items: end;
  }
  .share .container.one {
    display: flex;
  }
  .share div.container {
    display: block;
  }
  .share div.container p {
    font-size: 1em;
    margin: 0;
  }
  .share div.container br {
    display: none;
  }
  .share ul {
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 700px) {
  /*------------------

  Common

  ------------------*/
  header img {
    top: 20px;
    left: 20px;
    width: 40%;
    max-width: 202px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .left-top,
  .left-bottom,
  .right-top,
  .right-bottom {
    width: 60%;
  }
  .wrapper {
    margin-top: 80px;
  }
  .container {
    display: block;
  }
  /*------------------

  診断ページトップ

  ------------------*/
  #shindan_top p {
    margin-top: 5em;
    font-size: 5vw;
  }
  .top-visual {
    width: 90%;
  }
  .top-visual-bg {
    width: 100%;
  }
  .btn {
    bottom: 24%;
    transform: translate(-50%, -50%);
  }
  .btn img {
    width: 100%;
  }
  .parts01 {
    bottom: 35%;
  }
  .parts02 {
    bottom: 35%;
  }
  /*------------------

  ２拓ページ

  ------------------*/
  #question {
    overflow: auto;
  }
  #question .container {
    margin: 0 25px 0 20px;
  }
  .q_no {
    font-size: 1.2em;
  }
  .q_no span {
    font-size: 1.6em;
    font-weight: bold;
    vertical-align: middle;
  }
  .q_text {
    font-size: 6vw;
    margin-top: 30px;
  }
  .q_top01 {
    width: 20%;
    top: 2%;
    left: 0;
  }
  .q_top02 {
    width: 20%;
    top: 2%;
    right: 0;
  }
  .q_a,
  .q_b {
    display: inline-block;
    padding: 15px;
    width: 100%;
    margin: 20px 10px;
  }
  .q_a .pc,
  .q_b .pc {
    display: none;
  }
  .q_a p,
  .q_b p {
    font-size: 4.5vw;
    margin-left: 13%;
  }
  .q_a img:first-of-type,
  .q_b img:first-of-type {
    top: -15px;
    left: -15px;
    width: 18%;
    max-width: 70px;
    min-width: 0;
  }
  .q_a img:last-of-type,
  .q_b img:last-of-type {
    width: 80%;
  }
  /*------------------

  アンケート

  ------------------*/
  #questionnaire {
    overflow: auto;
  }
  .check {
    margin: 10px auto;
  }
  /*------------------

  結果ページ

  ------------------*/
  #result .q_top01,
  #result .q_top02 {
    width: 30%;
    top: -6%;
  }
  #result .wrapper {
    margin-top: 140px;
  }
  .frame {
    margin: 40px 10px 0;
  }
  .osusume_tabi {
    padding: 30px 20px;
  }
  .osusume_tabi h1 {
    transform: translate(-65%, -85%);
  }
  .osusume_tabi h1 img {
    width: 130%;
    min-width: 200px;
  }
  .osusume_tabi h2 {
    margin-top: 20px;
    font-size: 4.5vw;
  }
  .osusume_tabi .container img {
    width: 100%;
  }
  .osusume_tabi p {
    width: 100%;
    margin-left: 0;
    font-size: 0.75em;
    max-width: 100%;
    margin-top: 15px;
  }
  .share {
    align-items: end;
  }
  .share .container.one {
    display: block;
  }
  .share div.container {
    display: block;
  }
  .share div.container p {
    font-size: 1em;
  }
  .share ul {
    display: flex;
    margin-top: 20px;
  }
  .share li {
    margin: 0 10px;
  }
  .submit_btn.check {
    width: 280px;
  }
}
button:disabled,
input:disabled,
input[type=radio]:disabled ~ span,
input[type=checkbox]:disabled ~ span {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */