@charset "UTF-8";

@font-face {
  font-family: "myfont";
  /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Black.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Bold.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-DemiLight.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Light.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Medium.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Regular.otf") format("opentype");
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Thin.otf") format("opentype");
}

/* normal */
@font-face {
  font-family: "myfont";
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Regular.otf");
  font-weight: normal;
}

/* medium */
@font-face {
  font-family: "myfont";
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Medium.otf");
  font-weight: 500;
}

/* bold */
@font-face {
  font-family: "myfont";
  src: url("https://lp1.granire-cloud.com/font/NotoSansCJKjp-Bold.otf");
  font-weight: bold;
  /* boldが使えるようになる */
}

/* 'Century Gothic' */
@font-face {
  font-family: "enfont";
  src: url("https://lp1.granire-cloud.com/font/century-gothic.ttf") format("truetype");
  src: url("https://lp1.granire-cloud.com/font/century-gothic-bold.ttf") format("truetype");
}

/* normal */
@font-face {
  font-family: "enfont";
  src: url("https://lp1.granire-cloud.com/font/century-gothic.ttf");
  font-weight: normal;
}

/* bold */
@font-face {
  font-family: "enfont";
  src: url("https://lp1.granire-cloud.com/font/century-gothic-bold.ttf");
  font-weight: bold;
  /* boldが使えるようになる */
}

/* @font-faceのfont-familyでつけた名前を指定 */
/* @font-faceのfont-familyでつけた名前を指定 */
body {
  font-family: "myfont", "enfont", sans-serif;
  color: #000;
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 10px;
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}

@media (min-width: 900px) {
  html {
    font-size: 10px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  /* transition: opacity 0.3s;
  @include mq("md") {
    &:hover {
      opacity: 0.8;
    }
  } */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.attention {
  color: #ce3030;
}

.attention--bg {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .attention--bg {
    font-size: 4rem;
  }
}

.attention--best {
  display: inline-block;
  font-size: 28px;
  font-size: 2.8rem;
  color: #fff;
  background-color: #ce3030;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .attention--best {
    font-size: 6.5rem;
  }
}

.balloon {
  position: relative;
  background-color: #effaff;
}

.balloon:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  /* border-color: $bg-bluecolor transparent transparent transparent;
  border-top: 100px solid $bg-bluecolor;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent; */
  border-top: 50px solid #effaff;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
}

@media screen and (min-width: 768px) {
  .balloon:after {
    border-top: 50px solid #effaff;
    border-right: 200px solid transparent;
    border-left: 200px solid transparent;
  }
}

.balloon--small::after {
  bottom: -90px;
}

.balloon--bgyellow {
  background-color: #fff8eb;
  position: relative;
}

.balloon--bgyellow:after {
  border-top: 50px solid #fff8eb;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
}

@media screen and (min-width: 768px) {
  .balloon--bgyellow:after {
    border-top: 50px solid #fff8eb;
    border-right: 200px solid transparent;
    border-left: 200px solid transparent;
  }
}

.balloon--bgconcblue {
  color: #22b2da;
  position: relative;
}

.balloon--bgconcblue:after {
  border-top: 50px solid #22b2da;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
}

@media screen and (min-width: 768px) {
  .balloon--bgconcblue:after {
    border-top: 50px solid #22b2da;
    border-right: 200px solid transparent;
    border-left: 200px solid transparent;
  }
}

.bgorange {
  color: #fff;
  background-color: #ff7844;
  display: inline-block;
}

