@charset "UTF-8";
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Oswald:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");
/*------------------------------------------------------------------
共通
------------------------------------------------------------------*/
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-width: 1200px;
  background: #fff;
  color: #161616;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    font-size: calc(26/750 * 100vw);
  }
}

a {
  color: #37a1e4;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  opacity: 0.7;
}

img {
  width: 100%;
}

* {
  box-sizing: border-box;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

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

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

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* CSS Document */
@media screen and (max-width: 767px) {
  .wrap img {
    width: 100%;
  }

  .only-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*---------------------------------------------------------
customize
---------------------------------------------------------*/
/* container 横幅 */
.container-1000 {
  width: 1000px;
  margin: 0 auto;
}

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

/* 背景をグレーに */
.b-gray {
  background-color: #f4f3f4;
}

/* セクション　上下の余白 */
.section-p-tb-A {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-pmb-A {
  padding-bottom: 120px;
  margin-bottom: 120px;
}

.section-pb-A {
  padding-bottom: 120px;
}

.section-pt-A {
  padding-top: 120px;
}

/* タイトル */
.sub-ttl-A {
  width: 360px;
  background-color: #9a8967;
  color: #fff;
  margin: 0 auto;
  font-size: 18px;
  border-radius: 50px;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 40px;
}

.sub-ttl-A-inner {
  position: relative;
}

.ttl-A {
  font-size: 40px;
  color: #3d3d3d;
  font-weight: bold;
  padding-bottom: 40px;
}

.ttl-A small {
  font-size: 30px;
  font-weight: bold;
}

/* padding margin */
.pt-120 {
  padding-top: 120px;
}

body .pb-90 {
  padding-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .section-p-tb-A {
    padding-top: calc(100/750 * 100vw);
    padding-bottom: calc(100/750 * 100vw);
  }

  .section-pmb-A {
    padding-bottom: calc(100/750 * 100vw);
    margin-bottom: calc(100/750 * 100vw);
  }

  .section-pb-A {
    padding-bottom: calc(100/750 * 100vw);
  }

  .section-pt-A {
    padding-top: calc(100/750 * 100vw);
  }

  /* タイトル */
  .sub-ttl-A {
    width: 80%;
    font-size: calc(26/750 * 100vw);
    padding: 6px 0;
    text-align: center;
    margin-bottom: calc(30/750 * 100vw);
  }

  .ttl-A {
    font-size: calc(60/750 * 100vw);
    padding-bottom: calc(40/750 * 100vw);
  }

  body .pb-90 {
    padding-bottom: calc(80/750 * 100vw);
  }

  .ttl-A small {
    font-size: calc(40/750 * 100vw);
  }
}
/*---------------------------------------------------------
header 
---------------------------------------------------------*/
header {
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header {
    text-align: left;
    padding: 0;
  }
}

.header-innner {
  width: 1100px;
  height: 80px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-innner {
    width: 100%;
    height: calc(80/750 * 100vw);
    padding: 0 calc(36/750 * 100vw);
  }
}

.header-logo {
  font-size: 0;
}

.header-logo img {
  width: 340px;
  height: 42px;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .header-logo img {
    width: calc(340/750 * 100vw);
    height: calc(42/750 * 100vw);
  }
}

/*---------------------------------------------------------
mainV 
---------------------------------------------------------*/
.mainV {
  background: url("/img/lp2/mainV_bg.jpg") center 0 no-repeat;
  background-size: cover;
  display: block;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mainV {
    background: url("/img/lp2/mainV_bg_sp.jpg") center 0/100% auto no-repeat;
    height: auto;
    position: static;
  }
}

.mainV-inner {
  margin: 0 auto;
  width: 1000px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mainV-inner {
    position: static;
    width: 100%;
    height: calc(750/750 * 100vw);
  }
}

.mainV-ttl-box {
  font-size: 0;
  display: block;
  width: 840px;
  height: 318px;
}
@media screen and (max-width: 767px) {
  .mainV-ttl-box {
    width: calc(690/750 * 100vw);
    height: calc(584/750 * 100vw);
  }
}
.mainV-ttl-box img {
  font-size: 0;
}

.mainV-txt {
  background-color: #70c8db;
  text-align: center;
  color: #fff;
  font-weight: 500;
  padding: 23px 0;
  font-size: 22px;
  margin-bottom: 70px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .mainV-txt {
    font-feature-settings: "palt";
    font-size: calc(28/750 * 100vw);
    padding: 1rem 0;
    margin-bottom: calc(20/750 * 100vw);
  }
}

/*---------------------------------------------------------
バナー 
---------------------------------------------------------*/
.bnr-wrap-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  width: 600px;
}
@media screen and (max-width: 767px) {
  .bnr-wrap-simple {
    width: 100%;
    padding: 0 calc(30/750 * 100vw);
    margin: 0 auto calc(86/750 * 100vw);
  }
}

.bnr {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .bnr {
    width: 100%;
  }
}

.bnr .cnow-inquiry {
  margin: 0 auto;
  display: flex;
  width: 600px;
  height: 80px;
  border: none;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  background: #e7513f;
  border-radius: 5px;
  box-shadow: 0 6px 0 0 #c03a29;
}
@media screen and (max-width: 767px) {
  .bnr .cnow-inquiry {
    width: 100%;
    height: calc(110/750 * 100vw);
  }
}

.bnr .cnow-inquiry:hover {
  box-shadow: none;
  margin-top: 6px;
  margin-bottom: -6px;
}

.bnr .cnow-inquiry span {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN";
}
@media screen and (max-width: 767px) {
  .bnr .cnow-inquiry span {
    font-size: calc(28/750 * 100vw);
  }
}

.bnr .cnow-inquiry span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(/img/lp2/btn_icon02.png) center no-repeat;
  background-size: contain;
  left: 74px;
  width: 20px;
  height: 27px;
}
@media screen and (max-width: 767px) {
  .bnr .cnow-inquiry span::before {
    left: calc(128/750 * 100vw);
    width: calc(20/750 * 100vw);
    height: calc(27/750 * 100vw);
  }
}

.bnr .cnow-inquiry span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(/img/lp2/arrow.png) center no-repeat;
  background-size: contain;
  right: 60px;
  width: 12px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  .bnr .cnow-inquiry span::after {
    right: calc(26/750 * 100vw);
    width: calc(17/750 * 100vw);
    height: calc(28/750 * 100vw);
  }
}

