@charset "UTF-8";
@import url("grid.css");

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  /*高さ自動*/
}

a {
  display: block;
  text-decoration-line: none;
  text-decoration: none;
  color: #333;
}

body {
  color: #333;
  font-family: YakuHanJP, "Noto Sans Japanese", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro";
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
  letter-spacing: .01em;
  line-height: 1.8;
}

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 62.5%;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}


/*ヘッダー
-------------------------------------*/

.header {
  display: flex;
  flex-direction: row;
  padding: 2rem 0 0 0;
}

.header-box {
  margin-left: auto;
  margin-top: 8px;
}

.contact-button {
  padding: 1rem;
  border: 2px solid var(--base-color);
}

nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 10px 0;
  font-weight: bold;
}

nav li a {
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.sp-nav-ttl>li:first-of-type {
  margin-top: 0;
}

.sp-nav-ttl>li {
  margin: 15px 0;
}

.logo-sub {
  font-size: 12px;
  font-weight: bold;
}

.logo-sub.philosophy {
  font-size: 15px;
}

.logo {
  margin: 10px 0 0;
  width: 200px;
}


/*メインコンテンツ
-------------------------------------*/

.gray-back {
  background-color: #F2F6F9;
}


/*キャッチコピー
-------------------------------------*/

.mainimg {
  margin: 0 auto 80px;
  padding: 55px 0 0 0;
  text-align: center;
}


}
.catch {
  text-align: center;
  padding: 0 10px;
}
.main-ttl {
  margin-bottom: 30px;
  border-bottom: 2px solid #f5abb1;
  text-align: left;
  margin: 0 auto;
  max-width: 1083px;
  padding: 0 0 10px;
  margin-bottom: 50px;
  position: relative;
}