.bgorange--reason {
  width: 84px;
  height: 84px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  font-size: 40px;
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bgorange--works {
  display: inline-block;
  padding-left: 24px;
  padding-left: 2.4rem;
  padding-right: 24px;
  padding-right: 2.4rem;
  padding-top: 4px;
  padding-top: 0.4rem;
  padding-bottom: 4px;
  padding-bottom: 0.4rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
}

.bgyellow {
  font-weight: 900;
  color: #ff7844;
  background-color: #fff100;
  padding: 5px;
  padding: 0.5rem;
}

.block-baloon-bottom {
  border-top: 50px solid #effaff;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  background-color: #effaff;
}

/* 

.block-baloon-bottom {
  padding: 10rem;
  position: relative;
  background-color: $bg-bluecolor;
  border: 2px solid $bg-bluecolor;
  border-radius: 0.5em;
}

.block-baloon-bottom::before,
.block-baloon-bottom::after {
  content: '';
  position: absolute;
}


/* ---------- 吹き出し：下 ---------- */
/* .block-baloon-bottom {
  /* margin-bottom: 2.5em; */
/* .block-baloon-bottom:before,
.block-baloon-bottom:after {
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5rem;
  border-top: 3rem solid $bg-bluecolor;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.block-baloon-bottom:after {
  bottom: calc(4px - 1.5em);
  border-top: solid 3rem $bg-bluecolor;
} */
.blueline {
  display: inline-block;
  color: #22b2da;
}

.blueline--bg {
  display: inline-block;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

@media screen and (min-width: 768px) {
  .blueline--bg {
    font-size: 5rem;
  }
}

.blueline--head {
  letter-spacing: 0.01em;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .blueline--head {
    font-size: 2.5rem;
  }
}

.btn {
  position: relative;
  /* background: url(https://lp1.granire-cloud.com/images/right-triangle.png)no-repeat left 10% center/37px 37px,linear-gradient(top, #b2292e 0%, #f23557 100%); */
  /* 背景を透明にする */
  background: transparent;
  border: 1px solid transparent;
  background-repeat: no-repeat;
  display: inline-block;
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  padding-right: 15px;
  padding-right: 1.5rem;
  padding-left: 15px;
  padding-left: 1.5rem;
  letter-spacing: 0.08em;
  max-width: 100%;
  width: 335px;
  width: 33.5rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #a7a7a7;
  cursor: pointer;
  /* グラデーションよりも上に配置 */
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .btn {
    /* background: url(https://lp1.granire-cloud.com/images/right-triangle.png)no-repeat left calc(50% - 16.3rem) center/37px 37px,linear-gradient(top, #b2292e 0%, #f23557 100%); */
    font-size: 3.6rem;
    font-weight: 500;
    width: 55.3rem;
    max-width: 100%;
    padding-left: 7.2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
  }
}

/* ::before, ::afterで2種類のグラデーションを用意 */
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* グラデーション1 */
.btn::before {
  /* アニメーション実行時間 */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: -1;
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 10% center/25px 25px, -webkit-gradient(linear, left bottom, left top, from(#b2292e), to(#f23557));
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 10% center/25px 25px, linear-gradient(to top, #b2292e 0%, #f23557 100%);
  /* background-color:linear-gradient(top, #b2292e 0%, #f23557 100%); */
}

@media screen and (min-width: 768px) {
  .btn::before {
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 20% center/37px 37px, -webkit-gradient(linear, left bottom, left top, from(#b2292e), to(#f23557));
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 20% center/37px 37px, linear-gradient(to top, #b2292e 0%, #f23557 100%);
    /* background-color:linear-gradient(top, #b2292e 0%, #f23557 100%); */
  }
}

/* グラデーション2 */
.btn::after {
  z-index: -2;
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 10% center/25px 25px, #946585;
  /* background-color: $btn-hovercolor; */
}

@media screen and (min-width: 768px) {
  .btn::after {
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 20% center/37px 37px, #946585;
    /* background-color: $btn-hovercolor; */
  }
}

/* ホバー時にグラデーション1を透明にする */
.btn:hover::before {
  opacity: 0;
}

.btn--detail {
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .btn--detail::before {
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 20% center/37px 37px, -webkit-gradient(linear, left bottom, left top, from(#b2292e), to(#f23557));
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 20% center/37px 37px, linear-gradient(to top, #b2292e 0%, #f23557 100%);
    /* background-color:linear-gradient(top, #b2292e 0%, #f23557 100%); */
  }
}

.btn--detail:hover::before {
  opacity: 0;
}

.btn-arrowright {
  position: relative;
  padding-right: 35px;
  padding-right: 3.5rem;
  padding-left: 35px;
  padding-left: 3.5rem;
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .btn-arrowright {
    padding: 2rem;
  }
}

.btn-arrowright::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 37px;
  height: 37px;
  left: 20%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat center center;
}

.card-list {
  display: block;
}

@media screen and (min-width: 768px) {
  .card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.card-list__item {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card-list__item {
    max-width: calc(50% - 1rem);
  }
}

.card-list__item::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.89655%;
}

.card-list__item--video::before {
  padding-top: 56.09195%;
}

.card-list__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-list__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-list__item+.card-list__item {
  margin-top: 30px;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .card-list__item+.card-list__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .card-list__item:nth-child(n+3) {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .card-list__item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .card-list__item:not(:nth-child(2n+1)) {
    margin-left: 1.8rem;
  }
}

.checkimg {
  width: 34px;
  height: 34px;
}

.consul-list__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 898px;
  max-width: 89.8rem;
  width: 100%;
}

.consul-list__item {
  width: 100%;
  max-width: calc(33.3% - 1rem);
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #22b2da;
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  padding-left: 10px;
  padding-left: 1rem;
  padding-right: 10px;
  padding-right: 1rem;
  border: solid 3px #22b2da;
}

@media screen and (min-width: 768px) {
  .consul-list__item {
    max-width: calc(25% - 3rem);
    /* writing-mode:horizontal-tb; */
    font-size: 2.4rem;
  }
}

.consul-list__item:nth-child(n+3) {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .consul-list__item:nth-child(n+3) {
    margin-left: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .consul-list__item:nth-child(n+4) {
    margin-left: 0;
  }
}

.consul-list__item:not(:nth-child(3n+1)) {
  margin-left: 15px;
  margin-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  .consul-list__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .consul-list__item:not(:nth-child(4n+1)) {
    margin-left: 3.5rem;
  }
}

.consul-list__item:nth-child(n+4) {
  margin-top: 20px;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .consul-list__item:nth-child(n+4) {
    margin-top: 0;
  }
}

.consul-list__item:nth-child(n+5) {
  margin-top: 20px;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .consul-list__item:nth-child(n+5) {
    margin-top: 3.6rem;
  }
}

@media screen and (min-width: 768px) {
  .consul__other {
    margin-top: 1rem;
    margin-left: 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.consul__note {
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #313131;
  width: 49px;
  width: 4.9rem;
  height: 14px;
  margin-top: 10px;
  margin-top: 1rem;
}

.consul-view {
  background-color: #22b2da;
  padding-top: 38px;
  padding-top: 3.8rem;
  padding-bottom: 38px;
  padding-bottom: 3.8rem;
  margin-top: 80px;
  margin-top: 8rem;
}

@media screen and (min-width: 768px) {
  .consul-view {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 4.9rem;
  }
}

@media screen and (min-width: 768px) {
  .consul-view--last {
    padding-top: 2.5rem;
  }
}

.consul-view__title {
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .consul-view__title {
    font-size: 4rem;
  }
}

.consul-view__btn {
  margin-top: 10px;
  margin-top: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .consul-view__btn {
    margin-top: 1.5rem;
  }
}

.contact-form__dl {
  max-width: 639px;
  max-width: 63.9rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__row {
  display: block;
}

.contact-form__row:not(:first-child) {
  margin-top: 30px;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .contact-form__row:not(:first-child) {
    margin-top: 1rem;
  }
}

.contact-form__label {
  width: 100%;
  padding: 5px 0 0;
  margin: 0;
}

.contact-form__label label {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  color: #313131;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
}

@media screen and (min-width: 768px) {
  .contact-form__label label {
    font-size: 1.8rem;
  }
}

.contact-form__label label.is-required {
  display: inline-block;
  position: relative;
}

.contact-form__label label::after {
  content: "必須";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc(100% + 10px);
  width: 56px;
  font-size: 14px;
  color: #fff;
  background: #ce3030;
  text-align: center;
  border-radius: 4px;
  padding: 5px 11px;
  line-height: 1;
}

.contact-form__input {
  width: 100%;
  margin-top: 10px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .contact-form__input {
    max-width: 63.9rem;
    width: 100%;
  }
}

.contact-form__btn {
  margin-top: 45px;
  margin-top: 4.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact-form__btn {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

.contact {
  background-color: #eee;
}

.contact__form {
  margin-top: 35px;
  margin-top: 3.5rem;
}

.content-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #313131;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .content-text {
    text-align: center;
    font-size: 2rem;
    line-height: 1.8;
    letter-spacing: 0.025em;
  }
}

.content-text--long {
  letter-spacing: 0.01em;
  text-align: center;
}

.content-text--center {
  text-align: center;
}

.faq-box__q {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
  color: #000;
  padding-top: 20px;
  padding-top: 2rem;
  padding-bottom: 20px;
  padding-bottom: 2rem;
  padding-left: 45px;
  padding-left: 4.5rem;
  padding-right: 35px;
  padding-right: 3.5rem;
  border: solid 3px #22b2da;
  position: relative;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .faq-box__q {
    padding-left: 8.9rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 3rem;
    line-height: 1.8;
  }
}

.faq-box__q::before {
  content: "Q.";
  font-family: "enfont";
  font-size: 25px;
  font-size: 2.5rem;
  display: inline-block;
  color: #22b2da;
  font-weight: bold;
  position: absolute;
  top: 40%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .faq-box__q::before {
    font-size: 3rem;
    top: 50%;
    left: 2.2246941046vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.faq-box__q::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #22b2da transparent transparent;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .faq-box__q::after {
    right: 1.6685205784vw;
    top: 35%;
  }
}

.faq-box__q.is-open::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-box__a {
  position: relative;
  padding: 20px;
  padding: 2rem;
  background-color: #22b2da;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: justify;
  padding-left: 45px;
  padding-left: 4.5rem;
  padding-right: 20px;
  padding-right: 2rem;
  display: none;
}

@media screen and (min-width: 768px) {
  .faq-box__a {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 9rem;
    padding-right: 7rem;
  }
}

.faq-box__a::before {
  content: "A.";
  font-family: "enfont";
  display: inline-block;
  color: #fff;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: 20%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .faq-box__a::before {
    top: 20%;
    left: 2.2246941046vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 3rem;
  }
}

.fqa-box__content {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #fff;
}

.fqa-list__item {
  border: solid 3px #22b2da;
}

.faq-list__item+.faq-list__item {
  margin-top: 25px;
  margin-top: 2.5rem;
}

.head-line {
  position: relative;
}

.head-line::after {
  content: "";
  display: block;
  /* max-inline-size:rem(814); */
  max-width: 814px;
  max-width: 81.4rem;
  width: 100%;
  height: 2px;
  border-bottom: dotted 2px #ff7844;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .head-line::after {
    top: 13rem;
  }
}

@media screen and (min-width: 768px) {
  .head-line--long::after {
    top: 18rem;
  }
}

@media screen and (min-width: 1024px) {
  .head-line--long::after {
    top: 15rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 950px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

[type=text] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid transparent;
  background: #fff;
  padding: 9px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* ↑デフォルトスタイルを無効にする */
  border-radius: 0;
  /* 丸みをなくす */
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

[type=email] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid transparent;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* ↑デフォルトスタイルを無効にする */
  border-radius: 0;
  /* 丸みをなくす */
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

input[type=submit] {
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  letter-spacing: 0.3em;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  padding: 1rem;
  padding-left: 9px;
  padding-left: 0.9rem;
  padding-top: 9px;
  padding-top: 0.9rem;
  padding-bottom: 9px;
  padding-bottom: 0.9rem;
  padding-right: 9px;
  padding-right: 0.9rem;
  border: none;
  border: none;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 320px;
  width: 32rem;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.6s 0s ease;
  transition: all 0.6s 0s ease;
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 40% center/25px 25px, -webkit-gradient(linear, left bottom, left top, from(#b2292e), to(#f23557));
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 40% center/25px 25px, linear-gradient(to top, #b2292e 0%, #f23557 100%);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  position: relative;
}

@media screen and (min-width: 768px) {
  input[type=submit] {
    font-size: 3rem;
    font-weight: 500;
    width: 35.5rem;
    max-width: 100%;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 35% center/37px 37px, -webkit-gradient(linear, left bottom, left top, from(#b2292e), to(#f23557));
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 35% center/37px 37px, linear-gradient(to top, #b2292e 0%, #f23557 100%);
    padding-left: 70px;
  }
}

/*--hover--*/
input[type=submit]:hover {
  -webkit-transition: all 0.6s 0s ease;
  transition: all 0.6s 0s ease;
  background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 40% center/25px 25px, #946585;
}

@media screen and (min-width: 768px) {
  input[type=submit]:hover {
    background: url(https://lp1.granire-cloud.com/images/right-triangle.png) no-repeat left 35% center/37px 37px, #946585;
  }
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list__item {
  background-color: #fff8eb;
  padding-top: 15px;
  padding-top: 1.5rem;
  padding-bottom: 43px;
  padding-bottom: 4.3rem;
  padding-right: 20px;
  padding-right: 2rem;
  padding-left: 20px;
  padding-left: 2rem;
  max-width: calc(50% - 0.6rem);
}

@media screen and (min-width: 768px) {
  .list__item {
    max-width: calc(25% - 1.35rem);
  }
}

.list__item+.list__item {
  margin-left: 12px;
  margin-left: 1.2rem;
}

@media screen and (min-width: 768px) {
  .list__item+.list__item {
    margin-left: 1.8rem;
  }
}

.list__item:nth-child(2n+1) {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .list__item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.list__item:not(:nth-child(2n+1)) {
  margin-left: 12px;
  margin-left: 1.2rem;
}

@media screen and (min-width: 768px) {
  .list__item:not(:nth-child(2n+1)) {
    margin-left: 1.8rem;
  }
}

.list__item:nth-child(n+3) {
  margin-top: 30px;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .list__item:nth-child(n+3) {
    margin-top: 0;
    margin-left: 1.8rem;
  }
}

.list-item__img {
  width: 89px;
  height: 89px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
}

.list-item__img--1 {
  background: #ff7844 url(https://lp1.granire-cloud.com/images/flow-1.png) no-repeat center center;
}

.list-item__img--2 {
  background: #ff7844 url(https://lp1.granire-cloud.com/images/flow-2.png) no-repeat center center;
}

.list-item__img--3 {
  background: #ff7844 url(https://lp1.granire-cloud.com/images/flow-3.png) no-repeat center center;
}

.list-item__img--4 {
  background: #ff7844 url(https://lp1.granire-cloud.com/images/flow-4.png) no-repeat center center;
}

.list-item__content {
  margin-top: 18px;
  margin-top: 1.8rem;
}

.list-item__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #ff7844;
  text-align: left;
  padding-bottom: 20px;
  padding-bottom: 2rem;
  border-bottom: solid 3px #ff7844;
}

.list-item__detail {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.045em;
  text-align: justify;
  color: #000;
  margin-top: 15px;
  margin-top: 1.5rem;
}

.orangeline {
  color: #ff7844;
}

.orangeline--big {
  color: #ff7844;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (min-width: 768px) {
  .orangeline--big {
    font-size: 8rem;
  }
}

.pop-yellow {
  color: #fff100;
  letter-spacing: 0.5em;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .pop-yellow {
    font-size: 4rem;
  }
}

#price-table {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  /* table-layout: fixed; */
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: solid 2px #aaa;
  background-clip: padding-box;
}

@media screen and (min-width: 768px) {
  #price-table {
    max-width: 90rem;
    table-layout: fixed;
  }
}

/* 左端の見出し */
#price-table tr th:first-child {
  position: sticky;
  top: 0;
  left: 0;
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
  width: 175px;
  color: #000;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #fff;
  border: solid 2px #aaa;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  #price-table tr th:first-child {
    width: 175px;
    font-size: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

#price-table tr:nth-child(1) {
  height: 70px;
  height: 7rem;
}

#price-table tr:nth-child(2) {
  height: 75px;
  height: 7.5rem;
}

#comparison-table tr:nth-child(3) {
  height: 45px;
  height: 4.5rem;
}

#price-table tr:nth-child(4) {
  height: 90px;
  height: 9.0rem;
}

#price-table tr:nth-child(5) {
  height: 71px;
  height: 7.1rem;
}

#price-table tr:nth-child(5) th {
  letter-spacing: -0.02em;
}

#price-table tr:nth-child(6) {
  height: 75px;
  height: 7.5rem;
}

@media screen and (min-width: 768px) {
  #price-table tr:nth-child(6) td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    letter-spacing: 0.01em;
  }
}

#price-table tr:nth-child(7) {
  height: 425px;
  height: 42.5rem;
}

#price-table tr:nth-child(7) th {
  vertical-align: top;
}

#price-table tr:nth-child(7) td {
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

#price-table tr:nth-child(3) th {
  text-align: justify !important;
  -moz-text-align-last: justify;
  text-align-last: justify;
  /* Chrome・Firefox用 */
  /* text-justify: inter-ideograph; */
  /* IE・Edge用 */
  padding-left: 35px;
  padding-left: 3.5rem;
  padding-right: 35px;
  padding-right: 3.5rem;
}

#price-table th,
#price-table td {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  border: solid 2px #aaa;
  word-wrap: break-word;
}

@media screen and (min-width: 768px) {

  #price-table th,
  #price-table td {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    font-size: 1.8rem;
  }
}

/* 見出し部分 */
@media screen and (min-width: 768px) {
  #price-table tr:nth-child(1) th:first-child {
    font-size: 1.8rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

#price-table th:nth-child(2) {
  background-color: #22b2da;
  color: #fff;
}

#price-table th:nth-child(3) {
  background-color: #3b4a6b;
  color: #fff;
}

#price-table th:nth-child(4) {
  background-color: #aaaaaa;
  color: #fff;
}

/* 中身の部分 */
#price-table tr:nth-child(7) th {
  padding-top: 10px;
  padding-top: 1rem;
}

#price-table tr:nth-child(7) ul {
  text-align: left;
}

#price-table tr:nth-child(7) td ul li {
  padding-left: 5px;
  padding-left: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

#price-table tr:nth-child(7) td {
  text-align: left;
  vertical-align: top;
}

#price-table td {
  color: #313131;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
  color: #313131;
}

@media screen and (min-width: 768px) {
  #price-table td {
    font-size: 2rem;
  }
}

