@charset "UTF-8";
.color1 {
  color: #F66946;
}

.color1-bold {
  color: #F66946;
  font-weight: 600;
}

.color2 {
  color: #00B4D2;
}

.color3 {
  color: #00C300;
}

.marker1 {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.marker1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%; /* テキストの半分から下 */
  background-color: #F3D11F; /* マーカーの色 */
  border-radius: 1rem; /* 角を丸くする */
  z-index: -1; /* テキストの背面に表示 */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  color: #303030;
}

a {
  cursor: pointer;
  display: block;
}

a:hover {
  opacity: 0.8;
}

img {
  vertical-align: bottom;
}

.wrapper {
  width: 100%;
}

.container {
  max-width: 768px;
  margin: 0 auto;
}

.main {
  width: 90%;
  margin: 0 auto;
}

#mv {
  padding-top: 128px;
  padding-bottom: 4rem;
  background-image: url(../image/mv_bg.svg);
}
@media screen and (max-width: 767px) {
  #mv {
    padding-top: 36px;
    padding-bottom: 3rem;
  }
}
#mv .mv_title {
  margin: 0 auto;
  margin-top: 8vh;
  text-align: center;
}
#mv .mv_title p {
  display: inline-block;
  font-size: 3rem;
  background-color: #fff;
  font-weight: bold;
  padding: 1.2rem 1rem;
  margin: 0.8rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #mv .mv_title p {
    font-size: 6.25vw;
    margin: 0.4rem;
  }
}
#mv .mv_content {
  position: relative;
}
#mv .mv_content .mv_fig {
  margin-top: 1.6rem;
  text-align: center;
}
#mv .mv_content .mv_fig img {
  width: 65%;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_fig img {
    width: 90%;
  }
}
#mv .mv_content .mv_block {
  text-align: center;
  position: relative;
}
#mv .mv_content .mv_block .mv_block1 {
  background-color: #fff;
  padding: 1.5rem 3rem;
  display: inline-block;
  border-radius: 1rem;
  border: 3px solid #303030;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -20%;
  width: 55%;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block1 {
    padding: 1rem 2rem;
  }
}
#mv .mv_content .mv_block .mv_block1 p:first-child {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block1 p:first-child {
    font-size: 3.6458333333vw;
  }
}
#mv .mv_content .mv_block .mv_block1 p:last-child {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block1 p:last-child {
    font-size: 4.9479166667vw;
  }
}
#mv .mv_content .mv_block .mv_block1 p:last-child span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block1 p:last-child span {
    font-size: 5.9895833333vw;
  }
}
#mv .mv_content .mv_block .mv_block2 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #F3D11F;
  padding: 10% 2% 2%;
  box-sizing: border-box;
  border-radius: 1rem;
  border: 3px solid #303030;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block2 {
    padding: 13% 2% 2%;
  }
}
#mv .mv_content .mv_block .mv_block2 .box {
  flex: 1 1 40%; /* 各ボックスを幅50%に設定 (ギャップ用に調整) */
  margin: 2%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  width: 40%;
  justify-content: center;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block2 .box {
    padding: 10px;
    border-radius: 0.5rem;
  }
}
#mv .mv_content .mv_block .mv_block2 .box p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #mv .mv_content .mv_block .mv_block2 .box p {
    font-size: 3.6458333333vw;
    line-height: 1.4rem;
  }
}

#about {
  background-color: #00B4D2;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #about {
    padding: 3rem 0;
  }
}
#about .main {
  background-color: #fff;
  padding: 4rem 0;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #about .main {
    padding: 3rem 0 0.5rem;
    border-radius: 0.5rem;
  }
}
#about .main .title .fukidashi {
  font-size: 1.7rem;
  font-weight: 600;
  background-image: url(../image/fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 3rem;
  padding: 1.4rem 1.8rem 1.8rem 1.8rem;
  background-position: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #about .main .title .fukidashi {
    font-size: 4.4270833333vw;
    height: 6vw;
    padding: 3vw 0 5vw;
  }
}
#about .main .txt {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 3rem 3rem;
}
@media screen and (max-width: 767px) {
  #about .main .txt {
    font-size: 3.90625vw;
    line-height: 1.5;
    margin: 1.5rem;
  }
}
#about .main .txt p {
  margin-bottom: 2rem;
}