/* .main-ttl::before {
  content: "";
  display: block;
  width: 5px;
  height: 40px;
  background-color: #f5b090;
  position: absolute;
  top: -3px;
  left: 0px;
} */
.under {
  padding: 0 1rem 1rem 1rem;
  font-weight: bold;
}
.center {
  text-align: center;
  margin-bottom: 8rem;
}
.worries-block {
  display: flex;
  justify-content: space-between;
}
.worries-senior.font-lead {
  margin: 0 20px 0 0;
}
.worries-area {
  padding-left: 0!important;
  width: 100%!important;
}
article {
  line-height: 1.5;
}
article li {
  padding: 0 0 0 40px;
  font-size: 16px;
  font-weight: bolder;
}
article.worries-answer {
  margin: 20px 0 0 0;
}
.worries-indent:last-child {
  margin-bottom: 0px;
}
.worries-indent {
  padding-left: 1em;
  text-indent: -2rem;
  margin: 0 0 10px 0;
}
.font-lead {
  font-size: 18px;
  margin-top: 0px;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
  margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
  background: #E4E4E4;
  padding: 20px 10px 0;
}
footer h4 {
  border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 2rem 0;
}
.table {
  margin: 4rem 0;
}
.table th {
  width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 0 0 5px 0;
}
.copyright-text {
  color: #222;
  text-decoration: none;
  display: inline;
  font-size: 10px;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
@media (max-width: 767px) {
  /*ヘッダー
-------------------------------------*/

  .header-box {
    display: none;
  }
  /*お問い合わせ
-------------------------------------*/

  .table th {
    width: 100%;
    display: block;
  }

  .table td {
    display: block;
  }
}

/* 追加 */
.nav-list-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.hamburger {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}
.hamburger__line {
  position: absolute;
  width: 30px;
  height: 3px;
  right: 0;
  background-color: #333;
  transition: all 0.5s;
}
.hamburger__line--1 {
  top: 1px;
}
.hamburger__line--2 {
  top: 12px;
}
.hamburger__line--3 {
  top: 23px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/

  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */

  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
  background-color: #F5F0D4;
  color: #fff;
}

/* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
.nav-list-content {
  padding-right: 30px;
  line-height: 2.0;
}
.containeri-link {
  display: inline-block;
  text-decoration: underline;
}
.c-contentsbox.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dotted #f5abb1;
  padding: 10px 0 40px;
}
.c-contentsbox {
  margin: 0 auto;
  max-width: 1115px;
  font-size: 18px;
  line-height: 1.8em;
}
.nav-list-content:last-child {
  padding-right: 0;
}
.service-ttl {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.service-wrap {
  margin-bottom: 50px;
}
.nav-list-link {
  color: #333;
}
.nav-list-subttl {
  font-size: 18px;
  font-style: italic;
  color: #f5abb1;
  font-family: "Noto Serif JP", Yu Mincho, 游明朝, YuMincho, 游明朝体, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HiraMinProN-W3, HGS明朝E, ＭＳ Ｐ明朝, MS PMincho, serif, Helvetica Neue, -apple-system, BlinkMacSystemFont;
}
.c-reserveFixedButton {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5abb1;
  border-radius: 50%;
  bottom: 40px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.7rem;
  font-weight: 500;
  height: 120px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.4;
  position: fixed;
  right: 40px;
  text-align: center;
  width: 120px;
  z-index: 999;
}
.entry-attention {
  font-size: 15px;
  text-align: center;
  margin-top: 30px;
}
.c-reserveFixedButton:before {
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  height: 114px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 114px;
}
.btn-content {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  max-width: 190px;
  margin: 30px auto 0;
  padding: 1rem 0;
  font-weight: bold;
  border: 2px solid#f5abb1;
  background: #f5abb1;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
}
.btn-content:hover {
  color: #f5abb1;
  background: #fff;
}
.section-area {
  max-width: 1085px;
  margin: 0 auto;
}
.nav-list-number {
  font-size: 30px;
  font-style: italic;
  color: #f5abb1;
  font-family: "Noto Serif JP", Yu Mincho, 游明朝, YuMincho, 游明朝体, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HiraMinProN-W3, HGS明朝E, ＭＳ Ｐ明朝, MS PMincho, serif, Helvetica Neue, -apple-system, BlinkMacSystemFont;
  padding: 0 20px 0 3px;
}
.price-cost-text-red {
  color: red;
}
.contact-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.btn-content.contact {
  max-width: 300px;
}
.philosophy-contact {
  display: inline-block;
  text-decoration: underline;
}
.flow-content-matter {
  padding-left: 50px;
  width: 800px;
  max-width: 100%;
}
.flow-content {
  display: flex;
  margin: 0 auto;
  max-width: 1115px;
  margin-bottom: 40px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
}
.flow-content-img {
  max-width: 500px;
}
.flow-content-matter-ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.flow-content-matter-no {
  background: #f5abb1;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.flow-content {
  position: relative;
  margin: 0 0 50px 0;
  padding: 20px 20px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
}
.flow-content:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 30px solid transparent;
}
.flow-content p {
  margin: 0;
  padding: 0;
}
.flow-yellow {
  background: #FEECD2;
}
.flow-yellow:before {
  border-top: 30px solid #FEECD2;
}
.flow-blue {
  background: #D4ECEA;
}
.flow-blue:before {
  border-top: 30px solid #D4ECEA;
}
.flow-last:before {
  border-top: 0;
}
.flow-content-img {
  width: 500px;
  max-width: 100%;
}
.price-wrap {
  margin-bottom: 20px;
  display: flex;
}
.price-notes-block {
  text-align: right;
  font-size: 12px;
}
.price-ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #f05a37;
}
.price-area {
  border: solid 1px #f05a37;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
}
.price-ttl.light {
  background-color: #fccdc3;
}
.price-ttl-text {
  padding: 0 20px;
  margin: 0;
}
.price-cost {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #f05a37;
}
.price-ttl-text {
  padding: 40px 40px;
}
.price-cost-text {
  padding: 20px 20px;
  font-size: 24px;
  background-color: #fff;
}
.price-cost-text-small {
  font-size: 12px;
}
.price-content-text {
  font-size: 16px;
}
.price-content {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #f05a37;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.price-content {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #f05a37;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.price-content:last-child {
  border-bottom: 0;
}
.price-area.basic {
  border: solid 1px #0a989a;
  margin: 0 10px;
}
.price-ttl.basic {
  border-bottom: 1px solid #0a989a;
  background-color: #b4e0e1;
}
.price-cost.basic {
  border-bottom: 1px solid #0a989a;
}
.price-area.premium {
  border: solid 1px #224fac;
}
.price-ttl.premium {
  border-bottom: 1px solid #224fac;
  background-color: #bccae5;
}
.price-cost.premium {
  border-bottom: 1px solid #224fac;
}
.price-content.basic {
  border-bottom: 1px solid #0a989a;
}
.price-content.premium {
  border-bottom: 1px solid #224fac;
}
.price-cost-text-tablet {
  font-size: 14px;
}
.c-description {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}
body {
  position: relative;
  /* 親要素に指定 */
}
.js-pagetop {
  position: fixed;
  bottom: 10px;
  right: 0;
  cursor: pointer;
}