/*---------------------------------------------------------
package
---------------------------------------------------------*/
.package-inner {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  margin-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .package-inner {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .package-inner {
    margin-top: calc(70/750 * 100vw);
    padding-bottom: calc(100/750 * 100vw);
  }
}

.package-sub-ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: #70c8db 2px solid;
  border-radius: 30px;
  display: block;
  padding: 10px 10px;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 20px;
  width: 475px;
  line-height: 1.2;
  color: #2f2f2f;
}
@media screen and (max-width: 767px) {
  .package-sub-ttl {
    font-size: calc(28/750 * 100vw);
    padding: calc(16/750 * 100vw) 0;
    margin-bottom: calc(30/750 * 100vw);
    width: calc(680/750 * 100vw);
    border-radius: calc(60/750 * 100vw);
  }
}

.package-ttl {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 40px;
  background: url("/img/lp2/blue_dot.png") center bottom/112px 4px no-repeat;
  font-feature-settings: "palt";
  line-height: 1.3;
  color: #70c8db;
}
.package-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * .5em);
  content: "";
}
.package-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .package-ttl {
    font-size: calc(46/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    margin-bottom: calc(30/750 * 100vw);
    background: url("/img/lp2/blue_dot_sp.png") center bottom/calc(108/750 * 100vw) calc(4/750 * 100vw) no-repeat;
  }
}

.package-txt {
  text-align: center;
  font-size: 16px;
  padding-bottom: 60px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .package-txt {
    font-size: calc(26/750 * 100vw);
    padding-bottom: calc(50/750 * 100vw);
  }
}
.package-txt .bold {
  font-weight: 700;
}

.package-img {
  font-size: 0;
  width: 1100px;
}
@media screen and (max-width: 767px) {
  .package-img {
    width: 100%;
  }
}