#msg {
  background-color: #F0F0F0;
}
#msg .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #msg .main {
    padding: 3rem 0;
  }
}
#msg .main .title {
  font-size: 2.5rem;
  font-weight: 700;
  border-top: 4px solid #00B4D2;
  border-bottom: 4px solid #00B4D2;
  padding: 2.5rem 0;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #msg .main .title {
    font-size: 5.7291666667vw;
    padding: 1.5rem 0;
    border-top: 2px solid #00B4D2;
    border-bottom: 2px solid #00B4D2;
  }
}
#msg .main .sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  #msg .main .sub-title {
    font-size: 4.4270833333vw;
    padding: 2rem 0;
  }
}
#msg .main .msg-box {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box {
    padding: 2rem 1rem;
    border-radius: 0.5rem;
  }
}
#msg .main .msg-box .box-title {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .box-title {
    font-size: 3.6458333333vw;
  }
}
#msg .main .msg-box .prof-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .prof-box {
    margin: 2rem 0;
  }
}
#msg .main .msg-box .prof-box .icon {
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .prof-box .icon {
    margin-right: 1rem;
  }
}
#msg .main .msg-box .prof-box .icon img {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .prof-box .icon img {
    width: 3rem;
  }
}
#msg .main .msg-box .prof-box .name {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .prof-box .name {
    font-size: 3.6458333333vw;
  }
}
#msg .main .msg-box .letter {
  font-size: 1.5rem;
  line-height: 1.8;
  background-image: linear-gradient(#ccc 1px, transparent 1px);
  background-size: 100% 1.8em;
  padding-bottom: 1px;
}
@media screen and (max-width: 767px) {
  #msg .main .msg-box .letter {
    font-size: 3.6vw;
    background-size: 100% 2.2rem;
    line-height: 2.2rem;
  }
}

#trouble {
  background-color: #4C4948;
}
#trouble .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #trouble .main {
    padding: 3rem 0;
  }
}
#trouble .main .title {
  font-size: 3rem;
  font-weight: 700;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  padding: 2.5rem 0;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #trouble .main .title {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #trouble .main .title {
    font-size: 5.7291666667vw;
  }
}
#trouble .main .txt-box div {
  font-size: 1.5rem;
  background-color: #fff;
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #trouble .main .txt-box div {
    font-size: 3.3854166667vw;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.2rem;
  }
}
#trouble .main .trouble-img {
  display: block;
  width: 50%;
  margin: 0 auto;
}
#trouble .main .answer {
  font-size: 2rem;
  color: #fff;
  border: 4px solid;
  font-weight: 500;
  padding: 3rem 3rem;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #trouble .main .answer {
    font-size: 5.2083333333vw;
    line-height: 1.8rem;
    padding: 1.5rem 2rem;
    border: 2px solid;
    border-radius: 0.5rem;
  }
}
#trouble .main .arrow {
  display: block;
  margin: 0 auto;
  width: 10%;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #trouble .main .arrow {
    margin-top: 1rem;
  }
}

#merit {
  background-image: url(../image/mv_bg.svg);
}
#merit .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #merit .main {
    padding: 3rem 0;
  }
}
#merit .main .txt-box {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #merit .main .txt-box {
    margin-bottom: 1rem;
  }
}
#merit .main .txt-box .icon {
  width: 16%;
}
#merit .main .txt-box .txt {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  margin-left: 3rem;
  line-height: 4rem;
  width: 84%;
}
@media screen and (max-width: 767px) {
  #merit .main .txt-box .txt {
    font-size: 5.46875vw;
    line-height: 1.4;
    margin-left: 1rem;
  }
}
#merit .main .txt-box .txt .sub {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #merit .main .txt-box .txt .sub {
    font-size: 4.1666666667vw;
  }
}
#merit .main .line-offer {
  margin: 0 auto;
  display: block;
  width: 60%;
}
#merit .main .button {
  margin-top: 0;
}

