@charset "UTF-8";

body {
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  font-family: "NotoSansCJKjp", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", Georgia, 游明朝, HGS明朝E, serif;
  font-feature-settings: "pwid" 1;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  color: #3d3d3d;
}

* {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .6;
}

body,
header,
main,
footer ul {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}



.absolute {
  position: absolute;
  width: 100%;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.relative {
  position: relative;
}

body {
  font-family: "Noto Sans JP";
}

.fix {
  width: min(100%, 580px);
  position: fixed;
  bottom: 0px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fix.visible {
  opacity: 1;
  pointer-events: auto;
  background: #000000e0;
}

.bold {
  font-weight: bold;
}

.cont3 {
  background: #ffffff;
  padding: 0.6rem 0;
}

.cont3 img {
  width: 82%;
  margin: 2rem auto 2rem;
}

.cont3 img:first-child {
  width: 85%;
  margin-bottom: 0;
}

.cont3 .fade-in {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

div.cont3 img.fade-in:nth-child(2) {
  margin-top: 1.5rem;
}

.cont3 .fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}



/* 背景用 */
.gradient_bg {
  background: linear-gradient(#251747, #812186, #251747);
  padding-top: 10%;
}

.cont4_img {
  width: 85%;
  margin: 0 auto;
}


/*質問一覧*/
.question_wrap {
  width: 100%;
  background: #00000050;
  padding: 5% 0;
  font-family: serif;
}

.question_wrap .title {
  width: 65%;
  margin: 0.3rem auto 1rem;
}

.question_wrap .bold {
  text-align: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.question {
  margin: auto 7.5%;
  padding: 4px 0;
  color: white;
  border-bottom: 1px solid white;
}

.question p {
  color: white;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.question:last-of-type {
  margin-bottom: 9%;
  border: none;
}

.question>p {
  font-weight: bold;
  padding: 2% 0;
  padding-right: 10%;
  position: relative;
}


.question>p>img,
.honbun>p>img {
  display: inline;
  width: 2rem;
  height: auto;
  margin-right: 0.5rem;
}

.question>p:after {
  /* 矢印 */
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px white;
  border-right: solid 2px white;
  position: absolute;
  top: 26%;
  right: 0;
  transform: rotate(135deg);
}

.honbun {
  display: none;
}

.honbun>p {
  padding: 4% 0;
}

div.question:last-of-type {
  margin-bottom: 0;
}




/* lineテストパート */
.line {
  padding: 1rem 0 2rem;
  background: #ffffff;
  text-align: center;
}

.line .title {
  width: 90%;
  margin: 1rem auto;
}


.line .microcopy {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #06C755;
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}

.line .microcopy::before,
.line .microcopy::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 0.5rem);
  background-color: #06C755;
  top: 50%;
  transform-origin: center;
}

.line .microcopy::before {
  left: 0;
  transform: translateY(-50%) rotate(-25deg);
}

.line .microcopy::after {
  right: 0;
  transform: translateY(-50%) rotate(25deg);
}


.line p.line_honbun {
  display: block;
  width: 90%;
  margin: 0 auto;
  color: #000000;
  font-size: 13px;
  text-align: center;
}

.line_btn {
  width: 85%;
  margin: 0 auto 2rem;
}

.line .bold {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  margin: 4px auto 0;
}