/*---------------------------------------------------------
introduction 
---------------------------------------------------------*/
.introduction-wrap {
  width: 900px;
  position: relative;
  margin: 0px auto 0;
}
@media screen and (max-width: 767px) {
  .introduction-wrap {
    width: calc(750/750 * 100vw);
    margin: 0 auto;
    padding-bottom: calc(10/750 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .introduction-ttl-box {
    margin: 0 auto;
    text-align: center;
  }
}

.introduction-ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  padding: 20px 0;
  width: 530px;
  text-align: center;
  margin: 0 auto 40px;
  font-feature-settings: "palt";
  border-top: #d6d6d6 2px solid;
  border-bottom: #d6d6d6 2px solid;
}
@media screen and (max-width: 767px) {
  .introduction-ttl {
    width: auto;
    font-weight: bold;
    font-size: 1.6rem;
    display: inline-block;
    font-size: calc(30/750 * 100vw);
    padding: 1.5rem calc(50/750 * 100vw);
    margin: 0 auto calc(40/750 * 100vw);
    border-top: #d6d6d6 calc(2/750 * 100vw) solid;
    border-bottom: #d6d6d6 calc(2/750 * 100vw) solid;
  }
}

.introduction-box {
  width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .introduction-box {
    flex-direction: column;
    width: 100%;
    padding: 0 calc(30/750 * 100vw);
  }
}

.introduction-list {
  width: 530px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .introduction-list {
    width: 100%;
    text-align: left;
  }
}

.introduction-list li {
  padding: 0 0 30px 30px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .introduction-list li {
    font-size: calc(26/750 * 100vw);
    position: relative;
    padding: 0 0 calc(40/750 * 100vw) calc(40/750 * 100vw);
  }
}

.introduction-list li::before {
  width: 25px;
  height: 23px;
  content: "";
  background: url("/img/lp2/intoroduction_check.png") top left/100% no-repeat;
  position: absolute;
  left: 0px;
  top: 6px;
}
@media screen and (max-width: 767px) {
  .introduction-list li::before {
    width: calc(30/750 * 100vw);
    height: calc(28/750 * 100vw);
    content: "";
    left: 0;
    top: 0.5rem;
  }
}

.introduction-img {
  width: 370px;
}
@media screen and (max-width: 767px) {
  .introduction-img {
    width: 100%;
  }
}

/*---------------------------------------------------------
feature01 
---------------------------------------------------------*/
.feature-wrap {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .feature-wrap {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .feature-wrap {
    padding: 0;
    padding-bottom: calc(90/750 * 100vw);
  }
}

.feature-sub-ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: #70c8db 2px solid;
  color: #2f2f2f;
  border-radius: 30px;
  display: block;
  padding: 10px 10px;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 25px;
  width: 475px;
}
@media screen and (max-width: 767px) {
  .feature-sub-ttl {
    font-size: calc(28/750 * 100vw);
    padding: calc(16/750 * 100vw) 0;
    margin-bottom: calc(50/750 * 100vw);
    width: calc(680/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .feature-sub-ttl {
    margin: 0 calc(36/750 * 100vw) calc(50/750 * 100vw);
  }
}

.feature-ttl {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #70c8db;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 40px;
  background: url("/img/lp2/blue_dot.png") center bottom/112px 4px no-repeat;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.feature-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * .5em);
  content: "";
}
.feature-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .feature-ttl {
    font-size: calc(46/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    margin-bottom: calc(40/750 * 100vw);
    background: url("/img/lp2/blue_dot_sp.png") center bottom/calc(108/750 * 100vw) calc(4/750 * 100vw) no-repeat;
  }
}

.feature01-ttl01 {
  background: url("/img/lp2/promise01_titbg.jpg") center 0 no-repeat;
  height: 308px;
  text-align: center;
  font-size: 36px;
  padding-top: 150px;
  font-weight: 700;
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .feature01-ttl01 {
    background: url("/img/lp2/promise01_titbg_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    height: calc(270/750 * 100vw);
    text-align: center;
    font-size: calc(38/750 * 100vw);
    padding-top: calc(120/750 * 100vw);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-top: calc(60/750 * 100vw);
  }
}

.ttl-comment-SS {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.ttl-comment-Y {
  font-size: 3.8rem;
  color: #f2d42d !important;
}

.feature01-box {
  width: 900px;
  margin: 60px auto 100px;
  text-align: left;
}

.feature01-box dl {
  width: 900px;
  float: left;
  margin-bottom: 50px;
}

.voice-txt02 {
  width: 800px;
  padding: 0 0 45px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.feature01-box dt {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: bold;
  text-align: center;
}
.feature01-box dt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}
.feature01-box dt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * .5em);
  content: "";
}

.feature01-box dd {
  font-size: 16px;
  line-height: 2;
}

.feature01-box img {
  float: right;
}

.feature01-box p {
  width: 326px;
  float: left;
  font-size: 1.4rem;
  text-align: left;
}

.feature01Graph {
  margin-bottom: 80px;
}

.feature01Graph h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  width: 472px;
  margin: 0 auto 40px;
  color: #3ba634;
}

@media screen and (max-width: 767px) {
  .ttl-comment-SS {
    font-size: 0.8rem;
    font-size: 2.5vw;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
    filter: alpha(opacity=60);
  }

  .ttl-comment-Y {
    font-size: 1.9rem;
    font-size: 5.9375vw;
    color: #f2d42d !important;
  }

  .feature01-box {
    width: 87.5%;
    margin: 2rem auto calc(80/750 * 100vw);
  }

  .feature01-box p {
    font-size: 1.2rem;
    font-size: 3.75vw;
    text-align: left;
    margin-bottom: 3rem;
  }

  .feature01Graph {
    margin-bottom: 4rem;
  }

  .feature01Graph h3 {
    width: 80%;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    font-size: 3.75vw;
    padding: 1rem 0;
  }

  .feature01-box dl {
    width: 100%;
    margin-bottom: 0;
  }

  .voice-txt02 {
    width: 87.5%;
    padding: 1.5rem 0 2.5rem;
    margin: 0 auto;
    font-size: 1.2rem;
    font-size: 3.75vw;
    line-height: 1.8;
  }

  .feature01-box dt {
    font-size: 1.4rem;
    font-size: 4.375vw;
    line-height: 1.8;
    margin-bottom: calc(36/750 * 100vw);
  }

  .feature01-box dd {
    margin-bottom: 2rem;
    font-size: calc(26/750 * 100vw);
  }
}
/*---------------------------------------------------------
feature02 
---------------------------------------------------------*/
.feature02-ttl01 {
  background: url("/img/lp2/promise02_titbg.jpg") center 0 no-repeat;
  height: 308px;
  text-align: center;
  font-size: 36px;
  padding-top: 150px;
  font-weight: bold;
  color: #fff;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .feature02-ttl01 {
    margin-top: calc(100/750 * 100vw);
    background: url("/img/lp2/promise02_titbg_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    height: calc(270/750 * 100vw);
    text-align: center;
    font-size: calc(38/750 * 100vw);
    padding-top: calc(140/750 * 100vw);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }
}

.feature02-list {
  width: 900px;
  margin: 60px auto 0px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .feature02-list {
    width: 100%;
    padding: calc(50/750 * 100vw) calc(20/750 * 100vw) 0;
    margin: 0 auto;
    flex-direction: column;
  }
}

.feature02-list-470 {
  width: 470px;
}
@media screen and (max-width: 767px) {
  .feature02-list-470 {
    width: 100%;
  }
}

.feature02-list-395 {
  width: 395px;
}
@media screen and (max-width: 767px) {
  .feature02-list-395 {
    width: 100%;
  }
}

.feature02-list li {
  text-align: left;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .feature02-list li {
    width: 100%;
    margin-bottom: 0;
  }
}

.feature02-list dt {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .feature02-list dt {
    font-size: calc(32/750 * 100vw);
    line-height: 1.8;
    margin-bottom: calc(36/750 * 100vw);
    text-align: center;
  }
}

.feature02-list dd {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .feature02-list dd {
    margin-bottom: 2rem;
    font-size: calc(26/750 * 100vw);
  }
}

.feature02-list dd img {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .feature02 {
    margin-bottom: calc(80/750 * 100vw);
  }

  .feature02-list li:last-child {
    width: 100%;
    order: 1;
    margin-bottom: 0;
  }
}
/*---------------------------------------------------------
feature03
---------------------------------------------------------*/
.feature03-ttl01 {
  background: url("/img/lp2/promise03_titbg.jpg") center 0 no-repeat;
  height: 308px;
  text-align: center;
  font-size: 36px;
  padding-top: 150px;
  font-weight: bold;
  color: #fff;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .feature03-ttl01 {
    margin-top: calc(100/750 * 100vw);
    background: url("/img/lp2/promise03_titbg_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    height: calc(270/750 * 100vw);
    text-align: center;
    font-size: calc(38/750 * 100vw);
    padding-top: calc(120/750 * 100vw);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }
}

.feature03-list {
  width: 900px;
  margin: 80px auto 0px;
}

.feature03-list li {
  text-align: center;
}

.feature03-flex-list {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}
.feature03-flex-list li {
  width: 420px;
}
@media screen and (max-width: 767px) {
  .feature03-flex-list li {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .feature03-flex-list {
    width: 100%;
    flex-direction: column;
  }
}

.feature03-list li:first-child {
  margin-right: 40px;
  float: none;
  width: 100%;
  text-align: left;
}

.feature03-list dt {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.feature03-list dd {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 60px;
  font-family: "Noto Sans JP", sans-serif;
}

.feature03-list dd img {
  text-align: center;
}

.feature03-list-ttl03-box {
  text-align: center;
}

.feature03-list-ttl03 {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  width: 392px;
  text-align: center;
  color: #333333;
  background-color: #fff3a7;
  border-radius: 24px;
  font-weight: bold;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .feature03-list-ttl03 {
    width: auto;
    padding: calc(14/750 * 100vw) calc(40/750 * 100vw);
    font-size: calc(28/750 * 100vw);
    display: inline-block;
    text-align: center;
    border-radius: 24px;
    font-weight: bold;
  }
}

.feature03-txt {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding: 20px 0 30px;
  font-family: "Noto Sans JP", sans-serif;
}
.feature03-txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * .5em);
  content: "";
}
.feature03-txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .feature03-txt {
    padding: calc(20/750 * 100vw) calc(20/750 * 100vw);
  }
}