.entry-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #54945F;
  bottom: 40px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.4;
  right: 40px;
  text-align: center;
  width: 150px;
  z-index: 999;
  font-weight: bold;
}
.c-recruitPageTop {
  padding-left: 30px;
  padding-right: 30px;
}
.c-recruitPageTop {
  text-align: right;
}
.l-recruitPageTop {
  margin-top: 102px;
}
.c-recruitPageTop>.__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: Libre Baskerville, "Noto Serif JP", Yu Mincho, 游明朝, YuMincho, 游明朝体, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HiraMinProN-W3, HGS明朝E, ＭＳ Ｐ明朝, MS PMincho, serif, Helvetica Neue, -apple-system, BlinkMacSystemFont;
  font-size: 1.6rem;
  gap: 8px;
  color: #444;
}
.c-recruitPageTop>.__link:after {
  content: "";
  display: block;
  height: 10px;
  width: 18px;
  border: 0;
  border-top: solid 2px #444;
  border-right: solid 2px #444;
  display: inline-block;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
}
.entry-btn-block {
  bottom: 0px;
}
.footer-entry {
  display: flex;
  justify-content: center;
  position: relative;
}
.footer-container {
  left: 0;
  background: #E4E4E4;
  padding: 20px 10px;
  cursor: auto;
}
.footer-entry-btn {
  width: 300px;
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  max-width: 190px;
  padding: 1rem 0;
  font-weight: bold;
  border: 2px solid#f5abb1;
  background: #f5abb1;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
}
.footer-entry-btn:hover {
  color: #f5abb1;
  background: #fff;
}
.footer-entry-btn.contact {
  margin-right: 10px;
}
.top-btn {
  position: absolute;
  top: -20px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 84px;
  background: #333;
}
.top-btn-content {
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
.contact-fixed {
  position: fixed;
  bottom: 24px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 222px;
  -webkit-box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.contact-fixed {
  bottom: 90px;
}
.contact-fixed-button-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 222px;
  background-color: #fff;
}
.contact-fixed-button {
  position: relative;
  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;
  height: 194px;
  background-color: #f5abb1;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  -webkit-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
  font-weight: bold;
}
.contact-fixed-button::after {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  content: attr(data-open);
}
.pagetop-link {
  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;
  height: 28px;
  background-color: #ef8989;
  -webkit-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
}
.pagetop-svg {
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 5px;
  left: 17px;
}
.sub-ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5rem;
  margin-bottom: 40px;
}
.boder-left {
  color: #f5b090;
}
.boder-right {
  color: #f5b090;
}
.dlbox__name {
  color: #333;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}
.dlbox__contents+.dlbox__name {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 30px;
}
.dlbox__contents {
  color: #333;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 10px;
  margin-left: 0;
}
.philosophy-mv {
  margin: 80px auto;
  max-width: 1080px;
  text-align: center;
}
.philosophy-mv-mainttl {
  font-size: 48px;
  font-weight: bold;
}
.philosophy-mv-subttl {
  font-size: 18px;
}
.philosophy-mv-ttl {
  font-family: "Noto Serif JP", Yu Mincho, 游明朝, YuMincho, 游明朝体, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HiraMinProN-W3, HGS明朝E, ＭＳ Ｐ明朝, MS PMincho, serif, Helvetica Neue, -apple-system, BlinkMacSystemFont;
}
.philosophy-mainimg {
  padding: 120px 0 0 0;
  text-align: center;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.2;
}
.overview-content {
  padding: 0 20px;
}
.section-overview {
  padding: 40px 0;
  margin: 0 0 40px;
}
.overview-block {
  padding-left: 10px;
}
.about-logo {
  max-width: 300px;
}
.logo-link {
  width: 300px;
}

.price-notes {
  padding-left: 2em;
  text-indent: -3rem;
}
.overview-ttl {
  font-size: 20px;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -2rem;
  display: inline-block;
}
.verview-subttl {
  font-weight: bold;
}
.dlbox__contents_block {
  display: inline-block;
}
.font-lead_attention {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -2rem;
  display: inline-block;
  line-height: 1.6;
}
.footer-logo {
  width: 400px;
  text-align: center;
  margin: 0 auto;
}
.service-text {
  font-size: 14px;
}
.service-title {
  text-align: center;
  font-size: 22px;
  margin: 20px 0;
}
.service-logo {
  width: 500px;
  margin: 30px auto 0;
  max-width: 100%;
}
.service-img-block {
  display: flex;
  justify-content: space-around;
}
.service-img-block {
  display: flex;
  justify-content: space-around;
  margin: 0 0 40px 0;
}
.service-img-content.right {
  margin: 0 10px 0 0;
}
.service-img-content {
  width: 600px;
  margin: 0 auto;
  max-width: 100%;
}
.worries-ttl {
  position: relative;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin: 0 0 40px 0;
}
.worries-ttl::before {
  content: url(../img/worries-icon-01.png);
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 20px;
  margin-bottom: 45px;
}
.worries-senior-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0 40px 0;
}
.worries-family-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0 40px 0;
}
.c-contentsbox__inner.delivery {
  width: 200px;
  margin: 40px auto 0;
  max-width: 100%;
}
.swiper-container {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: auto;
  position: relative;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background: #ccc;
  visibility: hidden;
  /* 初期状態で全て非表示 */
}
.swiper-slide.swiper-slide-active {
  visibility: visible;
  /* アクティブなスライドのみ表示 */
}
.swiper-container {
  width: 500px;
  max-width: 100%;
  height: 333px;
  margin: auto;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background: #ccc;
}
/* ページネーション丸ポチのスタイル */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #000;
  /* 初期の丸ポチの色 */

  opacity: 0.5;
  transition: opacity 0.3s ease, background 0.3s ease;
  /* アニメーション */
}
.swiper-pagination-bullet-active {
  background: #f5abb1;
  /* アクティブなスライドの色 */

  opacity: 1;
}
.swiper-pagination {
  top: 350px !important;
}