.problem-list {
  width: 100%;
  /* padding-right: $padding-sp; */
  /* padding-left: $padding-sp; */
}

@media screen and (min-width: 768px) {
  .problem-list {
    /* max-width: rem(1000)!important; */
    /* padding-right: $padding-pc; */
    /* padding-left: $padding-pc; */
  }
}

.problem-list__item {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #313131;
  padding-left: 45px;
  padding-left: 4.5rem;
  position: relative;
  word-break: break-word;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .problem-list__item {
    padding-left: 0;
    line-height: 1;
  }
}

.problem-list__item span {
  display: inline-block;
  /* word-break: break-word; */
  text-align: left;
}

.problem-list__item::before {
  content: url(https://lp1.granire-cloud.com/images/blackboxcheck.png);
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .problem-list__item::before {
    top: 50%;
    left: -5.1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.problem-list__item+.problem-list__item {
  margin-top: 30px;
  margin-top: 3rem;
}

/* .problem-list__imgbox {
  max-width: rem(996);
  width: 100%;
  margin-top: rem(50);
  margin-left: auto;
  margin-right: auto;
  padding-right: $padding-sp;
  padding-left: $padding-sp;

  @include mq(md) {
    max-width: rem(996)!important;
    padding-right: $padding-pc;
    padding-left: $padding-pc;
  }
} */
/* 
  @include mq(md) {

    position: absolute;
    top: 10%;
    left: 80%;
    transform: traslate(-50%, -50%);

  } */
rb {
  font-size: 50px;
  font-size: 5rem;
  color: #fff100;
}

@media screen and (min-width: 768px) {
  rb {
    font-size: 9rem;
  }
}

.reason-list__items {
  max-width: 900px;
  max-width: 90rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .reason-list__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.reason-list__item {
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding-top: 66px;
  padding-top: 6.6rem;
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
  padding-right: 20px;
  padding-right: 2rem;
  padding-left: 20px;
  padding-left: 2rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason-list__item {
    max-width: calc(33.3% - 1.46667rem);
  }
}

.reason-list__item:nth-child(2)>.reason-list__description {
  margin-top: 15px;
  margin-top: 1.5rem;
}

.reason-list__item:nth-child(3)>.reason-list__img {
  margin-top: 10px;
  margin-top: 1rem;
}

.reason-list__item:nth-child(3)>.reason-list__description {
  margin-top: 28px;
  margin-top: 2.8rem;
}

.reason__counter {
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.reason-list__img {
  max-width: 168px;
  max-width: 16.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.reason-list__description {
  margin-top: 20px;
  margin-top: 2rem;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: justify;
  text-align: center;
  color: #313131;
}

.reason-list__item+.reason-list__item {
  margin-top: 80px;
  margin-top: 8rem;
}

@media screen and (min-width: 768px) {
  .reason-list__item+.reason-list__item {
    margin-left: 2.2rem;
    margin-top: 0;
  }
}

rt {
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff100;
  letter-spacing: 0.5em;
  text-align: center;
}

.section-head {
  text-align: center;
}

.section-head__title {
  color: #313131;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
  .section-head__title {
    font-size: 3.6rem;
    letter-spacing: 0.01em;
  }
}

.section-head__title--bg {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.045em;
}

.section-head--attention {
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .section-head--attention {
    margin-top: -1rem;
  }
}

.section-head__title--agreement {
  letter-spacing: 0.05em;
}

.section-head__title--long {
  letter-spacing: 0.055em;
}

.simplesolid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  max-width: 90rem;
  width: 100%;
}

/* 共通部分はまとめる */
.simplesolid::before,
.simplesolid::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /* 線の伸び率 */
  /* height: 4px; */
  /* background-color: $pop-bgcolor; */
  border-top: solid 5px #22b2da;
}

/* 左側の線 */
.simplesolid::before {
  /* margin-left: 10px; */
  /* 線と文字の間のスペース */
  padding-left: 10px;
  /* 線の長さが、最低でも15px以上になるように余白をとる */
}

@media screen and (min-width: 768px) {
  .simplesolid::before {
    /* margin-left: 1rem; */
    /* 線と文字の間のスペース */
    padding-left: 40px;
    /* 線の長さが、最低でも15px以上になるように余白をとる */
  }
}

/* 右側の線 */
.simplesolid::after {
  /* margin-right: 10px; */
  padding-right: 10px;
  /* 線と文字の間のスペース */
  /* padding-right: 10px; */
}

@media screen and (min-width: 768px) {
  .simplesolid::after {
    /* margin-right: 1rem; */
    /* 線と文字の間のスペース */
    padding-right: 40px;
  }
}

.simplesolid--wide::before {
  margin-left: 0;
}

.simplesolid--wide::after {
  margin-right: 0;
}

.staff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-wrap: wrap; */
}

.staff-list__item+.staff-list__item {
  margin-left: 32.8px;
  margin-left: 3.28rem;
}

.staff-list__item img {
  border-radius: 50%;
}

.sublist-list {
  width: 100%;
  max-width: 477px;
  max-width: 47.7rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .sublist-list {
    margin-left: 0;
    margin-right: 0;
  }
}

.sublist-list:nth-of-type(1) {
  position: relative;
  margin-top: 30px;
  margin-top: 3rem;
  background-color: #effaff;
  border-radius: 10px;
  padding-top: 25px;
  padding-top: 2.5rem;
  padding-bottom: 25px;
  padding-bottom: 2.5rem;
  padding-left: 23px;
  padding-left: 2.3rem;
  padding-right: 23px;
  padding-right: 2.3rem;
}

.sublist-list:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #effaff;
}

@media screen and (min-width: 768px) {
  .sublist-list:nth-of-type(1)::before {
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #effaff;
  }
}

.sublist-list:nth-of-type(1)::after {
  content: "etc...";
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
  color: #22b2da;
  position: absolute;
  bottom: -10px;
  right: 5px;
}

.sublist-list:nth-of-type(2) {
  margin-top: 40px;
  margin-top: 4rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sublist-list:nth-of-type(2) {
    margin-top: 4.4rem;
    margin-left: 3.6rem;
  }
}

.sublist-list:nth-of-type(2)::after {
  content: "etc...";
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
  color: #22b2da;
  position: absolute;
  bottom: 35px;
  right: 0px;
}

@media screen and (min-width: 768px) {
  .sublist-list:nth-of-type(2)::after {
    bottom: 30px;
    right: 60px;
  }
}

.sublist-list__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.78;
  letter-spacing: 0.01em;
  text-align: justify;
  color: #22b2da;
  position: absolute;
  top: -4px;
  left: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sublist-list:first-child::after {
  content: "etc...";
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
  color: #22b2da;
  position: absolute;
  bottom: -10px;
  right: 25px;
}

.sublist-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sublist-list__item {
  font-size: 12px;
  font-size: 1.2rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sublist-list__item {
    font-size: 2rem;
  }
}

.sublist-list__item.sublist-list__item--bgwhite {
  color: #22b2da;
  background-color: #fff;
  max-width: 135px;
  max-width: 13.5rem;
  border: 2.5px solid #22b2da;
  max-width: calc(33.3% - 0.86667rem);
  width: 100%;
  padding-top: 12px;
  padding-top: 1.2rem;
  padding-bottom: 12px;
  padding-bottom: 1.2rem;
}

.sublist-list__item--bgwhite+.sublist-list__item--bgwhite {
  margin-left: 13px !important;
  margin-left: 1.3rem !important;
}

.sublist-list__item.sublist-list__item--bgwhite:not(:nth-child(3n+1)) {
  margin-left: 13px;
  margin-left: 1.3rem;
}

.sublist-list__item.sublist-list__item--bgwhite:nth-child(3n+1) {
  margin-left: 0 !important;
}

.sublist-list__item.sublist-list__item--bgwhite:nth-child(n+4) {
  margin-top: 13px;
  margin-top: 1.3rem;
}

.sublist-list__item.sublist-list__item--bgpopblue {
  color: #fff;
  background-color: #22b2da;
  max-width: 186px;
  max-width: 18.6rem;
  width: calc(50% - 0.6rem);
  padding-top: 12px;
  padding-top: 1.2rem;
  padding-bottom: 12px;
  padding-bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
  .sublist-list__item.sublist-list__item--bgpopblue {
    width: calc(50% - 1.2rem);
    max-width: 18.6rem;
    width: 100%;
  }
}

.sublist-list__item--bgpopblue+.sublist-list__item--bgpopblue {
  margin-left: 12px !important;
  margin-left: 1.2rem !important;
}

@media screen and (min-width: 768px) {
  .sublist-list__item--bgpopblue+.sublist-list__item--bgpopblue {
    margin-left: 2.4rem !important;
  }
}

.sublist-list__item.sublist-list__item--bgpopblue:not(:nth-child(2n+1)) {
  margin-left: 12px !important;
  margin-left: 1.2rem !important;
}

@media screen and (min-width: 768px) {
  .sublist-list__item.sublist-list__item--bgpopblue:not(:nth-child(2n+1)) {
    margin-left: 2.4rem !important;
  }
}

.sublist-list__item.sublist-list__item--bgpopblue:nth-child(2n+1) {
  margin-left: 0 !important;
}

.sublist-list__item.sublist-list__item--bgpopblue:nth-child(n+3) {
  margin-top: 15px;
  margin-top: 1.5rem;
}

.support-list:first-of-type {
  background-color: #fff8eb;
  max-width: 316px;
  max-width: 31.6rem;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-right: 3.2rem;
  padding-left: 32px;
  padding-left: 3.2rem;
  padding-top: 45px;
  padding-top: 4.5rem;
  padding-bottom: 34px;
  padding-bottom: 3.4rem;
}

@media screen and (min-width: 768px) {
  .support-list:first-of-type {
    margin-right: 0;
    margin-left: 0;
  }
}

.support-list:first-of-type::after {
  content: "etc...";
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
  color: #22b2da;
  position: absolute;
  bottom: -10px;
  right: 25px;
}

@media screen and (min-width: 768px) {
  .support-list:nth-of-type(2) {
    margin-left: 2.2rem;
  }
}

.support-list:first-of-type .support-list__item {
  max-width: 251px;
  max-width: 25.1rem;
}

.support-list__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: justify;
  text-align: center;
  color: #22b2da;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.support-list__items {
  display: block;
  max-width: 316px;
  max-width: 31.6rem;
  width: 100%;
  margin-top: 34px;
  margin-top: 3.4rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .support-list__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}

.support-list__item {
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #22b2da;
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  padding-left: 8px;
  padding-left: 0.8rem;
  padding-right: 8px;
  padding-right: 0.8rem;
}

.support-list__item+.support-list__item {
  margin-top: 22px;
  margin-top: 2.2rem;
}

.support-list__tyoe {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01em;
  text-align: center;
  color: #22b2da;
}

.support-list__sublist {
  /* max-width: rem(450); */
  width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {
  .support-list__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.tab-line {
  position: relative;
}

.tab-line::after {
  content: "";
  display: inline-block;
  border: solid 4px #ff7844;
}

#table01 {
  max-width: 639px;
  max-width: 63.9rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: solid 2px #898989;
  vertical-align: middle;
  text-align: left;
}

#table01 tr {
  height: 80px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #table01 tr {
    border-bottom: solid 2px #898989;
    max-width: 63.9rem;
  }
}

