@charset "UTF-8";

body {
  font-family: "Kiwi Maru", serif, serif;
  color: #545454;
}

/* リキッドレイアウト対応 */
/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  a: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%;
}

/* 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;
}

.btn-cta-container {
  display: flex;
}

.btn-cta {
  width: 100%;
  max-width: 180px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .btn-cta-container {
    padding-right: 16px;
  }

  .btn-cta:nth-child(2) {
    margin-left: 10px;
  }
}

/* .btn-cta a {
  text-align: center;
  display: block;
  border-radius: 60px;
  background-color: #f2a44c;
  border: 1px solid #f2a44c;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  position: relative;
  padding: 19.2px 0;
  padding: 1.2rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .btn-cta a {
    font-size: 1rem;
    padding: 0.8em 0;
  }
}

.btn-cta a:hover {
  background-color: #fff;
  color: #f2a44c;
}

.btn-cta a::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%) scale(0.7) rotate(45deg);
  transform: translateY(-50%) scale(0.7) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn-cta a::after {
    width: 16px;
    height: 16px;
    right: 74px;
  }
}

.btn-cta a:hover:after {
  border-top: 3px solid #f2a44c;
  border-right: 3px solid #f2a44c;
  -webkit-transform: translateY(-50%) scale(0.7) rotate(45deg);
  transform: translateY(-50%) scale(0.7) rotate(45deg);
} */

.inquiry{
  margin-top: 80px;
}

.btn-inquiry {
  max-width: 400px;
  width: 100%;
  margin: 56px auto 0;
}

@media screen and (max-width: 768px) {
  .btn-inquiry {
    padding: 0 15px;
    margin: 30px auto 0;
    max-width: 500px;
  }
}

.btn-inquiry a {
  display: block;
  border-radius: 60px;
  background-color: #00b6bc;
  border: 1px solid #00b6bc;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  position: relative;
  padding: 19.2px 0;
  padding: 1.2rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .btn-inquiry a {
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1.2rem;
  }
}

.btn-inquiry a:hover {
  background-color: #fff;
  color: #00b6bc;
}

.btn-inquiry a::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%) scale(0.7) rotate(45deg);
  transform: translateY(-50%) scale(0.7) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn-inquiry a::after {
    width: 18px;
    height: 18px;
    right: 20px;
  }
}

.btn-inquiry a:hover:after {
  border-top: 3px solid #00b6bc;
  border-right: 3px solid #00b6bc;
  -webkit-transform: translateY(-50%) scale(0.7) rotate(45deg);
  transform: translateY(-50%) scale(0.7) rotate(45deg);
}

.can-do {
  margin-bottom: 0;
}

.can-do .card {
  background-color: #fff;
  width: 46%;
}

@media screen and (max-width: 768px) {
  .can-do .card {
    width: 100%;
  }
}

.can-do .cards {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.can-do .card.cando1 img {
  width: 76%;
  margin: 29px auto 0;
}

.can-do .card.cando2 img {
  width: 64%;
  margin: 55px auto 0;
}

.can-do .card__title {
  margin-top: 10px;
}

.can-do .card__title,
.can-do .card__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {

  .can-do .card__title,
  .can-do .card__text {
    font-size: 1rem;
  }
}

.can-do .card__text {
  margin-top: 0;
}

.can-do .card__desc {
  padding: 23px 20px 35px 38px;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.card {
  border-radius: 10px;
  width: calc(33.33333% - 10px);
  background-color: #f6f6f6;
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
    margin: 0 auto;
  }
}

.card:nth-child(n+2) {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .card:nth-child(n+2) {
    margin-left: auto;
    margin-top: 40px;
  }
}

.card__title {
  color: #00b6bc;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .card__title {
    font-size: 1rem;
  }
}

.card__desc {
  padding: 23px 20px 20px 24px;
}

.card__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .card__text {
    font-size: 1rem;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 700px;
  }
}

@media screen and (max-width: 450px) {
  .inner {
    max-width: 350px;
  }
}

.second-font {
  font-family: "Noto Sans JP", sans-serif;
}

h1, h2 {
  font-weight: 400;
}

.h2-center {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .h2-center {
    font-size: 1.625rem;
    margin-bottom: 30px;
    line-height: 1.3;
  }
}

.h2-center span {
  color: #00b6bc;
}

section {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

.title {
  text-align: center;
}

.title p {
  color: #00b6bc;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .title p {
    font-size: 0.875rem;
  }
}

.shadow {
  -webkit-box-shadow: 0px 5px 5px rgba(51, 51, 51, .3);
  box-shadow: 0px 5px 5px rgba(51, 51, 51, .3);
}

.can-do,
.reason,
.omparison-table,
.step,
.sdgs {
  background-color: #f6f6f6;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {

  .can-do,
  .reason,
  .omparison-table,
  .step,
  .sdgs {
    padding: 40px 15px;
  }
}