.feature03-txt sup {
  font-size: 12px;
  vertical-align: top;
}

.feature03-info {
  font-size: 12px;
  padding: 0 34px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .feature03-list {
    width: 87.5%;
    margin: 2rem auto 0;
  }

  .feature03-list li {
    width: 100%;
    margin-bottom: calc(100/750 * 100vw);
  }

  .feature03-list li:last-child {
    margin-bottom: 0;
  }

  .feature03-flex-list li {
    margin-bottom: calc(80/750 * 100vw);
  }

  .feature03-flex-list li:last-child {
    margin-bottom: calc(0/750 * 100vw);
  }

  .feature03-list li:first-child {
    margin-right: 0;
  }

  .feature03-list dl {
    width: 100%;
  }

  .feature03-list dt {
    font-size: calc(32/750 * 100vw);
    font-size: 4.375vw;
    line-height: 1.8;
    margin-bottom: calc(36/750 * 100vw);
    text-align: center;
  }

  .feature03-list dd {
    margin-bottom: calc(70/750 * 100vw);
    font-size: calc(26/750 * 100vw);
  }

  .feature03-txt {
    font-size: calc(28/750 * 100vw);
    padding: calc(32/750 * 100vw) 0 calc(32/750 * 100vw);
  }

  .feature03-info {
    padding: calc(30/750 * 100vw) 0 0;
  }

  .feature03-list-img {
    width: 90%;
    margin: 0 auto;
    font-size: 0;
  }

  .feature03-list-img01 {
    width: auto;
  }

  .feature03-list-img02 {
    width: auto;
  }
}
/*---------------------------------------------------------
feature04
---------------------------------------------------------*/
.feature04-ttl01 {
  background: url("/img/lp2/promise04_titbg.jpg") center 0 no-repeat;
  height: 308px;
  text-align: center;
  font-size: 36px;
  padding-top: 150px;
  font-weight: bold;
  color: #fff;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .feature04-ttl01 {
    margin-top: calc(100/750 * 100vw);
    background: url("/img/lp2/promise04_titbg_sp.jpg") center 0 no-repeat;
    background-size: 100% auto;
    height: calc(270/750 * 100vw);
    text-align: center;
    font-size: calc(38/750 * 100vw);
    padding-top: calc(120/750 * 100vw);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }
}

