@charset "UTF-8";
:root {
  --blue:#1790C6;
  --light_blue: #DFE9ED;
  --white:#fff;
  --box_shadow01:0px 0px 10px #00000029;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

h2 {
  text-align: center;
}
h2 .en {
  max-width: 322px;
  margin-top: 10px;
}
h2 .ja {
  font-size: 24px;
  display: block;
  margin-top: 10px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.wrapper {
  margin-top: 27px;
}
header .logo {
  width: 223px;
}
header div {
  font-size: 32px;
  font-weight: bold;
}

.section-top {
  margin-top: 17px;
}
.section-top .top-01 .catch-copy {
  font-size: 1.25em;
  font-weight: bold;
}
.section-top .top-01 .catch-copy span {
  font-weight: normal;
}
.section-top .top-02 {
  margin-top: 30px;
}
.section-top .top-02 .top02-img {
  display: flex;
}
.section-top .top-02 .top02-img img:first-child {
  width: 60%;
}
.section-top .top-02 .top02-img img:last-child {
  width: 40%;
}
.section-top .top-02 ul {
  margin-top: 30px;
}
.section-top .top-02 ul li {
  background: var(--blue);
  position: relative;
  padding-left: 47px;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--white);
}
.section-top .top-02 ul li::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 100%;
  left: 15px;
  top: 27%;
}
.section-top .top-02 .top-contact-form {
  margin: 0 auto;
  background: var(--white);
  padding: 21px 37px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
  border-radius: 2px;
}
.section-top .top-02 .top-contact-form p {
  font-size: 24px;
  font-weight: bold;
}
.section-top .top-02 .top-contact-form form input {
  padding: 10px;
  border: solid 1px #CDCDCD;
  height: 40px;
  border-radius: 5px;
  width: 100%;
}
.section-top .top-02 .top-contact-form form input + input {
  margin-top: 7px;
}
.section-top .top-02 .top-contact-form form input::-moz-placeholder {
  font-size: 14px;
  color: #989898;
}
.section-top .top-02 .top-contact-form form input::placeholder {
  font-size: 14px;
  color: #989898;
}
.section-top .top-02  .top-contact-form form textarea{
  padding: 5px;
  border: solid 1px #CDCDCD;
  border-radius: 5px;
  width: 100%;
  height: 100px;
}
.section-top .top-02 .top-contact-form form input[type=submit] {
  background: var(--blue);
  color: var(--white);
  border-radius: 5px;
  margin-top: 21px;
  font-size: 16px;
  padding: 0;
}
.section-top .top-02 .top-contact-form form dl .required {
  color: #D53B3B;
}
.section-top .top-02 .top-contact-form form dl dt {
  font-size: 14px;
  margin-top: 14px;
  font-weight: normal;
}
.section-top .top-02 .top-contact-form form dl dd {
  margin-top: 3px;
}
.section-top .top-02 .top-contact-form > a {
  text-decoration: none;
  color: #333333;
  font-size: 10px;
}
.section-top .top-03 {
  font-weight: bold;
  background: transparent linear-gradient(180deg, #1790C6 0%, #0B719F 100%) 0% 0% no-repeat padding-box;
  text-align: center;
  margin-top: 30px;
  padding: 25px 0 25px 0;
  color: var(--white);
}
.section-top .top-03 .system-cost {
  font-size: 36px;
}
.section-top .top-03 .good-point {
  font-size: 20px;
  background: var(--white);
  color: var(--blue);
  max-width: 828px;
  width: 96%;
  margin: 0 auto;
  padding: 5px 0;
}
.section-top .top-03 > div:nth-child(2) p {
  font-size: 32px;
}
.section-top .top-03 > div:nth-child(2) .number {
  font-size: 61px;
  color: #FFE65A;
  font-weight: bold;
}
.section-top .top-03 > div:nth-child(2) > div p {
  display: inline-block;
}
.section-top .top-03 > div:nth-child(2) > div .price {
  font-size: 22px;
  text-align: left;
}
.section-top .top-03 > div:nth-child(2) > div .price span {
  display: block;
}
.section-top .top-03 > div:nth-child(2) > div .price span:nth-child(2) {
  font-size: 18px;
}

.about {
  margin-top: 55px;
}
.about > div p {
  line-height: 1.8;
}

.reason {
  margin-top: 100px;
  padding: 70px 0;
  background: var(--light_blue);
}
.reason ul {
  margin-top: 50px;
}
.reason ul h3 {
  text-align: center;
  position: relative;
  font-size: 32px;
  color: #000000;
  margin-top: -40px;
}
.reason ul h3::after {
  position: absolute;
  content: "";
  background: var(--blue);
  height: 2px;
  width: 100%;
  display: block;
  bottom: -15px;
}
.reason ul li {
  background: var(--white);
  box-shadow: var(--box_shadow01);
  padding: 35px;
}
.reason ul li:not(:first-child) {
  margin-top: 66px;
}
.reason ul li:first-child > div {
  margin-top: 30px;
}
.reason ul li .reason-caption {
  transform: translateY(-60px);
  max-width: 168px;
  display: block;
  margin: 0 auto;
}
.reason ul li img {
  max-width: 342px;
}
.reason ul li p {
  margin-top: 24px;
  font-weight: 300;
}

.function {
  padding-top: 50px;
}
.function h3 {
  border-radius: 6px;
  font-size: 24px;
  margin-top: 50px;
  position: relative;
  padding-left: 57px;
  background: var(--blue);
  color: var(--white);
  height: 61px;
  line-height: 61px;
}
.function h3::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  background: var(--white);
  border-radius: 100%;
  top: 21px;
  left: 30px;
}
.function ul h4 {
  font-size: 24px;
  text-align: center;
}
.function ul li {
  margin-top: 48px;
}
.function ul img {
  box-shadow: var(--box_shadow01);
}