@media screen and (max-width: 768px) {

  .point,
  .how-to-use {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bold {
  font-weight: bold;
}

/*****スクロール時にふわっと**********/
.fadein,
.fade {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  opacity: 0;
}

.fadein.scrollin,
.fade.load {
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
  
}

.cta {
  background-image: url(../images/cta-back@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -315px;
  margin-bottom: 0px;
}

@media screen and (max-width: 1079px) {
  .cta {
    background-position: 0 0;
    padding-top: 20px;
  }
}

@media screen and (max-width: 1079px) {
  .cta .inner {
    max-width: 100%;
  }
}

.cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1079px) {
  .cta__box {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 450px) {
  .cta__box {
    margin-top: -60px;
    padding-top: 90px;
    padding-bottom: 20px;
  }
}



.cta__wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta__wrapper--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1079px) {
  .cta-granma {
    width: 50%;
    transform: translateX(-10px);
  }
}

.cta-granma.pc {
  width: 40%;
  height: inherit;
  background-image: url(../images/granma@2x.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}


@media screen and (max-width: 450px) {
  .cta-granma {
    width: 50%;
    transform: translateX(0px);
    transform: translateY(-40px);
  }
}

/* .cta p {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0 20px 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px #fff, 0 0 15px #fff;
}

@media screen and (max-width: 1079px) {
  .cta p {
    padding: 15px 15px 40px;
    font-size: 0.625rem;
  }
} */

/* .cta__desc {
  width: 60%;
} */

@media screen and (max-width: 1079px) {
  .cta__desc {
    width: 100%;
  }
}

.cta-pay {
  width: 130%;
  max-width: 130%;
  margin-left: 17px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1079px) {
  .cta-pay {
    max-width: 100%;
    width: 90%;
    margin-bottom: 12px;
    /* padding-left: 20px; */
  }
}

.cta-title {
  margin: 40px 0 20px 0;
  margin-left: 10px;
}

@media screen and (max-width: 1079px) {
  .cta-title {
    width: 80%;
    height: auto;
    height: initial;
    margin-top: -20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .cta-title {
    width: 100%;
    height: auto;
    height: initial;
    margin-top: -20px;
    margin-left: 0;
  }
}

.footer {
  width: 100%;
  background-color: #00b6bc;
  text-align: center;
  color: #fff;
  padding: 30px 0;
}

.footer p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .footer p {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header {
  width: 100%;
  height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid #00b6bc;
  z-index: 1000;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}

.header-logo {
  width: 160px;
  height: 60px;

  padding-top: 9px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 120px;
    height: 45px;
    margin-left: 15px;
    padding-top: 7px;
  }
}

/**************/
.header .inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/********/
.p-hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  z-index: 1000;
}

.p-hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #545454;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-hamburger span:nth-child(1) {
  top: 10px;
}

.p-hamburger span:nth-child(2) {
  top: 20px;
}

.p-hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のバツボタン */
.p-hamburger.active span:nth-child(1) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-hamburger.active span:nth-child(2),
.p-hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*********/
/* ナビメニュー内 */
.p-globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 70px;
  left: 0;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .p-globalMenuSp {
    top: 50px;
  }
}

.p-globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.p-globalMenuSp__link {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  text-align: left;
}

.p-globalMenuSp__link:last-child {
  padding-bottom: 0;
}

.p-globalMenuSp__link:nth-child(n+2) {
  border-top: 1px solid #00b6bc;
}

.p-globalMenuSp__link a {
  display: block;
  color: #545454;
  padding: 0.6em 0 0.6em 1em;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
}

/* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
nav.p-globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

.p-globalMenuPc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 1rem;
  gap: 20px;
}

.p-globalMenuPc__link {
  transition: .3s;
}

.p-globalMenuPc__link a:hover {
  color: #00b6bc;
  transition: .3s;
}

/*********************/
.how-to-use .col-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 10px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 15px;
  }
}

.how-to-use .col-point:nth-child(n+3) {
  margin-top: 40px;
}

.how-to-use .col-point:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.how-to-use .point-detail {
  max-width: 540px;
  margin-bottom: 0;
}

.how-to-use .col-point:nth-child(even) .point-detail {
  padding-left: 39px;
  margin-top: -37px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point:nth-child(even) .point-detail {
    margin-top: 20px;
    padding-left: 0;
  }
}

.how-to-use .col-point:nth-child(even) .img-point {
  margin-right: 78px;
  margin-top: 16px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point:nth-child(even) .img-point {
    width: 74%;
    margin: 20px auto 0;
  }
}