/*---------------------------------------------------------
cvArea 
---------------------------------------------------------*/
.cvArea {
  background-color: #f5f5f5;
}

.cvArea-inner {
  padding: 30px 0 50px;
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cvArea-inner {
    width: 100%;
    padding: calc(25/750 * 100vw) calc(30/750 * 100vw) calc(30/750 * 100vw);
  }
}

.cvArea-bnr-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 600px;
}
@media screen and (max-width: 767px) {
  .cvArea-bnr-box {
    width: 100%;
    justify-content: center;
  }
}

.cvArea-txt {
  width: 527px;
  display: block;
  margin: 0 auto;
  font-size: 0;
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .cvArea-txt {
    width: calc(690/750 * 100vw);
    padding-bottom: calc(10/750 * 100vw);
  }
}

/*---------------------------------------------------------
exa
---------------------------------------------------------*/
.exa-wrap {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .exa-wrap {
    padding-bottom: calc(80/750 * 100vw);
  }
}

.exa-inner {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .exa-inner {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}

.exa-sub-ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: #70c8db 2px solid;
  color: #2f2f2f;
  border-radius: 30px;
  display: block;
  padding: 10px 10px;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 25px;
  width: 475px;
}
@media screen and (max-width: 767px) {
  .exa-sub-ttl {
    font-size: calc(28/750 * 100vw);
    padding: calc(16/750 * 100vw) 0;
    margin-bottom: calc(50/750 * 100vw);
    width: calc(680/750 * 100vw);
  }
}