.c-contentsbox.flex.company {
  border-bottom: none;
}

.container.white {
  margin-bottom: 80px;
}

.swiper-pagination {
  top: 350px !important;
}

.faq-title {
  background-color: #0a989a;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding: 5px;
  text-align: center;
}

.faq-area {
  border-bottom: 1px solid #ebeced;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.faq-question {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 25px;
  padding-left: 25px;
  position: relative;
}

.faq-question:before {
  color: #DC6877;
  content: "Q";
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 2px;
}

.faq-answer {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
}

.faq-answer:before {
  content: "A";
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: -1px;
}

.faq-area {
  border-bottom: 1px solid #ebeced;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.section-faq {
  padding: 0 20px;
  max-width: 1085px;
  margin: 40px auto 0;
}

.faq-area:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-block {
  margin-top: 150px;
}

.faq-block:first-child {
  margin-top: 0;
}

.faq-block:last-child {
  padding-bottom: 80px;
}

.c-hero__title {
  font-size: 3rem;
  padding-top: 14.95467vw;
}

.c-hero__subtitle {
  font-size: 1.2rem;
  margin-top: 5px;
}

.container--690px {
  margin: 40px auto 100px;
  padding: 0 30px;
}

.faq-title {
  font-size: 1.6rem;
}

.faq-area {
  font-size: 1.2rem;
}