.how-to-use .col-point:nth-child(odd) .img-point {
  margin-left: 88px;
  margin-top: 16px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point:nth-child(odd) .img-point {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-to-use .point3 .ttl-point {
  margin-top: -11px;
}

.how-to-use .point3.col-point:nth-child(even) .img-point {
  margin-right: 110px;
  margin-top: 39px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .point3.col-point:nth-child(even) .img-point {
    margin-right: auto;
  }
}

.how-to-use .col-point:nth-child(odd) .point-detail {
  margin-right: 45px;
  margin-top: -62px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .col-point:nth-child(odd) .point-detail {
    margin-top: 20px;
    margin-right: 0;
  }
}

.how-to-use .point4.col-point:nth-child(odd) .img-point {
  margin: 17px 0px 15px 113px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .point4.col-point:nth-child(odd) .img-point {
    margin: 17px 0px 15px 0px;
  }
}

.how-to-use .point4 .ttl-point {
  margin-top: 14px;
}

.how-to-use .ttl-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.how-to-use .ttl-point .point-num {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #00b6bc;
  text-transform: uppercase;
  font-weight: bold;
  color: #00b6bc;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .how-to-use .ttl-point .point-num {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}

.how-to-use .ttl-point .point-num p {
  line-height: 1.2;
  display: block;
  padding-top: 13px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 1079px) {
  .how-to-use .ttl-point .point-num p {
    font-size: 0.875rem;
  }
}

.how-to-use .ttl-point .point-num p span {
  font-size: 24px;
  font-size: 1.5rem;
  color: #999999;
}

@media screen and (max-width: 1079px) {
  .how-to-use .ttl-point .point-num p span {
    font-size: 1.125rem;
  }
}

.how-to-use .point-txt {
  margin-top: 14px;
}

@media screen and (max-width: 1079px) {
  .how-to-use .point-txt {
    font-size: 0.875rem;
  }
}

.how-to-use .ttl-point h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #00b6bc;
  margin-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 1079px) {
  .how-to-use .ttl-point h3 {
    font-size: 1rem;
  }
}

.inquiry__box {
  background-color: #f6f6f6;
  padding: 34px 40px;
}

@media screen and (max-width: 768px) {
  .inquiry__box {
    padding: 25px 25px;
  }
}

.inquiry__box-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inquiry__box-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 16px;
}

.inquiry__box-q img,
.inquiry__box-a img {
  width: 53px;
  height: 53px;
}

.inquiry__box-q p {
  color: #00b6bc;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-left: 24px;
}

@media screen and (max-width: 768px) {
  .inquiry__box-q p {
    font-size: 1.125rem;
  }
}

.inquiry__box-a p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 24px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .inquiry__box-a p {
    font-size: 1rem;
  }
}

.inquiry__box-q:nth-child(n+2) {
  border-top: 1px solid #00b6bc;
  margin-top: 36px;
  padding-top: 43px;
}