#case {
  background-color: #F0F0F0;
}
#case .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #case .main {
    padding: 3rem 0;
  }
}
#case .main .title {
  font-size: 3rem;
  font-weight: 600;
  border-top: 4px solid #00B4D2;
  border-bottom: 4px solid #00B4D2;
  padding: 2.5rem 0;
  text-align: center;
  line-height: 1.5;
  color: #303030;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #case .main .title {
    font-size: 5.7291666667vw;
    padding: 1.5rem 0;
    border-top: 2px solid #00B4D2;
    border-bottom: 2px solid #00B4D2;
    margin-bottom: 3rem;
  }
}
#case .main .txt-box {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  #case .main .txt-box {
    margin-bottom: 3rem;
  }
}
#case .main .txt-box .q-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#case .main .txt-box .q-box .txt {
  font-size: 1.5rem;
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  #case .main .txt-box .q-box .txt {
    font-size: 3.6458333333vw;
    line-height: 1.4;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
}
#case .main .txt-box .a-box {
  font-size: 1.7rem;
  color: #303030;
  font-weight: 500;
  line-height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #case .main .txt-box .a-box {
    font-size: 3.6458333333vw;
    line-height: 1.5;
  }
}
#case .main .q1 .q-box img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  #case .main .q1 .q-box img {
    width: 25%;
  }
}
#case .main .q1 .a-box {
  background-image: url(../image/case-2row.svg);
  height: 5rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
}
@media screen and (max-width: 767px) {
  #case .main .q1 .a-box {
    height: 12vw;
    padding: 6vw 4vw 2vw;
  }
}
#case .main .q2 .q-box img {
  width: 25%;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  #case .main .q2 .q-box img {
    margin-left: 0;
    width: 14%;
  }
}
#case .main .q2 .a-box {
  background-image: url(../image/case-3row.svg);
  height: 7rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
}
@media screen and (max-width: 767px) {
  #case .main .q2 .a-box {
    height: 18vw;
    padding: 6vw 4vw 2vw;
  }
}
#case .main .q3 .q-box img {
  width: 45%;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  #case .main .q3 .q-box img {
    margin-right: 0.5rem;
  }
}
#case .main .q3 .a-box {
  background-image: url(../image/case-4row.svg);
  height: 10rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #case .main .q3 .a-box {
    height: 23vw;
    padding: 6vw 4vw 2vw;
    margin-top: 1rem;
  }
}
#case .main .q4 .q-box img {
  width: 45%;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  #case .main .q4 .q-box img {
    width: 35%;
    margin-left: 0.5rem;
  }
}
#case .main .q4 .a-box {
  background-image: url(../image/case-4row.svg);
  height: 10rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
}
@media screen and (max-width: 767px) {
  #case .main .q4 .a-box {
    height: 23vw;
    padding: 6vw 4vw 2vw;
    margin-top: 0;
  }
}
#case .main .q5 .q-box img {
  width: 20%;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  #case .main .q5 .q-box img {
    margin-right: 0.5rem;
  }
}
#case .main .q5 .a-box {
  background-image: url(../image/case-3row.svg);
  height: 7rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
}
@media screen and (max-width: 767px) {
  #case .main .q5 .a-box {
    height: 18vw;
    padding: 6vw 4vw 2vw;
  }
}
#case .main .q6 .q-box img {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #case .main .q6 .q-box img {
    width: 25%;
  }
}
#case .main .q6 .a-box {
  background-image: url(../image/case-3row.svg);
  height: 7rem;
  padding: 3.4rem 1.8rem 1.8rem 1.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #case .main .q6 .a-box {
    background-image: url(../image/case-4row.svg);
    height: 23vw;
    padding: 6vw 4vw 2vw;
    margin-top: 1rem;
  }
}
#case .main .line-offer2 {
  display: block;
  width: 60%;
  margin: 0 auto;
}
#case .main .line-offer2-txt {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #case .main .line-offer2-txt {
    font-size: 5.7291666667vw;
    line-height: 1.6;
  }
}

