@charset "utf-8";
/* ==========================================================================*/
/* リセット追加設定 */
/* ==========================================================================*/

* {
  border: none;
}
button,
select,

[type="submit"],
[type="text"],
[type="email"],
[type="password"],
textarea {
  appearance: none;
  -moz-appearance:none;
  -webkit-appearance:none;
  border-radius:0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

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

li {
  margin: 0;
  padding: 0;
}

/* ==========================================================================*/
/* 全般設定 */
/* ==========================================================================*/

html {
  font-size: 62.5%;
}

body {
  color: #292929;
  
  font-family: "Noto Serif JP","メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Helvetica,Arial,Verdana,sans-serif;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, calc(1.4rem + ((1vw - 0.768rem) * 0.3914)), 1.6rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  min-height: 0vw;
  overflow-x: hidden;
}

main {
  display: block;
}

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

article {
  display: block;
  overflow: hidden;
}

p {
  margin: 2.5em 0;
}

/* ==========================================================================*/
/* ヘッダーの設定*/
/* ==========================================================================*/

.header {
  margin: 10px auto;
  width: 96%;
    max-width: 1728px;
}

.header-logo {
  width: 320px;
}

@media screen and (max-width: 767px) {
  .header {
    margin: 5px auto 8px;
    width: 90%;
  }
  .header-logo {
    width: 240px;
  }

}

/* ==========================================================================*/
/* メインヴィジュアル */
/* ==========================================================================*/

.mainvisual .mvpc {
  display: block;
  margin: auto;
}

.mainvisual .mvsp {
  display: none;
}

@media screen and (max-width: 767px) {

  .mainvisual .mvpc {
    display: none;
  }

  .mainvisual .mvsp {
    display: block;
    margin: auto;
  }

}

/* ==========================================================================*/
/* コンテンツ */
/* ==========================================================================*/

.content {
  margin: auto;
  width: 90%;
    max-width: 1350px;
}

.scroll {
  margin: 60px auto;
  width: 90%;
    max-width: 1350px;
}

.ttl-icon-wrapper {
  background: #eae2d0;
}

.ttl-icon {
  color: #65482a;
  font-family:"Yu Mincho", "游明朝", YuMincho, "游明朝体", "Hiragino Mincho Pro",serif;
  font-size: 3.2rem;
  font-size: clamp(2.4rem, calc(2.4rem + ((1vw - 0.768rem) * 1.5656)), 3.2rem);
  letter-spacing: .1em;
  line-height: 1.2;
  min-height: 0vw;
  padding: 40px 20px 40px 110px;
  position: relative;
  margin: auto;
  width: 90%;
    max-width: 1350px;
}

.ttl-icon::before {
  content: "";
  background-color: #a7957d;
  display: inline-block;
  height: 100px;
  -webkit-mask-image: url("../images/light-logo.svg");
  -webkit-mask-size: cover;
  mask-image: url("../images/light-logo.svg");
  mask-size: cover;
  position: absolute;
    left: 0;
    top: 50%;
  transform: translateY(-50%);
  width: 100px;
}

.table-care {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  padding: 60px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th {
  background: #65482a;
  color: #fff;
  font-weight: normal;
  padding: 10px 20px;
  text-align: left;
}

table td {
  padding: 20px;
  text-align: center;
}

table th, table td {
  border: solid 1px #e0e0e0;
}

.scroll table td {
  width: 15%;
}

.scroll table td.head {
  background: #f6f6f6;
  text-align: left;
  width: 55%;
}

@media screen and (max-width: 1023px) {

  .scroll-hint-icon {
    top: 20%;
  }

  .scroll {
    overflow-x: scroll;
    margin: 0;
    width: 100%;
  }

  .scroll table {
    width: 100%;
    white-space: nowrap;
  }

  .table-care {
    grid-template-columns: 1fr;
  }

}

.cta-wrapper {
  background: #173c8c;
  color: #fff;
}

.cta {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  padding: 20px 0;
}

.cta__item {
  font-size: 16px;
  padding: 40px;
  text-align: center;
}

.tel-number {
  font-size: 3rem;
  font-size: clamp(2.2rem, calc(2.2rem + ((1vw - 0.768rem) * 1.5656)), 3rem);
}

.tel-number span {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  font-size: clamp(3.2rem, calc(3.2rem + ((1vw - 0.768rem) * 1.5656)), 4rem);
  line-height: 1.2;
  white-space: nowrap;
}

.btn {
  background: #fff;
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: #173c8c;
  display: block;
  padding: 30px 10px;
  text-decoration: none;
}

.btn-action {
  position: relative;
  overflow: hidden;
}

.btn-action::after {

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1);
  background: rgba(0,0,0,0.2);
}

.btn-action:hover::after,
a:hover .btn-action::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media screen and (max-width: 1023px) {

  .cta {
    grid-template-columns: 1fr;
  }

}

/* ==========================================================================*/
/* レイアウト・セクションの設定 */
/* ==========================================================================*/
.wrapper {
  display: block;
  margin: auto;
  padding: 80px 0 100px;
}

.wrapper .wrapper__main {
  margin: 0 auto;
  width: 90%;
    max-width: 1200px;
}

@media screen and (max-width: 1279px) {
  .wrapper {
    padding: 0 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 0 40px;
  }
}

/* ==========================================================================*/
/* ケアスイート */
/* ==========================================================================*/
.cs-entry {
  font-size: 16px;
  text-align: center;
}

.cs-entry p {
  margin-bottom: 0;
}

.cs-entry img {
  vertical-align: top;
  max-width: 100%;
}

.cs-entry img.cs-image {
  width: 100%;
  max-width: 600px;
}

.cs-entry figure {
  margin: 0;
}

.csimg {
  text-align: center;
}

.boss-img img {
  margin: 40px auto 20px;
  width: 200px;
}

.boss-img__name {
  background: transparent;
  color: #303030;
  line-height: 1.2;
}

.boss-img__name span {
  font-size: 1.8em;
}

.cs-contents {
  margin: 80px 0;
}

.cs-ttl2,
h2.cs-ttl2 {
  border-bottom: solid 1px;
  color:#77562b;
  font-size: 1.8em;
  line-height: 1.2;
  margin: 40px 0;
  padding: 10px 0;
  text-align: center;
  background: none;
  position: static;
}

.cs-ttl3,
.scheme_default h3 .css-ttl3 {
  color:#77562b !important;
  font-size: 1.2em;
  letter-spacing: .1em;
  margin: 0;
}

.cs-header {
  background: #ebf4dc;
  color:#77562b;
  display: flex;
  justify-content: space-between;
  padding: 0;
  text-align: center;
  border: solid 1px #ebf4dc;
  height: calc(100vh - 90px);
  overflow: hidden;
}

.cs-header__txt {
  padding: 10px 20px;
  text-align: center;
  width: 43%;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cs-header__txt p {
  margin-top: 10px;
  margin-bottom: 0;
}

.cs-header__img {
  width: 57%;
  background-image: url(../images/care-sweet/mv-cs.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cs-header__img figure img {
  width: 100%;
}

.cs-header h2 {
  margin: 0;
  background: none;
  position: static;
}

.cs-headline {
  background: #ebf4dc;
  color:#77562b;
  display: flex;
    align-items: center;
    justify-content: space-between;
  margin-bottom: 40px;
  padding: 0;
}

.cs-headline__txt {
  padding: 0 40px;
  width: 70%;
}

.cs-headline__img {
  width: 30%;
}

.cs-headline h2.cs-ttl2 {
  margin: 0;
  text-align: left;
}

/*ロゴ*/
.cs-logo {
  line-height: 1.4;
}

.cs-logo p {
  margin: 0;
  text-align: center;
}

.cs-logo__img img {
  height: auto;
  margin-bottom: 10px;
  width: 160px;
}

.cs-logo__txt {
  display: block;
  color:#77562b;
  font-size: 18px;
  font-weight: bold;
}

.cs-logo__txt span {
  font-size: 1.8em;
}
/*ロゴここまで*/

.cs-catch,
p.cs-catch {
  background: #77562b;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  padding: 0 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}

.cs-catch span {
  font-size: 1.6em;
}

.csflow-items {
  display: flex;
    gap: 40px;
  width: 100%;
}

.csflow-items__item {

}

.flowitem1 {
  margin-bottom: 40px;
  position: relative;
  width: 30%;
}

.flowitem1 img {
  width: 80%;
}

.flowitem2 {
  width: 70%;
}

.csflow-items__item h3 {
  background: #77562b;
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  margin-bottom: 20px;
  padding: 10px 0;
}

.csflow-items p {
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
}

.cs-contents .step-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-contents .step-items__item {
  margin-bottom: 40px;
  padding: 0 0 10px 0;
  position: relative;
  text-align: center;
}

.step-items__item div {
  background: #fffabf;
  border-top: solid 1px #77562b;
  border-bottom: solid 1px #77562b;
  color: #309f67;
  font-size: 1.2em;
  font-weight: bold;
  padding: 8px 0;
}

.flowitem1::after,
.step-items__item::after {
  content: "";
  position: absolute;
    bottom: -50px;
    left: 50%;
  border: 25px solid transparent;
  border-top: 15px solid #bdd791;
  transform: translateX(-50%)
}

.step-items__item-last::after {
  display: none;
}

.cs-contents .cs-list-items {  
  margin: auto;
  padding-left: 0;
  text-align: left;
  width: 80%;
  list-style: none;
    counter-reset: num;
}

.cs-contents .cs-list-items__item {
  margin: 40px 0;
  padding-left: 75px;
  position: relative;
}


.scheme_default ol>li::before,
.trx_addons_present ol>li::before,
.cs-list-items__item::before {
  position: absolute;
  content: counter(num);
  counter-increment: num;
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 1rem;
  background: #77562b;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  width: 3em;
  height: 3em;
  position: absolute;
  left: 0;
  top: 3px;
  line-height: 3;
}

.cs-list-items__item .cs-ttl3 {
  font-size: clamp(1.8rem, calc(1.6rem + ((1vw - 0.768rem) * 0.7828)), 2.2rem);
  border-bottom: none;
  margin-bottom: 10px;
  font-weight: 500;
}
.cs-list-items__item h3 strong {
  background: #f7e6e7;
  color: #d44474;
  padding: 3px;
}

.cs-footer {
  background: #ebf4dc;
  color:#77562b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 10px;
}

.cs-footer-txt {
  border-top: solid 1px #77562b;
  border-bottom: solid 1px #77562b;
  padding: 20px 0;
}

.cs-footer .cs-footer-txt p {
  margin-top: 0;
}

.cs-footer-txt__ttl {
  font-size: 1.2em;
  font-weight: bold;
}

.cs-footer-txt__tel {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.4;
}

.cs-img img {
  margin-bottom: 40px;
  width: 150px;
}


.md-block {
  display: none;
}

@media screen and (max-width: 1279px) {
  .cs-header {
    height: 600px;
  }
  .cs-header__img {
    background-size: contain;
  }
}

@media screen and (max-width: 1023px) {
  .cs-header {
    height: auto;
    flex-direction: column;
  }
  .cs-header__txt {
    width:100%;
    padding: 30px 20px 0;
  }
  .cs-header__img {
    width:90%;
    height: 380px;
    background-color: #fff;
    margin: 30px 5%;
  }
  .cs-contents .cs-list-items {  
    width: 100%;
  }
  .md-block {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .cs-header__txt {
    padding: 30px 0px 0;
  }
  .cs-header__img {
    height: 63vw;
    background-size: cover;
  }
  .cs-contents {
    margin: 60px 0;
  }

  .csflow-items {
      gap: 10px;
  }

  .step-items__item div {
    font-size: 1em;
  }

  .cs-list-items {
    width: 100%;
  }
  .cs-list-items__item .cs-ttl3 {
    line-height: 1.6;
  }
  .cs-list-items__item h3 strong {
    padding: 0 3px;
  }
  .cs-contents .cs-list-items__item {
    padding-left: 55px;
    margin: 30px 0;
  }
  .cs-list-items__item::before {
    top: 10px;
    line-height: 2;
    width: 2em;
    height: 2em;
  }
  .cs-footer {
    flex-wrap: wrap;
  }

  .cs-footer-txt {
    width: 100%;
  }

  .cs-footer-txt__ttl {
    font-size: 1em;
    width: 100%;
  }

  .cs-footer-txt__tel {
    font-size: 1.6em;
  }

  .cs-headline {
    flex-wrap: wrap;
  }

  .cs-headline__txt {
    padding: 0 20px;
    width: 100%;
  }

  .cs-headline__img {
    width: 100%;
  }

  .cs-ttl2,
  h2.cs-ttl2 {
    border: none;
    font-size: 1.4em;
    margin-bottom: 20px;
  }

  .cs-ttl3,
  h3.cs-ttl3 {
    font-size: 1em;
  }
}

/* ==========================================================================*/
/* フッター */
/* ==========================================================================*/

.footer {
  background: #5b4227 url(../images/footer-bg.jpg) no-repeat center center / cover;
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
}

.footer-logo:hover {
  opacity: 0.8;
}

.outer-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.outer-link:hover {
  text-decoration: underline;
}

.copyright {
  background: #1f1f1f;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .2em;
  padding: 20px 0;
  text-align: center;
}


/* ==========================================================================*/
/* 共通パーツ */
/* ==========================================================================*/


.tc {
  text-align: center;
}


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

  .sp-only {
    display: none;
  }

}

@media screen and (max-width: 520px) {

  .pc-only {
    display: none;
  }

}