#table01 tr th {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: justify;
  color: #0d0d0d;
  padding-left: 10px;
  padding-left: 1rem;
  white-space: nowrap;
  padding-top: 10px;
  padding-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  #table01 tr th {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    padding-left: 3.9rem;
    padding-right: 2rem;
    width: 136px;
    display: inline-block;
  }
}

#table01 tr td {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 10px;
  padding: 1rem;
  color: #0d0d0d;
  letter-spacing: 0.01em;
  width: 100%;
  border-bottom: solid 2px #898989;
  padding: 10px;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  #table01 tr td {
    padding-left: 9.5rem;
    display: inline-block;
    width: calc(100% - 195px);
    border: none;
    text-align: left;
  }
}

#table01 tr:nth-child(2) {
  height: 70px;
}

#table01 tr:nth-child(3) td {
  letter-spacing: 0.05em;
}

#table01 tr:nth-child(4) {
  height: 75px;
}

#table01 tr:nth-child(5) {
  height: 75px;
}

#table01 tr:nth-child(4) th,
#table01 tr:nth-child(5) th {
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#table01 tr:nth-child(4) td {
  letter-spacing: 0.05em;
}

#table01 tr:nth-child(5) {
  height: 70px;
}

#table01 tr:last-child th {
  padding-top: 20px;
  padding-top: 2rem;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  #table01 tr:last-child td {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}

