@charset "UTF-8";
@font-face {
  font-family: "smartfont";
  src: url(../fonts/smartfont.woff2) format("woff2"), url(../fonts/smartfont.woff) format("woff");
}
* {
  border: medium none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #151515;
  font-style: normal;
  box-sizing: border-box;
  outline: none;
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
  height: auto;
}

table {
  border-collapse: collapse;
}

ruby {
  font: inherit;
  color: inherit;
}

rt {
  color: inherit;
  font-size: 12px;
}

/*a:hover img, input[type="image"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    border: none;
}*/
/* iOSでのデフォルトスタイルをリセット */
body {
  -webkit-text-size-adjust: 100%;
}

input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}

.h2Title {
  font-family: "smartfont", sans-serif;
  color: #419341;
  font-size: 48px;
  text-align: center;
  margin: 0px 20px 30px;
}
@media print, screen and (max-width: 767px) {
  .h2Title {
    font-size: 32px;
  }
}

/* チェックボックス */
input[type=checkbox] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.checkbox::before {
  background: #fff;
  border: 1px solid #231815;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox::after {
  border-right: 3px solid #419341;
  border-bottom: 3px solid #419341;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.submitBtn {
  background-color: #419341;
  max-width: 500px;
  width: 92%;
  height: 90px;
  color: #fff;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 70px;
}
@media print, screen and (max-width: 767px) {
  .submitBtn {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .submitBtn {
    font-size: 20px;
  }
}
.submitBtn span {
  color: inherit;
  font: inherit;
  display: inline-block;
}
.submitBtn:hover {
  background-color: #486C59;
}

.radio + label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.radio + label::before,
.radio + label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radio + label::before {
  background-color: #fff;
  border: 1px solid #A1A1A1;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2) inset;
}

.radio + label::after {
  background-color: #419341;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 3px;
}

.radio:checked + label::after {
  opacity: 1;
}

label:has(.radio) {
  position: relative;
  cursor: pointer;
  padding-right: 50px;
}

label:has(.radio)::before,
label:has(.radio)::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

label:has(.radio)::before {
  background: #fff;
  border: 1px solid #777;
  content: "";
  display: block;
  height: 40px;
  right: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 40px;
  border-radius: 5px;
}

label:has(.radio)::after {
  border-right: 8px solid #419341;
  border-bottom: 8px solid #419341;
  content: "";
  display: block;
  height: 40px;
  right: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 33px);
  transform: rotate(45deg);
  width: 20px;
}

label:has(.radio:checked)::after {
  opacity: 1;
}

.radio {
  display: none;
}

select {
  border: 1px solid #a1a1a1;
  padding: 10px;
  width: 100%;
}

body {
  background-color: #FFF1D6;
}

