@charset "UTF-8";

:root
{
  --bl: #0DB7D6;
}

*
{
  box-sizing: border-box;
}

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

a
{
  display: block;
  color: #000;
  text-decoration-line: none;
}

a:hover,
a img:hover
{
  opacity: 0.75;
  transition-duration: 0.8s;
}

html
{
  scroll-behavior: smooth;
  font-size: 62.5%;
  /*pxだと10px;*/
}

@media screen and (min-width: 800px) and (max-width: 1100px)
{
  html
  {
    font-size: 56.7%;
  }
}

body
{
  width: 100%;
  height: auto;
  background: #FBF6F0;
  color: #000;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin: 0;
  padding: 0;
}

.container
{
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
}

.btn
{
  background-color: #4caf50;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
}

.hide
{
  display: none;
}

#score
{
  display: block;
}

.pc-none
{
  display: none;
}

.sp-none
{
  display: block;
}

@media screen and (max-width: 800px)
{
  .pc-none
  {
    display: block;
  }

  .sp-none
  {
    display: none;
  }
}

/* ヘッダー
---------------------------------*/
header .logo
{
  padding: 1.9rem 3% 2.1rem;

}

header .logo img
{
  width: 163px
}

@media screen and (max-width: 800px)
{
  header .logo
  {
    text-align: center;
    padding: 1.5rem 3%
  }

  header .logo img
  {
    width: 103px;
  }
}

/* フッター
---------------------------------*/
footer
{
  width: 94%;
  margin: 12rem auto 0;
  padding: 2.2rem 0 5rem;
  border-top: 2px solid var(--bl);
}

footer .inner
{
  display: flex;
  justify-content: space-between;
}

footer .inner .logo
{
  width: 149px;
}

footer .inner ul
{
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

footer .inner li a
{
  display: block;
  padding: 0 1em;
  color: var(--bl);
  font-size: 1.6rem;
}

@media screen and (max-width: 800px)
{
  footer
  {
    margin: 80px auto 0;
    padding: 20px 0 35px;
  }

  footer .inner
  {
    display: block;
    text-align: center;
    width: 100%;
  }

  footer .inner .logo
  {
    width: 89px;
    margin: 0 auto;
  }

  footer .inner ul
  {
    display: block;
  }

  footer .inner ul li
  {
    padding-bottom: 1em;
  }

  footer .inner li a
  {
    font-size: 14px;
  }
}


/* スタートページ
---------------------------------*/
.start h1
{
  display: block;
  max-width: 100%;
  margin-bottom: 9.75rem;
}

.start p
{
  font-size: 2.4rem;
  text-align: center;
  line-height: 2;
}

#start-btn
{
  display: block;
  width: 60rem;
  height: 8.5rem;
  background: var(--bl);
  border-radius: 9999px;
  margin: 7rem auto 5rem;
  color: #fff;
  font-size: 3rem;
}

#start-btn:hover
{
  background: #30CDEA;
  transition-duration: 0.8s;
}

.start .snsarea
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.start .snsarea a.line
{
  margin-right: 25px;
}

.start .snsarea a.line img
{
  height: 30px;
}

.start .snsarea iframe
{
  margin: 0 20px
}

@media screen and (max-width: 800px)
{
  .start p
  {
    font-size: 1.7rem;
    line-height: 2;
  }

  #start-btn
  {
    width: 280px;
    height: 60px;
    margin: 35px auto;
    font-size: 24px;
  }

  .start h1
  {
    margin-bottom: 48px;
  }

  .start .snsarea iframe
  {
    margin: 0 10px
  }

}

/* 診断QAページ
---------------------------------*/
.quiz .container
{
  position: relative;
}

.quiz .sitelogo
{
  position: absolute;
  top: -6.3rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 293.16px;
  height: 137.35px;
}

.quiz .top
{
  padding-top: 21rem;
  padding-bottom: 6.2rem;
  border-bottom: 2px solid var(--bl);
}

.quiz h1
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 182px;
  height: 59px;
  border-radius: 9999px;
  background: var(--bl);
  margin: 0 auto 5.2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.quiz h1 span:first-child
{
  font-size: 4rem;
}

.quiz .question
{
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}

.quiz .qimage
{
  position: absolute;
  left: 0;
  top: 128px;
  width: 162px;
  height: 146px;
}

.quiz .answer-buttons
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 6.2rem;
}