.exa-ttl {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #70c8db;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 40px;
  background: url("/img/lp2/blue_dot.png") center bottom/112px 4px no-repeat;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.exa-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * .5em);
  content: "";
}
.exa-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .exa-ttl {
    font-size: calc(46/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    margin-bottom: calc(40/750 * 100vw);
    background: url("/img/lp2/blue_dot_sp.png") center bottom/calc(108/750 * 100vw) calc(4/750 * 100vw) no-repeat;
  }
}

.exa-list {
  display: flex;
  flex-wrap: wrap;
  width: 900px;
}
@media screen and (max-width: 767px) {
  .exa-list {
    flex-direction: column;
    width: 100%;
  }
}
.exa-list li {
  display: flex;
  flex-direction: column;
  background-color: #fffdee;
  width: 440px;
  margin-right: 20px;
  padding: 30px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.exa-list li:nth-child(2n) {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .exa-list li {
    margin-bottom: calc(50/750 * 100vw);
    padding: calc(50/750 * 100vw) calc(45/750 * 100vw);
    width: 100%;
  }
  .exa-list li:last-child {
    margin-bottom: 0px;
  }
  .exa-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.exa-list-head {
  font-size: 0;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .exa-list-head {
    padding-bottom: calc(20/750 * 100vw);
  }
}

.exa-list-head01 {
  width: 88px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .exa-list-head01 {
    width: calc(151/750 * 100vw);
  }
}

.exa-list-head02 {
  width: 93px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .exa-list-head02 {
    width: calc(157/750 * 100vw);
  }
}

.exa-list-head03 {
  width: 93px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .exa-list-head03 {
    width: calc(158/750 * 100vw);
  }
}

.exa-list-head04 {
  width: 95px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .exa-list-head04 {
    width: calc(161/750 * 100vw);
  }
}

.exa-list-ttl {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .exa-list-ttl {
    font-size: calc(32/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
  }
}

.exa-list-img {
  width: 380px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .exa-list-img {
    font-size: calc(32/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    width: 100%;
  }
}

.exa-list-txt {
  font-size: 16px;
  line-height: 2;
  padding-bottom: 40px;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
}
.exa-list-txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * .5em);
  content: "";
}
.exa-list-txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .exa-list-txt {
    padding-bottom: calc(40/750 * 100vw);
    font-size: calc(26/750 * 100vw);
  }
}

.exa-list-note {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  font-family: "Noto Sans JP", sans-serif;
}

.exa-list-note-link {
  font-size: 16px;
  text-decoration: underline;
  text-align: right;
  font-feature-settings: "palt";
}
.exa-list-note-link::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * .5em);
  content: "";
}
.exa-list-note-link::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .exa-list-note-link {
    font-size: calc(26/750 * 100vw);
  }
}

/*---------------------------------------------------------
about-hags
---------------------------------------------------------*/
.about-ba-inner {
  width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about-ba-inner {
    width: 100%;
    padding: 0 calc(20/750 * 100vw) calc(0/750 * 100vw);
  }
}

.about-ba-sub-ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: #70c8db 2px solid;
  color: #2f2f2f;
  border-radius: 30px;
  display: block;
  padding: 10px 10px;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 25px;
  width: 475px;
}
@media screen and (max-width: 767px) {
  .about-ba-sub-ttl {
    font-size: calc(28/750 * 100vw);
    padding: calc(16/750 * 100vw) 0;
    margin-bottom: calc(50/750 * 100vw);
    width: calc(680/750 * 100vw);
  }
}

.about-ba-ttl {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #70c8db;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 40px;
  background: url("/img/lp2/blue_dot.png") center bottom/112px 4px no-repeat;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.about-ba-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * .5em);
  content: "";
}
.about-ba-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .about-ba-ttl {
    font-size: calc(46/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    margin-bottom: calc(40/750 * 100vw);
    background: url("/img/lp2/blue_dot_sp.png") center bottom/calc(108/750 * 100vw) calc(4/750 * 100vw) no-repeat;
  }
}

.about-ba-img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about-ba-img {
    margin-bottom: calc(40/750 * 100vw);
  }
}