.option {
  margin-top: 104px;
  padding: 71px 0 87px 0;
  background: var(--light_blue);
}
.option h2 .en {
  max-width: 521px;
}
.option .option-list {
  margin-top: 50px;
}
.option .option-list li {
  background: var(--white);
  box-shadow: var(--box_shadow01);
}
.option .option-list li:not(:first-child) {
  margin-top: 30px;
}
.option .option-list img {
  box-shadow: var(--box_shadow01);
}
.option .option-list div {
  padding: 42px 20px 42px 20px;
}
.option .option-list div h3 {
  font-size: 24px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.option .option-list div h3::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 2px;
  background: var(--blue);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.option .option-list div p {
  margin-top: 24px;
}
.option .option-support {
  margin-top: 73px;
}
.option .option-support h3 {
  font-size: 24px;
  color: var(--blue);
  position: relative;
  padding-left: 33px;
}
.option .option-support h3::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  background: var(--blue);
  border-radius: 100%;
  left: 0;
  top: 6px;
}
.option .option-support ul {
  margin-top: 20px;
}
.option .option-support ul li {
  position: relative;
}
.option .option-support ul li p {
  font-weight: 300;
}
.option .option-support ul li p:first-child {
  font-weight: bold;
  font-size: 24px;
}
.option .option-support ul li p:last-child {
  margin-top: 10px;
}
.option .option-support ul li:not(:first-child) {
  margin-top: 40px;
}
.option .option-support ul li:not(:last-child):after {
  content: "";
  position: absolute;
  background: var(--blue);
  width: 100%;
  height: 1px;
  bottom: -20px;
}

.example {
  padding-top: 79px;
}
.example > div p {
  color: var(--blue);
  font-size: 26px;
  text-align: center;
  margin-top: 23px;
}
.example .example-slick {
  margin-top: 50px;
}
.example .example-slick .slick-track {
  padding-bottom: 5px;
}
.example .example-slick li {
  box-shadow: var(--box_shadow01);
  margin: 0 14px;
}
.example .example-slick li div {
  padding: 24px 20px;
}
.example .example-slick li div h3 {
  font-size: 18px;
}

.question-accordion-menu {
  padding-top: 59px;
  padding: 59px 0 78px 0;
  margin-top: 82px;
  background: var(--light_blue);
}
.question-accordion-menu h2 .en {
  width: 92px;
}
.question-accordion-menu h2 .ja {
  font-size: 24px;
}
.question-accordion-menu dl {
  margin-top: 29px;
  font-size: 24px;
}
.question-accordion-menu dl span {
  font-weight: bold;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 36px;
  text-align: center;
}
.question-accordion-menu dl div:not(:first-child) {
  margin-top: 30px;
}
.question-accordion-menu dl dt {
  border-radius: 6px 6px 0px 0px;
  padding: 15px 35px 15px 15px;
  background: var(--blue);
  color: var(--white);
}
.question-accordion-menu dl dt span {
  background: var(--white);
  color: var(--blue);
}
.question-accordion-menu dl .question {
  display: flex;
  align-items: center;
  position: relative;
}
.question-accordion-menu dl .question .text {
  display: block;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  margin-left: 0.4em;
  font-size: 0.6em;
}
.question-accordion-menu dl .question .text:after {
  content: "";
  width: calc(20px + 0.4em);
  height: calc(55px + 0.4em);
  position: absolute;
  top: 50%;
  right: 0.6em;
  transform: translateY(-50%);
  background-color: var(--white);
  border-radius: 0.1em;
}
.question-accordion-menu dl dt::before,
.question-accordion-menu dl dt::after {
  content: "";
  position: absolute;
  right: 0.4em;
  z-index: 9;
  width: 24px;
  height: 5px;
  background-color: var(--blue);
  transition: all 0.5s;
}
.question-accordion-menu dl dt::after {
  transform: rotate(90deg);
}
.question-accordion-menu dl .question.open::after {
  transform: rotate(0deg);
}
.question-accordion-menu dl dd {
  font-size: 0.6em;
  display: none;
  border-radius: 0px 0px 6px 6px;
  padding: 15px;
  margin-bottom: 29px;
  background: var(--white);
  border: 2px solid var(--blue);
}
.question-accordion-menu dl dd span {
  background: var(--blue);
  color: var(--white);
}