.faq-question {
  font-size: 1.6rem;
}

.faq-question:before {
  font-size: 1.4rem;
  top: 0;
}

.faq-answer {
  font-size: 1.4rem;
}

.faq-block {
  margin-top: 80px;
}

.service-img-block {
  display: block;
  margin: 0 0 40px 0;
}

.service-img-content.right {
  margin: 0 0 20px 0;
}

.swiper-container {
  width: 500px;
  max-width: 100%;
  margin: auto;
}

.worries-ttl-brock {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin: 20px 0 0 0;
}

.worries-ttl-icon {
  width: 40px;
  display: flex;
}

.worries-ttl-text {
  padding: 0 0 0 20px;
}

.worries-ttl-brock.service {
  justify-content: center;
  margin: 0;
}

.faq-link {
  display: inline-block;
  text-decoration: underline;
}

.price-cost-text-red.ttl {
  font-size: 26px;
}

.mv-block {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  width: 1920px;
  margin-top: 76px;
}

.company-tel-name {
  font-size: 12px;
}

.company-user {
  font-size: 12px;
  line-height: 1.8em;
  display: inline-block;
  margin-top: 20px;
}























@media (min-width: 1025px) {
  main:not(.about-page):not(.recruit-page) .about .c-contentsbox .c-contentsbox__inner:first-of-type {
    -ms-flex-preferred-size: calc(50% + 20px);
    flex-basis: calc(50% + 20px);
    max-width: calc(50% + 20px);
  }

  .c-contentsbox__inner.left {
    max-width: 500px;
  }

  .c-contentsbox__inner.right {
    padding-left: 40px;
    width: 96%;
  }

  section {
    margin-bottom: 80px;
    padding: 40px 0;
  }

  section:last-child {
    margin-bottom: 0;
  }

  .section-price {
    padding-bottom: 40px;
  }

  .service-worried {
    padding-bottom: 40px;
  }

  .service-worried:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .c-contentsbox.flex.shopping {
    padding: 0 0 80px 0;
  }
}

@media (min-width: 768px) {
  /* PC時はMENUボタンを非表示 */

  #open,
  #close {
    display: none !important;
  }

  #navi {
    display: block !important;
  }

  .sp {
    display: none;
  }
}

@media (min-width: 1239px) {
  .header-sp {
    display: none;
  }

  .header-pc {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease-out;
    height: 80px;
    top: 0px;
    left: 0px;
  }
}

@media (max-width: 1350px) {
  .nav-list-block {
    font-size: 12px;
  }
}

@media (min-width: 1241px) {
  .entry-tel-sp {
    display: none;
  }
}

