@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*body全体の初期スタイル調整*/
body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
@media screen and (max-width: 750px) {
  body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #fff;
}

a:hover,
a:active {
  color: #0588cd;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0;
  padding: 0;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5rem 0rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  margin: 0.5rem 0rem;
  padding: 0.3rem 0.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}
@media screen and (max-width: 750px) {
  h3 {
    font-size: 1.4rem;
  }
}

h4 {
  margin: 0.5rem 0rem;
  padding: 0.3rem 0.6rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  margin: 0.5rem 0rem;
  padding: 0.1rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 750px) {
  h5 {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
hover・・・ボタンホバー効果
-------------------------------------------------------------*/
.c-btn:hover {
  opacity: 0.7;
}

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

.u-PC {
  display: block !important;
}
@media screen and (max-width: 750px) {
  .u-PC {
    display: none !important;
  }
}

.u-SP {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .u-SP {
    display: block !important;
  }
}

/*--------------------------------------------------
ブラウザの幅を768px以下にすると電話発信のダイアログが出る
-----------------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.p-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 3px solid #2fb01d;
  overflow: auto;
}
@media screen and (max-width: 750px) {
  .p-header {
    border-bottom: 2px solid #2fb01d;
  }
}
.p-header__innr {
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
  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;
}
.p-header__logo {
  width: 15%;
  margin: 8px;
  margin-right: 20%;
  margin-left: 16px;
}
@media screen and (max-width: 750px) {
  .p-header__logo {
    width: 20%;
    margin: 5px 5px 5px 16px;
  }
}
.p-header__otoiawase {
  width: 40%;
  margin: 12px;
}
@media screen and (max-width: 750px) {
  .p-header__otoiawase {
    display: none;
    width: 20%;
    margin: 4px 0px;
  }
}
.p-header__moushikomi {
  width: 30%;
  margin: 12px;
}
@media screen and (max-width: 750px) {
  .p-header__moushikomi {
    width: 50%;
    margin: 4px 8px 4px 0px;
  }
}
.p-header__img {
  width: 100%;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.p-main {
  background-color: #f2f2f2;
}

.p-article {
  background-color: #fff;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-article {
    background-color: #fff;
    border-left: none;
    border-right: none;
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.p-fv {
  height: auto;
  background: #cde4a2;
  background-image: url(../images/first-view-background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
}
.p-fv__innr {
  max-width: 1475px;
  margin: 0 auto;
}
.p-fv__img {
  width: 100%;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.p-cta {
  width: 100%;
  position: relative;
  background-image: url(../images/background-green.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-cta__innr {
  max-width: 700px;
  width: 100%;
  margin: 20px auto 30px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-cta__innr {
    width: 95%;
    margin: 20px auto 20px;
  }
}
.p-cta__btn {
  position: absolute;
  width: 95%;
  left: 7.7%;
  bottom: 37.5%;
}
.p-cta__btn img {
  width: 90%;
}
@media screen and (max-width: 750px) {
  .p-cta__btn {
    width: 88.2%;
    left: 6%;
    bottom: 37.5%;
  }
  .p-cta__btn img {
    width: 100%;
  }
}
.p-cta__tel {
  position: absolute;
  width: 95%;
  left: 8.5%;
  bottom: 5%;
}
.p-cta__tel img {
  width: 87%;
}
@media screen and (max-width: 750px) {
  .p-cta__tel {
    width: 90%;
    left: 9.4%;
    bottom: 5.2%;
  }
  .p-cta__tel img {
    width: 90%;
  }
}

/*--------------------------------------------------
孤独死エリア
-----------------------------------------------------*/
.p-kodokushi {
  height: auto;
  background: #cde4a2;
  background-image: url(../images/kodokushi-background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-kodokushi__innr {
  max-width: 800px;
  margin: 0 auto;
}
.p-kodokushi__img {
  width: 100%;
}

/*--------------------------------------------------
お悩みエリア
-----------------------------------------------------*/
.p-onayami {
  height: auto;
  background: #cde4a2;
  background-image: url(../images/onayami-background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-onayami__innr {
  max-width: 800px;
  margin: 0 auto;
}
.p-onayami__img {
  width: 100%;
}

/*--------------------------------------------------
解決エリア
-----------------------------------------------------*/
.p-kaiketu {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-kaiketu__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-kaiketu__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-kaiketu__img {
  width: 100%;
}

/*--------------------------------------------------
特徴エリア
-----------------------------------------------------*/
.p-tokuchou {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-tokuchou__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-tokuchou__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-tokuchou__img {
  width: 100%;
}

/*--------------------------------------------------
日々の見守り機能エリア
-----------------------------------------------------*/
.p-mimamori {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-mimamori__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-mimamori__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-mimamori__img {
  width: 100%;
}

/*--------------------------------------------------
その他の機能エリア
-----------------------------------------------------*/
.p-sonota-kinou {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-sonota-kinou__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-sonota-kinou__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-sonota-kinou__img {
  width: 100%;
}

/*--------------------------------------------------
VOCエリア
-----------------------------------------------------*/
.p-voc {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-voc__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fef2cb;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-voc__innr {
    width: 100%;
    margin: 0px auto 0px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.p-voc__img {
  width: 100%;
}
.p-voc__contents {
  padding: 30px 10% 0px;
}
@media screen and (max-width: 750px) {
  .p-voc__contents {
    padding: 10px 4% 0px;
  }
}

.p-vocBox {
  background-color: #4db848;
  padding: 0.6em 0.6em 0.6em;
  border-radius: 10px;
  margin-bottom: 0.5em;
  max-width: 800px;
  margin: 0 auto 30px;
}
.p-vocBox__inner {
  background-color: #fff;
  padding: 0.5em 1em 1.5em;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .p-vocBox__inner {
    padding: 0.5em 1em 0.5em;
  }
}
.p-vocBox__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 6px solid #4db848;
}
@media screen and (max-width: 750px) {
  .p-vocBox__title {
    padding-bottom: 10px;
  }
}
.p-vocBox__titleIcon {
  display: block;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.p-vocBox__titleText {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 32px;
  line-height: 1.4 !important;
}
@media screen and (max-width: 750px) {
  .p-vocBox__titleText {
    font-size: 24px;
  }
}
.p-vocBox__desc {
  font-family: "Noto sans JP", sans-serif;
  font-weight: 400;
  padding: 12px;
  font-size: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-vocBox__desc {
    font-size: 1.6rem;
  }
}
.p-vocBox__img {
  margin-bottom: 20px;
  margin-left: 20px;
}
.p-vocBox__descText {
  margin-bottom: 10px;
}
.p-vocBox__descAtribute {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  font-size: 20px;
}

/*--------------------------------------------------
料金プランエリア
-----------------------------------------------------*/
.p-ryoukin {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-ryoukin__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-ryoukin__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-ryoukin__img {
  width: 100%;
}

/*--------------------------------------------------
申し込みの流れエリア
-----------------------------------------------------*/
.p-moushikomi {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-moushikomi__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-moushikomi__innr {
    margin: 0px auto 0px;
  }
}
.p-moushikomi__h2 {
  margin: 0;
}
.p-moushikomi__btn {
  position: absolute;
  left: 13%;
  bottom: 70%;
  width: 40%;
}
.p-moushikomi__btn img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-moushikomi__btn {
    left: 10%;
    bottom: 69%;
    width: 45%;
  }
  .p-moushikomi__btn img {
    width: 100%;
  }
}

/*--------------------------------------------------
FAQエリア
-----------------------------------------------------*/
.p-faq {
  width: 100%;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-faq__innr {
  max-width: 800px;
  margin: 0px auto 0px;
  background: #fafff6;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .p-faq__innr {
    margin: 0px auto 0px;
  }
}
.p-faq__titleImg {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .p-faq__titleImg {
    margin-bottom: 10px;
  }
}
.p-faq__link:link, .p-faq__link:visited {
  color: blue;
  font-weight: bold;
}

/*------------- FAQ部分 --------------*/
.qaCnt .qaCnt_inner {
  width: 80%;
  margin: 0 auto 0 auto;
  line-height: 1.4;
}

.qaCnt .qaCnt_inner ul {
  padding-left: 0;
}

.qaCnt .qaCnt_inner ul li {
  list-style: none;
}

.qaCnt .qaCnt_inner ul li:nth-of-type(2n) {
  margin-bottom: 20px;
}

.qaCnt .qaCnt_inner ul li:nth-of-type(2n+1) dl {
  color: #fff;
  background: #2fb01d;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  padding: 15px;
  font-size: 2.1rem;
}

.qaCnt .qaCnt_inner ul li:nth-of-type(2n) dl {
  background: #fef2cb;
  border-radius: 0 0 10px 10px;
  padding: 15px;
  font-size: 2.1rem;
}

.qaCnt .qaCnt_inner ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qaCnt .qaCnt_inner ul li:nth-of-type(2n+1) dt {
  color: #FFF;
}

.qaCnt .qaCnt_inner ul li:nth-of-type(2n) dt {
  color: #E65656;
}

.qaCnt .qaCnt_inner ul li dl dt {
  font-family: "M PLUS Rounded 1c", "Noto sans JP", sans-serif;
  font-weight: 500;
  font-size: 2em;
  margin: 0 15px 0 0;
}

/*--------------------------------------------------
特典プランエリア
-----------------------------------------------------*/
.p-tokuten {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-tokuten__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-tokuten__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-tokuten__img {
  width: 100%;
}

/*--------------------------------------------------
ダミーコンテンツ
-----------------------------------------------------*/
.p-dummy {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-dummy__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-dummy__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}

/*--------------------------------------------------
固定メニュー
-----------------------------------------------------*/
.p-fixMenu {
  display: block;
  width: calc((100vw - 800px) / 2 * 0.9);
  position: fixed;
  bottom: -400px;
  right: 1%;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .p-fixMenu {
    width: 100%;
    bottom: -200px;
    left: 0;
  }
}
.p-fixMenu.js-isActive {
  bottom: 15px;
}
@media screen and (max-width: 750px) {
  .p-fixMenu.js-isActive {
    bottom: 0;
  }
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.p-footer {
  background-color: #fff;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  border-top: 10px solid #2fb01d;
}
@media screen and (max-width: 750px) {
  .p-footer {
    border-top: 5px solid #2fb01d;
  }
}
.p-footer a {
  color: #000;
}

.p-small {
  color: #000;
  font-size: 1.4rem;
}

.p-fixMenuArea {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-fixMenuArea {
    display: block;
  }
}

.p-swiper__slide {
  width: 264px;
  height: 166px;
  overflow: hidden;
  position: relative;
}
.p-swiper__cardImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */