@charset "UTF-8";
/* ヘッダー フッター*/
/* 変数　*/
header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  header {
    padding: 10px 5px;
    height: 170px;
    flex-direction: column;
    justify-content: center;
    row-gap: 5px;
  }
}
header .header-title {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}
header .header-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
}
@media screen and (max-width: 900px) {
  header .header-links {
    row-gap: 20px;
  }
}
header .header-links .header-inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
header .header-links .header-inquiry .tel {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  header .header-links .header-inquiry .tel {
    font-size: 2.6rem;
  }
}
header .header-links .header-inquiry .mail {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffb400;
  border-radius: 10px;
  height: 35px;
  padding: 0 10px;
}
header .header-links .header-inquiry .mail:hover {
  color: #005efb;
}
header .header-links .header-nav ul {
  display: flex;
  margin: 0;
  justify-content: space-around;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  header .header-links .header-nav ul {
    font-size: 1.8rem;
  }
}

footer {
  display: flex;
  background-color: #4c8fff;
  color: #ffffff;
  padding: 30px 50px 30px 50px;
}
@media screen and (max-width: 900px) {
  footer {
    padding: 30px 10px 20px 10px;
    flex-direction: column;
    row-gap: 40px;
  }
}
footer .footer-1 {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media screen and (max-width: 900px) {
  footer .footer-1 {
    width: 100%;
  }
}
footer .footer-1 p {
  font-size: 1.8rem;
}
footer .footer-1 .footer-name {
  font-size: 4.8rem;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1100px) {
  footer .footer-1 .footer-name {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 900px) {
  footer .footer-1 .footer-name {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
footer .footer-1 .footer-name:hover {
  color: #ffb400;
}
footer .footer-1 .footer-addr {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 900px) {
  footer .footer-1 .footer-addr {
    font-size: 1.5rem;
  }
}
footer .footer-1 .footer-tel {
  font-size: 1.8rem;
  color: #ffffff;
}
footer .footer-1 .footer-tel:hover {
  color: #ffb400;
}
footer .footer-2 {
  width: 40%;
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 900px) {
  footer .footer-2 {
    width: 100%;
  }
}
footer .footer-2 ul li {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  footer .footer-2 ul li {
    margin-bottom: 10px;
  }
}
footer .footer-2 ul li a {
  font-size: 1.8rem;
  color: #ffffff;
}
footer .footer-2 ul li a:hover {
  color: #ffb400;
}
footer .footer-2 .koramu {
  display: block;
  font-size: 1.8rem;
  color: #ffffff;
}
footer .footer-2 .koramu:hover {
  color: #ffb400;
}

/* 変数　*/
html {
  font-size: 62.4%;
  /* fontもともと16px相当なので64.4%で10px相当にしている */
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem; /*30px*/
  color: #000000;
}

/* リストの点を消す */
ul {
  padding-left: 0;
}

li {
  list-style: none;
}

/* マージンを消す */
h1,
h2,
h3,
h4,
p,
ul,
li {
  margin: 0;
}

/* box-sizing */
main,
article,
section,
div,
h1,
h2,
h3,
h4,
p,
ul,
li {
  box-sizing: border-box;
}

/* aの挙動 */
a {
  text-decoration: none;
  color: #000000;
  transition: all ease 0.2s;
}

a:hover {
  color: #ffb400;
}

header a:hover {
  color: #4c8fff;
}

.br-900 {
  display: none;
}
@media screen and (max-width: 900px) {
  .br-900 {
    display: inline;
  }
}

.blue {
  color: #005efb;
}

/* TOP*/
.top {
  background-image: url(../img/top.jpg);
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(80vh - 0px);
  height: calc(80lvh - 0px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -100px;
}
@media screen and (max-width: 900px) {
  .top {
    height: calc(70vh - 0px);
    height: calc(70lvh - 0px);
    margin-top: -170px;
  }
}
.top .top-ps {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #ffffff;
}
@media screen and (max-width: 900px) {
  .top .top-ps {
    margin-top: 150px;
  }
}
.top .top-ps .top-1 {
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .top .top-ps .top-1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.top .top-ps .top-2 {
  font-size: 4.8rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .top .top-ps .top-2 {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .top .top-ps .top-2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}
.top h1 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 8.2rem;
  color: #ffffff;
}
@media screen and (max-width: 1000px) {
  .top h1 {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 900px) {
  .top h1 {
    font-size: 5.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .top h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .top h1 .yui {
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 600px) {
  .top h1 .yui {
    font-size: 4.6rem;
  }
}
.top h1 .dot {
  font-size: 6rem;
}
@media screen and (max-width: 900px) {
  .top h1 .dot {
    font-size: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .top h1 .dot {
    font-size: 2.4rem;
  }
}

.points {
  background-color: #4c8fff;
  width: 100%;
  height: 20vh;
  height: 20lvh;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 55px;
       column-gap: 55px;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .points {
    flex-wrap: wrap;
    height: 30vh;
    height: 30lvh;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
}
.points span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffb400;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 8px 3px 5px rgba(106, 106, 106, 0.3);
}
@media screen and (max-width: 1000px) {
  .points span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .points span {
    font-size: 1.6rem;
    width: 110px;
    height: 80px;
  }
}

/* お悩み*/
.worry {
  width: 96%;
  max-width: 800px;
  margin: 50px auto;
}
.worry h2 {
  font-size: 4.4rem;
}
@media screen and (max-width: 900px) {
  .worry h2 {
    font-size: 3.4rem;
  }
}
.worry h2 strong {
  font-size: 5.8rem;
}
@media screen and (max-width: 900px) {
  .worry h2 strong {
    font-size: 4.8rem;
  }
}
.worry .worries {
  width: 90%;
  margin: 20px auto 40px;
}
.worry .worries li {
  font-size: 2.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .worry .worries li {
    font-size: 2rem;
  }
}
.worry .worries li img {
  width: 30px;
}
@media screen and (max-width: 900px) {
  .worry .worries li img {
    width: 25px;
  }
}
.worry .solutions {
  width: 96%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.worry .solutions .solutions-item {
  border: 2px solid #4c8fff;
  width: 100%;
}
.worry .solutions .solutions-item > p {
  background-color: #4c8fff;
  color: #ffffff;
  padding: 15px;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item > p {
    padding: 10px;
    font-size: 2rem;
  }
}
.worry .solutions .solutions-item .solutions-item-lower {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower {
    padding: 10px 5px 10px;
  }
}
.worry .solutions .solutions-item .solutions-item-lower h3 {
  text-shadow: 0px 5px 10px rgba(106, 106, 106, 0.4);
}
.worry .solutions .solutions-item .solutions-item-lower h3 strong {
  color: #ffb400;
  font-size: 4.6rem;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower h3 strong {
    padding: 10px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower h3 {
    font-size: 2.4rem;
  }
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price {
  width: 96%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price {
    flex-direction: column;
    row-gap: 20px;
  }
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap .solutions-item-price-title {
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap .solutions-item-price-title {
    text-align: center;
    font-size: 2.4rem;
  }
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap .solutions-item-price {
  font-size: 4.4rem;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap .solutions-item-price {
    font-size: 4rem;
  }
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price .solutions-item-price-wrap .solutions-item-price::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #ffb400;
  bottom: 0;
  z-index: -10;
}
.worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price img {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price img {
    width: 75%;
  }
}
@media screen and (max-width: 900px) {
  .worry .solutions .solutions-item .solutions-item-lower .solutions-item-img-price-2 {
    flex-direction: column-reverse;
  }
}

.cta {
  background-color: #4c8fff;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 50px 10px 40px;
}
@media screen and (max-width: 800px) {
  .cta {
    padding: 30px 10px 20px;
  }
}
.cta .cta-upper {
  width: 96%;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 800px) {
  .cta .cta-upper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.cta .cta-upper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  border: solid 3px #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .cta .cta-upper > span {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
  }
}
.cta .cta-upper .cta-upper-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.cta .cta-upper .cta-upper-wrap p {
  font-size: 4.8rem;
}
@media screen and (max-width: 800px) {
  .cta .cta-upper .cta-upper-wrap p {
    text-align: center;
    font-size: 3.8rem;
  }
}
.cta .cta-upper .cta-upper-wrap .cta-upper-wrap-spans {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 800px) {
  .cta .cta-upper .cta-upper-wrap .cta-upper-wrap-spans {
    font-size: 2rem;
  }
}
.cta .cta-lower {
  width: 96%;
  max-width: 650px;
  margin: 0 auto;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .cta .cta-lower {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
  }
}
.cta .cta-lower .cta-lower-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta .cta-lower .cta-lower-tel p {
  font-size: 2.4rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.cta .cta-lower .cta-lower-tel a {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  font-size: 4.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .cta-lower > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 2.2rem;
  background-color: #ffb400;
}
.cta .cta-lower > a:hover {
  color: #4c8fff;
}
.cta .cta-lower > a img {
  margin-left: 10px;
  width: 17px;
}

/* サービス*/
.service {
  width: 96%;
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .service {
    margin: 50px auto;
  }
}
.service h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .service h2 {
    font-size: 4rem;
  }
}
.service .service-wrap {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.service .service-wrap .service-item {
  width: calc(33% - 11px);
  height: 180px;
  border: 3px solid #4c8fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .service .service-wrap .service-item {
    width: calc(50% - 11px);
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .service .service-wrap .service-item {
    height: 140px;
  }
}
.service .service-wrap .service-item h3 {
  background-color: #4c8fff;
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
}
.service .service-wrap .service-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 強み*/
.strength {
  width: 96%;
  max-width: 900px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .strength {
    margin: 50px auto;
  }
}
.strength h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .strength h2 {
    font-size: 4rem;
  }
}
.strength h2 strong {
  font-size: 6.4rem;
}
@media screen and (max-width: 800px) {
  .strength h2 strong {
    font-size: 5rem;
  }
}
.strength .strength-wrap {
  display: flex;
  justify-content: space-around;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 800px) {
  .strength .strength-wrap {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.strength .strength-wrap .strength-item {
  width: 25%;
  border: 3px solid #4c8fff;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 800px) {
  .strength .strength-wrap .strength-item {
    width: calc(50% - 5px);
    padding: 10px 10px;
    row-gap: 10px;
  }
}
.strength .strength-wrap .strength-item .strength-title {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  height: 65px;
}
@media screen and (max-width: 800px) {
  .strength .strength-wrap .strength-item .strength-title {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.strength .strength-wrap .strength-item .strength-title .num {
  color: #4c8fff;
  font-size: 4rem;
  font-weight: bold;
  line-height: 0.5em;
}
.strength .strength-wrap .strength-item .strength-title h3 {
  font-size: 2.5rem;
  line-height: 1.3em;
}
@media screen and (max-width: 800px) {
  .strength .strength-wrap .strength-item .strength-title h3 {
    font-size: 2.2rem;
  }
}
.strength .strength-wrap .strength-item p {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.8em;
}
@media screen and (max-width: 800px) {
  .strength .strength-wrap .strength-item p {
    line-height: 1.6em;
  }
}

/* 料金表*/
.price {
  width: 96%;
  max-width: 700px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .price {
    margin: 50px auto;
  }
}
.price h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .price h2 {
    font-size: 4rem;
  }
}
.price .price-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #4c8fff;
}
.price .price-table tbody {
  padding: 5px;
}
.price .price-table tbody tr {
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .price .price-table tbody tr {
    font-size: 2.6rem;
  }
}
.price .price-table tbody tr .tr-ldk {
  border: 3px solid #4c8fff;
  text-align: center;
}
.price .price-table tbody tr .tr-price {
  border: 3px solid #4c8fff;
  text-align: center;
}

/* 対応エリア*/
.area {
  width: 96%;
  max-width: 900px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.area > span {
  font-size: 5rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .area > span {
    font-size: 4rem;
  }
}
.area h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .area h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    background-color: #ffeb48;
    top: 25px;
    z-index: -10;
  }
}
@media screen and (max-width: 900px) {
  .area h2 {
    font-size: 3.4rem;
    text-align: center;
  }
}
.area h2 strong {
  font-size: 6rem;
}
@media screen and (max-width: 900px) {
  .area h2 strong {
    font-size: 4rem;
  }
}
.area h2 span {
  position: relative;
}
.area h2 span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  background-color: #ffeb48;
  bottom: 0;
  z-index: -10;
}
@media screen and (max-width: 900px) {
  .area h2 span::before {
    display: none;
  }
}
.area p {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .area p {
    font-size: 3rem;
  }
}

/* サービスご利用の流れ*/
.flow {
  width: 96%;
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .flow {
    margin: 50px auto;
  }
}
.flow h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .flow h2 {
    font-size: 4rem;
  }
}
.flow .flow-wrap {
  width: 100%;
  border: 3px solid #4c8fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  padding: 30px 0;
}
.flow .flow-wrap .flow-item {
  width: 90%;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.flow .flow-wrap .flow-item img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow .flow-wrap .flow-item .flow-item-expl {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.flow .flow-wrap .flow-item .flow-item-expl h3 {
  font-size: 3.6rem;
}
@media screen and (max-width: 900px) {
  .flow .flow-wrap .flow-item .flow-item-expl h3 {
    font-size: 2rem;
  }
}
.flow .flow-wrap .flow-item .flow-item-expl p {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .flow .flow-wrap .flow-item .flow-item-expl p {
    font-size: 1.8rem;
  }
}

.voice {
  width: 96%;
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .voice {
    margin: 50px auto;
  }
}
.voice h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .voice h2 {
    font-size: 4rem;
  }
}
.voice .voice-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 30px;
}
.voice .voice-wrap .voice-item {
  border: 3px solid #4c8fff;
}
.voice .voice-wrap .voice-item h3 {
  font-size: 2.8rem;
  border-bottom: 3px solid #4c8fff;
  padding: 10px 30px;
}
@media screen and (max-width: 900px) {
  .voice .voice-wrap .voice-item h3 {
    font-size: 2.2rem;
    padding: 5px 10px;
  }
}
.voice .voice-wrap .voice-item p {
  font-size: 1.6rem;
  padding: 10px 30px;
  line-height: 1.7em;
}
@media screen and (max-width: 900px) {
  .voice .voice-wrap .voice-item p {
    padding: 5px 20px;
  }
}

/* よくあるご質問*/
.faq {
  width: 96%;
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 800px) {
  .faq {
    margin: 50px auto;
  }
}
.faq h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .faq h2 {
    font-size: 4rem;
  }
}
.faq .faq-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.faq .faq-wrap .faq-item {
  display: flex;
  flex-direction: column;
}
.faq .faq-wrap .faq-item .question-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border: 3px solid #4c8fff;
  padding: 30px 20px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .faq .faq-wrap .faq-item .question-wrapper {
    padding: 20px 10px;
  }
}
.faq .faq-wrap .faq-item .question-wrapper .q {
  width: 45px;
  height: 45px;
  border: 3px solid #4c8fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
}
.faq .faq-wrap .faq-item .question-wrapper .question {
  font-size: 1.8rem;
  font-weight: bold;
  width: 90%;
}
.faq .faq-wrap .faq-item .answer-wrapper {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  background-color: #d0e9f8;
  padding: 30px 20px;
}
@media screen and (max-width: 800px) {
  .faq .faq-wrap .faq-item .answer-wrapper {
    padding: 20px 10px;
  }
}
.faq .faq-wrap .faq-item .answer-wrapper .a {
  width: 45px;
  height: 45px;
  border: 3px solid #4c8fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
}
.faq .faq-wrap .faq-item .answer-wrapper .answer {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.7em;
}/*# sourceMappingURL=style.css.map */

/*お問い合わせページ*/
.form-wrapper {

  max-width: 886px;
  margin: 80px auto 0 auto;
  
 
}
.form-wrapper .about-text {
  margin-bottom: 54px;
  font-size: 1.9375rem;
  color: #333;
  line-height: 2.333;
}

.about-text01 > p {
  font-size: 1.0rem;
  margin: 0 auto;
  
  line-height: 2.333;
}

.about-text01 > h2 {
  font-size: 2.0rem;
  margin: 0 auto;
  line-height: 2.333;
}

@media screen and (max-width: 768px) {
  .form-wrapper .about-text {
    font-size: 0.875rem;
  }
}
.form-wrapper .about-text a:not(a[href^="tel:"]) {
  text-decoration: underline;
}

.form-box {
  width: 100%;
}
.form-box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.form-box dt, .form-box dd {
  padding-bottom: 30px;
}
.form-box dt {
  font-size: 2.0rem;
  font-weight: 400;
  text-align: left;
}
.form-box dt.message {
  padding-top: 10px;
  vertical-align: top;
}
.form-box dd {
  width: 63.993%;
}
.required {
  display: inline-block;
}
.required::after {
  content: "※";
  display: inline-block;
  padding-left: 1em;
  color: #DA1725;
}
.text-red {
  color: #DA1725;
}

.btn-wrapper {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  display: inline-block;
  min-width: 220px;
  padding: 10px;
  background-image: linear-gradient(to right, #333 0%, #333 50%, #FFFFFF 50%, #FFFFFF 100%);
  background-size: 200%;
  background-position-x: 0;
  border: 1px solid #333;
  border-radius: 5px;
  color: #FFFFFF;
  text-align: center;
  transition: 0.3s ease-in;
}
.btn-submit:hover {
  background-position-x: 100%;
  color: #333;
}  

input[type=text],
input[type=email],
input[type=tel],
textarea {
width: 100%;
padding: 6px 10px;
border: 1px solid #C4C4C4;
border-radius: 5px;
outline: none;
}

textarea {
resize: vertical;
}