#table01 tr:last-child td ul li {
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.test {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

textarea {
  height: 153px;
  height: 15.3rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid transparent;
  background: #fff;
  padding: 10px 16px;
  padding: 1rem 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* ↑デフォルトスタイルを無効にする */
  border-radius: 0;
  /* 丸みをなくす */
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  /* 幅の大きさのリサイズを消したい時は以下のコードを記入 */
  /* resize: none; */
}

.title-solid {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.88;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #313131;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.title-solid--big {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.88;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #313131;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.title-solid:before,
.title-solid:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #313131;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.title-solid:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: 0;
}

.title-solid:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: 0;
}

.title-solid--white {
  color: #fff;
}

.title-solid--white:before,
.title-solid--white:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  background-color: #fff !important;
}

.title-solid--white:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -16px;
}

.title-solid--white:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: -16px;
}

.trapezoid {
  display: inline-block;
  position: relative;
  border-left: none;
  margin-right: 30px;
  position: relative;
  /* transform: skewX(30deg); */
  padding-right: 40px;
  padding-right: 4rem;
  padding-top: 13px;
  padding-top: 1.3rem;
  padding-left: 42px;
  padding-left: 4.2rem;
  padding-bottom: 13px;
  padding-bottom: 1.3rem;
  border-bottom: solid 4px #fff;
  /* border: solid 4px $orange; */
}

.trapezoid__in {
  display: inline-block;
  padding: 5px 10px;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  width: 100px;
  position: relative;
}

.trapezoid__in {
  border-bottom: 2px solid #00479d;
  border-right: 2px solid #00479d;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: -1;
  width: 100px;
}

.voice-list__company {
  margin-top: 50px;
  margin-top: 5rem;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  background-color: #22b2da;
  padding-top: 5px;
  padding-top: 0.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
  padding-left: 12px;
  padding-left: 1.2rem;
  padding-right: 7px;
  padding-right: 0.7rem;
  width: 254px;
  width: 25.4rem;
}

.voice-list__word {
  margin-top: 10px;
  margin-top: 1rem;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  color: #22b2da;
  padding-bottom: 22px;
  padding-bottom: 2.2rem;
  border-bottom: solid 4px #22b2da;
}

@media screen and (min-width: 768px) {
  .voice-list__word {
    white-space: nowrap;
  }
}

.voice-list__check {
  margin-top: 25px;
  margin-top: 2.5rem;
}

.voice-list__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 30px;
  font-size: 18px;
  font-size: 1.8rem;
}

.voice-list__checkbox+.voice-list__checkbox {
  margin-top: 12px;
  margin-top: 1.2rem;
}

.voice-list__checkbox span {
  display: inline-block;
}