.quiz button
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26rem;
  height: 5.5rem;
  background: #ffff;
  margin: 0 1.3rem 2.3rem;
  border: 2px solid var(--bl);
  border-radius: 9999px;
  color: var(--bl);
  font-size: 1.9rem;
  font-weight: bold;
}

.quiz button:hover
{
  background: #F4D579;
  color: #E87F04;
  border: 2px solid #E87F04;
}

@media screen and (max-width: 800px)
{
  .quiz .sitelogo
  {
    width: 148.94px;
    height: 69.78px;
    top: 0;
  }

  .quiz .top
  {
    padding-top: 120px;
    padding-bottom: 24px;
  }

  .quiz h1
  {
    width: 182px;
    height: 51px;
    font-size: 25px;
    margin: 0 auto 37px;
  }

  .quiz h1 span:first-child
  {
    font-size: 30px;
  }

  .quiz .question
  {
    font-size: 24px;
  }

  .quiz .qimage
  {
    position: static;
    margin: 30px auto 0;
    width: 91px;
    height: 82px;
  }

  .quiz .answer-buttons
  {
    display: block;
  }

  .quiz .answer-buttons
  {
    padding-top: 40px;
  }

  .quiz button
  {
    width: 256px;
    height: 45px;
    margin: 0 auto 20px;
  }
}

/* 診断結果ページ
---------------------------------*/
.result .sitelogo
{
  position: absolute;
  top: -6.3rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 260.46px;
  height: 134.27px;
}

.result .top
{
  position: relative;
  width: 100%;
  background: var(--bl);
  color: #fff;
  text-align: center;
  padding: 11.8rem 5% 7rem;
  margin-bottom: 20px;
}

.result h1
{
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 2rem;
}

.result .planname
{
  font-size: 4.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #F1C744;
  padding-bottom: 4rem;
}

.result .description
{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
}

.result .bottom .content01 .back
{
  position: absolute;
  bottom: 20%;
  left: -20%;
  width: 9.8rem;
  height: 9.445rem;
  z-index: -1;
}

.result .bottom .content02 .back1
{
  position: absolute;
  bottom: 20%;
  right: -18%;
  width: 13.8rem;
  height: 8.934rem;
  z-index: -1;
}

.result .bottom .content02 .back2
{
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 17.7rem;
  height: 6.981rem;
  z-index: -1;
}

.result .bottom .content03 .back
{
  position: absolute;
  bottom: 15%;
  left: -20%;
  width: 8.9rem;
  height: 11.53rem;
  z-index: -1;
}

.result .bottom .content05 .back
{
  position: absolute;
  bottom: 0%;
  right: -20%;
  width: 7.1rem;
  height: 12.03rem;
  z-index: -1;
}

.result .bottom .content01,
.result .bottom .content02,
.result .bottom .content03,
.result .bottom .content04,
.result .bottom .content05
{
  display: flex;
  justify-content: space-between;
}

.result .bottom .content02,
.result .bottom .content04
{
  flex-direction: row-reverse;
}

.result .bottom .content01,
.result .bottom .content05
{
  position: relative;
  width: 810px;
  margin: 0 auto;
  background-image: url(../img/result/common/back_bl_big.svg);
  background-position: 40% center;
  background-repeat: no-repeat;
}

.result .bottom .content01
{
  padding: 156px 0 180px;
  background-image: url(../img/result/common/back_bl_big.svg);
  background-position: 40% center;
  background-repeat: no-repeat;
}

.result .bottom .content05
{
  padding: 0;
  background-image: url(../img/result/common/back_yerrow_big.svg);
  background-position: 40% center;
  background-repeat: no-repeat;
}

.result .bottom .content02,
.result .bottom .content04
{
  position: relative;
  width: 860px;
  padding: 40px 0 180px;
  margin: 0 auto;

}

.result .bottom .content02
{
  background-image: url(../img/result/common/back_yerrow_middle.svg);
  background-position: 60% center;
  background-repeat: no-repeat;
}

.result .bottom .content04
{
  background-image: url(../img/result/common/back_bl_middle.svg);
  background-position: 60% center;
  background-repeat: no-repeat;
}

