@charset "UTF-8";
/* ------------------------------
　　main
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  background: #FFF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
}

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

strong, .strong {
  font-weight: bold;
}

.hide-sp {
  display: block;
}

.hide-pc {
  display: none;
}

/* リンクの設定 */
a {
  color: #000;
  text-decoration: none;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:active {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline-block;
}

.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.f-notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.f-zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.word-break {
  display: inline-block;
}

/* コンテナ */
.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 80px 0;
}

/* タイトル */
.section-ttl {
  color: #2A2A2A;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.79;
  letter-spacing: 0.07em;
  margin: 0 auto 20px;
}

.sub-ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 auto 30px;
}

/* ボタン */
.btn {
  width: 310px;
  max-width: 100%;
  height: 58px;
  background: -webkit-gradient(linear, left top, right top, from(#CB0BB1), to(#FC5BF0));
  background: linear-gradient(90deg, #CB0BB1 0%, #FC5BF0 100%);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  color: #FFF;
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  padding: 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.79;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.btn:visited, .btn:active, .btn:hover {
  color: #FFF;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#DB55C9), to(#FC8BF4));
  background: linear-gradient(90deg, #DB55C9 0%, #FC8BF4 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.btn > span {
  position: relative;
  z-index: 2;
}
.btn > span::after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/icon-arrow.svg) no-repeat center/cover;
  display: inline-block;
  vertical-align: -1px;
  margin-left: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: #FFF;
  }
  .btn:hover::after {
    opacity: 1;
  }
}
.btn.--wht {
  background: #FFF;
  color: #2A2A2A;
}
.btn.--wht::after {
  content: none;
}
.btn.--wht > span::after {
  background: url(../img/icon-arrow_pnk.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 1px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .btn.--wht:hover {
    opacity: 0.65;
  }
}

/* アニメーション */
.fadein {
  opacity: 0;
  visibility: hidden;
}
.fadein.animated {
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
.fadein.animated.__02 {
  -webkit-animation: fadeIn 1s 0.5s forwards;
          animation: fadeIn 1s 0.5s forwards;
}
.fadein.animated.__03 {
  -webkit-animation: fadeIn 1s 1s forwards;
          animation: fadeIn 1s 1s forwards;
}
.fadein.animated.__04 {
  -webkit-animation: fadeIn 1s 1.5s forwards;
          animation: fadeIn 1s 1.5s forwards;
}

.scrollup {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.scrollup.animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0%;
    visibility: hidden;
  }
  100% {
    opacity: 100%;
    visibility: visible;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0%;
    visibility: hidden;
  }
  100% {
    opacity: 100%;
    visibility: visible;
  }
}
.js-switch {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .hide-sp {
    display: none;
  }
  .hide-pc {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .inner {
    padding: 0 clamp(20px, 5.128vw, 30px);
  }
  .section-ttl {
    font-size: clamp(20px, 6.153vw, 24px);
  }
  .sub-ttl {
    font-size: clamp(18px, 5.128vw, 20px);
  }
}
.mv {
  background: url(../img/mv-bg_pc.webp) no-repeat right bottom/1280px auto, linear-gradient(351deg, #D2ECFF 20.11%, #EFF8FF 66.03%);
}
@media screen and (min-width: 1281px) {
  .mv {
    background: url(../img/mv-bg_pc.webp) no-repeat right bottom/cover;
  }
}
.mv h1 {
  max-width: 992px;
  padding: 25px 30px 35px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1281px) {
  .mv h1 {
    max-width: 77.5%;
  }
}

.mv-txt01 {
  width: 23.286%;
  position: absolute;
  top: 43px;
  right: calc(30px + 7.56%);
}

.mv-txt02 {
  opacity: 1;
  width: 93.13%;
  margin: 0 auto 0 0;
}

.mv-txt03 {
  width: 29.435%;
  position: absolute;
  bottom: 45px;
  right: calc(30px + 3.93%);
}

@media screen and (max-width: 767px) {
  .mv {
    background: url(../img/mv-bg_sp.webp) no-repeat right bottom/cover, linear-gradient(351deg, #D2ECFF 20.11%, #EFF8FF 66.03%);
    margin-bottom: 14.36vw;
  }
  .mv h1 {
    padding: 6.41vw 4.359vw 0 0;
  }
  .mv-txt01 {
    width: 59.23%;
    right: 7.948vw;
  }
  .mv-txt02 {
    width: 99.84%;
  }
  .mv-txt03 {
    width: 74.87%;
    bottom: -14.36vw;
    right: 11.28vw;
  }
}
.how-do {
  margin-top: -11px;
}

.how-do-ttl {
  max-width: 426px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .how-do {
    margin-top: 0;
    padding: 27px 0 9px;
  }
  .how-do-ttl {
    width: 94.69%;
    margin: 0 auto 0 0;
  }
}
.overview {
  margin-top: -11px;
  padding: 72px 0 91px;
  background: url(../img/overview-bg_pc.webp) no-repeat center/1280px auto;
}
@media screen and (min-width: 1281px) {
  .overview {
    padding-top: 5.635vw;
    min-height: 33.28vw;
    background: url(../img/overview-bg_pc.webp) no-repeat center/cover;
  }
}
.overview .inner {
  max-width: 970px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overview .txt-wrap {
  width: 41.32%;
  margin: 43px 5.05% 0 5.27%;
}
.overview .txt-wrap p {
  line-height: 1.94;
  margin: 0;
}

.overview-ttl {
  width: 93.05%;
  margin: 0 auto 21px;
}

.overview-img {
  width: 40.66%;
  aspect-ratio: 370/263;
  margin-right: 7.69%;
  position: relative;
}
.overview-img::after {
  content: "";
  width: 49.73%;
  aspect-ratio: 1/1;
  background: url(../img/overview-deco.png) no-repeat center/cover;
  position: absolute;
  right: calc((18.92% + 30px) * -1);
  top: -87px;
}
.overview-img img {
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .overview {
    overflow-x: hidden;
    margin-top: 0;
    padding: 9.74vw 0 15.38vw;
    background: url(../img/overview-bg_sp.webp) no-repeat center top/cover;
  }
  .overview .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .overview .txt-wrap {
    width: 100%;
    margin: 0;
    display: contents;
  }
  .overview .txt-wrap p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 0 5.71%;
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .overview-ttl {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .overview-img {
    width: 88.57%;
    margin: 0 auto 15px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .overview-img::after {
    width: 50.97%;
    right: -26.77%;
    top: -33.18%;
  }
}
.about-pack {
  padding: 0 0 50px;
}
.about-pack .btn-wrap {
  margin-top: 40px;
}

.about-pack-ttl {
  max-width: 546px;
  margin: 0 auto;
  position: relative;
}
.about-pack-ttl .deco {
  width: 49.45%;
  position: absolute;
  top: 30px;
  right: -16.12%;
}

.btn-wrap {
  border-radius: 8px;
  background: linear-gradient(319deg, #D2ECFF 19.15%, #EFF8FF 42.84%);
  padding: 40px 4.878%;
}
.btn-wrap.--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap.--2col .btn {
  max-width: 100%;
  margin: 0 15px;
}
@media screen and (max-width: 813px) {
  .btn-wrap.--2col .btn {
    margin: 0 auto;
  }
  .btn-wrap.--2col .btn + .btn {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .btn-wrap.--2col {
    padding: 20px 5.714%;
  }
  .btn-wrap.--2col .btn {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .about-pack {
    padding: 2.3vw 0 7.69vw;
  }
  .about-pack .inner {
    padding: 0;
  }
  .about-pack .btn-wrap {
    margin: 30px auto 0;
    width: calc(100% - clamp(10px, 10.256vw, 40px));
  }
  .about-pack-ttl {
    width: 89.74%;
    margin: 0 auto 0 0;
  }
  .about-pack-ttl .deco {
    width: 56.857%;
    right: -4.857%;
    top: -10.86%;
  }
}
.our-servise {
  padding: 50px 0 40px;
  background: linear-gradient(98deg, #E9F6FF 18.47%, #F3D5FF 68.49%);
}
.our-servise .inner {
  max-width: 1060px;
}

.card-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card-item-list li {
  width: 31%;
  padding: 10px 2% 25px;
  border-radius: 15px;
  background: #FFF;
}
.card-item-list li + li {
  margin-left: 3.5%;
}

.servise-item-ttl {
  color: #0462CC;
  text-align: center;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 700;
  margin: 0 auto 18px;
}
.servise-item-ttl .point {
  display: block;
  width: 40px;
  margin: 0 auto 15px;
}

.servise-item-icon {
  max-width: 103px;
  margin: 0 auto;
  display: block;
}

.servise-item-txt {
  line-height: 1.94;
  margin: 18px 0 0;
}
.servise-item-txt .marker {
  color: #0F6FD9;
  font-weight: 700;
  padding: 0 0 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #EFB8EB));
  background: linear-gradient(transparent 90%, #EFB8EB 90%);
}

@media screen and (max-width: 767px) {
  .our-servise {
    padding: 40px 0 30px;
  }
  .card-item-list li {
    width: 100%;
    padding: 10px 5.71% 25px;
  }
  .card-item-list li.fadein.animated.__02, .card-item-list li.fadein.animated.__03 {
    -webkit-animation: fadeIn 1s forwards;
            animation: fadeIn 1s forwards;
  }
  .card-item-list li + li {
    margin: 20px 0 0;
  }
  .servise-item-ttl {
    font-size: clamp(16px, 4.62vw, 18px);
    margin: 0 auto 15px;
  }
  .servise-item-ttl .point {
    width: 43px;
  }
  .servise-item-icon {
    max-width: 110px;
  }
  .servise-item-txt {
    margin: 15px 0 0;
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.price-plan {
  padding: 50px 0;
  background: url(../img/bg-plaid.png) repeat center/1280px auto;
}
.price-plan .inner {
  max-width: 863px;
}
.price-plan .sub-ttl {
  margin: 0 auto 15px;
}

.horizontal-item-list {
  max-width: 863px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.horizontal-item-list li {
  width: 47.97%;
  border-radius: 5px;
  border: 2px solid #C5DFF9;
  background: #FFF;
  padding: 20px 3.12%;
}
.horizontal-item-list li:nth-child(2n) {
  border: 2px solid #EFB8EB;
  margin-left: 4.05%;
}
.horizontal-item-list li:nth-child(2n) .bar-title {
  background: #BC39AB;
}
.horizontal-item-list li:nth-child(2n) .table-txt th, .horizontal-item-list li:nth-child(2n) .table-txt td {
  border-bottom: 1px solid #EFB8EB;
}
.horizontal-item-list li:nth-child(2n) .table-txt td strong {
  color: #BC39AB;
}
.horizontal-item-list li .bar-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0.01em;
  border-radius: 5px;
  background: #268EEF;
  color: #FFF;
  text-align: center;
  margin: 0 auto;
}
.horizontal-item-list li .table-txt th, .horizontal-item-list li .table-txt td {
  font-weight: normal;
  border-bottom: 1px solid #C5DFF9;
  padding: 10px;
  vertical-align: baseline;
  min-width: 87px;
}
.horizontal-item-list li .table-txt th {
  text-align: left;
}
.horizontal-item-list li .table-txt td {
  text-align: right;
}
.horizontal-item-list li .table-txt td strong {
  color: #268EEF;
}
.horizontal-item-list li .table-txt td .text-large {
  font-size: 162.5%;
  vertical-align: -1px;
}
.horizontal-item-list li .table-txt tr:last-child th, .horizontal-item-list li .table-txt tr:last-child td {
  border: none;
  padding-bottom: 0;
}

.plan-comparison {
  max-width: 735px;
  margin: 40px auto 0;
}
.plan-comparison .horizontal-item-list li {
  width: 47.7%;
  padding: 20px 2.72%;
}
.plan-comparison .horizontal-item-list li:nth-child(2n) {
  margin-left: 4.6%;
}
.plan-comparison .horizontal-item-list li > img {
  margin-top: -16px;
}

.plan-conclusion {
  max-width: 301px;
  margin: 35px auto 10px;
}

@media screen and (max-width: 767px) {
  .price-plan {
    padding: 40px 0;
  }
  .horizontal-item-list {
    padding: 0 5.71%;
  }
  .horizontal-item-list li {
    width: 100%;
    padding: 20px 5.81%;
  }
  .horizontal-item-list li:nth-child(2n) {
    margin: 20px 0 0;
  }
  .plan-comparison .price-plan-ttl {
    margin: 0 auto 10px;
  }
  .plan-comparison .horizontal-item-list {
    padding: 0;
  }
  .plan-comparison .horizontal-item-list li {
    width: 100%;
    padding: 20px 5.81%;
  }
  .plan-comparison .horizontal-item-list li:nth-child(2n) {
    margin: 20px 0 0;
  }
  .plan-conclusion {
    width: 86%;
  }
}
.contact.__01 {
  padding: 38px 0 40px;
}
.contact.__01 .contact-ttl {
  width: 78.66%;
  aspect-ratio: 708/260;
  background: url(../img/contact01-bg.png) no-repeat left bottom/32.63% auto;
  margin: 0 auto;
  position: relative;
}
.contact.__01 .contact-ttl img {
  position: absolute;
}
.contact.__01 .contact-ttl .img {
  width: 27.4%;
  left: 8.19%;
  bottom: -11.92%;
  z-index: 2;
}
.contact.__01 .contact-ttl .txt {
  width: 27.97%;
  top: 5.38%;
  left: 35.45%;
}
.contact.__01 .contact-ttl .deco {
  width: 25.28%;
  top: 0;
  right: 11.72%;
}
.contact.__01 .btn {
  margin-top: -76px;
}
.contact.__02 {
  padding: 50px 0;
}
.contact.__02 .contact-ttl {
  max-width: 350px;
  margin: 0 auto;
}
.contact.__02 .btn {
  margin-top: -27px;
}

@media screen and (max-width: 767px) {
  .contact.__01 {
    padding: 43px 0 30px;
  }
  .contact.__01 .contact-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    aspect-ratio: 390/270;
    background: url(../img/contact01-bg.png) no-repeat left -16.41vw top/59.23vw auto;
  }
  .contact.__01 .contact-ttl .img {
    width: 49.74vw;
    left: -1.79%;
    bottom: -1.28vw;
  }
  .contact.__01 .contact-ttl .txt {
    width: 50.769vw;
    top: 19.487vw;
    left: 45.128vw;
  }
  .contact.__01 .contact-ttl .deco {
    width: 47.69vw;
    top: 2.3vw;
    right: 26.15vw;
  }
  .contact.__01 .btn {
    margin: 0 auto;
  }
  .contact.__02 {
    padding: 40px 0;
  }
  .contact.__02 .contact-ttl {
    width: 100%;
  }
  .contact.__02 .btn {
    margin-top: -29px;
  }
}
.pack-merit {
  padding: 50px 0;
  background: linear-gradient(122deg, #E4F4FF 24.42%, #AFDAF9 75.58%);
}

.pack-merit-ttl {
  max-width: 545px;
  margin: 0 auto 14px;
}

.pack-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 488px;
  margin: 0 auto;
}
.pack-merit-list li {
  width: 26.23%;
  margin: 0 -0.65%;
}
.pack-merit-list li:nth-child(1) {
  margin-left: 11.63%;
}
.pack-merit-list li:nth-child(3) {
  margin-right: 11.63%;
}

@media screen and (max-width: 767px) {
  .pack-merit {
    padding: 40px 0;
  }
  .pack-merit-list {
    margin: 0 -5%;
  }
  .pack-merit-list li {
    width: 32.82%;
  }
  .pack-merit-list li:nth-child(1) {
    margin-left: 0;
  }
  .pack-merit-list li:nth-child(3) {
    margin-right: 0;
  }
  .pack-merit-list li:nth-child(4) {
    margin-left: 16%;
  }
  .pack-merit-list li:nth-child(5) {
    margin-right: 16%;
  }
}
.total-support {
  padding: 37px 0 42px;
}

.total-support-ttl {
  max-width: 570px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .total-support {
    padding: 30px 0;
  }
  .total-support-ttl {
    width: 83.429%;
    margin: 0 auto 0 1.43%;
  }
}
.usage-example {
  padding: 30px 0;
  background: linear-gradient(98deg, #E9F6FF 18.47%, #F3D5FF 68.49%);
}
.usage-example .inner {
  max-width: 1060px;
}
.usage-example .card-item-list li {
  width: 32%;
  padding: 20px 2%;
}
.usage-example .card-item-list li + li {
  margin-left: 2%;
}

.usage-example-ttl {
  margin: 0 auto 15px;
}

.usage-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.usage-item-head > img {
  width: 26.785%;
  margin-right: 10px;
}
.usage-item-head > div {
  width: calc(73.215% - 10px);
}

.usage-item-title {
  color: #0F6FD9;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0.01em;
  margin: 0 auto 5px;
}

.usage-item-terms {
  color: #9B24BB;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 2.23;
  margin: 0;
}

.usage-item-txt {
  line-height: 1.94;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .usage-example {
    padding: 20px 0;
  }
  .usage-example .card-item-list li {
    width: 100%;
    padding: 20px 5.72%;
  }
  .usage-example .card-item-list li + li {
    margin: 15px auto 0;
  }
  .usage-item-title {
    font-size: clamp(16px, 4.62vw, 18px);
  }
  .usage-item-txt {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.tutorial-movie {
  padding: 50px 0 60px;
}
.tutorial-movie .inner {
  max-width: 770px;
}
.tutorial-movie .movie-wrap {
  max-width: 710px;
  margin: 0 auto;
  aspect-ratio: 710/440;
}
.tutorial-movie .movie-wrap iframe {
  width: 100%;
  height: 100%;
}

.tutorial-movie-ttl {
  max-width: 279px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
  .tutorial-movie {
    padding: 40px 0;
  }
  .tutorial-movie-ttl {
    width: 79.71%;
  }
}
.house-volume {
  padding: 30px 0;
  background: linear-gradient(319deg, #B4DEFC 19.15%, #E2F2FF 42.84%);
}

.wht-content-wrap {
  background: #FFF;
  padding: 30px 4.44%;
}

.house-volume-ttl {
  margin: 0 auto 40px;
}

.house-volume-list li {
  max-width: 664px;
  margin: 0 auto;
}
.house-volume-list li:nth-child(2) {
  margin-top: -15px;
}
.house-volume-list li:nth-child(3) {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .house-volume {
    padding: 20px 0;
  }
  .wht-content-wrap {
    padding: 23px 5.71% 25px;
  }
  .house-volume-ttl {
    margin: 0 auto 20px;
  }
  .house-volume-list li:nth-child(2) {
    margin-top: 13px;
  }
  .house-volume-list li:nth-child(3) {
    margin-top: 13px;
  }
}
.process-flow {
  padding: 50px 0;
  background: #E9F6FF;
}
.process-flow .inner {
  max-width: 1060px;
}
.process-flow .card-item-list {
  padding-top: 20px;
}
.process-flow .card-item-list li {
  width: 32%;
  padding: 20px 2%;
  margin-right: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.process-flow .card-item-list li + li {
  margin-left: 0;
}
.process-flow .card-item-list li:nth-child(3n) {
  margin-right: 0;
}
.process-flow .card-item-list li:nth-child(n+4) {
  margin-top: 40px;
}
.process-flow .card-item-list li > img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flow-item-ttl {
  color: #0F6FD9;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0.01em;
  margin: 10px auto 8px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.flow-item-ttl .no {
  width: 60px;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.flow-item-txt {
  color: #2A2A2A;
  font-size: 15px;
  line-height: 1.87;
  margin: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flow-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  margin: 15px auto 0;
}

.flow-ending {
  max-width: 734px;
  margin: -2% auto 0;
}

@media screen and (max-width: 1000px) {
  .flow-ending {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .process-flow {
    padding: 40px 0 50px;
  }
  .process-flow .card-item-list {
    margin-top: 40px;
    padding: 0 4.287%;
  }
  .process-flow .card-item-list li {
    width: 100%;
    min-height: 88.46vw;
    padding: 20px 5.72%;
    margin: 0;
  }
  .process-flow .card-item-list li + li {
    margin: 40px auto 0 !important;
  }
  .flow-item-ttl {
    font-size: clamp(16px, 4.62vw, 18px);
  }
  .flow-item-txt {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .flow-note {
    padding: 0 4.287%;
    margin: 20px auto 30px;
  }
  .flow-ending {
    width: 97.71%;
  }
}
.company-info {
  padding: 50px 0;
}

.company-info-ttl {
  max-width: 436px;
  text-align: center;
  margin: 0 auto 30px;
}
.company-info-ttl .main {
  margin-bottom: 14px;
}
.company-info-ttl .sub {
  width: 72.1%;
}

.company-info-txt {
  max-width: 700px;
  margin: 0 auto;
  color: #2A2A2A;
  line-height: 1.94;
}

@media screen and (max-width: 767px) {
  .company-info {
    overflow-x: hidden;
    padding: 40px 0;
  }
  .company-info-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 20px;
  }
  .company-info-ttl .main {
    width: 109.7vw;
    max-width: 109.7vw;
    margin: 0 auto 4px -4.1vw;
  }
  .company-info-ttl .sub {
    width: 79.488%;
  }
  .company-info-txt {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 0 5.71%;
  }
}
.faq {
  padding: 50px 0 30px;
  background: linear-gradient(319deg, #B4DEFC 19.15%, #E2F2FF 42.84%);
}

.faq-item {
  border-radius: 5px;
  border: 2px solid #C5DFF9;
  background: #FFF;
}
.faq-item + .faq-item {
  margin-top: 15px;
}

.faq-question {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-question button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  color: #000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0F6FD9;
  line-height: 1.81;
  text-align: left;
  cursor: pointer;
  padding: 20px 3.33%;
  position: relative;
}
.faq-question button span {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 3.89%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.faq-question button span::before, .faq-question button span::after {
  content: "";
  width: 14px;
  height: 2px;
  background: #8FC8FD;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-question button span::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.faq-question button.is-open span:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.faq-question button.is-open span:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 3.33% 20px;
}
.faq-answer p {
  margin: 0;
}
.faq-answer p a {
  color: #0F6FD9;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 30px 0 20px;
  }
  .faq-item {
    border: none;
  }
  .faq-item button {
    padding: 20px calc(5.71% + 30px) 20px 5.71%;
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .faq-item button span {
    top: 34px;
    right: 7.14%;
  }
  .faq-answer {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 0 5.71% 20PX;
  }
}
/* ------------------------------
　　footer
------------------------------ */
footer {
  padding: 30px 0;
  background: linear-gradient(98deg, #E9F6FF 18.47%, #F3D5FF 68.49%);
}
footer .copyright {
  font-size: 10px;
  line-height: 2.6;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  display: block;
}

.floating-bnr {
  display: none;
  position: fixed;
  margin: 15px 20px;
  z-index: 99998;
  bottom: 15px;
  right: 70px;
}
.floating-bnr .bnr-body {
  border-radius: 5px;
  border: 1px solid #C5DFF9;
  background: #FFF;
  padding: 15px 17px;
  text-align: center;
  position: relative;
}
.floating-bnr .bnr-body::after {
  content: "";
  width: 70px;
  aspect-ratio: 70/77;
  background: url(../img/bnr-img.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  right: 7px;
}
.floating-bnr .bnr-close {
  width: 22px;
  height: 22px;
  padding: 0;
  position: absolute;
  top: -7px;
  right: -6px;
  z-index: 99999;
  border: none;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
}
.floating-bnr .bnr-ttl {
  font-weight: 500;
  color: #2A2A2A;
  line-height: 1.4;
  margin: 0 auto 6px;
}
.floating-bnr .btn {
  width: 255px;
  height: 48px;
  font-size: 16px;
  line-height: 1.45;
}
.floating-bnr .btn > span::after {
  vertical-align: -3px;
}
.floating-bnr .bnr-reception {
  line-height: 1.75;
  margin: 9px auto 1px;
}
.floating-bnr .bnr-reception span {
  color: #0F6FD9;
  font-weight: 500;
  margin-right: 10px;
}
.floating-bnr .bnr-txt {
  font-size: 13px;
  margin: 0 auto;
}

.fix-btn {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
}
.fix-btn .btn {
  width: 100%;
  height: 62px;
  letter-spacing: 0.04em;
  border-radius: 0;
  background: -webkit-gradient(linear, left top, right top, from(#0474DB), to(#CB0BB1));
  background: linear-gradient(90deg, #0474DB 0%, #CB0BB1 100%);
}
.fix-btn .btn > span::after {
  vertical-align: -2px;
}

@media screen and (max-width: 767px) {
  .floating-bnr {
    display: none;
  }
}
.footer-inner {
  max-width: 370px;
  padding: 0 30px;
  margin: 0 auto;
}

.footer-ttl {
  color: #2A2A2A;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.14em;
  margin: 0 auto 15px;
  text-align: center;
}

.footer-nav {
  padding: 0 20px;
  margin-bottom: 20px;
}
.footer-nav ul {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #2A2A2A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-nav ul li {
  width: 48.15%;
  text-align: center;
  line-height: 2;
}
.footer-nav ul li:nth-child(2n) {
  margin-left: 10px;
}
.footer-nav ul li:nth-child(n+3) {
  margin-top: 12px;
}
.footer-nav ul li a {
  display: block;
  position: relative;
}
.footer-nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #2A2A2A;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav ul li a:hover::after {
  visibility: visible;
  bottom: 0;
  opacity: 1;
}

.pagetop-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  padding: 0;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  display: none;
  -webkit-transition: 0s;
  transition: 0s;
}
.pagetop-btn:hover img {
  -webkit-filter: saturate(200%);
          filter: saturate(200%);
}
.pagetop-btn img {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 92px;
  }
  .footer-ttl {
    font-size: clamp(18px, 5.38vw, 21px);
  }
  .pagetop-btn {
    right: 15px;
    bottom: 78px;
  }
}
/* ------------------------------
　　contact
------------------------------ */
#formWrap {
  padding: 60px 0 50px;
  margin: 0 auto;
  color: #000;
}
#formWrap.input, #formWrap.confirm {
  background: #E2F2FF;
}
#formWrap .inner {
  max-width: 660px;
}

.contact-ttl {
  color: #0F6FD9;
}

.contact-txt {
  font-size: 16px;
  line-height: 1.9375;
  margin: 0 auto 30px;
}
.contact-txt + .btn {
  margin-top: 50px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
table.formTable th, table.formTable td {
  display: block;
  width: 100%;
  font-size: 16px;
}
table.formTable th {
  color: #0F6FD9;
  font-weight: 500;
  text-align: left;
  padding: 20px 0 0;
}
table.formTable td {
  padding: 9px 0 0;
}
table.formTable td p {
  font-size: 14px;
  margin: 0;
}

form input[type=text], form input[type=email], form input[type=date], form textarea, form select {
  height: 57px;
  padding: 12px;
  font-size: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #C5DFF9;
  background: #FFF;
}
form input[type=text]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form input[type=date]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder, form select::-webkit-input-placeholder {
  color: #969696;
}
form input[type=text]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=date]::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: #969696;
}
form input[type=text]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form input[type=date]:-ms-input-placeholder, form textarea:-ms-input-placeholder, form select:-ms-input-placeholder {
  color: #969696;
}
form input[type=text]::-ms-input-placeholder, form input[type=email]::-ms-input-placeholder, form input[type=date]::-ms-input-placeholder, form textarea::-ms-input-placeholder, form select::-ms-input-placeholder {
  color: #969696;
}
form input[type=text]::placeholder, form input[type=email]::placeholder, form input[type=date]::placeholder, form textarea::placeholder, form select::placeholder {
  color: #969696;
}
form input[type=text], form input[type=email], form textarea {
  width: 100%;
}
form textarea {
  min-height: 200px;
  line-height: 2;
  padding: 10px 15px;
}
form textarea::-webkit-input-placeholder {
  color: #969696;
}
form textarea::-moz-placeholder {
  color: #969696;
}
form textarea:-ms-input-placeholder {
  color: #969696;
}
form textarea::-ms-input-placeholder {
  color: #969696;
}
form textarea::placeholder {
  color: #969696;
}
form input[type=date] {
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  /* iOS Safariだけはみ出し防止 */
}
@supports (-webkit-touch-callout: none) {
  form input[type=date] {
    min-width: 0;
    -webkit-appearance: none;
    text-align: left !important;
  }
}
form input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
form input[type=date]::after {
  content: "";
  background-image: url(../img/icon-calendar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
form input[type=checkbox], form input[type=radio] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-right: 10px;
}
form label + input[type=checkbox],
form label + input[type=radio] {
  margin-left: 25px;
}
form .col-6 {
  width: 50%;
}
form .col-12 {
  width: 100%;
}
form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
form select::-ms-expand {
  display: none;
}

.privacy-txt {
  font-size: 14px;
  font-weight: 500;
  margin: 30px auto 35px;
}
.privacy-txt a {
  text-decoration: underline;
}

.radio-item {
  display: inline-block;
  margin: 3px 25px 3px 0;
}

.label-required {
  display: inline-block;
  border-radius: 5px;
  background: #258CE0;
  color: #FFF;
  font-size: 15px;
  line-height: 29px;
  padding: 0 10px;
  margin-left: 9px;
}

.label-optional {
  display: inline-block;
  background: #C5DFF9;
  color: #0F6FD9;
  border-radius: 5px;
  font-size: 15px;
  line-height: 29px;
  padding: 0 10px;
  margin-left: 9px;
}

.privacy-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 335px;
  max-width: 100%;
  margin: 0 auto;
}
.privacy-check label {
  width: calc(100% - 30px);
}
.privacy-check .error {
  width: 100%;
}

.contact-btn-wrap {
  margin-top: 50px;
}
.contact-btn-wrap.__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-btn-wrap.__2col .btn + .btn {
  margin-left: 15px;
}
.contact-btn-wrap .btn {
  padding: 0;
}
.contact-btn-wrap .btn::before {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/icon-arrow.svg) no-repeat center/cover;
  position: absolute;
  top: calc(50% + 1px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.contact-btn-wrap input {
  background: transparent;
  border: none;
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 19px;
  font-style: normal;
  letter-spacing: 0.04em;
  font-weight: 700;
  width: 310px;
  max-width: 100%;
  height: 58px;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.confirm-btn::before {
  right: calc(50% - 18px - 4.2em);
}

.send-btn::before {
  right: calc(50% - 18px - 1.4em);
}

.return-btn {
  background: #F3D5FF;
  color: #2A2A2A;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.return-btn input {
  color: #2A2A2A;
}
.return-btn::before {
  background: url(../img/icon-arrow_blk.svg) no-repeat center/cover !important;
  left: calc(50% - 18px - 1.4em);
}
.return-btn::after {
  content: none;
}
@media (hover: hover) and (pointer: fine) {
  .return-btn:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  #formWrap {
    padding: 30px 0 50px;
  }
  #formWrap .inner {
    padding: 0 clamp(20px, 10.256vw, 40px);
  }
  form input[type=date] {
    width: 100%;
  }
  form .col-6 {
    width: 100%;
  }
  .privacy-txt {
    margin: 30px auto 20px;
  }
  .privacy-check {
    width: 310px;
  }
  .contact-txt {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .contact-txt + .btn {
    margin-top: 30px;
  }
  .contact-btn-wrap {
    margin-top: 30px;
  }
  .contact-btn-wrap input {
    width: 100%;
  }
  .contact-btn-wrap.__2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .contact-btn-wrap.__2col .btn + .btn {
    margin: 15px auto;
  }
  .confirm table.formTable th {
    padding: 30px 0 0;
  }
}
/*# sourceMappingURL=style.css.map */