#match {
  background-color: #F3D11F;
}
#match .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #match .main {
    padding: 3rem 0;
  }
}
#match .main .sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  background-image: url(../image/match-fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.8rem;
  padding: 1.2rem 1.8rem 2.2rem 1.8rem;
  background-position: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #match .main .sub-title {
    font-size: 3.6458333333vw;
    padding: 4vw 0vw 1vw;
  }
}
#match .main .title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #match .main .title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  #match .main .title {
    margin-top: 0.5rem;
  }
}
#match .main .title span {
  font-size: 3rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  #match .main .title span {
    font-size: 6.5104166667vw;
  }
}
#match .main .txt-box {
  background-color: #fff;
  position: relative;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  #match .main .txt-box {
    padding: 2rem 1rem 1rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
}
#match .main .txt-box .number {
  position: absolute;
  top: -2.5rem;
  font-size: 4rem;
  font-weight: 600;
  color: #00B4D2;
}
@media screen and (max-width: 767px) {
  #match .main .txt-box .number {
    font-size: 9.1145833333vw;
    top: -1.5rem;
  }
}
#match .main .txt-box .match-title {
  font-size: 1.7rem;
  font-weight: 600;
  border-bottom: 2px solid #303030;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #match .main .txt-box .match-title {
    font-size: 4.1666666667vw;
    border-bottom: 1px solid #303030;
    padding-bottom: 1.2rem;
  }
}
#match .main .txt-box .match-txt {
  font-size: 1.5rem;
  padding-top: 1.5rem;
  line-height: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #match .main .txt-box .match-txt {
    font-size: 3.6458333333vw;
    line-height: 1.8;
    padding-top: 1.2rem;
  }
}

#support {
  background-color: #F0F0F0;
}
#support .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #support .main {
    padding: 3rem 0;
  }
}
#support .main .title {
  font-size: 2.5rem;
  font-weight: 700;
  border-top: 4px solid #00B4D2;
  border-bottom: 4px solid #00B4D2;
  padding: 2rem 0;
  text-align: center;
  line-height: 1.5;
  color: #303030;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #support .main .title {
    font-size: 5.7291666667vw;
    padding: 1.5rem 0;
    border-top: 2px solid #00B4D2;
    border-bottom: 2px solid #00B4D2;
    margin-bottom: 3rem;
  }
}
#support .main .step-box {
  background-image: url(../image/support-fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18rem;
  padding: 1.2rem 1.8rem 2.2rem 1.8rem;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #support .main .step-box {
    height: 36vw;
  }
}
#support .main .step-box .step-number {
  font-size: 2rem;
  color: #00B4D2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #support .main .step-box .step-number {
    font-size: 5.2083333333vw;
    margin-bottom: 0.5rem;
  }
}
#support .main .step-box .step-img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 9rem;
}
@media screen and (max-width: 767px) {
  #support .main .step-box .step-img {
    height: 20vw;
  }
}
#support .main .step-box .step-txt {
  font-size: 1.7rem;
  font-weight: 500;
  color: #303030;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #support .main .step-box .step-txt {
    font-size: 4.6875vw;
    margin-top: 0.5rem;
  }
}

#voice {
  background-color: #00B4D2;
}
#voice .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #voice .main {
    padding: 3rem 0;
  }
}
#voice .main .title {
  text-align: center;
  padding: 0.5rem 2rem 2rem;
  background-color: #fff;
  width: 75%;
  margin: 0 auto;
  border-radius: 1rem;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #voice .main .title {
    padding: 2vw 6vw 5vw;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
  }
}
#voice .main .title span {
  font-size: 1.7rem;
  font-weight: 600;
  color: #00B4D2;
}
@media screen and (max-width: 767px) {
  #voice .main .title span {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  #voice .main .title {
    font-size: 7.2916666667vw;
  }
}
#voice .main .voice-box {
  padding: 1rem 2rem 4rem;
  border-radius: 1rem;
  background-color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box {
    padding: 1rem 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
  }
}
#voice .main .voice-box .voice-prof {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 3rem 0 1rem;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box .voice-prof {
    margin: 0.5rem 0 1rem;
  }
}
#voice .main .voice-box .voice-prof .icon {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box .voice-prof .icon {
    margin-right: 1rem;
  }
}
#voice .main .voice-box .voice-prof .icon img {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box .voice-prof .icon img {
    width: 3rem;
  }
}
#voice .main .voice-box .voice-prof .name {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box .voice-prof .name {
    font-size: 3.6458333333vw;
  }
}
#voice .main .voice-box .voice-txt {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  #voice .main .voice-box .voice-txt {
    line-height: 1.5;
    font-size: 3.6458333333vw;
  }
}