.result .bottom .content03
{
  position: relative;
  width: 900px;
  padding: 30px 0 185px 40px;
  margin: 0 auto;
  background-image: url(../img/result/common/back_blyerrow.svg);
  background-repeat: no-repeat;
  background-position: 0% 39%;
}

.result .bottom .content01::before
{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 172.97px;
  height: 168px;
  background-image: url(../img/result/common/line01.svg);
  background-repeat: no-repeat;
}

.result .bottom .content01::after
{
  position: absolute;
  content: '';
  bottom: 0;
  left: 40%;
  width: 137px;
  height: 134px;
  background-image: url(../img/result/common/line02.svg);
  background-repeat: no-repeat;
}

.result .bottom .content02::after
{
  position: absolute;
  content: '';
  bottom: 0;
  right: 40%;
  width: 138px;
  height: 151px;
  background-image: url(../img/result/common/line03.svg);
  background-repeat: no-repeat;
}

.result .bottom .content03::after
{
  position: absolute;
  content: '';
  bottom: 0;
  right: 40%;
  width: 79px;
  height: 149px;
  background-image: url(../img/result/common/line04.svg);
  background-repeat: no-repeat;
}

.result .bottom .content04::after
{
  position: absolute;
  content: '';
  bottom: 0;
  right: 40%;
  width: 52px;
  height: 122px;
  background-image: url(../img/result/common/line05.svg);
  background-repeat: no-repeat;
}

.result .bottom .img
{
  width: 459px;
}

.result .bottom .txt
{
  width: 350px;
  padding-top: 50px;
}

.result .bottom .img .image-a img
{
  width: 241.06px;
  height: 361.59px;
  border-radius: 10px;
  object-fit: cover;
}

.result .bottom .img .image-b img
{
  width: 168.04px;
  height: 264.26px;
  border-radius: 10px;
  object-fit: cover;
  transform: rotate(11deg);
}

.result .bottom .content02 .img .image-b img,
.result .bottom .content04 .img .image-b img
{
  transform: rotate(-11deg);
}

.result .bottom .txt h2
{
  font-size: 3.5rem;
  color: #7E413F;
  font-weight: bold;
  padding-bottom: 5.8rem;
  line-height: 1.3;
}

.result .bottom .txt p
{
  font-size: 2rem;
  color: #7E413F;
  font-weight: bold;
  line-height: 1.6;
}

.result .snsarea
{
  display: flex;
  justify-content: center;
  margin: 96px auto 0;
}

.result .snsarea a.line
{
  margin-right: 25px;
}

.result .snsarea a.line img
{
  height: 30px;
}

.result .snsarea a.x-share-btn
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 18px;
  height: 30px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
}

.result .snsarea a.x-share-btn::before
{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.744l7.73-8.835L1.254 2.25H8.08l4.258 5.622L18.244 2.25zm-1.161 17.52h1.833L7.084 4.126H5.117L17.083 19.77z'/%3E%3C/svg%3E") no-repeat center / contain;
  margin-right: 6px;
}

.result .btnarea
{
  display: flex;
  justify-content: center;
}

.backbtn
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 373px;
  height: 78px;
  border-radius: 9999px;
  background: #fff;
  border: 3px solid var(--bl);
  color: var(--bl);
  font-weight: bold;
  font-size: 3rem;
  margin: 0 10px
}

.btn
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 373px;
  height: 78px;
  border-radius: 9999px;
  background: var(--bl);
  border: 3px solid var(--bl);
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  margin: 0 20px
}

.linkarea
{
  max-width: 90%;
  width: 940px;
  border: dashed 1px #7E413F;
  padding: 3rem 2rem;
  margin: 63px auto 85px
}

.linkarea p
{
  font-size: 2rem;
  color: #7E413F;
  text-align: center;
}

.linkarea .link
{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.linkarea .link a
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 305px;
  height: 114px;
  background: #E8BDBA;
  border-radius: 10px;
  margin: 0 15px
}

.linkarea .link a:first-child img
{
  width: 139.95px;
}

.linkarea .link a:last-child img
{
  width: 163.53px;
}