.topMain {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 520px;
  margin-bottom: 70px;
}
@media print, screen and (max-width: 900px) {
  .topMain {
    height: 460px;
    padding-top: 100px;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain {
    height: 41.7209908735vw;
    margin-top: 70px;
    padding-top: 0px;
    overflow: visible;
    align-items: flex-start;
  }
}
.topMain__8020 {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  width: 100px;
}
@media print, screen and (max-width: 767px) {
  .topMain__8020 {
    width: 70px;
    top: -50px;
  }
}
.topMain__title {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 820px;
  margin: 0 20px;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1300px) {
  .topMain__title {
    width: 600px;
  }
}
@media print, screen and (max-width: 900px) {
  .topMain__title {
    order: 0;
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain__title {
    padding: 0 5%;
  }
}
.topMain__title--yellow {
  font-family: "smartfont", sans-serif;
  font-size: 96px;
  line-height: 1.2em;
  color: #F3C110;
  -webkit-text-stroke: 2px #486C59;
}
@media print, screen and (max-width: 1300px) {
  .topMain__title--yellow {
    font-size: 70px;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain__title--yellow {
    font-size: 9.1264667536vw;
    -webkit-text-stroke: 1px #486C59;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.topMain__title--green {
  font-family: "smartfont", sans-serif;
  font-size: 64px;
  line-height: 1.2em;
  color: #419341;
  -webkit-text-stroke: 2px #486C59;
}
@media print, screen and (max-width: 1300px) {
  .topMain__title--green {
    font-size: 42px;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain__title--green {
    font-size: 5.4758800522vw;
    -webkit-text-stroke: 1px #486C59;
  }
}
.topMain__circle {
  display: inline-block;
  border-radius: 50%;
  position: absolute;
}
.topMain__circle.red {
  background-color: #E64A70;
}
.topMain__circle.blue {
  background-color: #359CD5;
}
.topMain__circle--1 {
  width: 140px;
  height: 140px;
  top: 120px;
  left: calc(50% - 750px);
}
.topMain__circle--2 {
  width: 35px;
  height: 35px;
  top: 460px;
  left: calc(50% - 740px);
}
.topMain__circle--3 {
  width: 53px;
  height: 53px;
  top: 390px;
  left: calc(50% - 300px);
}
.topMain__circle--4 {
  width: 40px;
  height: 40px;
  top: 23px;
  right: calc(50% - 440px);
}
.topMain__circle--5 {
  width: 48px;
  height: 48px;
  top: 340px;
  right: calc(50% - 400px);
}
.topMain__circle--6 {
  width: 32px;
  height: 32px;
  top: 300px;
  right: calc(50% - 770px);
}
.topMain__circle--7 {
  width: 56px;
  height: 56px;
  top: 30px;
  left: calc(50% - 490px);
}
.topMain__circle--8 {
  width: 63px;
  height: 63px;
  top: 380px;
  left: calc(50% - 620px);
}
.topMain__circle--9 {
  width: 57px;
  height: 57px;
  top: 54px;
  right: calc(50% - 720px);
}
.topMain__circle--10 {
  width: 100px;
  height: 100px;
  top: 400px;
  right: calc(50% - 710px);
}
@media print, screen and (max-width: 767px) {
  .topMain__circle--1 {
    width: 5.2151238592vw;
    height: 5.2151238592vw;
    top: -6.518904824vw;
    left: 31.2907431551vw;
  }
  .topMain__circle--2 {
    width: 9.1264667536vw;
    height: 9.1264667536vw;
    top: 28.6831812256vw;
    left: 26.075619296vw;
  }
  .topMain__circle--3 {
    width: 3.9113428944vw;
    height: 3.9113428944vw;
    top: 20.8604954368vw;
    left: 9.1264667536vw;
  }
  .topMain__circle--4 {
    width: 2.6075619296vw;
    height: 2.6075619296vw;
    top: 19.556714472vw;
    right: 2.6075619296vw;
  }
  .topMain__circle--5 {
    width: 3.9113428944vw;
    height: 3.9113428944vw;
    top: 9.1264667536vw;
    right: 5.2151238592vw;
  }
  .topMain__circle--6 {
    width: 5.2151238592vw;
    height: 5.2151238592vw;
    top: 28.6831812256vw;
    right: 33.8983050847vw;
  }
  .topMain__circle--7 {
    width: 4.5632333768vw;
    height: 4.5632333768vw;
    top: 35.2020860495vw;
    left: 3.9113428944vw;
  }
  .topMain__circle--8 {
    width: 3.259452412vw;
    height: 3.259452412vw;
    top: 28.6831812256vw;
    left: 11.7340286832vw;
  }
  .topMain__circle--9 {
    width: 3.9113428944vw;
    height: 3.9113428944vw;
    top: 27.3794002608vw;
    right: 45.6323337679vw;
  }
  .topMain__circle--10 {
    width: 4.5632333768vw;
    height: 4.5632333768vw;
    top: -6.518904824vw;
    right: 29.9869621904vw;
  }
}
.topMain__peska {
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1300px) {
  .topMain__peska {
    width: 100px;
  }
}
@media print, screen and (max-width: 900px) {
  .topMain__peska {
    order: 1;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain__peska {
    position: absolute;
    left: 10%;
    bottom: 0px;
    width: 11.7340286832vw;
  }
}
.topMain__kentaro {
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1300px) {
  .topMain__kentaro {
    width: 100px;
  }
}
@media print, screen and (max-width: 900px) {
  .topMain__kentaro {
    order: 2;
  }
}
@media print, screen and (max-width: 767px) {
  .topMain__kentaro {
    position: absolute;
    right: 10%;
    bottom: 0px;
    width: 11.7340286832vw;
  }
}

@media print, screen and (max-width: 767px) {
  .whatKamkam {
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .whatKamkam {
    margin-bottom: 130px;
  }
}
.whatKamkam__inner {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 767px) {
  .whatKamkam__inner {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .whatKamkam__inner {
    margin-bottom: 40px;
  }
}
.whatKamkam__content {
  border-radius: 15px;
  background-color: #fff;
  padding: 30px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .whatKamkam__content {
    margin: 0px 20px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .whatKamkam__content {
    width: 560px;
    margin-right: 30px;
  }
}
.whatKamkam__txt {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .whatKamkam__txt {
    font-size: 24px;
  }
}
.whatKamkam__kamkam {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media print, screen and (max-width: 767px) {
  .whatKamkam__kamkam {
    width: 70px;
  }
}
@media print, screen and (max-width: 767px) {
  .whatKamkam__takeshi {
    width: 100px;
  }
}
.whatKamkam__aside {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin: 0px 20px;
}
.whatKamkam__asideList--content {
  text-indent: -1em;
  margin-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .whatKamkam__asideList--content {
    font-size: 20px;
  }
}
.whatKamkam__asideList--content::before {
  content: "※";
}
.whatKamkam__asideList--content span {
  color: #f00;
  font: inherit;
}

.beforeCheck {
  width: 92%;
  background-color: #fff;
  border-radius: 15px;
}
@media print, screen and (max-width: 767px) {
  .beforeCheck {
    margin: 0 auto 30px;
    padding: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .beforeCheck {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 30px;
  }
}
.beforeCheck__content {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 30px 0px;
}
.beforeCheck__content:not(:first-child) {
  border-top: 1px dotted #9C9C9C;
}
.beforeCheck__title {
  font-weight: 700;
  max-width: 600px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
@media print, screen and (max-width: 767px) {
  .beforeCheck__title {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .beforeCheck__title {
    margin-bottom: 30px;
  }
}
@media print, screen and (max-width: 767px) {
  .beforeCheck__title--img {
    width: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .beforeCheck__title--img {
    width: 50px;
  }
}
.beforeCheck__title--txt {
  color: #E64A70;
  display: block;
  margin-left: 10px;
}
@media print, screen and (max-width: 767px) {
  .beforeCheck__title--txt {
    max-width: calc(100% - 40px);
    font-size: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .beforeCheck__title--txt {
    max-width: calc(100% - 60px);
    font-size: 24px;
  }
}
.beforeCheck__list--content {
  text-indent: -1em;
  margin-left: 1em;
}
@media print, screen and (max-width: 767px) {
  .beforeCheck__list--content {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .beforeCheck__list--content {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.beforeCheck__list--content::before {
  content: "・";
}

.kentaro2 {
  display: block;
  margin: 0 auto 50px;
  max-width: 486px;
  width: 92%;
}
.checkTxt {
  text-align: center;
  margin-bottom: 50px;
}
.checkTxt label {
  font-size: 16px;
}
.checkTxt label span {
  font-size: inherit;
  display: inline-block;
}

.subMain {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .subMain {
    height: 250px;
    margin-bottom: 70px;
  }
}
@media print, screen and (max-width: 767px) {
  .subMain {
    height: 41.7209908735vw;
    margin-top: 70px;
    margin-bottom: 50px;
    padding-top: 0px;
    overflow: visible;
    align-items: flex-start;
  }
}
.subMain__8020 {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  width: 100px;
}
@media print, screen and (max-width: 767px) {
  .subMain__8020 {
    width: 70px;
    top: -50px;
  }
}
.subMain__title {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 690px;
  margin: 0 20px;
}
@media print, screen and (max-width: 1300px) {
  .subMain__title {
    width: 550px;
    margin: 0 10px;
  }
}
@media print, screen and (max-width: 767px) {
  .subMain__title {
    width: 100%;
    padding: 0 5%;
    margin: 0 20px;
  }
}
.subMain__title--yellow {
  font-family: "smartfont", sans-serif;
  font-size: 64px;
  line-height: 1.2em;
  color: #F3C110;
  -webkit-text-stroke: 2px #486C59;
}
@media print, screen and (max-width: 1300px) {
  .subMain__title--yellow {
    font-size: 52px;
    -webkit-text-stroke: 1px #486C59;
  }
}
@media print, screen and (max-width: 767px) {
  .subMain__title--yellow {
    font-size: 9.1264667536vw;
    -webkit-text-stroke: 1px #486C59;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.subMain__title--green {
  font-family: "smartfont", sans-serif;
  font-size: 48px;
  line-height: 1.2em;
  color: #419341;
  -webkit-text-stroke: 2px #486C59;
}
@media print, screen and (max-width: 1300px) {
  .subMain__title--green {
    font-size: 38px;
    -webkit-text-stroke: 1px #486C59;
  }
}
@media print, screen and (max-width: 767px) {
  .subMain__title--green {
    font-size: 5.4758800522vw;
    -webkit-text-stroke: 1px #486C59;
  }
}
.subMain__peska {
  position: relative;
  z-index: 2;
  width: 80px;
  transform: rotate(-6deg);
}
@media print, screen and (max-width: 767px) {
  .subMain__peska {
    order: 1;
    position: absolute;
    left: 10%;
    bottom: 0px;
    width: 11.7340286832vw;
  }
}
.subMain__kentaro {
  position: relative;
  z-index: 2;
  width: 80px;
  transform: rotate(6deg);
}
@media print, screen and (max-width: 767px) {
  .subMain__kentaro {
    position: absolute;
    right: 10%;
    bottom: 0px;
    width: 11.7340286832vw;
    order: 2;
  }
}

.checkItemList {
  display: flex;
  flex-flow: wrap;
  align-self: center;
  justify-content: center;
}
@media print, screen and (max-width: 767px) {
  .checkItemList {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .checkItemList {
    margin-bottom: 50px;
  }
}
.checkItemList__content {
  display: block;
  max-width: 469px;
  width: calc(49% - 40px);
  margin: 0px 20px;
}
.checkItemList__img {
  width: 100%;
}

.peska2 {
  display: block;
  margin: 0 auto 70px;
  max-width: 317px;
  width: 50%;
}

.kamkamCheck {
  max-width: 800px;
  width: 92%;
  margin: 0 auto;
}
.kamkamCheck__content {
  border-bottom: 3px dotted #9A9A9A;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .kamkamCheck__content {
    padding: 40px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .kamkamCheck__content {
    padding: 70px 0;
  }
}
.kamkamCheck__number {
  max-width: 361px;
  width: 80vw;
}
.kamkamCheck__txt {
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  .kamkamCheck__txt {
    font-size: 18px;
    margin: 30px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .kamkamCheck__txt {
    font-size: 24px;
    margin: 40px 0;
  }
}
.kamkamCheck__txt span {
  font-size: inherit;
  font-weight: 700;
  color: #E20000;
}
.kamkamCheck__img {
  display: block;
  margin: 0 auto;
  max-width: 651px;
  width: 100%;
}
.bg2__img {
  width: 100%;
}

.gumSelect {
  position: relative;
  overflow: hidden;
  background-color: #EAD7B4;
}
@media print, screen and (min-width: 768px) {
  .gumSelect {
    padding-bottom: 120px;
  }
}
.gumSelect__inner {
  max-width: 1400px;
  width: 92%;
}
@media print, screen and (max-width: 767px) {
  .gumSelect__inner {
    margin: 0 auto 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .gumSelect__inner {
    margin: 0 auto 50px;
  }
}

.gumSelectList {
  max-width: 740px;
}
@media print, screen and (min-width: 768px) {
  .gumSelectList {
    width: 60%;
  }
}
@media print, screen and (max-width: 767px) {
  .gumSelectList__content {
    padding: 15px 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .gumSelectList__content {
    padding: 20px 0px;
  }
}
.gumSelectList__content:not(:first-child) {
  border-top: 3px dotted #9a9a9a;
}
.gumSelectList__radio {
  display: none;
}
.gumSelectList__label {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
}
@media print, screen and (min-width: 768px) {
  .gumSelectList__label {
    padding: 20px 10px;
  }
}
.gumSelectList__label:has(.radio:checked) {
  background-color: rgba(31, 124, 22, 0.1);
}
@media print, screen and (max-width: 1300px) {
  .gumSelectList__img {
    width: 17%;
  }
}
@media print, screen and (max-width: 1300px) {
  .gumSelectList__dl {
    width: 73%;
    margin: 0px 5%;
  }
}
@media print, screen and (min-width: 1301px) {
  .gumSelectList__dl {
    margin: 0px 30px;
    width: 390px;
  }
}
.gumSelectList__title {
  font-family: "smartfont", sans-serif;
  color: #419341;
}
@media print, screen and (max-width: 1300px) {
  .gumSelectList__title {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 1301px) {
  .gumSelectList__title {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .gumSelectList__txt {
    font-size: 18px;
  }
}
@media print, screen and (max-width: 1300px) {
  .gumSelectList__arrow {
    width: 12%;
  }
}

.peska3 {
  position: absolute;
}
@media print, screen and (min-width: 1701px) {
  .peska3 {
    top: 100px;
    right: calc(50% - 1050px);
  }
}
@media print, screen and (max-width: 1700px) {
  .peska3 {
    top: 100px;
    right: -200px;
  }
}
@media print, screen and (max-width: 1300px) {
  .peska3 {
    top: 100px;
    right: -10%;
    width: 45vw;
  }
}
@media print, screen and (max-width: 767px) {
  .peska3 {
    position: static;
    display: block;
    margin: 0 auto 50px;
    max-width: 500px;
    width: 70%;
  }
}

@media print, screen and (max-width: 1300px) {
  .peska4 {
    display: block;
    max-width: 303px;
    width: 50%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1301px) {
  .peska4 {
    position: absolute;
    top: 250px;
    left: calc(50% - 600px);
  }
}

.kentaro3 {
  max-width: 477px;
  width: 92%;
  margin: 0 auto 30px;
  display: block;
}

.enquete {
  background-color: #fff;
  border-radius: 15px;
  max-width: 1200px;
  width: 92%;
}
@media print, screen and (max-width: 767px) {
  .enquete {
    margin: 0 auto 40px;
    padding: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete {
    margin: 0 auto 70px;
    padding: 60px;
  }
}
.enquete__txt {
  border: 1px solid #a1a1a1;
  padding: 10px;
  width: calc(100% - 1.5em);
  margin-right: 0.5em;
}
@media print, screen and (max-width: 767px) {
  .enquete__title {
    margin-top: 50px;
    color: #419341;
    font-size: 20px;
    font-weight: 700;
  }
}
.enquete__profile .enquete__dl--title::before {
  content: none;
}
@media print, screen and (min-width: 768px) {
  .enquete__profile {
    margin-bottom: 60px;
  }
}
.enquete__dl {
  display: flex;
  flex-flow: wrap;
}
.enquete__dl.use-after {
  counter-reset: enquete;
}
.enquete__dl--title {
  padding: 15px 0;
  font-size: 16px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .enquete__dl--title {
    width: 100%;
    padding-bottom: 0px;
    font-weight: 700;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--title {
    border-bottom: 1px dotted #a1a1a1;
    width: calc(100% - 280px);
  }
}
.enquete__dl--title::before {
  counter-increment: enquete;
  content: counter(enquete) ". ";
}
.enquete__dl--title.other {
  border-bottom: none;
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--title.other {
    width: 200px;
  }
}
.enquete__dl--title.sub {
  width: 100%;
  border-bottom: none;
}
.enquete__dl--title.sub span {
  font: inherit;
  color: inherit;
  display: block;
}
.enquete__dl--detail {
  border-bottom: 1px dotted #a1a1a1;
  padding: 15px 0;
}
@media print, screen and (max-width: 767px) {
  .enquete__dl--detail {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--detail {
    flex-grow: 1;
    padding-right: 20px;
    width: 280px;
  }
}
.enquete__dl--subtitle {
  padding: 10px 0;
  font-size: 16px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .enquete__dl--subtitle {
    width: 100%;
    padding-bottom: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--subtitle {
    width: calc(100% - 280px);
    padding-left: 30px;
  }
}
.enquete__dl--subdetail {
  padding: 15px 0;
}
@media print, screen and (max-width: 767px) {
  .enquete__dl--subdetail {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--subdetail {
    flex-grow: 1;
    padding-right: 20px;
  }
}
.enquete__dl--txtarea {
  padding: 15px 0;
}
@media print, screen and (max-width: 767px) {
  .enquete__dl--txtarea {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .enquete__dl--txtarea {
    flex-grow: 1;
    padding-right: 20px;
  }
}
.enquete__dl--txtarea textarea {
  border: 1px solid #a1a1a1;
  width: 100%;
  padding: 10px;
}
.enquete__list {
  display: flex;
  flex-flow: wrap;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .enquete__list {
    justify-content: space-between;
  }
}
@media print, screen and (max-width: 767px) {
  .enquete__list--content {
    margin-right: 20px;
  }
}
.enquete__list--content label {
  font-size: 16px;
}

.error {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 50px;
}
.error li {
  color: #E64A70;
  font-size: 16px;
  font-weight: 700;
}

.enqueteAside {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 0px 20px;
}
@media print, screen and (max-width: 767px) {
  .enqueteAside {
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .enqueteAside {
    margin-bottom: 100px;
  }
}
.kentaro4 {
  max-width: 477px;
  width: 92%;
  margin: 0 auto 30px;
  display: block;
}

.point {
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  justify-content: center;
}
@media print, screen and (max-width: 767px) {
  .point {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .point {
    margin-bottom: 70px;
  }
}
.point__red {
  color: #CC0000;
  font-weight: 700;
  line-height: 1em;
}
@media print, screen and (max-width: 767px) {
  .point__red {
    font-size: 50px;
    margin: 10px 10px 10px 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .point__red {
    font-size: 96px;
    margin-right: 20px;
  }
}
.point__black {
  line-height: 1em;
}
@media print, screen and (max-width: 767px) {
  .point__black {
    font-size: 30px;
    margin: 10px 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .point__black {
    font-size: 48px;
  }
}
.point__detail {
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  .point__detail {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .point__detail {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.point__detail--txt {
  font-size: inherit;
  font-weight: inherit;
}

.sosyakuryoku {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin: 0 20px 30px;
}
.sosyakuryoku__txt {
  text-indent: -1em;
  margin-left: 1em;
}
@media print, screen and (max-width: 767px) {
  .sosyakuryoku__txt {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .sosyakuryoku__txt {
    font-size: 20px;
  }
}
.sosyakuryoku__txt span {
  font-size: inherit;
  color: #E20000;
}
.sosyakuryoku__img {
  max-width: 874px;
  width: 92%;
  display: block;
  margin: 0 auto 70px;
}

.resultKentaro {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 767px) {
  .resultKentaro {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .resultKentaro {
    margin-bottom: 40px;
  }
}
.resultKentaro__content {
  border-radius: 15px;
  background-color: #fff;
  padding: 30px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .resultKentaro__content {
    width: 630px;
    margin-left: 50px;
  }
}
.resultKentaro__txt {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .resultKentaro__txt {
    font-size: 24px;
  }
}
@media print, screen and (max-width: 767px) {
  .resultKentaro__img {
    margin-bottom: 30px;
    margin-right: 30px;
  }
}

.kamContents {
  max-width: 800px;
  width: 92%;
  margin: 0 auto 70px;
  background-color: #fff;
  padding: 30px;
}
.kamContents__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.kamContentsList {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
@media (max-width: 420px) {
  .kamContentsList {
    display: block;
  }
}
.kamContentsList__content {
  width: 48%;
  display: flex;
  height: 80px;
}
@media (max-width: 420px) {
  .kamContentsList__content {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .kamContentsList__content:not(:first-child) {
    margin-top: 10px;
  }
}
.kamContentsList__link {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  background-color: #419341;
  width: 100%;
  line-height: 1.2em;
}
.kamContentsList__link:hover {
  background-color: #486C59;
}
.kamContentsList__link p {
  color: #fff;
  text-align: center;
}
.kamContentsList__link p span {
  display: inline-block;
  color: inherit;
}/*# sourceMappingURL=style.css.map */