.about-ba-head {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .about-ba-head {
    font-size: calc(32/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
  }
}

.about-ba-txt {
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .about-ba-txt {
    font-size: calc(26/750 * 100vw);
  }
}

.about-show {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .about-show {
    margin-top: calc(70/750 * 100vw);
  }
}

.about-show-box-ttl {
  font-size: 22px;
  color: #333333;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .about-show-box-ttl {
    font-size: calc(32/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
  }
}

.about-show-box {
  display: flex;
  justify-content: space-between;
}
.about-show-box li {
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .about-show-box li:first-child {
    margin-bottom: calc(40/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .about-show-box {
    flex-direction: column;
  }
}

/*---------------------------------------------------------
flow
---------------------------------------------------------*/
.flow-inner {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  width: 1200px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .flow-inner {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .flow-inner {
    padding-bottom: calc(80/750 * 100vw);
  }
}

.flowbox-sub-ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border: #70c8db 2px solid;
  color: #2f2f2f;
  border-radius: 30px;
  display: block;
  padding: 10px 10px;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 25px;
  width: 475px;
}
@media screen and (max-width: 767px) {
  .flowbox-sub-ttl {
    font-size: calc(28/750 * 100vw);
    padding: calc(16/750 * 100vw) 0;
    margin-bottom: calc(50/750 * 100vw);
    width: calc(680/750 * 100vw);
  }
}

.flowbox-ttl {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #70c8db;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 40px;
  background: url("/img/lp2/blue_dot.png") center bottom/112px 4px no-repeat;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.flowbox-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * .5em);
  content: "";
}
.flowbox-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * .5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .flowbox-ttl {
    font-size: calc(46/750 * 100vw);
    padding-bottom: calc(30/750 * 100vw);
    margin-bottom: calc(40/750 * 100vw);
    background: url("/img/lp2/blue_dot_sp.png") center bottom/calc(108/750 * 100vw) calc(4/750 * 100vw) no-repeat;
  }
}

.flow-area {
  display: flex;
  justify-content: space-around;
  width: 1200px;
  margin: 0 auto;
}

.flow-intro-txt {
  text-align: center;
  padding-top: 60px;
}

.flow-block {
  width: 286px;
  background-color: #fff;
  padding: 26px 0;
  position: relative;
  margin-right: 20px;
  border: 2px solid #dadada;
}
.flow-block:last-child {
  margin-right: 0;
}

.flow-ttl {
  background: url(/img/lp2/dot_line.png) top 14px center/154px 2px no-repeat;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  padding-bottom: 15px;
  height: auto;
}

.flow-ttl span {
  background: #fff;
  display: inline;
  padding: 0 8px;
}

.flow-sub-ttl {
  font-size: 18px;
  padding-bottom: 20px;
  height: auto;
  text-align: center;
  height: 5rem;
  display: flex;
  align-items: center;
}

.flow-sub-ttl span {
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.flow-img-box {
  width: 100%;
  margin-bottom: 20px;
}

.flow-img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: block;
  font-size: 0;
}

.flow-txt {
  font-size: 14px;
  text-align: left;
  letter-spacing: -0.1em;
  line-height: 1.9;
  padding: 0 20px;
}

.flow-txt span {
  font-size: 11px;
  display: inline-block;
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .flow-area {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
  }

  .flow-intro-txt {
    padding-top: calc(60/750 * 100vw);
  }

  .flow-ttl {
    width: auto;
    margin: 0 auto;
    font-size: calc(30/750 * 100vw);
    text-align: center;
    padding-bottom: calc(0/750 * 100vw);
    margin-bottom: calc(10/750 * 100vw);
    background: url(/img/lp2/sp_dot_line.png) center center/calc(233/750 * 100vw) calc(3/750 * 100vw) no-repeat;
  }

  .flow-sub-ttl {
    font-size: calc(28/750 * 100vw);
    height: auto;
    display: block;
    text-align: center;
    padding-top: 0;
    padding-bottom: calc(30/750 * 100vw);
  }

  .flow-block {
    width: auto;
    margin: 0 calc(0/750 * 100vw) calc(40/750 * 100vw);
    padding: calc(40/750 * 100vw) calc(30/750 * 100vw);
  }

  .flow-block:last-child {
    margin: 0 calc(0/750 * 100vw) calc(0/750 * 100vw);
  }

  .flow-img-box {
    width: 100%;
    height: auto;
    margin-bottom: calc(30/750 * 100vw);
  }

  .flow-txt {
    -moz-text-align: left;
    text-align: left;
    font-size: calc(26/750 * 100vw);
    padding: 0;
  }

  .flow-txt span {
    font-size: calc(24/750 * 100vw);
    line-height: 1.6;
    padding-top: calc(30/750 * 100vw);
  }

  .flow-block::before {
    position: absolute;
    width: calc(65/750 * 100vw);
    height: calc(65/750 * 100vw);
    background: url(/img/lp2/icon_arrow03.png) center center/contain no-repeat;
    top: calc(-52/750 * 100vw);
    right: auto;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .flow-block:last-child:before {
    background: url(/img/lp2/icon_arrow03.png) center center/contain no-repeat;
  }

  .flow-block:first-child:before {
    background: none;
  }
}
/*---------------------------------------------------------
qa
---------------------------------------------------------*/
.qa-inner {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .qa-inner {
    width: 100%;
    padding: calc(80/750 * 100vw) calc(20/750 * 100vw);
  }
}

.qa-list-item {
  border: #70c8db 1px solid;
  border-radius: 10px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .qa-list-item {
    padding: 0 calc(20/750 * 100vw);
    margin-bottom: calc(56/750 * 100vw);
  }
}
.qa-list-item:last-child {
  margin-bottom: 0;
}

.qa-list-item-q {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .qa-list-item-q {
    padding: calc(25/750 * 100vw) 0;
  }
}

.qa-list-item-q:hover {
  opacity: 0.7;
}

.qa-list-item-q-head {
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .qa-list-item-q-head {
    padding-left: 0;
  }
}
.qa-list-item-q-head p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #70c8db;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .qa-list-item-q-head p {
    font-size: calc(32/750 * 100vw);
  }
}