#faq {
  background-color: #F0F0F0;
}
#faq .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #faq .main {
    padding: 3rem 0;
  }
}
#faq .main .title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  #faq .main .title {
    font-size: 7.2916666667vw;
  }
}
#faq .main .qa-box {
  font-size: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  line-height: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-box {
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 3.6458333333vw;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
#faq .main .qa-box .q-txt {
  position: relative;
  margin-left: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-box .q-txt {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
  }
}
#faq .main .qa-box .q-txt::before {
  content: "Ｑ";
  display: block;
  position: absolute;
  left: -2.5rem;
  font-weight: 500;
  color: #00B4D2;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-box .q-txt::before {
    left: -1.5rem;
  }
}
#faq .main .qa-box .a-txt {
  position: relative;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-box .a-txt {
    margin-left: 1.5rem;
  }
}
#faq .main .qa-box .a-txt::before {
  content: "Ａ";
  display: block;
  position: absolute;
  left: -2.5rem;
  font-weight: 500;
  color: #00B4D2;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-box .a-txt::before {
    left: -1.5rem;
  }
}
#faq .main .qa-offer {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  #faq .main .qa-offer {
    font-size: 5.2083333333vw;
    line-height: 1.6;
  }
}

#concept .main {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #concept .main {
    padding: 3rem 0;
  }
}
#concept .main .sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  background-image: url(../image/concept-fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.1rem;
  padding: 1.2rem 1.8rem 2.2rem 1.8rem;
  background-position: center;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #concept .main .sub-title {
    font-size: 4.9479166667vw;
    padding: 3vw 0vw 4vw;
  }
}
#concept .main .title {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #130cb7 10%, #52e5e7 90%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-fill-color: transparent;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #concept .main .title {
    font-size: 8.8541666667vw;
    line-height: 1.5;
    margin-top: 1.5rem;
  }
}
#concept .main .concept-txt {
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-weight: 600;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #concept .main .concept-txt {
    font-size: 3.6458333333vw;
    line-height: 1.8;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
  line-height: 3rem;
  background-color: #F66946;
  width: 90%;
  height: 6.5rem;
  border-radius: 0.8rem;
  margin-top: 4rem;
  box-shadow: 0 0.5rem 0 0 #D65B3C;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 7.2916666667vw;
    height: 4rem;
    margin-top: 2rem;
    width: 100%;
  }
}
.button p {
  display: inline;
  color: #fff;
  margin: 0 1.5rem;
}
.button img {
  display: inline;
  height: 3rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .button img {
    height: 2rem;
  }
}

.parts {
  width: 100%;
}

section {
  position: relative;
}

.btn {
  width: 80%;
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

#case .btn {
  bottom: 2%;
}

#match .btn {
  bottom: 3%;
}

#support .btn {
  bottom: 3%;
}

#voice .btn {
  bottom: 1.8%;
}

#faq .btn {
  bottom: 2.4%;
}

header {
  padding: 1% 2%;
  background: #fff;
  position: fixed;
  z-index: 2;
  max-width: 768px;
  box-sizing: border-box;
}
header .header-logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header .header-logo-menu .logo-area img {
  width: 60%;
}

header .btn {
  position: static;
}

#nav-drawer {
  position: relative;
  display: flex;
  align-items: center;
  width: 10%;
}
#nav-drawer #nav-open {
  cursor: pointer;
}
#nav-drawer #nav-open img {
  width: 100%;
}

.nav-unshown {
  display: none;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 80%;
  max-width: 500px; /*最大幅（お好みで調整を）*/
  height: 100%;
  background: #fff;
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}
#nav-content ul {
  list-style-type: none;
  padding: 5%;
}
#nav-content ul li {
  padding: 5% 0;
  border-bottom: 1px solid #303030;
}
#nav-content ul li a {
  color: #303030;
  text-decoration: none;
  font-family: "Noto Sans JP", system-ui;
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.8;
}

#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

footer {
  color: #fff;
  background-image: url("../image/footer.png");
  background-size: cover;
  text-align: center;
}
footer .logo {
  padding-top: 5%;
}
footer .logo img {
  width: 30%;
}
footer .insta {
  padding: 5% 0;
}
footer .insta img {
  width: 6%;
}
footer .footer-menu {
  font-family: "Noto Sans JP", system-ui;
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
footer .footer-menu a {
  color: #fff;
  text-decoration: none;
}
footer .copyright {
  font-family: "Noto Sans JP", system-ui;
  padding: 5% 0;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .container header {
    padding: 2% 4%;
  }
  .container #nav-drawer {
    width: 20%;
  }
  .container #nav-content ul li a {
    font-size: 0.8em;
  }
  .container .footer-menu a {
    font-size: 3vw;
  }
  .container .copyright {
    font-size: 3vw;
  }
}/*# sourceMappingURL=style.css.map */