.company-info {
  padding-top: 73px;
}
.company-info dl {
  margin-top: 33px;
}
.company-info dl dt {
  background: var(--light_blue);
  padding: 8px 0 8px 26px;
}
.company-info dl dd {
  padding: 8px 0;
  padding: 25px 0;
}
.company-info a {
  font-size: 24px;
  background: var(--blue);
  color: var(--white);
  display: block;
  height: 68px;
  line-height: 68px;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  max-width: 492px;
  margin: 30px auto 0 auto;
}

footer {
  margin-top: 107px;
  padding: 35px 0 35px 0;
  background: var(--blue);
}
footer .wrapper {
  text-align: center;
  font-weight: 300;
}
footer .wrapper > .logo {
  width: 223px;
}
footer .wrapper .page-link {
  margin-top: 12px;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .wrapper .page-link li {
  margin-right: 30px;
  position: relative;
}
footer .wrapper .page-link li:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--white);
  right: -15px;
}
footer .wrapper .page-link a {
  color: var(--white);
}
footer .wrapper small {
  color: var(--white);
  font-size: 10px;
  display: block;
  margin-top: 20px;
}

/*プライバシーポリシー SP ここから*/
.inner {
  width: 100%;
  margin: 0 auto;
}

.inner_in {
  padding: 10% 2%;
}

.inner_in p {
  padding: 4% 0;
  font-size: 1rem;
  line-height: 1.8rem;
}

.inner_in {
  padding: 10% 2%;
}

.inner_in p {
  padding: 4% 0;
  font-size: 1rem;
  line-height: 1.8rem;
}

.title {
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  margin: 4% auto;
  font-family: "Noto Sans JP", sans-serif;
}