.qa-list-item-q-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .qa-list-item-q-txt {
    padding-left: calc(20/750 * 100vw);
    font-size: calc(26/750 * 100vw);
  }
}

.toggle {
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  transform: translate(0%, -50%) rotateZ(180deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5.5px 9px 5.5px;
  border-color: transparent transparent #70c7db transparent;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .toggle {
    right: calc(23/750 * 100vw);
  }
}

.open .toggle {
  transform: translate(0%, -50%) rotateZ(0deg);
}

.qa-list-item-a {
  display: none;
  padding: 18px 0 20px;
  border-top: dotted 2px #90d4e3;
}
@media screen and (max-width: 767px) {
  .qa-list-item-a {
    padding: calc(30/750 * 100vw) 0 calc(40/750 * 100vw);
  }
}

.qa-list-item-a-box {
  display: flex;
}

.open .qa-list-item-a {
  display: block;
}

.qa-list-item-a-head {
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .qa-list-item-a-head {
    padding-left: 0;
  }
}
.qa-list-item-a-head p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #ff978b;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .qa-list-item-a-head p {
    font-size: calc(32/750 * 100vw);
  }
}

.qa-list-item-a-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding-left: 18px;
  padding-right: 30px;
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .qa-list-item-a-txt {
    padding: 0 calc(20/750 * 100vw);
    font-size: calc(26/750 * 100vw);
  }
}

/*---------------------------------------------------------
footer 
---------------------------------------------------------*/
footer {
  background-color: #fff;
  padding: 60px 0;
}

.footer-txt {
  font-size: 3.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #ffe65a;
}

.footer-copy {
  text-align: center;
  font-size: 16px;
  background-color: #fff;
  padding: 10px 0;
  color: #333333;
}

.footer-list {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.footer-list li {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  border-right: 1px solid #746e6a;
}

.footer-list li:last-child {
  border-right: none;
}

.footer-list li a {
  color: #746e6a;
  line-height: 1;
}

.footer-list li a:hover {
  color: #35b8d1;
}

@media screen and (max-width: 767px) {
  footer {
    padding: calc(50/750 * 100vw) 0;
  }

  .footer-txt {
    font-size: 1.8rem;
    font-size: 5.625vw;
    margin-bottom: 2rem;
    font-weight: 700;
  }

  .tel {
    width: 61%;
    margin: 0 auto;
  }

  .footer-btnList {
    width: 87.5%;
    margin: 0 auto;
    display: block;
  }

  .footer-btnList li:first-child {
    margin: 2rem 0;
  }

  .footer-copy {
    font-size: calc(24/750 * 100vw);
    margin-bottom: 2rem;
    padding: 0;
  }

  .footer-list {
    font-size: calc(22/750 * 100vw);
    padding-bottom: 0;
  }
}
.example {
  display: grid;
  transition: all 0.5s;
  -webkit-user-select: none;
  user-select: none;
  background: linear-gradient(to bottom, white, black);
}

/*---------------------------------------------------------
汎用
---------------------------------------------------------*/
.max-img-880 {
  font-size: 0;
  width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .max-img-880 {
    width: 100%;
    padding: 0 calc(20/750 * 100vw);
  }
}

.max-img-800 {
  font-size: 0;
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .max-img-800 {
    width: 100%;
    padding: 0 calc(30/750 * 100vw);
  }
}

.mb5020 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .mb5020 {
    margin-bottom: calc(20/750 * 100vw);
  }
}

.mb7080 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .mb7080 {
    margin-bottom: calc(80/750 * 100vw);
  }
}

.mb6040 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mb6040 {
    margin-bottom: calc(40/750 * 100vw);
  }
}