.voice-list__checkbox:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.voice-list__checkbox::before {
  content: url(https://lp1.granire-cloud.com/images/checkbox.png);
  display: block;
  width: 25px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}



.voice-list__checkbox--short {
  position: relative;
}

.voice-list__checkbox--short::before {
  top: 40%;
}


.voice-list__checkbox--long {
  position: relative;
}

.voice-list__checkbox--long::before {
  top: 15%;
}

@media screen and (min-width: 768px) {
  .voice-list__checkbox--long::before {
    top: 20%;
  }
}




.voice-list__contentstitle {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
  color: #000;
  display: inline-block;
  white-space: nowrap;
  padding-top: 0;
}


.voice-list__text {
  line-height: 1.2;
}





.voice-list__box {
  margin-top: 15px;
  margin-top: 1.5rem;
}

.voice-list__description {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: justify;
  color: #313131;
}

.voice-list--narrow {
  letter-spacing: -0.045em;
}

.works-list__inner {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-right: 10px;
  padding-right: 1rem;
  padding-left: 10px;
  padding-left: 1rem;
  padding-bottom: 25px;
  padding-bottom: 2.5rem;
  padding-top: 10px;
  padding-top: 1rem;
  border: 4px solid #ff7844;
  border-radius: 4px;
  border-top-left-radius: 0;
}

@media screen and (min-width: 768px) {
  .works-list__inner {
    padding-right: 4.2rem;
    padding-left: 3.5rem;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
}

.works-list__head {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "enfont", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 5px;
  padding-top: 0.5rem;
  padding-bottom: 12px;
  padding-bottom: 1.2rem;
  padding-right: 55px;
  padding-right: 5.5rem;
  padding-left: 45px;
  padding-left: 4.5rem;
  z-index: 2;
  color: #ff7844;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: -4px;
}

.works-list__head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-top: 4px solid #ff7844;
  border-left: 4px solid #ff7844;
  border-right: 5px solid #ff7844;
  border-bottom: none !important;
  -webkit-transform: scaleY(1.3) perspective(1em) rotateX(3deg);
  transform: scaleY(1.3) perspective(1em) rotateX(3deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}

/* .works-list__head::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 5px;
    height: 4px;
    background-color:$orange;
  } */
/* 
.works-list__head {
  display: inline-block;
  background-color: $orange;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  border-radius: 10px 10px 0 0 !important;
  box-sizing: border-box;
  height: rem(50);
  width: rem(190);
  margin-bottom: rem(-5);
  position: relative;
  z-index: 2;

  @include mq(md) {
    height: rem(46);
    margin-bottom: rem(-5);
  }
} */
/* .works-list__headtext {
  clip-path: polygon(4px 4px, calc(88% - 4px) 4px, calc(100% - 4px) calc(100% - 4px), 4px 100%);
  -webkit-clip-path: polygon(4px 4px, calc(88% - 4px) 4px, calc(100% - 4px) calc(100% - 4px), 4px 100%);
  border-radius: 10px 10px 0 0 !important;
  height: rem(65);
  background-color: $white !important;
  font-family: $second-font-family;
  font-size: rem(16);
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.2em;
  color: $orange;
  text-align: center;
  padding-top: rem(15);
  padding-bottom: rem(15);
  position: relative;
  z-index: 10;

  @include mq(md) {
    height: rem(57);

  }
}
 */
.works-list__item+.works-list__item {
  margin-top: 60px;
  margin-top: 6rem;
}

@media screen and (min-width: 768px) {
  .works-list__item+.works-list__item {
    margin-top: 4.5rem;
  }
}

.works__titlewrap {
  display: block;
  max-width: 814px;
  max-width: 81.4rem;
}

@media screen and (min-width: 768px) {
  .works__titlewrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .works-list__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.works-list__list {
  margin-top: 15px;
  margin-top: 1.5rem;
}

.works-list__img {
  background-color: #eeeeee;
  max-width: 100%;
  width: 165px !important;
  height: 165px !important;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-top: 5rem;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .works-list__img {
    margin-left: 2rem;
    margin-right: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    margin-top: 4rem;
  }
}

.works-listimgtext {
  display: inline-block;
  width: 125px;
  height: 41px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.08em;
  color: #000;
  text-shadow: #fff 5px 2px 10px, #fff -6px 2px 6px, #fff 6px -2px 6px, #fff -6px -2px 6px, #fff 5px 2px 10px, #fff -6px 2px 6px, #fff 5px 2px 10px, #fff -6px 2px 6px, #fff 6px -6px 6px, #fff -6px -2px 6px, #fff 5px 2px 10px, #fff -6px 2px 6px, #fff 5px 2px 10px, #fff -6px 2px 6px, #fff 5px 2px 10px, #fff -6px 2px 6px;
  -webkit-transform: translateY(-45px);
  transform: translateY(-45px);
}

.works-list__img.works-list__img--third {
  position: relative;
}

.works-listimgtext.works-listimgtext--third {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 17px;
  font-size: 18px;
  font-size: 1.8rem;
  white-space: nowrap;
}

.works-list__headtitle {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.04em;
  text-align: left;
  color: #ff7844;
}

.works-list__description {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #000;
  margin-top: 15px;
  margin-top: 1.5rem;
}

.works-list__description.works-list__description--list {
  line-height: 1;
  margin-top: 10px;
  margin-top: 1rem;
}

.works-list__item:nth-of-type(2) .works-list__description {
  letter-spacing: 0.02em;
}

.works-list__contents {
  margin-top: 30px;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .works-list__contents {
    /* transform: translateY(-25px); */
    margin-top: -4.5rem;
  }
}

.works-list__contents.works-list__contents--bg {
  margin-top: 30px;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .works-list__contents.works-list__contents--bg {
    /* transform: translateY(-35px); */
    margin-top: -2.5rem;
  }
}

.works-list__suggestion {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #000;
  margin-top: 6px;
  margin-top: 0.6rem;
}

.works-list__iems {
  margin-top: 20px;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .works-list__iems {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .works-list__iems.works-list__iems--bg {
    margin-top: 0.5rem;
  }
}

.works-list__checkitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.works-list__checkitem+.works-list__checkitem {
  margin-top: 10px;
  margin-top: 1rem;
}

.works-list__checkimg {
  width: 34px;
  width: 3.4rem;
  height: 34px;
  height: 3.4rem;
}

.works-list__checktext {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #000;
  margin-left: 10px;
  margin-left: 1rem;
}

.works-list__checktext.works-list__checktext--bg {
  letter-spacing: 0.075em;
  width: 95%;
  word-wrap: break-word;

}

.works-list__checktext--long {
  width: 95%;
  word-wrap: break-word;
  letter-spacing: 0.01em;
}

.about-space {
  padding-top: 80px;
  padding-top: 8rem;
  padding-bottom: 99px;
  padding-bottom: 9.9rem;
  background-color: #effaff;
}

.about__description {
  margin-top: 40px;
  margin-top: 4rem;
  max-width: 639px;
  max-width: 63.9rem;
  margin-left: auto;
  margin-right: auto;
}

.about__text {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: justify;
  color: #0d0d0d;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.8rem;
  }
}

.about__contents {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
  display: inline-block;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .about__contents {
    font-size: 1.8rem;
  }
}

.about__contents.about__contents--long {
  letter-spacing: 0.05em;
}

.about__img {
  margin-top: 35px;
  margin-top: 3.5rem;
}

.achievement-space {
  padding-top: 95px;
  padding-top: 9.5rem;
  padding-bottom: 100px;
  padding-bottom: 10rem;
  background-color: #effaff;
}

.achievement__description {
  margin-top: 30px;
  margin-top: 3rem;
}

.achievement__works {
  max-width: 900px;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  margin-top: 3.5rem;
}

.achievement__item+.achievement__item {
  margin-top: 40px;
  margin-top: 4rem;
}

.achievement__item:nth-of-type(3) {
  margin-top: 50px;
  margin-top: 5rem;
}

.achivement__worktitle {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #22b2da;
  text-align: center;
}

.achivement__worktitle span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: justify;
  color: #22b2da;
  padding-right: 10px;
  padding-right: 1rem;
  padding-left: 10px;
  padding-left: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .achivement__worktitle span {
    font-size: 2.4rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.achievement__list {
  margin-top: 25px;
  margin-top: 2.5rem;
}

.achievement__list--video {
  margin-top: 30px;
  margin-top: 3rem;
}

.agreement-space {
  padding-top: 80px;
  padding-top: 8rem;
  padding-bottom: 98px;
  padding-bottom: 9.8rem;
}

.agreement__flow {
  margin-top: 45px;
  margin-top: 4.5rem;
  max-width: 900px;
  max-width: 90rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.company-space {
  padding-top: 90px;
  padding-top: 9rem;
  padding-bottom: 80px;
  padding-bottom: 8rem;
}

.company__table {
  margin-top: 40px;
  margin-top: 4rem;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.company__contents+.company__contents {
  margin-top: 4px;
  margin-top: 0.4rem;
}

.comparison-space {
  background-color: #22b2da;
  padding-top: 95px;
  padding-top: 9.5rem;
  padding-bottom: 45px;
  padding-bottom: 4.5rem;
}

#comparison-table {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: solid 3px #aaa;
  background-clip: padding-box;
}

@media screen and (min-width: 768px) {
  #comparison-table {
    max-width: 90rem;
  }
}

#comparison-table tr:nth-child(4) {
  height: 85px;
  height: 8.5rem;
}

#comparison-table tr:nth-child(5),
#comparison-table tr:nth-child(6) {
  height: 75px;
  height: 7.5rem;
}

#comparison-table tr:nth-child(7),
#comparison-table tr:nth-child(8) {
  height: 65px;
  height: 6.5rem;
}

#comparison-table tr:nth-child(6) td,
#comparison-table tr:nth-child(7) td,
#comparison-table tr:nth-child(8) td {
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
}