@media (max-width: 1240px) {
  .header {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .header #open,
  #close {
    position: absolute;
    top: 20px;
    right: 12px;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    padding: 65px 0 0 0;
  }

  .main-ttl {
    margin-bottom: 20px;
  }

  .header li {
    padding-top: 0;
  }

  .mv-block {
    margin-top: 0;
    padding-top: 60px;
  }

  .price-cost-text-red {
    font-size: 12px;
  }

  .under {
    font-size: 20px;
  }

  .mainimg {
    margin: 0;
  }

  .mv-block {
    margin-top: 0;
  }

  /* スマホ時はMENUボタンを表示 */

  #open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }

  #close {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
  /* スマホ時はメニューを非表示 */

  #navi {
    display: none;
  }

  .header-pc {
    display: none;
  }

  .logo-link-sp {
    margin: 10px 0 0;
    padding: 0 0 0 10px;
  }

  .header-sp {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease-out;
    height: 60px;
  }

  .flow-content {
    display: block;
    margin: 0 auto;
    max-width: 1115px;
    margin-bottom: 40px;
  }

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

  .flow-content-matter {
    padding-left: 0;
  }

  .price-wrap {
    width: 800px;
    border-collapse: collapse;
  }

  .c-description {
    font-size: 14px;
  }

  .copyright-text {
    color: #222;
    text-decoration: none;
    display: inline;
    font-size: 12px;
  }

  .container--690px {
    margin: 40px auto 100px;
    padding: 0 30px;
  }

  .dlbox__name {
    font-size: 1.4rem;
  }

  .dlbox__contents {
    font-size: 1.4rem;
    text-align: left;
  }

  .font-lead {
    font-size: 14px;
    text-align: left;
  }

  body {
    margin: 0;
  }

  .c-contentsbox.flex>.c-contentsbox__inner {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .c-contentsbox__inner {
    margin-bottom: 20px;
  }

  .c-reserveFixedButton:before {
    height: 85px;
    width: 85px;
  }

  .c-contentsbox.flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  main:not(.about-page):not(.recruit-page) .about .c-contentsbox .c-contentsbox__inner:first-of-type {
    margin: 0 auto;
    max-width: 300px;
  }

  .entry-btn {
    bottom: 10px;
    font-size: 1.2rem;
    height: 50px;
    right: 10px;
    width: 90px;
  }

  .entry-btn:before {
    height: 85px;
    width: 85px;
  }

  .nav-list-content {
    padding-right: 30px;
    font-size: 14px;
    display: flex;
  }

  .price-block {
    overflow-x: scroll;
  }

  .price-wrap {
    width: 981px;
    border-collapse: collapse;
  }

  .footer-entry-btn {
    width: 150px;
  }

  .top-btn-content {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg);
  }

  .top-btn {
    width: 30px;
  }

  .service-wrap {
    margin-bottom: 40px;
  }

  section {
    padding: 40px 10px 20px;
  }

  .worries-block {
    display: block;
  }

  .worries-senior.font-lead {
    margin: 0 0 40px 0;
  }

  article li {
    font-size: 14px;
  }

  .price-block {
    margin: 0 0 20px 0;
  }

  .price-notes {
    font-size: 10px;
  }

  .flow-content-matter-text {
    font-size: 14px;
  }

  .section-contact {
    margin-bottom: 0;
  }

  .company-philosophy {
    text-align: left;
    font-size: 14px;
  }

  .philosophy-mainimg {
    font-size: 40px;
  }

  .section-overview {
    margin: 0;
  }

  .footer-logo {
    width: 300px;
  }

  .entry-tel-pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .sub-ttl {
    font-size: 14px;
  }

  .contact-fixed-button-wrap {
    display: none!important;
  }

  .contact-fixed {
    display: none!important;
  }

  .contact-text {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
  }

  .price-area {
    border: solid 1px #f05a37;
    width: 250px;
    max-width: 100%;
    margin: 0;
  }

  .price-wrap {
    width: 500px;
  }

  .price-notes {
    padding-left: 2em;
    text-indent: -2rem;
  }

  .price-ttl-text {
    padding: 20px;
    font-size: 18px;
  }

  .overview-ttl {
    font-size: 16px;
  }

  .company-philosophy {
    text-align: left;
    font-size: 12px;
  }

  .company-philosophy {
    line-height: 1.8;
  }

  .logo-link-sp-nav {
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
  }

  .swiper-pagination {
    top: 270px !important;
  }

  .swiper-container {
    width: 500px;
    max-width: 100%;
    height: 245px;
    margin: auto;
  }

  .worries-ttl-brock {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin: 20px 0 0 0;
  font-size: 22px;
  }

  .worries-ttl-icon {
    width: 40px;
  }

  .price-cost-text-red.ttl {
    font-size: 20px;
  }

  .service-title {
    font-size: 18px;
  }

  .mv-block {
    padding-top: 60px;
    margin-top: 0;
  }
}