@media screen and (max-width: 800px)
{
  .result .sitelogo
  {
    width: 147.58px;
    height: 76.08px;
    top: -35px;
  }

  .result .top
  {
    padding: 76px 5% 58px;
    margin-top: 40px;
  }

  .result h1
  {
    font-size: 18px;
    padding-bottom: 15px;
  }

  .result .planname
  {
    font-size: 24px;
    padding-bottom: 30px;
    line-height: 1.5;
  }

  .result .description
  {
    font-size: 16px;
  }

  .result .bottom .content01 .back
  {
    bottom: 45%;
    left: auto;
    width: 48px;
    height: 46.26px;
    right: 0;
  }

  .result .bottom .content02 .back1
  {
    bottom: 5%;
    right: 0;
    width: 57px;
    height: 36.9px;
  }

  .result .bottom .content02 .back2
  {
    display: none;
  }

  .result .bottom .content03 .back
  {
    bottom: 5%;
    left: 0;
    width: 45px;
    height: 58.3px;
  }

  .result .bottom .content05 .back
  {
    bottom: auto;
    top: 0;
    right: 5%;
    width: 30px;
    height: 50.83px;
  }

  .result .bottom .content01,
  .result .bottom .content05
  {
    width: 90%;
    padding: 107px 0 90px;
    background-size: 40%;
    background-position: 70% 26%;
  }

  .result .bottom .content02,
  .result .bottom .content04
  {
    width: 90%;
    padding: 10px 0 90px;
    background-size: 165px auto;
    background-position: 40% 5%;
  }

  .result .bottom .content03
  {
    width: 90%;
    padding: 30px 0 115px;
    background-size: 315px auto;
    background-position: 10% 5%;
  }

  .result .bottom .content05
  {
    background-size: 202px auto;
    padding: 0;
  }

  .result .bottom .content01,
  .result .bottom .content02,
  .result .bottom .content03,
  .result .bottom .content04,
  .result .bottom .content05
  {
    display: block;
  }

  .result .bottom .img
  {
    width: 80%;
    margin: 0 auto;
  }

  .result .bottom .content02 .img,
  .result .bottom .content04 .img
  {
    width: 232px;
    margin-left: calc(100% - 232px);
  }

  .result .bottom .content03 .img
  {
    width: 243px;
    margin: 0 auto;
  }

  .result .bottom .txt
  {
    width: 100%;
    padding-top: 0;
  }

  .result .bottom .img
  {
    padding-bottom: 35px;
  }

  .result .bottom .img .image-a img
  {
    width: 120.24px;
    height: 180.36px;
  }

  .result .bottom .img .image-b img
  {
    width: 83.82px;
    height: 131.81px;
  }

  .result .bottom .txt h2
  {
    font-size: 24px;
    padding-bottom: 0.5em;
  }

  .result .bottom .txt p
  {
    font-size: 17px;
  }

  .result .bottom .content01::before
  {
    left: auto;
    right: 20%;
    width: 83.13px;
    height: 94px;
    background-image: url(../img/result/common/line01-sp.svg);
  }

  .result .bottom .content01::after
  {
    left: 20%;
    width: 61.2px;
    height: 74.83px;
    background-image: url(../img/result/common/line02-sp.svg);
  }

  .result .bottom .content02::after
  {
    right: 20%;
    width: 67.07px;
    height: 86px;
    background-image: url(../img/result/common/line03-sp.svg);
  }

  .result .bottom .content03::after
  {
    right: 35%;
    bottom: 30px;
    width: 45.5px;
    height: 72.65px;
    background-image: url(../img/result/common/line04-sp.svg);
  }

  .result .bottom .content04::after
  {
    width: 42.68px;
    height: 100.14px;
    background-image: url(../img/result/common/line05-sp.svg);
    background-repeat: no-repeat;
  }

  .result .snsarea
  {
    display: flex;
    justify-content: center;
    margin: 53px auto 0;
  }

  .result .btnarea
  {
    display: block;
  }

  .backbtn
  {
    width: 280px;
    height: 52px;
    font-size: 24px;
    margin: 0 auto 20px;
  }

  .btn
  {
    width: 280px;
    height: 52px;
    font-size: 24px;
    margin: 0 auto
  }

  .linkarea
  {
    margin: 34px auto 56px
  }

  .linkarea p
  {
    font-size: 15px;
    text-align: left;
  }

  .linkarea .link
  {
    display: block;
    margin-top: 10px;
  }

  .linkarea .link a
  {
    border-radius: 10px;
    width: 292px;
    height: 96px;
    margin: 0 auto
  }

  .linkarea .link a:first-child
  {
    margin: 0 auto 10px
  }
}