.xs_title {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

.privacy_area {
  padding: 4%;
}

.privacy_area p {
  padding: 4%;
  font-size: 0.9rem;
}

.title_u {
  border-bottom: 4px double #000000;
  border-top: 4px double #000000;
  line-height: 1.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  padding-left: 20px;
  margin: 2.5% auto;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 2%;
  padding-top: 2%;
}

/*プライバシーポリシー SP ここまで*/
@media screen and (min-width: 1024px) {
  header {
    flex-direction: row;
    justify-content: space-between;
  }
  .section-top {
    margin-top: 17px;
  }
  .section-top .top-01 {
    position: relative;
    z-index: 2;
  }
  .section-top .top-01 .catch-copy {
    font-size: 3rem;
  }
  .section-top .top-01 .catch-copy span {
    font-size: 28px;
    display: inline-block;
    transform: translate(5%, -16%);
  }
  .section-top .top-01 ul li {
    font-size: 31px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 10px;
  }
  .section-top .top-02 {
    position: relative;
    z-index: 3;
  }
  .section-top .top-02 ul {
    position: relative;
    z-index: 4;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-top .top-02 ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 31px;
    padding-right: 30px;
  }
  .section-top .top-02 .top02-flex {
    display: flex;
    align-items: flex-end;
    margin-top: -300px;
  }
  .section-top .top-02 .top02-img {
    position: relative;
  }
  .section-top .top-02 .top02-img img:first-child {
    width: 100%;
  }
  .section-top .top-02 .top02-img .sp-img {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
  }
  .section-top .top-02 .top-contact-form form input + input {
    margin-top: 0;
    margin-left: 7px;
  }
  .section-top .top-02 .top-contact-form dl dd:first-of-type {
    display: flex;
  }
  .section-top .top-03 {
    margin-top: -263px;
    padding: 0 0 75px 0;
    height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .section-top .top-03 .system-cost {
    font-size: 52px;
  }
  .section-top .top-03 .good-point {
    font-size: 28px;
  }
  .section-top .top-03 > div:nth-child(2) {
    display: flex;
    justify-content: center;
    line-height: 1.1;
  }
  .section-top .top-03 > div:nth-child(2) > p {
    margin-right: 53px;
  }
  .section-top .top-03 > div:nth-child(2) .number {
    font-size: 124px;
  }
  .section-top .top-03 > div:nth-child(2) > div .price {
    font-size: 32px;
  }
  .about > div {
    display: flex;
    margin-top: 38px;
  }
  .about > div > img {
    width: 45%;
    margin-right: 38px;
  }
  .about > div p {
    width: 55%;
  }
  .reason ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .reason ul li {
    width: 47%;
  }
  .reason ul li:first-child {
    width: 100%;
  }
  .reason ul li:first-child > div {
    display: flex;
    margin-top: 25px;
  }
  .reason ul li:first-child > div img {
    margin-right: 38px;
  }
  .function ul {
    display: flex;
    flex-wrap: wrap;
  }
  .function ul li {
    width: 33.3333333333%;
    position: relative;
    padding: 50px 24px;
    margin: 0 auto;
  }
  .function ul li::before {
    position: absolute;
    content: "";
    width: calc(100% - 60px);
    height: 3px;
    background: var(--blue);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .function ul li::after {
    position: absolute;
    content: "";
    width: 3px;
    height: calc(100% - 60px);
    background: var(--blue);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
  }
  .function ul li:nth-child(-n+3)::before {
    display: none;
  }
  .function ul li:nth-child(3n+3)::after {
    display: none;
  }
  .option .option-list {
    display: flex;
    justify-content: space-between;
  }
  .option .option-list li {
    width: 49%;
    margin-bottom: 0;
  }
  .option .option-list li:not(:last-child) {
    margin-right: 49px;
  }
  .option .option-list li:not(:first-child) {
    margin-top: 0;
  }
  .option .option-support {
    border: solid 1px var(--blue);
    border-radius: 38px;
    padding: 42px 39px;
  }
  .example > div p {
    font-size: 32px;
  }
  .question-accordion-menu h2 {
    display: block;
  }
  .question-accordion-menu dl .question .text {
    font-size: 1em;
  }
  .question-accordion-menu dl .question .text:after {
    width: calc(28px + 0.4em);
    height: calc(28px + 0.4em);
  }
  .question-accordion-menu dl dt::before,
.question-accordion-menu dl dt::after {
    right: 0.88em;
  }
  .question-accordion-menu dl dd {
    font-size: 1rem;
  }
  .company-info dl {
    display: flex;
    flex-wrap: wrap;
  }
  .company-info dl br {
    display: none;
  }
  .company-info dl .space {
    margin-left: 1rem;
  }
  .company-info dl .indent {
    text-indent: 1rem;
  }
  .company-info dl dt {
    width: 15%;
    margin-right: 26px;
    display: flex;
    align-items: center;
  }
  .company-info dl dt:not(:first-of-type) {
    margin-top: 18px;
  }
  .company-info dl dd {
    width: 80%;
    font-weight: 300;
    padding: 15px 0;
  }
  footer {
    padding: 80px 0 80px 0;
  }
  /*プライバシーポリシー PC ここから*/
  .inner {
    width: 1000px;
    margin: 0 auto;
  }
  .inner_in {
    padding: 120px 30px;
  }
  .inner_in p {
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 2% 0;
  }
  .inner_in {
    padding: 120px 30px;
  }
  .inner_in p {
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 2% 0;
  }
  .title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2rem;
    letter-spacing: 0.02em;
  }
  .xs_title {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
  .privacy_area {
    padding: 2% 4%;
  }
  .privacy_area p {
    padding: 2%;
    font-size: 1rem;
  }
  .title_u {
    border-bottom: 4px double #000000;
    border-top: 4px double #000000;
    line-height: 3rem;
    font-size: 1.4rem;
    font-weight: 400;
    padding-left: 20px;
    margin: 30px auto;
    font-family: "Noto Sans JP", sans-serif;
  }
  /*プライバシーポリシー PC ここまで*/
}
/*# sourceMappingURL=style.css.map */

/* テキスト入力フィールド、テキストエリア、選択ボックス */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
    font-size: 10px;
    color: #333;
}

.wpcf7-form input[type=”text”]:focus
{
background: #FFC0CB;
border: 2px solid #FF1493;
outline: 0;
}

.wpcf7 input[name=”family-name”] {
width: 50%!important
}


@media (max-width: 1023px) {
  .question-accordion-menu dl .question .text,
  .question-accordion-menu dl dd {
    font-size: 0.8em;
  }
  .question-accordion-menu dl dt::before,
  .question-accordion-menu dl dt::after {
    right: 0.6em;
    width: 20px;
    height: 4px;
  }
}