#comparison-table tr:nth-child(9) td:nth-child(n+3) {
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
}

#comparison-table th,
#comparison-table td {
  border: solid 3px #aaa;
  height: 70px;
  height: 7rem;
}

#comparison-table td {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  padding: 10px;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

@media screen and (min-width: 768px) {
  #comparison-table td {
    font-size: 2rem;
  }
}

#comparison-table td span {
  display: inline-block;
}

/* 左端の見出し */
#comparison-table tr th:first-child {
  vertical-align: middle;
  text-align: center;
  letter-spacing: 0.05em;
  min-height: 70px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  width: 100px;
  width: 10rem;
  text-align: justify !important;
  -moz-text-align-last: justify;
  text-align-last: justify;
  /* Chrome・Firefox用 */
  /* text-justify: inter-ideograph; */
  /* IE・Edge用 */
  background-color: #effaff;
  color: #000;
  position: sticky;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  #comparison-table tr th:first-child {
    width: 204px;
    font-size: 2rem;
    padding-left: 3.4rem;
    padding-right: 3rem;
  }
}

#comparison-table th:not(:first-child) {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  width: 150px;
  padding: 10px;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  #comparison-table th:not(:first-child) {
    width: 225px;
    font-size: 2rem;
  }
}

#comparison-table tr th:nth-child(n+3) {
  color: #22b2da;
}

#comparison-table tr th:nth-child(2) {
  color: #ff7844;
  border-top: solid 7.5px #f8b551;
  border-right: solid 7.5px #f8b551;
  border-left: solid 7.5px #f8b551;
}

#comparison-table tr td:nth-child(2) {
  color: #ff7844;
  font-weight: bold;
  border-right: solid 7.5px #f8b551;
  border-left: solid 7.5px #f8b551;
}

#comparison-table tr:nth-child(6) td:nth-child(2) {
  font-weight: 400;
}

#comparison-table tr:nth-child(7) td:nth-child(2) {
  font-weight: 400;
}

#comparison-table tr:nth-child(8) td:nth-child(2) {
  font-weight: 400;
}

#comparison-table tr:nth-child(9) td:nth-child(2) {
  border-bottom: solid 7.5px #f8b551;
}

.comparison__maintitle {
  color: #fff;
  line-height: 1;
  margin-top: 15px;
  margin-top: 1.5rem;
}

.comparison__tablebox {
  margin-left: auto;
  margin-right: auto;
  margin-top: 49px;
  margin-top: 4.9rem;
  overflow-x: scroll;
  white-space: nowrap;
  width: 90%;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (min-width: 768px) {
  .comparison__tablebox {
    max-width: 90rem;
    width: 100%;
  }
}

.comparison__tablebox::-webkit-scrollbar {
  display: none;
}

.contact-space {
  padding-top: 84px;
  padding-top: 8.4rem;
  padding-bottom: 40px;
  padding-bottom: 4rem;
}

.consul-space {
  padding-top: 20px;
  padding-top: 2rem;
  padding-bottom: 52px;
  padding-bottom: 5.2rem;
}

@media screen and (min-width: 768px) {
  .consul-space {
    padding-bottom: 5.2rem;
    padding-top: 1.5rem;
  }
}

.consul__contents {
  margin-top: 45px;
  margin-top: 4.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .consul__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-width: 94.7rem;
  }
}

.customer-voice-space {
  padding-top: 95px;
  padding-top: 9.5rem;
  padding-bottom: 98px;
  padding-bottom: 9.8rem;
  background-color: #fff8eb;
}

.customer-voice__description {
  margin-top: 40px;
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .customer-voice__description {
    margin-top: 1rem;
  }
}

.customer-voice__items {
  margin-top: 150px;
  margin-top: 15rem;
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .customer-voice__items {
    margin-top: 11rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 89.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.customer-voice__item {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  padding-right: 28px;
  padding-right: 2.8rem;
  padding-left: 24px;
  padding-left: 2.4rem;
  padding-top: 70px;
  padding-top: 7rem;
  padding-bottom: 51px;
  padding-bottom: 5.1rem;
}

@media screen and (min-width: 768px) {
  .customer-voice__item {
    max-width: calc(50% - 1.2rem);
  }
}

.customer-voice__item+.customer-voice__item {
  margin-top: 100px;
  margin-top: 10rem;
}

@media screen and (min-width: 768px) {
  .customer-voice__item+.customer-voice__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .customer-voice__item:not(:nth-child(2n+1)) {
    margin-left: 2.4rem;
  }
}

@media screen and (min-width: 768px) {
  .customer-voice__item:nth-child(n+3) {
    margin-top: 8.5rem;
  }
}

.customer-voice__img {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.detail-space {
  padding-top: 80px;
  padding-top: 8rem;
  padding-bottom: 48px;
  padding-bottom: 4.8rem;
}

.detail-space--middle {
  padding-top: 90px;
  padding-top: 9rem;
}

.detail__titleblock {
  text-align: center;
}

.detail__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: justify;
  color: #313131;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 60px;
  padding: 0 6rem;
  margin-top: 10px;
  margin-top: 1rem;
}

.detail__title--bg {
  padding: 0 65px;
  padding: 0 6.5rem;
}

.detail__title:before,
.detail__title:after {
  content: "";
  position: absolute;
  top: 35%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #313131;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.detail__title:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: 10px;
}

.detail__title:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: 10px;
}

.detail__title--bg:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: 0;
}

.detail__title--bg:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: 0;
}