@media screen and (max-width: 768px) {
  .inquiry__box-q:nth-child(n+2) {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.message {
  max-width: 780px;
  width: 100%;
  margin: -64px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .message {
    margin: 0px auto;
    width: 90%;
  }
}

.bell {
  width: 64px;
  height: 64px;
  position: absolute;
  top: -20px;
  right: -17px;
}

@media screen and (max-width: 768px) {
  .bell {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 41%;
  }
}

.message .h2-center {
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .message .h2-center {
    font-size: 1.25rem;
  }
}

.message .h2-center span {
  display: block;
}

@media screen and (max-width: 768px) {
  .message .h2-center span {
    display: inline;
  }
}

.h2-center+p {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 19px;
}

@media screen and (max-width: 768px) {
  .h2-center+p {
    font-size: 1rem;
  }
}

.message .h2-center {
  margin-bottom: 18px;
}

.mv {
  background-image: url(../images/mv-pc.jpg);
  background-position: 80% 50%;
  width: 100%;
  margin-bottom: 0;
  background-color: #fff;
}

@media screen and (min-width: 1500px) {
  .mv {
    background-position: center;
    background-image: url(../images/mv-pc-1980.png);
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: 100%;
    background-position: left;
    background-color: #fff;
    background-size: cover;
  }
}

.mv h1 {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1.28;
  letter-spacing: -0.09em;
}

@media screen and (max-width: 1079px) {
  .mv h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .mv h1 {
    text-align: center;
    font-size: 2.875rem;
    margin-left: 5%;
  }
}

@media screen and (max-width: 374px) {
  .mv h1 {
    font-size: 2.5rem;
  }
}

.mv__subtitle p {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: -0.07em;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1079px) {
  .mv__subtitle p {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .mv__subtitle p {
    text-align: center;
    font-size: 1.75rem;
    letter-spacing: -0.08em;
  }
}

@media screen and (max-width: 374px) {
  .mv__subtitle p {
    font-size: 1.5rem;
  }
}

.mv__subtitle {
  position: relative;
}

.bar-img {
  position: absolute;
  top: 43px;
  left: 0;
  max-width: 482px;
  z-index: 0;
}

@media screen and (max-width: 1079px) {
  .bar-img {
    top: 30px;
    max-width: 363px;
  }
}

@media screen and (max-width: 768px) {
  .bar-img {
    max-width: 335px;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media screen and (max-width: 374px) {
  .bar-img {
    max-width: 293px;
    top: 24px;
  }
}

.mv__cont {
  padding: 4% 0 9%;
  width: 50%;
  
}

@media screen and (min-width: 1400px) {
  .mv__cont {
    padding: 5% 0 10%;
    
  }
}

@media screen and (max-width: 768px) {
  .mv__cont {
    width: 100%;
    
  }
}

.mv__cont .two-woman {
  width: 85%;
  margin: 30px auto 0;
}

.mv__3point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .mv__3point {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.mv__point {
  width: 150px;
  height: 150px;
  font-size: 16px;
  border-radius: 50%;
  background-color: #31af2b;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .mv__point {
    width: 110px;
    height: 110px;
  }
}

@media screen and (max-width: 374px) {
  .mv__point {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1079px) {
  .mv__point p {
    font-size: 0.875rem;
    line-height: 1;
  }
}

@media screen and (max-width: 374px) {
  .mv__point p {
    font-size: 0.75rem;
  }
}

.mv__point:nth-child(n+2) {
  margin-left: 15px;
}

@media screen and (max-width: 1079px) {
  .mv__point:nth-child(n+2) {
    margin-left: 10px;
  }
}

.mv__point img {
  margin: 0 auto;
}

.mv__point.-sp img {
  width: 33px;
  height: 52px;
  margin-top: 23px;
}

@media screen and (max-width: 1079px) {
  .mv__point.-sp img {
    width: 23px;
    height: 36.4px;
    margin-top: 17px;
  }
}

.mv__point.-mail img {
  width: 49px;
  height: 34px;
  margin-top: 36px;
}

@media screen and (max-width: 1079px) {
  .mv__point.-mail img {
    width: 34.3px;
    height: 23.8px;
    margin-top: 26px;
  }
}

.mv__point.-arrow img {
  width: 46px;
  height: 50px;
  margin-top: 30px;
}

@media screen and (max-width: 1079px) {
  .mv__point.-arrow img {
    width: 32.2px;
    height: 35px;
    margin-top: 23px;
  }
}

.mv__point.-sp img+p {
  margin-top: 6px;
}

.mv__point.-mail img+p {
  margin-top: 13px;
}

.mv__point.-arrow img+p {
  margin-top: 2px;
}

@media screen and (max-width: 1079px) {
  .mv__point.-arrow img+p {
    margin-top: 5px;
  }
}

.mv__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 30px;
  width: 78%;
}

.mv__link a:hover,
.btn-cta:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .mv__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__link a:last-child {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .mv__link a:last-child {
    margin-left: 20px;
  }
}

.monitor-btn {
  width: 231px;
  height: 231px;
  position: fixed;
  bottom: 67px;
  bottom: 4.1875rem;
  right: 53px;
  right: 3.3125rem;
  z-index: 100;
}

.monitor-btn {
  transition: .3s;
}

.monitor-btn:hover {
  transform: translateY(10px);
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .monitor-btn {
    width: 135px;
    height: 135px;
    bottom: 1.875rem;
    right: 0.9375rem;
  }
}

.omparison-table__cont {
  background-color: #fff;
  width: 75%;
  padding: 30px 40px 35px 40px;
  margin: 0 auto;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .omparison-table__cont {
    width: 100%;
    padding: 30px 20px 35px 20px;
    margin: 0 auto;
  }
}

.omparison-table__table {
  overflow-x: auto;
  max-width: 809px;
}

.omparison-table__table img {
  width: 100%;
  max-width: 809px;
}

@media screen and (max-width: 768px) {
  .omparison-table__table img {
    width: 540px;
  }
}

.omparison-table__cont p {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .omparison-table__cont p {
    font-size: 0.875rem;
  }
}

.omparison-table__table+p {
  color: #00b6bc;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .omparison-table__table+p {
    font-size: 1rem;
  }
}

.point {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .point {
    margin-top: 40px;
  }
}

.point .h2-center {
  padding-left: 42px;
}

@media screen and (max-width: 768px) {
  .point .h2-center {
    padding-left: 0;
  }
}

.price__cont {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 30px 20px 40px 30px;
  text-align: center;
}

.price__cont-monitor {
  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;
}

.price__cont-family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .price__cont-family {
    display: block;
  }
}

.price__cont-family+p {
  margin-top: 20px;
}

.price__point {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 58px;
}

@media screen and (max-width: 768px) {
  .price__point {
    font-size: 1.25rem;
  }
}

.price__point span {
  color: #00b6bc;
  font-size: 36px;
  font-size: 2.25rem;
}

@media screen and (max-width: 768px) {
  .price__point span {
    font-size: 1.75rem;
  }
}



/* ピースサインのご利用例
---------------------------------*/

.example-col {margin-bottom: 40px;}

.example-col p:first-child {margin-bottom: 30px;}

.exp-img-sp {width: 100%;}

.exp-img-pc {display: none;}
.exp-catch-pc {display: none;}

.price-img-pc {display: none;}

.set-col-read {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.set-col-detail {
  border: 1px solid #cccccc;
  border-radius: 12px;
  padding: 1rem 2vw;
  margin-bottom: 15px;
}

.set-col-detail-l {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.detail-person {max-width: 68px;}

.detail-person img {width: 100%;}

.detail-txt {
  width: calc(100% - 82px);
  font-size: 1.3rem;
}

.detail-txt dt {
  font-weight: bold;
  font-size: 1.4rem;
  font-family: 'Kosugi Maru', sans-serif;
}

.set-col-detail-r img {
  width: 100%;
}

.set-alert-txt {
  font-size: 1.2rem;
  color: #f35523;
}

/* ご利用料金
---------------------------------*/

.price-info {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.price-img-intro img {width: 100%;}

.price-img6-pc {display: none;}

@media (min-width: 481px) and (max-width: 768px) {

  .page-kv-ttl h1.price-pageTtl {
    width: 212px;
  }

  /* read */
  .page-read.price .page-read-appy {
    width: 76px;
  }

  .page-read.price p {
    width: calc(100% - 106px);
    font-size: 1.7rem;
  }
 
  .price-img-sp {display: none;}
  .price-img-pc {
    display: block;
    width: 100%;
  }

  .price-Annotation li {
    margin-bottom: 5px;
  }

  /* アプリcta */

  .price-app h3 {
    font-size: 2.7rem;
    text-align: center;
    width: 60%;
  }

  .price-app-cta {
    display: flex;
    justify-content: space-between;
  }

  .price-app-cta li.col-bgWhite {
    padding: 10px 2vw;
    width: 48%;
  }

  .price-app-cta li:first-child {
    margin-bottom: 0;
  }

  .exp-img-sp {display: none;}
  .exp-img-pc {
    display: block;
    max-width: 100%;
  }

  .exp-catch-sp {display: none;}
  .exp-catch-pc {
    width: 90%;
    margin: 0 auto;
    display: block;
  }

  .set-col-read {
    text-align: center;
    font-size: 1.6rem;
  }

  .set-col-detail-l {
    align-items: center;
  }

  .detail-person {max-width: 76px;}

  .detail-txt {
    width: calc(100% - 96px);
    font-size: 1.4rem;
  }

  .set-col-detail-r {text-align: center;}

  .set-col-detail-r img {
    width: 60%;
  }

  .price-info {
    font-size: 1.6rem;
  }

}

@media (min-width: 481px) {
  .page-kv-ttl.price-kv {
    background: #ffffff url(../../price/images/kv-price-pc.jpg) no-repeat right bottom/contain;
    background-origin: border-box;
  }

  .price-img6-pc {display: block;}
  .price-img6-sp {display: none;}

}

/* //mediaquery */

@media (min-width: 769px) {

  .page-kv-ttl.price-kv {padding: 0;}

  .page-kv-ttl h1.price-pageTtl {
    width: 226px;
  }
  
  .price-img-sp {display: none;}
  .price-img-pc {display: block;}

  .price-Annotation li {margin-bottom: 5px;}

  .price-app h3 {
    font-size: 32px;
    margin: 0;
    text-align: center;
    justify-content: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .price-app h3::before {
    content: url(../../price/images/price-appy2.svg);
    width: 62px;
  }

  .price-app-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .price-app-cta li > p {font-size: 18px;}

  .price-app-cta li:first-child {margin-bottom: 0;}

  .price-app-cta li.col-bgWhite {padding: 20px 10px;}

.price-app-cta li img {width: 240px;}


  /* ピースサインのご利用例 */

  .exp-img-sp {display: none;}
  .exp-img-pc {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .exp-catch-sp {display: none;}
  .exp-catch-pc {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .example-col {
    margin-bottom: 60px;
    text-align: center;
  }

  .set-col-read {
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
  }

  .set-col-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .set-col-detail-l {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .detail-txt {
    font-size: 14px;
    line-height: 1.8;
  }

  .detail-txt dt {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .set-col-detail-r {
    border-left: 1px solid #cccccc;
    padding-left: 15px;
  }

  .set-col-detail-r img {
    max-width: 100%;
  }

  .set-alert-txt {font-size: 14px;}





  /* ご利用料金
  ---------------------------------*/
  .price-info {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }

  .price-img-intro img {
    max-width: 860px;
    margin: 0 auto;
  }

}

@media (max-width: 450px) {

  .set-col-detail-l {
    flex-direction: column;
    align-items: center;
  }
  
  .detail-txt{
    width: calc(100% - 40px);
  }

}


/*****画像の大きさ***/
.img500pay {
  width: 29%;
  margin-right: 30px;
  margin-top: 17px;
}

.monitor-arrow {
  width: 20.6%;
  margin-right: 17px;
  margin-top: 12px;
}

.monitor0 {
  width: 42%;
  margin-top: 8px;
}

.parent {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .parent {
    width: 70%;
    margin: 0 auto;
  }
}

.family {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .family {
    width: 70%;
    margin: 20px auto 0;

  }
}

.reason {
  padding: 78px 10px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .reason {
    padding: 40px 10px;
    margin-bottom: 0px;
  }
}

.reason .card {
  background-color: #fff;
}

.sdgs {
  text-align: center;
  margin-bottom: 0;
}

.sdgs .h2-center {
  margin-bottom: 30px;
}

.sdgs img {
  width: 59%;
  margin: 43px auto 0;
}

@media screen and (max-width: 768px) {
  .sdgs img {
    width: 90%;
  }
}

.step {
  margin-bottom: 0;
}

.step .h2-center {
  margin-bottom: 45px;
}

.step__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1079px) {
  .step__cont {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.step-family,
.step-parent {
  
  border-radius: 10px;
  padding: 20px 0px 40px 0px;
}

@media screen and (max-width: 1079px) {

  .step-family,
  .step-parent {
    padding: 0;
    width: 100%;
  }
}

.step-parent {
  margin-top: 70px;
}

@media screen and (max-width: 1079px) {
  .step-parent {
    margin-top: 20px;
  }
}

.step-family__title,
.step-parent__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-left: 203px;
  margin-bottom: 17px;
}

@media screen and (max-width: 1079px) {

  .step-family__title,
  .step-parent__title {
    margin-left: 0;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 20px;
    line-height: 1.3;
  }
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1079px) {
  .steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 108px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1079px) {
  .step-parent .steps {
    margin-top: 110px;
  }
}

.step-box {
  width: 15.2%;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (max-width: 1079px) {
  .step-box {
    width: 75%;
    margin-bottom: 20px;
  }
}

.step-box:last-child {
  width: 25%;
}

@media screen and (max-width: 1079px) {
  .step-box:last-child {
    width: 75%;
  }
}

.step-box p {
  padding: 0px 15px 15px 15px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  height: 105px;
}

@media screen and (max-width: 1079px) {
  .step-box p {
    text-align: center;
    height: auto;
  }
}

.step-box:nth-child(n+2) {
  margin-left: 20px;
}

@media screen and (max-width: 1079px) {
  .step-box:nth-child(n+2) {
    margin-left: 0;
  }
}

p.step-box__title {
  color: #fff;
  background-color: #00b6bc;
  text-align: center;
  border-radius: 10px 10px 0 0;
  height: 82px;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3px;
  padding-top: 13px;
}

@media screen and (max-width: 1079px) {
  p.step-box__title {
    height: 50px;
    font-size: 0.875rem;
    /* padding-top: 10px; */
  }
}

.step-box__title span {
  display: block;
  margin-top: 5px;
}

.step-box:first-child {
  position: relative;
}

p.monitor-end-txt {
  padding-top: 22px;
  text-align: left;
}

/********アイコンの大きさ******/
.step-box img {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

img.step-family-img {
  position: absolute;
  width: 53%;
  top: -102px;
  left: 50px;
}

@media screen and (max-width: 1079px) {
  img.step-family-img {
    width: 88px;
    top: -105px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

img.step-parent-img {
  position: absolute;
  width: 55%;
  top: -100px;
  left: 39px;
}

@media screen and (max-width: 1079px) {
  img.step-parent-img {
    width: 93px;
    top: -105px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.green-long-arrow {
  margin-left: 20px;
  width: 89%;
  margin-top: 69%;
}

@media screen and (max-width: 1079px) {
  .green-long-arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 0;
    margin-top: 41%;
    width: 100%;
    margin-bottom: 60%;
    display: none;
  }
}

.step-icon {
  height: 109px;
}

img.sp-icon {
  width: 25%;
  padding-top: 25px;
}

@media screen and (max-width: 1079px) {
  img.sp-icon {
    width: 46.6px;
  }
}

img.yen-icon {
  width: 36%;
  padding-top: 30px;
}

@media screen and (max-width: 1079px) {
  img.yen-icon {
    width: 64.9px;
  }
}

img.mail-icon {
  width: 31%;
  padding-top: 41px;
}

@media screen and (max-width: 1079px) {
  img.mail-icon {
    width: 64.7px;
  }
}

img.arrow-icon {
  width: 28%;
  padding-top: 32px;
}

@media screen and (max-width: 1079px) {
  img.arrow-icon {
    width: 64.7px;
  }
}

.test {
  font-size: 32px;
  font-size: 2rem;
  background-color: #111;
  color: #fff;
}

section.worries {
  margin-bottom: -35px;
  overflow: hidden;
}

.worries .h2-center {
  margin-bottom: 17px;
}

.worries__img {
  position: relative;
  /* padding-left: 20%; */
  z-index: 1;
}

.worries__img img {
  max-width: 672px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .worries__img {
    /* padding-left: 2%; */
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .worries img {
    width: 100%;
    max-width: 100%;
  }
}

.worries__img p {
  font-size: 32px;
  font-size: 2rem;
  position: absolute;
  letter-spacing: -0.05em;
  top: 16%;
  left: 27.4%;
  z-index: 2;
}

@media screen and (max-width: 1079px) {
  .worries__img p {
    font-size: 1.5rem;
    left: 28%;
  }
}

@media screen and (max-width: 768px) {
  .worries__img p {
    font-size: 1.625rem;
    /* left: calc(50% - 210px); */
    top: 17%;
  }
}

@media screen and (max-width: 599px) {
  .worries__img p {
    font-size: 1.125rem;
    left: calc(50% - 146px);
    top: 15%;
  }
}

@media screen and (max-width: 374px) {
  .worries__img p {
    width: 100%;
    font-size: 1rem;
    left: calc(50% - 126px);
  }
}

.enq-link {
  border-bottom: 1px solid #545454;
  font-weight: bold;
}

.enq-link:hover {
  opacity: 0.8;
}

.movie {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  /* margin-bottom: 80px; */
}

.movie__text {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: bold;
}

.movie .inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1079px) {
  .movie {
    margin-top: 40px;
  }

  .movie__text {
    font-size: 1rem;
    font-weight: normal;
  }

  .worries .movie {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */


/*暮らすめいとLP*/

.kurasumeito{
  width: 100%;
}

.kurasumeito_title{
  padding: 5px 10px;
  background-color: #fff;
  color: #31af2b;
  border-radius: 5px;
  border: solid 2px #31af2b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 10px;
}

.feeling{
  margin-top: 120px;
  
  }

.feeling .flex{

display: flex;
justify-content: center;
}

.feeling .flex .left{

  margin-right: 20px;
  
  }

.line_cta{
  padding: 10px 20px;
  background-color: #fff;
  margin: 20px 0 30px 0;
  margin-left: 0px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  max-width: 460px;
}

.line_cta .text{
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
}

.line_cta .text .green{
  color: #31af2b;
}


@media (max-width: 450px) {

  .btn-cta{
    margin-right: 0;
  }

  .btn-cta-container{
    padding-right: 0;
  }

	.line_cta{
    flex-direction: column;
    padding: 10px;
    margin-bottom: 5px;
  }

  .line_cta .text{
    font-size: 14px;
    margin-right: 0px;
    margin-bottom: 5px;
  }

  .feeling .flex .left{

    margin-right: 0px;
    
    }

}


.contents-inner {
	padding: 0 4vw;
}

@media (min-width: 481px) and (max-width: 768px) {
	.contents-inner {
		padding: 0 3vw;
	}
}

@media (min-width: 769px) {
	.contents-inner {
		max-width: 1100px;
		margin: 0 auto;
		padding: 0 10px;
	}
}

@media (max-width: 768px) {

  .kurasumeito{
    width: 100%;
    text-align: center;
  }

  .feeling{
    margin-top: 40px;
    
    }

  .feeling .flex{

    display: flex;
    flex-direction: column;
    }



}




.list-step {
	display: flex;
	justify-content: space-between;
}

@media (min-width: 481px) {
	.list-step {
		display: block;
	}
}

@media (min-width: 769px) {
	.list-step {
		margin-bottom: 30px;
	}
}

.list-step-process1,
.list-step-process2 {
	width: 42%;
}

@media (min-width: 481px) {
	.list-step-process1,
	.list-step-process2 {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
}

@media (min-width: 769px) {
	.list-step-process1 {
		margin-bottom: 80px;
	}
}

.step-family,
.step-parents {
	margin-bottom: 30px;
}

.step-family img,
.step-parents img {
	width: 90%;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-family,
	.step-parents {
		margin-bottom: 0;
		max-width: 120px;
	}
}

@media (min-width: 769px) {
	.step-family,
	.step-parents {
		margin-bottom: 0;
		max-width: 183px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 134px);
	}
}

@media (min-width: 769px) {
	.step-num {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 200px);
	}
}

.step-num li {
	margin-bottom: 40px;
	position: relative;
	height: 160px;
	border-radius: 12px;
	background-color: #fff;
	border: 1px solid #00b6bc;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li {
		width: 24%;
		height: 140px;
	}
}

@media (min-width: 769px) {
	.step-num li {
		width: 21%;
		height: 200px;
		margin-bottom: 0;
	}
}

.step-num li::after {
	content: '';
	width: 34px;
	height: 40px;
	background: url('../images/sp-ico-step-arr.svg') no-repeat;
	transform: translateX(-50%);
	display: block;
	margin: 0 auto;
	position: absolute;
	bottom: -52px;
	left: 50%;
}

@media (min-width: 481px) {
	.step-num li::after {
		background: url('../images/ico-step-arr.svg') no-repeat left center/contain;
		width: 10%;
		height: 30px;
		right: -12vw;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media (min-width: 769px) {
	.step-num li::after {
		height: 30px;
		right: -80%;
		top: 50%;
	}
}

.step-num li::after:last-child {
	content: none;
}

.step-num li.parents-spl {
	margin-bottom: 243px;
}

@media (min-width: 481px) {
	.step-num li.parents-spl {
		margin-bottom: 0;
		margin-right: 27%;
	}
}

.step-num li.parents-spl::after {
	background: url('../images/sp-ico-step-logArr.svg') no-repeat;
	height: 210px;
	bottom: -224px;
}

@media (min-width: 481px) {
	.step-num li.parents-spl::after {
		background: url('../images/ico-step-logArr.svg') no-repeat left center/contain;
		height: 26px;
		width: 143%;
		margin: 0;
		left: 104%;
		bottom: 0;
	}
}

.step-num li:last-child::after {
	content: '';
	display: none;
	background: none;
	width: auto;
	height: auto;
	margin: 0;
}

.step-num li > img {
	position: absolute;
	width: 58%;
	left: 0;
	top: -1px;
	z-index: 999;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li > img {
		left: -1px;
	}
}

.step-num li .step-family-img1,
.step-num li .step-family-img2,
.step-num li .step-family-img3,
.step-num li .step-family-img4 {
	position: absolute;
	width: 21%;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li .step-family-img1,
	.step-num li .step-family-img2,
	.step-num li .step-family-img3,
	.step-num li .step-family-img4 {
		width: 18%;
	}
}

.step-num li .step-family-img2 {
	width: 40%;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li .step-family-img2 {
		width: 40%;
	}
}

@media (min-width: 769px) {
	.step-num li .step-family-img2 {
		width: 40%;
	}
}

.step-num li .step-family-img3 {
	width: 70%;
	z-index: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li .step-family-img3 {
		width: 60%;
	}
}

.step-num li .step-family-img4 {
	width: 50%;
	top: 50%;
	z-index: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li .step-family-img4 {
		width: 50%;
	}
}

.step-num li .step-txt {
	padding: 106px 3vw 12px;
	font-size: 14px;
}

@media (min-width: 481px) and (max-width: 768px) {
	.step-num li .step-txt {
		padding: 85px 0.8vw 10px;
		font-size: 12px;
		line-height: 1.4;
	}
}

@media (min-width: 769px) {
	.step-num li .step-txt {
		padding: 142px 10px 10px;
	}
}

.step-num li .step-txt.step-txt-first {
	font-size: 14px;
}

.step-num li .step-txt-last {
	padding: 130px 3vw 12px;
	font-size: 1.6rem;
	text-align: center;
	font-weight: bold;
	color: #00b6bc;
	font-family: 'Kosugi Maru', sans-serif;
}

@media (min-width: 481px) and (max-width: 768px) {

  .step-num li .step-txt.step-txt-first {
    font-size: 12px;
  }

	.step-num li .step-txt-last {
		padding: 101px 1vw 0px;
		font-size: 14px;
	}
}

@media (min-width: 769px) {

	.step-num li .step-txt-last {
		padding: 156px 10px 0px;
		font-size: 18px;
	}
}

@media (max-width: 450px) {

  .step-num li .step-txt.step-txt-first {
    font-size: 12px;
  }


	.step-num li .step-txt-last {
		padding: 128px 10px 0px;
		font-size: 16px;
	}
}

.list-step-txtcontent p::before {
	content: '※';
	position: absolute;
	left: 0;
}
.list-step-txtcontent p:last-child:before {
	color: #f47028;
}

.list-step-txtcontent p {
	padding-left: 1.5rem;
	position: relative;
	font-weight: bold;
}
.list-step-txtcontent a {
	color: #f47028;
	text-decoration: underline;
}
.list-step-txtcontent a:hover {
	text-decoration: none;
}



.list-intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

@media (min-width: 481px) {
	.list-intro {
		justify-content: center;
    margin-top: 40px;
	}
}

.list-intro li {
	width: 42%;
}

@media (min-width: 481px) {
	.list-intro li {
		width: 30%;
		text-align: center;
	}
}

.list-intro li img {
	max-width: 160px;
	width: 100%;
  display: inline-block;
}

@media (min-width: 769px) {
	.list-intro li img {
		max-width: 220px;
	}
}

.bg-lorg{
  background-color:#fffaf3;
  padding: 80px 0;
}

.step-txt-center{
  text-align: center;
  margin-top: 40px;
}


.price-Annotation{
  margin-top: 40px;
}