@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/**
 *=========================
 * 詳細ページ
 *=========================
 */
/*
overview
---------------------------*/
#overview {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FEF8DE), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/*
article-link
---------------------------*/
#article-link .wrap {
  padding: 0 0 80px;
}
#article-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#article-link ul.item-03 li {
  width: 100%;
}
#article-link ul li {
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 0 #5ECA87;
          box-shadow: 10px 10px 0 #5ECA87;
}
#article-link ul li + li {
  margin-top: 25px;
}
#article-link ul li a {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  background: #FEF8DE;
  border: 5px double #026934;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#article-link ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  width: 25px;
  height: 25px;
  background: url("/img/common/icon-arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#article-link ul li a:hover {
  top: 10px;
  left: 10px;
}
@media (min-width: 769px) {
  #article-link ul.item-03 li {
    width: calc((100% - 60px) / 3);
  }
  #article-link ul.item-03 li + li {
    margin-top: 0;
    margin-left: 30px;
  }
  #article-link ul li + li {
    margin-top: 30px;
  }
  #article-link ul li a {
    font-size: 20px;
  }
}

/*
article-detail
---------------------------*/
#article-detail {
  position: relative;
}
#article-detail .wrap {
  padding: 0 0 150px;
}
#article-detail section {
  margin-bottom: 100px;
}
#article-detail section:last-of-type {
  margin-bottom: 0;
}
#article-detail section .article-overview__title--warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
  border-top: 1px solid #026934;
  border-bottom: 1px solid #026934;
}
#article-detail section .article-overview__title--warp .label {
  margin-bottom: 10px;
  border: 5px double #026934;
  border-radius: 30px;
}
#article-detail section .article-overview__title--warp .label p {
  padding: 5px 35px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  background: #FEF8DE;
  border-radius: 25px;
}
#article-detail section .article-overview__title--warp h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
#article-detail section .article-overview__tab {
  margin-top: 30px;
}
#article-detail section .article-overview__tab--title {
  width: 75%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 6px 16px 5px;
  background: #3EC06F;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 10px 10px 0 0;
}
#article-detail section .article-overview__tab--title p {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
}
#article-detail section .article-overview__tab--contents {
  padding: 25px;
  border: 1px solid #026934;
  border-radius: 0 15px 15px 15px;
  -webkit-box-shadow: 15px 15px 0px #C0EDC6;
          box-shadow: 15px 15px 0px #C0EDC6;
}
#article-detail section .article-overview__tab--contents ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#article-detail section .article-overview__tab--contents ul li + li {
  margin-top: 16px;
}
#article-detail section .article-overview__tab--contents ul li .title {
  position: relative;
  width: 100%;
  padding-left: 1.5em;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail section .article-overview__tab--contents ul li .title::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 1em;
  height: 1em;
  background: #E75611;
  border-radius: 50%;
}
#article-detail section .article-overview__tab--contents ul li .detail {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail section .article-result {
  margin-top: 50px;
}
#article-detail section .article-result__section + .article-result__section {
  margin-top: 70px;
}
#article-detail section .article-result__section--title {
  margin-bottom: 45px;
}
#article-detail section .article-result__section--title h3 {
  padding: 10px 15px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-left: 5px solid #026934;
}
#article-detail section .article-result__section--question-wrap + .article-result__section--question-wrap {
  margin-top: 70px;
}
#article-detail section .article-result__section--question {
  position: relative;
  padding: 7px;
  background: #FFFFFF;
  border: 1px solid #026934;
  border-radius: 15px;
}
#article-detail section .article-result__section--question-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 23px 23px 15px 23px;
  background: #D2FAE1;
  border-radius: 15px;
}
#article-detail section .article-result__section--question-inner .label {
  position: absolute;
  top: -20px;
  left: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 8px 10px 12px 15px;
  background: #3EC06F;
  border: 1px solid #026934;
  border-radius: 20px;
}
#article-detail section .article-result__section--question-inner .label p {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
}
#article-detail section .article-result__section--question-inner .icon {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  padding: 8px 5px 12px;
  background: #3EC06F;
  border: 1px solid #026934;
  border-radius: 20px;
}
#article-detail section .article-result__section--question-inner .icon p {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
}
#article-detail section .article-result__section--question-inner h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#article-detail section .article-result__section--content {
  margin-top: 30px;
}
#article-detail section .article-result__section--content h5 {
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #026934;
}
#article-detail section .article-result__section--content .select__wrap {
  margin-top: 30px;
}
#article-detail section .article-result__section--content .select__wrap p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail section .article-result__section--content figure {
  width: 100%;
}
#article-detail section .article-result__section--content figure img {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #026934;
  border-radius: 15px;
}
#article-detail section .article-result__section--content figure figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#article-detail section .article-result__section--content .text__wrap {
  margin-top: 30px;
}
#article-detail section .article-result__section--content .text__wrap ul li {
  padding-left: 1em;
  text-indent: -1em;
}
#article-detail section .article-result__section--content .text__wrap p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
#article-detail section .article-result__section--content .text__wrap p .em-text--s {
  font-size: 18px;
  font-weight: 700;
}
#article-detail .btn {
  width: 100%;
  max-width: 500px;
  margin: 45px auto 0;
  border-radius: 15px;
}
#article-detail .btn a {
  padding: 15px 65px 18px;
  font-size: min(3.5vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 15px;
}
@media (min-width: 769px) {
  #article-detail section {
    margin-bottom: 165px;
  }
  #article-detail section .article-overview__title--warp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #article-detail section .article-overview__title--warp .label {
    margin-bottom: 0;
    margin-right: 40px;
    border: 5px double #026934;
    border-radius: 30px;
  }
  #article-detail section .article-overview__title--warp .label p {
    padding: 3px 50px;
    font-size: 30px;
  }
  #article-detail section .article-overview__title--warp h2 {
    font-size: 34px;
    text-align: left;
  }
  #article-detail section .article-overview__tab {
    margin-top: 50px;
  }
  #article-detail section .article-overview__tab--contents {
    padding: 40px 50px;
    border-radius: 0 30px 30px 30px;
  }
  #article-detail section .article-overview__tab--contents ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #article-detail section .article-overview__tab--contents ul li + li {
    margin-top: 0;
  }
  #article-detail section .article-overview__tab--contents ul li .title {
    width: 200px;
    font-size: 18px;
  }
  #article-detail section .article-overview__tab--contents ul li .detail {
    width: calc(100% - 125px);
    font-size: 18px;
  }
  #article-detail section .article-result {
    margin-top: 100px;
  }
  #article-detail section .article-result__section + .article-result__section {
    margin-top: 130px;
  }
  #article-detail section .article-result__section .article-result__section--title {
    margin-bottom: 30px;
  }
  #article-detail section .article-result__section .article-result__section--title h3 {
    padding: 15px 30px;
    font-size: 30px;
  }
  #article-detail section .article-result__section .article-result__section--question-wrap + .article-result__section--question-wrap {
    margin-top: 100px;
  }
  #article-detail section .article-result__section .article-result__section--question {
    border-radius: 30px;
  }
  #article-detail section .article-result__section .article-result__section--question-inner {
    padding: 33px 43px;
    border-radius: 30px;
  }
  #article-detail section .article-result__section .article-result__section--question-inner .label {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 15px 0 0;
  }
  #article-detail section .article-result__section .article-result__section--question-inner .label p {
    font-size: 20px;
  }
  #article-detail section .article-result__section .article-result__section--question-inner .icon {
    position: static;
    margin: 3px 15px 0 0;
  }
  #article-detail section .article-result__section .article-result__section--question-inner h4 {
    font-size: 25px;
  }
  #article-detail section .article-result__section .article-result__section--content {
    margin-top: 50px;
  }
  #article-detail section .article-result__section .article-result__section--content h5 {
    width: 95%;
    max-width: 900px;
    margin: 30px auto 0;
    font-size: 22px;
  }
  #article-detail section .article-result__section .article-result__section--content .select__wrap {
    width: 95%;
    max-width: 900px;
    margin: 30px auto 0;
  }
  #article-detail section .article-result__section .article-result__section--content .select__wrap.column p {
    margin-right: 15px;
  }
  #article-detail section .article-result__section .article-result__section--content .select__wrap p {
    font-size: 18px;
  }
  #article-detail section .article-result__section .article-result__section--content figure {
    width: 95%;
    max-width: 900px;
    margin: 15px auto 0;
  }
  #article-detail section .article-result__section .article-result__section--content figure img {
    border-radius: 30px;
  }
  #article-detail section .article-result__section .article-result__section--content .text__wrap {
    margin-top: 50px;
  }
  #article-detail section .article-result__section .article-result__section--content .text__wrap p {
    font-size: 18px;
  }
  #article-detail section .article-result__section .article-result__section--content .text__wrap p .em-text--s {
    font-size: 22px;
  }
  #article-detail .btn {
    max-width: 650px;
    margin: 60px auto 0;
    border-radius: 30px;
  }
  #article-detail .btn a {
    padding: 30px 65px;
    font-size: 20px;
    border-radius: 30px;
  }
}/*# sourceMappingURL=survey.css.map */