.detail__title--long:before,
.detail__title--long:after {
  content: "";
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #313131;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.detail__title--long:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -20px;
}

.detail__title--long:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: 0;
}

.detail__btn {
  text-align: center;
  margin-top: 27px;
  margin-top: 2.7rem;
}

.faq-space {
  padding-top: 90px;
  padding-top: 9rem;
  padding-bottom: 99px;
  padding-bottom: 9.9rem;
}

.faq__description {
  margin-top: 25px;
  margin-top: 2.5rem;
}

.faq__text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.5px;
  text-align: justify;
  color: #313131;
}

@media screen and (min-width: 768px) {
  .faq__text {
    text-align: center;
  }
}

.faq__list {
  margin-top: 40px;
  margin-top: 4rem;
  text-align: start;
}

.fv {
  background: url(https://lp1.granire-cloud.com/images/fv-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 77.25vw;
  position: relative;
  z-index: -1;
}

@media screen and (min-width: 1024px) {
  .fv {
    min-height: 70rem;
    height: 100vh;
  }
}

.fv__inner {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  max-width: 92%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .fv__inner {
    min-height: 70rem;
    height: 100vh;
  }
}

.fv__title {
  padding-top: 4.25vw;
}

.fv__logo {
  margin-top: 1.7259978425vw;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #000;
}

@media screen and (min-width: 768px) {
  .fv__logo {
    font-size: 2rem;
  }
}

.fv-image {
  max-width: 809px;
  max-width: 80.9rem;
  width: 80%;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .fv-image {
    width: 70%;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1024px) {
  .fv-image {
    /* width: calc(809 / 1200 * 100vw); */
    max-width: 80.9rem;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.fv__maintext {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .fv__maintext {
    /* max-width: rem(797); */
    /* width: calc(797 / 1200 * 100vw); */
    width: 100%;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .fv__maintext {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__subtitle {
  word-break: break-all;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .fv__subtitle {
    font-size: 3rem;
  }
}

.fv__maintitle {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.7756202805vw;
}

@media screen and (min-width: 768px) {
  .fv__maintitle {
    width: 66.5833333333vw;
    /* margin-top: calc(35/ 927 * 100vw); */
    margin-top: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .fv__maintitle {
    max-width: 80rem;
    width: 100%;
  }
}

.fv__pop {
  max-width: 87.91666%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .fv__pop {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.fv__popleft,
.fv__popright {
  width: 20.8333333333vw;
}

.fv__popright {
  padding-top: 48px;
  padding-top: 4.8rem;
}

.fv__popleft {
  padding-top: 50px;
  padding-top: 5rem;
}

@media screen and (min-width: 768px) {
  .fv__popleft {
    padding-top: 0;
  }
}

.fv__contents {
  width: 66.6666666667vw !important;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .fv__contents {
    bottom: 7.5512405609vw;
    left: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .fv__contents {
    max-width: 80rem;
    width: 100%;
  }
}

.fv__leftimage,
.fv__rightimage {
  width: 33.3333333333vw;
}

.fv__rightimage {
  margin-left: 50px;
  margin-left: 5rem;
}

.fv__note {
  text-align: right;
  margin-top: 50px;
  margin-top: 5rem;
}

.fv__statistics {
  position: absolute;
  bottom: -55px;
  left: 40%;
  right: 0;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .fv__statistics {
    position: absolute;
    z-index: 2;
    bottom: 3.2362459547vw;
    left: 55.5vw;
  }
}

.fv__note {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #0d0d0d;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .fv__note {
    font-size: 1.6rem;
  }
}

.price-space {
  /* padding-top: rem(84); */
  padding-top: 91px;
  padding-top: 9.1rem;
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
  background-color: #effaff;
}

/* 

.price-space：：before,.price-space::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
    /* borderで三角形を作る */
/* border-top: 200px solid $bg-bluecolor;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent;
  border: solid transparent;
} */
/* 
::before に枠線色、::after に背景色をつけて、ずれて重なるように位置を指定します。 */
/* 
.price-space：：before {
  color:$bg-bluecolor;
  top: -12px;
}

.price-space::after {
  background-color:$bg-bluecolor;
  top: -10.5px;   
} 
 */
.price__table {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-top: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  overflow-x: scroll;
  width: 90%;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (min-width: 768px) {
  .price__table {
    max-width: 90rem;
    width: 100%;
    margin-top: 4.5rem;
  }
}

.price__table::-webkit-scrollbar {
  display: none;
}

.price__description {
  margin-top: 15px;
  margin-top: 1.5rem;
}

.price__note {
  max-width: 900px;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: right;
  color: #000;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .price__note {
    padding-left: 1rem;
  }
}

.price__note span {
  display: inline-block;
  letter-spacing: -0.03em;
}

@media screen and (min-width: 768px) {
  .price__note span {
    margin-left: 3rem;
  }
}

.price__annotation {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}



.problem-space {
  padding-top: 40px;
  padding-top: 4rem;
  padding-bottom: 50px;
  padding-bottom: 5rem;
  background-color: #effaff;
}

.problem {
  position: relative;
}

.problem__inner {
  max-width: 1150px;
  max-width: 115rem;
}

.problem__contents {
  margin-top: 40px;
  margin-top: 4rem;
  max-width: 990px;
  max-width: 99rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .problem__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .problem__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .problem__checklist {
    -webkit-transform: translateX(65px);
    transform: translateX(65px);
  }
}

.problem__img {
  position: relative;
  max-width: 269px;
  max-width: 26.9rem;
  width: 100%;
  margin-right: auto;
  margin-top: 55px;
  margin-top: 5.5rem;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .problem__img {
    margin-left: 1rem;
    margin-right: 0;
  }
}

/* 
.problem__img::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;

  @include mq(md) {
    padding-top: 73.97769%;

  }
}

 */
.reason-space {
  background-color: #fff8eb;
  padding-top: 65px;
  padding-top: 6.5rem;
  padding-bottom: 80px;
  padding-bottom: 8rem;
}

.reason__contents {
  margin-top: 65px;
  margin-top: 6.5rem;
}

.resolution__inner {
  max-width: 1000px;
  max-width: 100rem;
}

.resolution__description {
  margin-top: 30px;
  margin-top: 3rem;
}

.resultion-space {
  padding-top: 95px;
  padding-top: 9.5rem;
  padding-bottom: 75px;
  padding-bottom: 7.5rem;
}

.support-space {
  padding-top: 110px;
  padding-top: 11rem;
  padding-bottom: 75px;
  padding-bottom: 7.5rem;
  background-color: #effaff;
}

.support__description {
  margin-top: 28px;
  margin-top: 2.8rem;
}

.support__range {
  background-color: #fff;
  border: dotted 5px #22b2da;
  padding-top: 43px;
  padding-top: 4.3rem;
  padding-bottom: 36px;
  padding-bottom: 3.6rem;
  padding-right: 43px;
  padding-right: 4.3rem;
  padding-left: 40px;
  padding-left: 4rem;
  max-width: 898px;
  max-width: 89.8rem;
  width: 100%;
  margin-top: 15px;
  margin-top: 1.5rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .support__range {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.support__list {
  max-width: 830px;
  max-width: 83rem;
  width: 100%;
}

.support__list+.support__list {
  margin-top: 30px;
  margin-top: 3rem;
}

.works-space {
  background-color: #fff8eb;
  padding-top: 90px;
  padding-top: 9rem;
  /* padding-bottom: rem(110); */
  padding-bottom: 90px;
  padding-bottom: 9rem;
}

.works__list {
  margin-top: 43px;
  margin-top: 4.3rem;
  max-width: 910px;
  max-width: 91rem;
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */