@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700&display=swap");
html {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

body {
  background-image: url(../assets/img/common/bg.png);
  background-repeat: repeat;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  transform: rotate(0.05deg);
}

h2,
h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

p,
a,
li,
table,
th,
td,
dt,
dd {
  color: #646464;
  font-weight: normal;
}

p {
  line-height: 2;
}

a {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:root {
  font-size: 16px;
}
@media screen and (max-width: 559px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

.container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bold {
  font-weight: bold;
}

header {
  border-bottom: 1px solid #646464;
}

@media screen and (max-width: 810px) {
  header .flex {
    flex-direction: row !important;
    align-items: center;
  }
}

header .header-l {
  width: 31.4%;
  margin-top: 20px;
}

@media screen and (max-width: 810px) {
  header .header-l {
    width: 80%;
  }
}

header .header-r {
  width: 54%;
  margin-left: auto;
  text-align: right;
  text-align: -webkit-right;
}

@media screen and (max-width: 810px) {
  header .header-r {
    text-align: right;
    text-align: -webkit-right;
    margin-top: 20px;
  }
}

header .header-r__tel {
  margin-top: 35px;
  margin-bottom: 30px;
}

@media screen and (max-width: 810px) {
  header .header-r__tel {
    display: none;
  }
}

@media screen and (max-width: 810px) {
  header .header-r__nav--pc {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  header .header-r {
    width: 64%;
  }
}

header .header-r__nav--pc ul {
  display: flex;
  justify-content: space-between;
}

header .header-r__nav--pc ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  position: relative;
}

header .header-r__nav--pc ul li:hover ul {
  display: block !important;
}

header .header-r__nav--pc ul li a {
  padding-bottom: 20px;
}

header .header-r__nav--pc ul li a:hover {
  color: #8ab233;
}

header .header-r__nav--pc ul li ul {
  display: none;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 46px;
  background-color: #FFFFFF;
  opacity: .9;
  z-index: 1000;
}

header .header-r__nav--pc ul li ul li {
  text-align: center;
  min-width: 200px;
}

header .header-r__nav--pc ul li ul li a {
  padding: 15px 0;
}

header .header-r__nav--pc ul li ul li a:hover {
  background-color: #F6C2CC;
  color: #646464 !important;
}

header .header-r__nav--sp {
  display: none;
}

@media screen and (max-width: 810px) {
  header .header-r__nav--sp {
    display: block;
  }
}

header .header-r__nav--sp button,
header .header-r__nav--sp button span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

header .header-r__nav--sp button {
  position: relative;
  width: 50px;
  height: 44px;
}

header .header-r__nav--sp button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #8ab233;
  border-radius: 4px;
}

header .header-r__nav--sp button span:nth-of-type(1) {
  top: 0;
}

header .header-r__nav--sp button span:nth-of-type(2) {
  top: 20px;
}

header .header-r__nav--sp button span:nth-of-type(3) {
  bottom: 0;
}

header .header-r__nav--sp button.is-active {
  z-index: 2;
}

header .header-r__nav--sp button.is-active span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
}

header .header-r__nav--sp button.is-active span:nth-of-type(2) {
  opacity: 0;
}

header .header-r__nav--sp button.is-active span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
}

header .header-r__nav--sp nav {
  position: fixed;
  transform-origin: top right;
  right: 0;
  transform: rotateZ(-90deg);
  transition: transform 0.5s;
  text-align: -webkit-center;
}

header .header-r__nav--sp nav.is-show {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(246, 241, 226, 0.8);
  transform: rotateZ(0deg);
  transition: transform 0.5s ease-out;
}

header .header-r__nav--sp nav li {
  font-size: 1.4rem;
  padding-bottom: 25px;
}

header .header-r__nav--sp nav li a:hover {
  color: #8ab233;
}

.footer {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}

.footer-l {
  font-size: 0.82rem;
  line-height: 1.61538;
/*  letter-spacing: 0.05em;*/
  -ms-flex-preferred-size: 31.4%;
  flex-basis: 31.4%;
}

.footer-l img {
  margin-top: 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .footer-l img {
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.95313vw;
    margin-bottom: 1.5625vw;
  }
}

.footer-l__btn {
  display: inline-block;
  color: #ed8599;
  border: 2px solid #ed8599;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 10px;
  padding: 5px 16px;
}

.footer-l__btn:hover {
  background-color: #ed8599;
  color: #ffffff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.footer-l__address {
  display: inline-block;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .footer-l__address {
    margin-bottom: 1.95313vw;
  }
}

.footer-l__license {
  margin-bottom: 50px;
  margin-bottom: 3.90625vw;
}

@media screen and (max-width: 768px) {
  .footer-l__copy {
    display: none;
  }
}

.footer-r {
  -ms-flex-preferred-size: 47.58%;
  flex-basis: 47.58%;
  margin-left: auto;
}

.footer-r__tel {
  margin-top: 80px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .footer-r__tel {
    display: none;
  }
}

.footer-r__nav {
  border-top: 1px solid #646464;
  padding-top: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .footer-r__nav {
    margin-bottom: 3.51563vw;
    padding-top: 1.5625vw;
  }
}

.footer-r__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-r__nav ul li {
  font-size: 0.875rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .footer-r__nav ul li {
    font-size: 2.25vw;
  }
}

.footer-r__nav ul li a:hover {
  color: #8ab233;
}

.footer-r__policy {
  padding-bottom: 30px;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .footer-r__policy {
    line-height: 2;
    font-size: 10px;
    padding-bottom: 2.34375vw;
  }
}

.footer-r__policy span {
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .footer-r__policy span {
    font-size: 10px;
  }
}

.footer-r__copy {
  display: none;
  text-align: center;
  text-align: -weblit-center;
}

@media screen and (max-width: 768px) {
  .footer-r__copy {
    display: block;
    text-align: center;
  }
}

.mv {
  padding-top: 70px;
  position: relative;
  background-color: rgba(237, 133, 153, 0.1);
}

@media screen and (max-width: 768px) {
  .mv {
    padding-top: 5.65vw;
  }
}

.mv .container {
  padding-bottom: 123px;
}

@media screen and (max-width: 768px) {
  .mv .container {
    padding-bottom: 9.92vw;
  }
}

.mv-l {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .mv-l {
    width: 100%;
    margin-bottom: 2.42vw;
  }
}

.mv-l h1 {
  color: #ed8599;
  margin-bottom: 30px;
  font-size: 3.4rem;
}

@media screen and (max-width: 768px) {
  .mv-l h1 {
    font-size: 7.38vw;
    margin-bottom: 2.42vw;
  }
}

.mv-l h1 span {
  display: inline-block;
  color: #8ab233;
  margin-top: 30px;
  font-size: 1.7rem;
}
.mv-l h1 span.sub_copy {
  display: inline-block;
  color: #646464;
  margin-top: 30px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .mv-l h1 span {
    margin-top: 2.42vw;
    font-size: 3.75vw;
  }
}

.mv-r {
  width: 45%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .mv-r {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .mv-r img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.mv__border {
  position: absolute;
  bottom: 0;
  margin-bottom: -4.03vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.lead {
  padding-top: 123px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .lead {
    padding-top: 9.92vw;
    margin-bottom: 8.06vw;
  }
}

.lead h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .lead h2 {
    margin-bottom: 4.03vw;
  }
}

.lead h2 span {
  display: block;
}

.lead h2 span.lead__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .lead h2 span.lead__tit--main {
    font-size: 6.8vw;
  }
}

.lead h2 span.lead__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .lead h2 span.lead__tit--main:before {
    display:none;
  }
}

.lead h2 span.lead__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .lead h2 span.lead__tit--main:after {
    display:none;
  }
}

.lead h2 span.lead__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .lead h2 span.lead__tit--sub {
    font-size: 4.84vw;
  }
}

.lead-l {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .lead-l {
    width: 100%;
    margin-bottom: 2.42vw;
  }
}

.lead-l__tit {
  color: #ed8599;
  line-height: 1.3;
  font-size: 1.875rem;
  margin-bottom: 50px;
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  .lead-l__tit {
    font-size: 4.63vw;
    margin-bottom: 2.42vw;
    padding-right: 10.08vw;
  }
}

.lead-l__txt {
  font-size: 1rem;
  letter-spacing: 0.04375em;
}

.lead-r {
  width: 45%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .lead-r {
    width: 100%;
  }
}

.service {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(138, 178, 51, 0.1);
}

@media screen and (max-width: 768px) {
  .service {
    padding-top: 4.6875vw;
    padding-bottom: 4.6875vw;
  }
}

.service h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service h2 {
    margin-bottom: 3.90625vw;
  }
}

.service h2 span {
  display: block;
}

.service h2 span.service__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .service h2 span.service__tit--sub {
    font-size: 3.55vw;
  }
}

.service h2 span.service__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .service h2 span.service__tit--main {
    font-size: 6.8vw;
  }
}

.service h2 span.service__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .service h2 span.service__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.service h2 span.service__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .service h2 span.service__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.service-list {
  justify-content: space-between;
}

.service-list__box {
  background-color: #ffffff;
  border: 4px solid #ed8599;
  border-radius: 20px;
  width: 31.2%;
  flex-direction: column;
  padding: 30px 15px;
}

@media screen and (max-width: 768px) {
  .service-list__box {
    width: 100%;
    padding-top: 4.34375vw;
    padding-right: 3.5625vw;
    padding-bottom: 4.34375vw;
    padding-left: 3.5625vw;
    margin-bottom: 5.90625vw;
  }
}

.service-list__box h3 {
  font-size: 1.6rem;
  line-height: 1.06667;
  letter-spacing: 0.05em;
  color: #ed8599;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-list__box h3 {
    font-size: 6.34vw;
    margin-bottom: 0.78125vw;
  }
}

.service-list__box h3 span {
  font-size: 1.3125rem;
  line-height: 1.52381;
  letter-spacing: 0.05em;
  color: #8ab233;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .service-list__box h3 span {
    font-size: 3.39vw;
    margin-bottom: 0.78125vw;
  }
}

.service-list__box img {
  border-radius: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .service-list__box img {
    margin-bottom: 1.5625vw;
  }
}

.service-list__box-title {
  font-size: 1.5rem;
  color: #f0a532;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-list__box-title {
    font-size: 5.87vw;
    margin-bottom: 1.5625vw;
  }
}

.service-list__box-title span {
  color: #8ab233;
  font-size: 1.3125rem;
}

@media screen and (max-width: 768px) {
  .service-list__box-title span {
    font-size: 3.39vw;
  }
}

.service-list__box-desc {
  font-size: 16px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .service-list__box-desc {
    font-size: 3.5vw;
    margin-bottom: 2.34375vw;
  }
}

.service-list__box-btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  max-width: 241px;
  padding: 20px 37px;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-list__box-btn {
    font-size: 2.61vw;
    padding-top: 3.125vw;
    padding-right: 5.78125vw;
    padding-bottom: 3.125vw;
    padding-left: 5.78125vw;
  }
}

.service-list__box-btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  transition: background-color 0.8s;
}

.voice {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .voice {
    padding-top: 4.6875vw;
    padding-bottom: 4.6875vw;
  }
}

.voice h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .voice h2 {
    margin-bottom: 3.90625vw;
  }
}

.voice h2 span {
  display: block;
}

.voice h2 span.voice__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .voice h2 span.voice__tit--sub {
    font-size: 3.55vw;
  }
}

.voice h2 span.voice__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .voice h2 span.voice__tit--main {
    font-size: 6.45vw;
  }
}

.voice h2 span.voice__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .voice h2 span.voice__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.voice h2 span.voice__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .voice h2 span.voice__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.voice-list {
  justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .voice-list {
    margin-bottom: 3.90625vw;
  }
}

.voice-list__box {
  width: 31.4%;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .voice-list__box {
    width: 100%;
    margin-bottom: 9.375vw;
  }
}

.voice-list__box h3 {
  font-size: 1.8vw;
  line-height: 1.02632;
  color: #ed8599;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .voice-list__box h3 {
    font-size: 6.13vw;
    margin-bottom: 2.34375vw;
  }
}

.voice-list__box h3 span {
  font-size: 1.25rem;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .voice-list__box h3 span {
    font-size: 3.23vw;
    margin-top: 0.78125vw;
  }
}

.voice-list__box img {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .voice-list__box img {
    margin-bottom: 2.34375vw;
  }
}

.voice-list__box-title {
  font-size: 1.375rem;
  line-height: 1.45455;
  background-color: #8ab233;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 160px;
  padding: 10px 24px;
}

@media screen and (max-width: 768px) {
  .voice-list__box-title {
    font-size: 3.66vw;
    text-align: center;
    margin-bottom: 1.5625vw;
    padding-top: 0.78125vw;
    padding-right: 1.875vw;
    padding-bottom: 0.78125vw;
    padding-left: 1.875vw;
  }
}

.voice-list__box-desc {
  font-size: 16px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .voice-list__box-desc {
    margin-bottom: 3.90625vw;
  }
}

.voice-list__box-btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  max-width: 186px;
  padding: 20px 40px;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .voice-list__box-btn {
    padding-top: 3.125vw;
    padding-right: 7.8125vw;
    padding-bottom: 3.125vw;
    padding-left: 7.8125vw;
  }
}

.voice-list__box-btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  transition: background-color 0.8s;
}

.thoughts {
  padding-bottom: 60px;
}

.thoughts h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .thoughts h2 {
    margin-bottom: 4.03vw;
  }
}

.thoughts h2 span {
  display: block;
}

.thoughts h2 span.thoughts__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .thoughts h2 span.thoughts__tit--main {
    font-size: 6.8vw;
  }
}

.thoughts h2 span.thoughts__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .thoughts h2 span.thoughts__tit--main:before {
display:none;
  }
}

.thoughts h2 span.thoughts__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .thoughts h2 span.thoughts__tit--main:after {
display:none;
  }
}

.thoughts h2 span.thoughts__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .thoughts h2 span.thoughts__tit--sub {
    font-size: 4.84vw;
  }
}

.thoughts__txt {
  text-align: center;
  color: #f0a532;
  margin-bottom: 50px;
  font-size: 3.125rem;
}

@media screen and (max-width: 768px) {
  .thoughts__txt {
    font-size: 5.24vw;
    margin-bottom: 4.03vw;
  }
}

.thoughts-l {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .thoughts-l {
    width: 100%;
    margin-bottom: 2.34375vw;
  }
}

.thoughts-l__txt {
  font-size: 16px;
}

.thoughts-l__txt--head {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .thoughts-l__txt--head {
    font-size: 4.11vw;
  }
}

.thoughts-l__txt--name {
  display: block;
  text-align: right;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .thoughts-l__txt--name {
    margin-top: 3.125vw;
  }
}

.thoughts-r {
  width: 45%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .thoughts-r {
    width: 100%;
  }
}

.info {
  background-color: rgba(128, 94, 43, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .info {
    font-size: 2.77vw;
    padding-top: 4.6875vw;
    padding-bottom: 4.6875vw;
  }
}

.info .container {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .info .container {
    margin-bottom: 3.90625vw;
  }
}

.info h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .info h2 {
    margin-bottom: 3.90625vw;
  }
}

.info h2 span {
  display: block;
}

.info h2 span.info__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .info h2 span.info__tit--sub {
    font-size: 3.55vw;
  }
}

.info h2 span.info__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .info h2 span.info__tit--main {
    font-size: 5.45vw;
    line-height: 3.7;
  }
}

.info h2 span.info__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .info h2 span.info__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.info h2 span.info__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .info h2 span.info__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.info-l {
  width: 31.4%;
}

@media screen and (max-width: 768px) {
  .info-l {
    width: 100%;
    margin-right: 3.90625vw;
  }
}

.info-l__tit {
  color: #ed8599;
  font-size: 1.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.info-l__tit:before {
  content: "";
  background-image: url(../assets/img/top/info_ico.png);
  width: 25px;
  height: 25px;
  display: inline-block;
  background-size: contain;
  margin-right: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .info-l__tit:before {
    margin-right: 1.5625vw;
  }
}

.info-l__txt {
  font-size: 16px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .info-l__txt {
    margin-bottom: 7.8125vw;
  }
}

@media screen and (max-width: 768px) {
  .info-l__pic {
    margin-left: auto;
    margin-right: auto;
  }
}

.info-r {
  width: 65.48%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .info-r {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.info__btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  max-width: 332px;
  padding: 20px 37px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .info__btn {
    font-size: 2.61vw;
    margin-top: 3.90625vw;
    padding-top: 3.125vw;
    padding-right: 2.89063vw;
    padding-bottom: 3.125vw;
    padding-left: 2.89063vw;
  }
}

.info__btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  transition: background-color 0.8s;
}

.facility {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .facility {
    padding-top: 4.6875vw;
  }
}

.facility .container {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .facility .container {
    padding-bottom: 9.375vw;
  }
}

.facility h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .facility h2 {
    margin-bottom: 3.90625vw;
  }
}

.facility h2 span {
  display: block;
}

.facility h2 span.facility__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .facility h2 span.facility__tit--sub {
    font-size: 3.55vw;
  }
}

.facility h2 span.facility__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .facility h2 span.facility__tit--main {
    font-size: 6.45vw;
    line-height: 1.7;
  }
}

.facility h2 span.facility__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .facility h2 span.facility__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.facility h2 span.facility__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .facility h2 span.facility__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.facility-list {
  justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .facility-list {
    margin-bottom: 3.90625vw;
  }
}

.facility-list__box {
  width: 30.31%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .facility-list__box {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4.03vw;
  }
}

.facility-list__box--pic {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .facility-list__box--pic {
    width: 100%;
  }
}

.facility-list__box--tit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #ffffff;
  background-color: #ed8599;
  border-radius: 20px;
  font-size: 1.29vw;
  padding-top: 0.625vw;
  padding-right: 2.34375vw;
  padding-bottom: 0.625vw;
  padding-left: 2.34375vw;
}

@media screen and (max-width: 768px) {
  .facility-list__box--tit {
    font-size: 3.29vw;
  }
}

.facility-list__box--ico {
  position: absolute;
  bottom: -10px;
  left: 17px;
}

.facility__btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  max-width: 332px;
  padding: 20px 37px;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .facility__btn {
    padding-top: 3.125vw;
    padding-right: 1.40625vw;
    padding-bottom: 3.125vw;
    padding-left: 1.40625vw;
  }
}

.facility__btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  transition: background-color 0.8s;
}

.facility__border {
  padding-top: 20px;
}

.access .container {
  padding-bottom: 0;
}

.access .lead {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .access .lead {
    margin-bottom: 8.06vw;
  }
}

.access .lead h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .access .lead h2 {
    margin-bottom: 4.03vw;
  }
}

.access .lead h2 span {
  display: block;
}

.access .lead h2 span.lead__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .access .lead h2 span.lead__tit--main {
    font-size: 6.8vw;
  }
}

.access .lead h2 span.lead__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .access .lead h2 span.lead__tit--main:before {
display:none;
  }
}

.access .lead h2 span.lead__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .access .lead h2 span.lead__tit--main:after {
display:none;
  }
}

.access .lead h2 span.lead__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .access .lead h2 span.lead__tit--sub {
    font-size: 3.84vw;
  }
}

.access .lead-l {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .access .lead-l {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .access .lead-l {
    padding-bottom: 7.8125vw;
  }
}

.access .lead-l__tit {
  padding-right: 0;
}

.access .lead-l__txt {
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.access .lead-l__btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 20px;
  max-width: 337px;
  padding: 20px 37px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .access .lead-l__btn {
    font-size: 2.61vw;
    padding-top: 3.125vw;
    padding-right: 5.78125vw;
    padding-bottom: 3.125vw;
    padding-left: 5.78125vw;
  }
}

.access .lead-l__btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  -webkit-transition: background-color 0.8s;
  transition: background-color 0.8s;
}

.access .service {
  background-color: inherit;
  padding-top: 0;
}

.about .container {
  padding-bottom: 0;
}

.about .lead {
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .about .lead {
    margin-bottom: 0;
  }
}

.about .lead h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about .lead h2 {
    margin-bottom: 4.03vw;
  }
}

.about .lead h2 span {
  display: block;
}

.about .lead h2 span.lead__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .about .lead h2 span.lead__tit--main {
    font-size: 6.8vw;
  }
}

.about .lead h2 span.lead__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .about .lead h2 span.lead__tit--main:before {
display:none;
  }
}

.about .lead h2 span.lead__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .about .lead h2 span.lead__tit--main:after {
display:none;
  }
}

.about .lead h2 span.point__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .about .lead h2 span.point__tit--sub {
    font-size: 3.84vw;
  }
}

@media screen and (max-width: 768px) {
  .about .lead .flex {
    margin-bottom: 9.33vw;
  }
}

.about .lead-l {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .about .lead-l {
    width: 100%;
  }
}

.about .lead-l__tit {
  padding-right: 0;
}

.about .lead-l__txt {
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .about .lead-l__txt {
    margin-bottom: 3.67vw;
  }
}

.about .motto {
  padding-bottom: 60px;
}

.about .motto-l{
	margin:0 auto;	
}

.about .motto__pic {
  margin: 0 auto 70px;
}

.about .motto-l__list--tit {
  color: #ed8599;
  font-size: 1.75rem;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}

.about .motto-l__list--txt {
  margin-bottom: 30px;
}

.about .motto-r {
  width: 47.6%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .about .motto-r {
    width: 100%;
  }
}

.about .point {
  background-color: rgba(138, 178, 51, 0.1);
  padding-top: 60px;
  padding-bottom: 40px;
}

.about .point h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about .point h2 {
    margin-bottom: 4.03vw;
  }
}

.about .point h2 span {
  display: block;
}

.about .point h2 span.point__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .about .point h2 span.point__tit--main {
    font-size: 6.8vw;
  }
}

.about .point h2 span.point__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .about .point h2 span.point__tit--main:before {
display:none;
  }
}

.about .point h2 span.point__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .about .point h2 span.point__tit--main:after {
display:none;
  }
}

.about .point h2 span.point__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .about .point h2 span.point__tit--sub {
    font-size: 3.84vw;
  }
}

.about .point-list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.about .point-list__box {
  background-color: #FDF0F3;
  border-radius: 20px;
  width: 31.4%;
  margin-bottom: 40px;
  padding: 30px 20px;
}

@media screen and (max-width: 768px) {
  .about .point-list__box {
    width: 100%;
  }
}

.about .point-list__box--tit {
  border-bottom: 3px solid #ed8599;
  color: #ed8599;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.about .point-list__box--txt {
  margin-bottom: 20px;
}

.dayservice .mv {
  padding-top: 50px;
  padding-bottom: 30px;
}

.dayservice .mv-l {
  width: 47.58%;
  flex-direction: row !important;
}

@media screen and (max-width: 768px) {
  .dayservice .mv-l {
    margin-bottom: 25px;
  }
}

.dayservice .mv-l h1 span {
  font-size: 1.5rem;
  letter-spacing: 0.1em !important;
}

.dayservice .mv-l__l {
  width: 18%;
}

.dayservice .mv-l__r {
  width: 82%;
  padding-left: 20px;
}

.dayservice .mv-l__r h1 {
  margin-bottom: 30px !important;
  font-size: 2.75rem !important;
}

.dayservice .mv-l__r--catch {
  color: #f0a532;
  display: block;
  font-size: 18px !important;
  margin-bottom: 15px;
}

.dayservice .mv-l__r--desc {
  line-height: 1.3;
}

.dayservice .mv-r {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .dayservice .mv-r {
    width: 100% !important;
    margin-left: 0;
  }
}

.dayservice .mv-r__pic {
  border-radius: 20px;
  position: relative;
}

.dayservice .mv-r__pic--sub {
  position: absolute;
  bottom: 3%;
  width: 45vw;
  max-width: 578px;
}

@media screen and (max-width: 768px) {
  .dayservice .mv-r__pic--sub {
    width: 95vw;
    max-width: auto;
    bottom: 0;
  }
}

.dayservice .container {
  padding-bottom: 0;
}

.dayservice .lead {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .dayservice .lead {
    margin-bottom: 8.06vw;
  }
}

.dayservice .lead-l {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .dayservice .lead-l {
    margin-bottom: 100%;
  }
}

.dayservice .lead-l__tit {
  padding-right: 0;
}

.dayservice .lead-l__txt {
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.dayservice .lead-l__btn {
  background-color: #ed8599;
  border-radius: 10px;
  color: #ffffff;
  font-size: 20px;
  max-width: 337px;
  padding: 20px 37px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .dayservice .lead-l__btn {
    font-size: 2.61vw;
    padding-top: 3.125vw;
    padding-right: 5.78125vw;
    padding-bottom: 3.125vw;
    padding-left: 5.78125vw;
  }
}

.dayservice .lead-l__btn:hover {
  background-color: #ffffff;
  border: 1px solid #ed8599;
  color: #ed8599;
  transition: background-color 0.8s;
}

.dayservice .flow {
  padding-top: 70px;
  padding-bottom: 35px;
}

.dayservice .flow__tit {
  position: relative;
  margin-bottom: 50px;
}

.dayservice .flow__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .flow__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.dayservice .flow__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .dayservice .flow__tit--main {
    font-size: 6.8vw;
  }
}

.dayservice .flow__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/flow_title_after.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .flow__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.dayservice .flow__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .dayservice .flow__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.dayservice .flow-list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.dayservice .flow-list__box {
  width: 31.4%;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box {
    width: 100%;
    margin-bottom: 60px;
  }
}

.dayservice .flow-list__box--pic {
  position: relative;
  margin-bottom: 10px;
}

.dayservice .flow-list__box--pic::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/flow_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 51px;
  position: absolute;
  top: 45%;
  right: 0;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box--pic::after {
    transform: translate(-50%) rotate(90deg);
    top: 150%;
    left: 50%;
  }
}

.dayservice .flow-list__box--pic img:first-child {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box--pic img:first-child {
    width: 100%;
  }
}

.dayservice .flow-list__box--ico {
  position: absolute;
  right: 10%;
  bottom: -23%;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box--ico {
    bottom: -15%;
    width: 15%;
  }
}

.dayservice .flow-list__box--txt {
  color: #ed8599;
  line-height: 1;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box--txt {
    font-size: 4.93vw;
  }
}

.dayservice .flow-list__box--tit {
  color: #8ab233;
  margin-bottom: 25px;
  font-size: 1.625rem;
}

@media screen and (max-width: 768px) {
  .dayservice .flow-list__box--tit {
    font-size: 4.8vw;
	margin-bottom: 0;
  }
}

.dayservice .flow-list__box--tit span {
  line-height: 1;
  font-size: 0.9375rem;
  color: #646464;
}

.dayservice .fee {
  background-color: rgba(138, 178, 51, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.dayservice .fee__tit {
  position: relative;
  margin-bottom: 50px;
}

.dayservice .fee__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .fee__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.dayservice .fee__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .dayservice .fee__tit--main {
    font-size: 6.8vw;
  }
}

.dayservice .fee__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/fee_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .fee__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.dayservice .fee__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .dayservice .fee__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.dayservice .fee .flex {
  justify-content: space-between;
}

.dayservice .fee-l {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .dayservice .fee-l {
    width: 100%;
  }
}

.dayservice .fee-l p {
  line-height: 1.83;
  font-size: 0.875rem;
}

.dayservice .fee-l__table--1 {
  margin-bottom: 50px;
}

.dayservice .fee-l__table--1 table {
  width: 100%;
  border: 1px solid #646464;
}

.dayservice .fee-l__table--1 table tr {
  border: 1px solid #646464;
}

.dayservice .fee-l__table--1 table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.dayservice .fee-l__table--1 table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.dayservice .fee-l__table--1 table tr th:nth-child(2) {
  background-color: #DCE8C2;
}

.dayservice .fee-l__table--1 table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.dayservice .fee-l__table--1 table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #FADAE0;
}

.dayservice .fee-l__table--1 table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.dayservice .fee-l__table--2 table {
  width: 100%;
  border: 1px solid #646464;
}

.dayservice .fee-l__table--2 table tr {
  border: 1px solid #646464;
}

.dayservice .fee-l__table--2 table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.dayservice .fee-l__table--2 table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.dayservice .fee-l__table--2 table tr th:nth-child(2) {
  background-color: #FAE4C1;
}

.dayservice .fee-l__table--2 table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.dayservice .fee-l__table--2 table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #DCE8C2;
}

.dayservice .fee-l__table--2 table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.dayservice .fee-r {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .dayservice .fee-r {
    margin-top: 50px;
    width: 100%;
  }
}

.dayservice .fee-r__table {
  margin-bottom: 20px;
}

.dayservice .fee-r__table table {
  width: 100%;
  border: 1px solid #646464;
}

.dayservice .fee-r__table table tr {
  border: 1px solid #646464;
}

.dayservice .fee-r__table table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.dayservice .fee-r__table table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.dayservice .fee-r__table table tr th:nth-child(2) {
  background-color: #FAE4C1;
}

.dayservice .fee-r__table table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  vertical-align: middle;
}

.dayservice .fee-r__table table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #DCE8C2;
}

.dayservice .fee-r__table table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.dayservice .fee-r__plus-fee {
  margin-bottom: 50px;
  line-height: 1.83;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .dayservice .fee-r__plus-fee {
    font-size: 1.86vw;
  }
}

.dayservice .fee-r__plus-fee span {
  color: #ed8599;
}

.dayservice .fee-r__check {
  background-color: #ffffff;
  padding: 40px 30px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .dayservice .fee-r__check {
    font-size: 2vw;
  }
}

.dayservice .fee-r__check span {
  color: #f0a532;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .dayservice .fee-r__check span {
    font-size: 2.4vw;
  }
}

.dayservice .impression {
  padding-top: 60px;
  padding-bottom: 60px;
}

.dayservice .impression__tit {
  position: relative;
  margin-bottom: 50px;
}

.dayservice .impression__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .impression__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.dayservice .impression__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .dayservice .impression__tit--main {
    font-size: 6.8vw;
  }
}

.dayservice .impression__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/impression_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.dayservice .impression__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .dayservice .impression__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.dayservice .impression .flex {
  justify-content: space-between;
}

.dayservice .impression-l {
  width: 28.06%;
}

@media screen and (max-width: 768px) {
  .dayservice .impression-l {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .dayservice .impression-l--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.dayservice .impression-r {
  width: 65.56%;
}

@media screen and (max-width: 768px) {
  .dayservice .impression-r {
    width: 100%;
  }
}

.dayservice .impression-r .flex {
  justify-content: space-between;
}

.dayservice .impression-r__l {
  width: 47.6%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .dayservice .impression-r__l {
    width: 100%;
  }
}

.dayservice .impression-r__l--tit {
  background-color: #8ab233;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.dayservice .impression-r__l--txt {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .dayservice .impression-r__r--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.dayservice .impression-r__reply--tit {
  background-color: #ed8599;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.dayservice .meal {
  background-color: rgba(240, 165, 50, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.dayservice .meal__tit {
  position: relative;
  margin-bottom: 50px;
}

.dayservice .meal__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .dayservice .meal__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.dayservice .meal__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .dayservice .meal__tit--main {
    font-size: 6.8vw;
  }
}

.dayservice .meal__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/meal_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.dayservice .meal__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .dayservice .meal__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.dayservice .meal .flex {
  justify-content: space-between;
}

.dayservice .meal-l {
  width: 31.2%;
}

@media screen and (max-width: 768px) {
  .dayservice .meal-l {
    width: 100%;
    margin-bottom: 50px;
  }
}

.dayservice .meal-l__tit {
  color: #8ab233;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 1.625rem;
}

.dayservice .meal-l__txt {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .dayservice .meal-l__txt {
    margin-bottom: 30px;
  }
}

.dayservice .meal-r {
  width: 65.64%;
}

@media screen and (max-width: 768px) {
  .dayservice .meal-r {
    width: 100%;
  }
}

.dayservice .meal-r .flex {
  flex-direction: row;
}

.dayservice .meal-r img {
  border-radius: 20px;
}

.dayservice .meal-r img:first-child {
  margin-bottom: 30px;
}

.dayservice .service {
  background-color: rgba(241, 236, 222, 0.1);
}

.smcare .mv {
  padding-top: 50px;
  padding-bottom: 30px;
}

.smcare .mv .container {
  padding-bottom: 30px;
}

.smcare .mv-l {
  width: 49%;
  flex-direction: row !important;
}

@media screen and (max-width: 768px) {
  .smcare .mv-l {
    margin-bottom: 25px;
  }
}

.smcare .mv-l h1 span {
  font-size: 1.5rem;
  letter-spacing: 0.1em !important;
}

.smcare .mv-l__l {
  width: 18%;
}

.smcare .mv-l__r {
  width: 82%;
  padding-left: 20px;
}

.smcare .mv-l__r h1 {
  margin-bottom: 30px !important;
  font-size: 2.4rem !important;
}

.smcare .mv-l__r--catch {
  color: #f0a532;
  display: block;
  font-size: 18px !important;
  margin-bottom: 15px;
}

.smcare .mv-l__r--desc {
  line-height: 1.3;
}

.smcare .mv-r {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .smcare .mv-r {
    width: 100% !important;
    margin-left: 0;
  }
}

.smcare .mv-r__pic {
  border-radius: 20px;
  position: relative;
}

.smcare .mv-r__pic--sub {
  position: absolute;
  bottom: 3%;
  width: 45vw;
  max-width: 578px;
}

@media screen and (max-width: 768px) {
  .smcare .mv-r__pic--sub {
    width: 95vw;
    max-width: auto;
    bottom: 0;
  }
}

.smcare .flow {
  padding-top: 70px;
  padding-bottom: 50px;
}

.smcare .flow__tit {
  position: relative;
  margin-bottom: 50px;
}

.smcare .flow__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .flow__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.smcare .flow__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .smcare .flow__tit--main {
    font-size: 6.8vw;
  }
}

.smcare .flow__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/flow_title_after.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .flow__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.smcare .flow__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .smcare .flow__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.smcare .flow-list {
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box {
    margin-bottom: 60px;
  }
}

.smcare .flow-list__box h3 {
  font-size: 32px;
  font-weight: bold;
  color: #f0a532;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box h3 {
    font-size: 6.02vw;
  }
}

.smcare .flow-list__box--pic {
  margin-bottom: 30px;
}

.smcare .flow-list__box--pic img {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box--pic img {
    width: 100%;
  }
}

.smcare .flow-list__box--txt {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box--txt {
    margin-bottom: 5px;
  }
}

.smcare .flow-list__box--time {
  color: #ed8599;
  font-weight: bold;
  line-height: 1.5;
  width: 17%;
  margin-right: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box--time {
    font-size: 4.93vw;
  }
}

.smcare .flow-list__box--cont {
  font-weight: bold;
  color: #8ab233;
  letter-spacing: 0.05em;
  font-size: 24px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .smcare .flow-list__box--cont {
    font-size: 5.2vw;
  }
}

.smcare .reason-box {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
  padding: 30px 50px 30px 60px;
  border: 4px solid #ed8599;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .smcare .reason-box {
    padding: 25px;
  }
}

.smcare .reason-box .box-ttl {
  font-size: 32px;
  text-align: center;
  color: #ed8599;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .smcare .reason-box .box-ttl {
    font-size: 6.8vw;
  }
  .smcare .reason-box .box-ttl br {
    display: none;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .smcare .reason-box .box-ttl br {
    display: block;
  }
}

.smcare .reason-item {
  font-size: 20px;
  margin-bottom: 20px;
  text-indent: -.5em;
  margin-left: 20px;
  list-style-type: disc;
}

@media screen and (max-width: 768px) {
  .smcare .reason-item {
    text-indent: initial;
  }
}

.smcare .reason-item:last-child() {
  margin-bottom: 0;
}

.smcare .reason-item span {
  color: #8ab233;
}

.smcare .reason .box-l {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .smcare .reason .box-l {
    width: 100%;
    margin-bottom: 30px;
  }
}

.smcare .reason .box-r {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .smcare .reason .box-r {
    margin-left: 0;
  }
}

.smcare .reason .box-r img {
  width: 100%;
}

.smcare .fee {
  background-color: rgba(138, 178, 51, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.smcare .fee__tit {
  position: relative;
  margin-bottom: 50px;
}

.smcare .fee__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .fee__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.smcare .fee__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .smcare .fee__tit--main {
    font-size: 6.8vw;
  }
}

.smcare .fee__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/fee_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .fee__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.smcare .fee__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .smcare .fee__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.smcare .fee .flex {
  justify-content: space-between;
}

.smcare .fee-l {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .smcare .fee-l {
    width: 100%;
  }
}

.smcare .fee-l__table--1 {
  margin-bottom: 50px;
}

.smcare .fee-l__table--1 table {
  width: 100%;
  border: 1px solid #646464;
}

.smcare .fee-l__table--1 table tr {
  border: 1px solid #646464;
}

.smcare .fee-l__table--1 table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.smcare .fee-l__table--1 table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.smcare .fee-l__table--1 table tr th:nth-child(2) {
  background-color: #DCE8C2;
}

.smcare .fee-l__table--1 table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.smcare .fee-l__table--1 table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #FADAE0;
}

.smcare .fee-l__table--1 table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.smcare .fee-l__table--2 table {
  width: 100%;
  border: 1px solid #646464;
}

.smcare .fee-l__table--2 table tr {
  border: 1px solid #646464;
}

.smcare .fee-l__table--2 table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.smcare .fee-l__table--2 table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.smcare .fee-l__table--2 table tr th:nth-child(2) {
  background-color: #FAE4C1;
}

.smcare .fee-l__table--2 table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.smcare .fee-l__table--2 table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #DCE8C2;
}

.smcare .fee-l__table--2 table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.smcare .fee-r {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .smcare .fee-r {
    margin-top: 50px;
    width: 100%;
  }
}

.smcare .fee-r__table {
  margin-bottom: 20px;
}

.smcare .fee-r__table table {
  width: 100%;
  border: 1px solid #646464;
}

.smcare .fee-r__table table tr {
  border: 1px solid #646464;
}

.smcare .fee-r__table table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.smcare .fee-r__table table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.smcare .fee-r__table table tr th:nth-child(2) {
  background-color: #DCE8C2;
}

.smcare .fee-r__table table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.smcare .fee-r__table table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #FADAE0;
}

.smcare .fee-r__table table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.smcare .fee-r__plus-fee {
  margin-bottom: 50px;
  line-height: 1.83;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .smcare .fee-r__plus-fee {
    font-size: 3.86vw;
  }
}

.smcare .fee-r__plus-fee span {
  color: #ed8599;
}

.smcare .fee-r__check {
  background-color: #ffffff;
  padding: 40px 30px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .smcare .fee-r__check {
    font-size: 3.86vw;
  }
  .smcare .fee-r__check {
  padding: 20px;
  font-size: 0.9375rem;
}
}

.smcare .fee-r__check span {
  color: #f0a532;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .smcare .fee-r__check span {
    font-size: 3.4vw;
  }
}

.smcare .impression {
  padding-top: 60px;
  padding-bottom: 60px;
}

.smcare .impression__tit {
  position: relative;
  margin-bottom: 50px;
}

.smcare .impression__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .impression__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.smcare .impression__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .smcare .impression__tit--main {
    font-size: 6.8vw;
  }
}

.smcare .impression__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/impression_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.smcare .impression__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .smcare .impression__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.smcare .impression .flex {
  justify-content: space-between;
}

.smcare .impression-l {
  width: 28.06%;
}

@media screen and (max-width: 768px) {
  .smcare .impression-l {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .smcare .impression-l--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.smcare .impression-r {
  width: 65.56%;
}

@media screen and (max-width: 768px) {
  .smcare .impression-r {
    width: 100%;
  }
}

.smcare .impression-r .flex {
  justify-content: space-between;
}

.smcare .impression-r__l {
  width: 47.6%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .smcare .impression-r__l {
    width: 100%;
  }
}

.smcare .impression-r__l--tit {
  background-color: #8ab233;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.smcare .impression-r__l--txt {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .smcare .impression-r__r--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.smcare .impression-r__reply--tit {
  background-color: #ed8599;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.smcare .meal {
  background-color: rgba(240, 165, 50, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.smcare .meal__tit {
  position: relative;
  margin-bottom: 50px;
}

.smcare .meal__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .smcare .meal__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.smcare .meal__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .smcare .meal__tit--main {
    font-size: 6.8vw;
  }
}

.smcare .meal__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/meal_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.smcare .meal__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .smcare .meal__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.smcare .meal .flex {
  justify-content: space-between;
}

.smcare .meal-l {
  width: 31.2%;
}

@media screen and (max-width: 768px) {
  .smcare .meal-l {
    width: 100%;
    margin-bottom: 50px;
  }
}

.smcare .meal-l__tit {
  color: #8ab233;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 1.625rem;
}

.smcare .meal-l__txt {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .smcare .meal-l__txt {
    margin-bottom: 30px;
  }
}

.smcare .meal-r {
  width: 65.64%;
}

@media screen and (max-width: 768px) {
  .smcare .meal-r {
    width: 100%;
  }
}

.smcare .meal-r .flex {
  flex-direction: row;
}

.smcare .meal-r img {
  border-radius: 20px;
}

.smcare .meal-r img:first-child {
  margin-bottom: 30px;
}

.vccare .mv {
  padding-top: 50px;
  padding-bottom: 30px;
}

.vccare .mv .container {
  padding-bottom: 30px;
}

.vccare .mv-l {
  width: 49%;
  flex-direction: row !important;
}

@media screen and (max-width: 768px) {
  .vccare .mv-l {
    margin-bottom: 25px;
  }
}

.vccare .mv-l h1 span {
  font-size: 1.5rem;
  letter-spacing: 0.1em !important;
}

.vccare .mv-l__l {
  width: 18%;
}

.vccare .mv-l__r {
  width: 82%;
  padding-left: 20px;
}

.vccare .mv-l__r h1 {
  margin-bottom: 30px !important;
  font-size: 2.6rem !important;
}

.vccare .mv-l__r--catch {
  color: #f0a532;
  display: block;
  font-size: 18px !important;
  margin-bottom: 15px;
}

.vccare .mv-l__r--desc {
  line-height: 1.3;
}

.vccare .mv-r {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .vccare .mv-r {
    width: 100% !important;
    margin-left: 0;
  }
}

.vccare .mv-r__pic {
  border-radius: 20px;
  position: relative;
}

.vccare .mv-r__pic--sub {
  position: absolute;
  bottom: 5%;
  width: 45vw;
  max-width: 578px;
}

@media screen and (max-width: 768px) {
  .vccare .mv-r__pic--sub {
    width: 95vw;
    max-width: auto;
    bottom: 0;
  }
}

.vccare .vc-service {
  padding-top: 70px;
  padding-bottom: 50px;
}

.vccare .vc-service__tit {
  position: relative;
  margin-bottom: 50px;
}

.vccare .vc-service__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .vc-service__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
  .vccare .vc-service__tit {
  margin-bottom: 0;
}
}

.vccare .vc-service__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .vccare .vc-service__tit--main {
    font-size: 6.8vw;
  }
}

.vccare .vc-service__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/vccare/content_title_after.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .vc-service__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.vccare .vc-service__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .vccare .vc-service__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.vccare .vc-service-box {
  justify-content: center;
}

.vccare .vc-service-box__item {
  border-radius: 20px;
    border: 4px solid #ed8599;
    padding: 20px 47px;
    width: 35%;
    margin-right: 3%;
    margin-left: 3%;
}

.vccare .vc-service-box__item h3 {
  font-size: 32px;
  font-weight: bold;
  color: #f0a532;
  position: relative;
  margin-bottom: 20px;
}

.vccare .vc-service-box__item h3::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/vccare/box_title_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 29px;
  height: 30px;
  vertical-align: middle;
  margin-right: 5px;
}

.vccare .vc-service__list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.vccare .vc-service__list.column .vc-service__item {
  width: 100%;
}

.vccare .vc-service__item {
  width: 30%;
  position: relative;
  font-size: 15px;
  margin-bottom: 15px;
  margin-right: 0;
  margin-top: auto;
}

.vccare .vc-service__item::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/vccare/content_item_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-right: 5px;
}

.vccare .vc-service__item img {
  border-radius: 20px;
}

.vccare .fee {
  background-color: rgba(138, 178, 51, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.vccare .fee__tit {
  position: relative;
  margin-bottom: 50px;
}

.vccare .fee__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .fee__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
    .vccare .vc-service-box__item {
  width: 100%;
  margin:20px auto;
  padding: 20px 15px;
}
.vccare .vc-service-box__item h3 {
  font-size: 6vw;
}
}

.vccare .fee__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .vccare .fee__tit--main {
    font-size: 6.8vw;
  }
}

.vccare .fee__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/fee_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39px;
  height: 39px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .fee__tit--main::after {
    width: 5.2vw;
    height: 5.2vw;
  }
}

.vccare .fee__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .vccare .fee__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.vccare .fee .flex {
  justify-content: space-between;
}

.vccare .fee-l {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .vccare .fee-l {
    width: 100%;
  }
}

.vccare .fee-l__table--1 {
  margin-bottom: 50px;
}

.vccare .fee-l__table--1 table {
  width: 100%;
  border: 1px solid #646464;
}

.vccare .fee-l__table--1 table tr {
  border: 1px solid #646464;
}

.vccare .fee-l__table--1 table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.vccare .fee-l__table--1 table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.vccare .fee-l__table--1 table tr th:nth-child(2) {
  background-color: #DCE8C2;
}

.vccare .fee-l__table--1 table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.vccare .fee-l__table--1 table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #FADAE0;
}

.vccare .fee-l__table--1 table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.vccare .fee-l__check {
  background-color: #ffffff;
  padding: 40px 30px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .vccare .fee-l__check {
    padding: 20px;
    font-size: 0.9375rem;
  }
}

.vccare .fee-l__check span {
  color: #f0a532;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .vccare .fee-l__check span {
    font-size: 3.4vw;
  }
}

.vccare .fee-r {
  width: 47.58%;
}

@media screen and (max-width: 768px) {
  .vccare .fee-r {
    margin-top: 50px;
    width: 100%;
  }
}

.vccare .fee-r__table {
  margin-bottom: 20px;
}

.vccare .fee-r__table table {
  width: 100%;
  border: 1px solid #646464;
}

.vccare .fee-r__table table tr {
  border: 1px solid #646464;
}

.vccare .fee-r__table table tr th {
  border: 1px solid #646464;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.vccare .fee-r__table table tr th:nth-child(1) {
  background-color: #D0D0D0;
}

.vccare .fee-r__table table tr th:nth-child(2) {
  background-color: #DCE8C2;
}

.vccare .fee-r__table table tr td {
  border: 1px solid #646464;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.vccare .fee-r__table table tr td:nth-child(1) {
  width: 33.9%;
  background-color: #FADAE0;
}

.vccare .fee-r__table table tr td:nth-child(2) {
  width: 66.1%;
  background-color: #ffffff;
}

.vccare .fee-r__plus-fee {
  margin-bottom: 50px;
  line-height: 1.83;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .vccare .fee-r__plus-fee {
    font-size: 3.86vw;
  }
}

.vccare .fee-r__plus-fee span {
  color: #ed8599;
}

.vccare .impression {
  padding-top: 60px;
  padding-bottom: 60px;
}

.vccare .impression__tit {
  position: relative;
  margin-bottom: 50px;
}

.vccare .impression__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .impression__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.vccare .impression__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .vccare .impression__tit--main {
    font-size: 6.8vw;
  }
}

.vccare .impression__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/impression_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.vccare .impression__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .vccare .impression__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.vccare .impression .flex {
  justify-content: space-between;
}

.vccare .impression-l {
  width: 28.06%;
}

@media screen and (max-width: 768px) {
  .vccare .impression-l {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .vccare .impression-l--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.vccare .impression-r {
  width: 65.56%;
}

@media screen and (max-width: 768px) {
  .vccare .impression-r {
    width: 100%;
  }
}

.vccare .impression-r .flex {
  justify-content: space-between;
}

.vccare .impression-r__l {
  width: 47.6%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .vccare .impression-r__l {
    width: 100%;
  }
}

.vccare .impression-r__l--tit {
  background-color: #8ab233;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.vccare .impression-r__l--txt {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .vccare .impression-r__r--pic {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.vccare .impression-r__reply--tit {
  background-color: #ed8599;
  border-radius: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 150px;
  padding: 10px 24px;
}

.vccare .meal {
  background-color: rgba(240, 165, 50, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.vccare .meal__tit {
  position: relative;
  margin-bottom: 50px;
}

.vccare .meal__tit::before {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/title_before01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 72px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .vccare .meal__tit::before {
    width: 12.8vw;
    height: 9.6vw;
  }
}

.vccare .meal__tit--main {
  color: #ed8599;
  font-size: 2.75rem;
}

@media screen and (max-width: 768px) {
  .vccare .meal__tit--main {
    font-size: 6.8vw;
  }
}

.vccare .meal__tit--main::after {
  content: '';
  display: inline-block;
  background-image: url(../assets/img/dayservice/meal_title_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 37px;
  left: 10px;
  top: -5px;
  position: relative;
  vertical-align: middle;
}

.vccare .meal__tit--sub {
  display: block;
  color: #8ab233;
  font-size: 1.375rem;
  margin-left: 108px;
  margin-top: -28px;
}

@media screen and (max-width: 768px) {
  .vccare .meal__tit--sub {
    font-size: 3.93vw;
    margin-top: -15px;
    margin-left: 14.4vw;
  }
}

.vccare .meal .flex {
  justify-content: space-between;
}

.vccare .meal-l {
  width: 31.2%;
}

@media screen and (max-width: 768px) {
  .vccare .meal-l {
    width: 100%;
    margin-bottom: 50px;
  }
}

.vccare .meal-l__tit {
  color: #8ab233;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 1.625rem;
}

.vccare .meal-l__txt {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .vccare .meal-l__txt {
    margin-bottom: 30px;
  }
}

.vccare .meal-r {
  width: 65.64%;
}

@media screen and (max-width: 768px) {
  .vccare .meal-r {
    width: 100%;
  }
}

.vccare .meal-r .flex {
  flex-direction: row;
}

.vccare .meal-r img {
  border-radius: 20px;
}

.vccare .meal-r img:first-child {
  margin-bottom: 30px;
}

.company .mv .container {
  padding-bottom: 0;
}

.company .lead h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company .lead h2 {
    margin-bottom: 4.03vw;
  }
}

.company .lead h2 span {
  display: block;
}

.company .lead h2 span.lead__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .company .lead h2 span.lead__tit--main {
    font-size: 6.8vw;
  }
}

.company .lead h2 span.lead__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .company .lead h2 span.lead__tit--main:before {
display:none;
  }
}

.company .lead h2 span.lead__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .company .lead h2 span.lead__tit--main:after {
display:none;
  }
}

.company .lead h2 span.lead__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .company .lead h2 span.lead__tit--sub {
    font-size: 4.84vw;
  }
}

.company .lead__txt {
  text-align: center;
  color: #f0a532;
  margin-bottom: 50px;
  font-size: 3.125rem;
}

@media screen and (max-width: 768px) {
  .company .lead__txt {
    font-size: 5.24vw;
    margin-bottom: 4.03vw;
  }
}

.company .lead-l__txt--name {
  display: block;
  margin-top: 50px;
  text-align: right;
}

.company .profile h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company .profile h2 {
    margin-bottom: 4.03vw;
  }
}

.company .profile h2 span {
  display: block;
}

.company .profile h2 span.profile__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .company .profile h2 span.profile__tit--main {
    font-size: 6.8vw;
  }
}

.company .profile h2 span.profile__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .company .profile h2 span.profile__tit--main:before {
display:none;
  }
}

.company .profile h2 span.profile__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .company .profile h2 span.profile__tit--main:after {
display:none;
  }
}

.company .profile h2 span.profile__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .company .profile h2 span.profile__tit--sub {
    font-size: 4.84vw;
  }
}

.company .profile__data {
  border-top: 1px solid #646464;
  margin-bottom: 100px;
}

.company .profile__data--list {
  justify-content: space-between;
  padding-top: 60px;
}

.company .profile__data--term {
  color: #8ab233;
  width: 16.12%;
  border-bottom: 1px solid #646464;
  padding-bottom: 35px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .company .profile__data--term {
    border-bottom: none;
    font-size: 4.2vw;
    padding-bottom: 0px;
    width: 100%;
  }
  .company .profile__data--list {
  padding-top: 35px;
}

}

.company .profile__data--desc {
  width: 78.62%;
  border-bottom: 1px solid #646464;
  padding-bottom: 35px;
  padding-left: 10px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .company .profile__data--desc {
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 4.4vw;
    width: 100%;
  }
}

.company .history h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company .history h2 {
    margin-bottom: 4.03vw;
  }
}

.company .history h2 span {
  display: block;
}

.company .history h2 span.history__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .company .history h2 span.history__tit--main {
    font-size: 6.8vw;
  }
}

.company .history h2 span.history__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .company .history h2 span.history__tit--main:before {
display:none;
  }
}

.company .history h2 span.history__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .company .history h2 span.history__tit--main:after {
display:none;
  }
}

.company .history h2 span.history__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .company .history h2 span.history__tit--sub {
    font-size: 4.84vw;
  }
}

.company .history__data {
  border-top: 1px solid #646464;
  margin-bottom: 120px;
}

.company .history__data--list {
  justify-content: space-between;
  padding-top: 60px;
}

.company .history__data--term {
  color: #8ab233;
  width: 16.12%;
  border-bottom: 1px solid #646464;
  padding-left: 10px;
  padding-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .company .history__data--term {
    border-bottom: none;
    font-size: 5.66vw;
    padding-bottom: 15px;
    width: 100%;
  }
}

.company .history__data--desc {
  width: 78.62%;
  border-bottom: 1px solid #646464;
  padding-bottom: 35px;
  padding-left: 10px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .company .history__data--desc {
    font-size: 4.66vw;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 25px;
  }
}

.company .service {
  background-color: inherit;
}


.facility .container {
  padding-bottom: 0;
}

.facility .lead-r img {
  margin-left: auto;
  margin-right: auto;
}

.facility .proud h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .facility .proud h2 {
    margin-bottom: 4.03vw;
  }
}

.facility .proud h2 span {
  display: block;
}

.facility .proud h2 span.proud__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .facility .proud h2 span.proud__tit--main {
    font-size: 6.8vw;
  }
}

.facility .proud h2 span.proud__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .facility .proud h2 span.proud__tit--main:before {
    width: 21.34vw;
    height: 5.32vw;
    margin-right: 1.61vw;
  }
}

.facility .proud h2 span.proud__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .facility .proud h2 span.proud__tit--main:after {
    width: 21.34vw;
    height: 5.32vw;
    margin-left: 1.61vw;
  }
}

.facility .proud h2 span.proud__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .facility .proud h2 span.proud__tit--sub {
    font-size: 4.84vw;
  }
}

.facility .proud .flex {
  justify-content: space-between;
}

.facility .proud .proud-row {
  margin-bottom: 60px;
}

.facility .proud .proud-row__proud-l {
  width: 31.4%;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-l {
    width: 100%;
  }
}

.facility .proud .proud-row__proud-l--tit {
  color: #8ab233;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 1.625rem;
}

.facility .proud .proud-row__proud-r {
  margin-bottom: 15px;
  width: 65.9%;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-r {
    width: 100%;
  }
}

.facility .proud .proud-row__proud-r img {
  border-radius: 20px;
}

.facility .proud .proud-row__proud-r--pic {
  margin-bottom: 30px;
}

.facility .proud .proud-row__proud-r .flex {
  flex-direction: row;
  justify-content: space-between;
}

.facility .proud .proud-row__proud-r--l {
  width: 47.24%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-r--l {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-r--l img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.facility .proud .proud-row__proud-r--r {
  width: 47.24%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-r--r {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row__proud-r--r img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.facility .proud .proud-row-reverse {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse {
    flex-direction: column-reverse;
  }
}

.facility .proud .proud-row-reverse__proud-l {
  width: 65.9%;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-l {
    width: 100%;
  }
}

.facility .proud .proud-row-reverse__proud-l img {
  border-radius: 20px;
}

.facility .proud .proud-row-reverse__proud-l--pic {
  margin-bottom: 30px;
}

.facility .proud .proud-row-reverse__proud-l .flex {
  flex-direction: row;
  justify-content: space-between;
}

.facility .proud .proud-row-reverse__proud-l--l {
  width: 47.24%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-l--l {
    width: 100%;
  }
}

.facility .proud .proud-row-reverse__proud-l--l img {
  margin-bottom: 5px;
}

.facility .proud .proud-row-reverse__proud-l--r {
  width: 47.24%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-l--r {
    width: 100%;
  }
}

.facility .proud .proud-row-reverse__proud-l--r img {
  margin-bottom: 5px;
}

.facility .proud .proud-row-reverse__proud-r {
  width: 31.4%;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-r {
    width: 100%;
  }
}

.facility .proud .proud-row-reverse__proud-r--tit {
  color: #8ab233;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 1.625rem;
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-r--l {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-r--l img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .facility .proud .proud-row-reverse__proud-r--r img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.facility .gallery {
  margin-bottom: 60px;
}

.facility .gallery h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .facility .gallery h2 {
    margin-bottom: 3.90625vw;
  }
}

.facility .gallery h2 span {
  display: block;
}

.facility .gallery h2 span.gallery__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .facility .gallery h2 span.gallery__tit--sub {
    font-size: 3.55vw;
  }
}

.facility .gallery h2 span.gallery__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .facility .gallery h2 span.gallery__tit--main {
    font-size: 6.8vw;
  }
}

.facility .gallery h2 span.gallery__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .facility .gallery h2 span.gallery__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.facility .gallery h2 span.gallery__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .facility .gallery h2 span.gallery__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.facility .gallery__slider--item {
  margin: 0 4.83vw;
}

.facility .gallery__slider--pic {
  border-radius: 20px;
  width: 55vw;
}

.facility .gallery__slider .slick-prev:before, .facility .gallery__slider .slick-next:before {
  color: #646464;
  font-size: 35px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .facility .gallery__slider .slick-prev:before, .facility .gallery__slider .slick-next:before {
    font-size: 25px;
  }
}

.facility .gallery__slider .slick-prev, .facility .gallery__slider .slick-next {
  color: #ffffff;
  top: 17vw;
  z-index: 999;
  width: 25px;
  height: 25px;
}

.facility .gallery__slider .slick-prev {
  left: 17%;
}

@media screen and (max-width: 768px) {
  .facility .gallery__slider .slick-prev {
    left: 14.9%;
  }
}

.facility .gallery__slider .slick-next {
  right: 18%;
}

@media screen and (max-width: 768px) {
  .facility .gallery__slider .slick-next {
    right: 14.5%;
  }
}

.facility .gallery__slider .slick-slide {
  height: auto;
}

.news-archive .mv .container {
  padding-bottom: 0;
}

.news-archive h2 {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news-archive h2 {
    margin-bottom: 3.90625vw;
  }
}

.news-archive h2 span {
  display: block;
}

.news-archive h2 span.backnumber__tit--sub {
  color: #ed8599;
  font-size: 1.375rem;
}

@media screen and (max-width: 768px) {
  .news-archive h2 span.backnumber__tit--sub {
    font-size: 3.55vw;
  }
}

.news-archive h2 span.backnumber__tit--main {
  color: #8ab233;
  font-size: 2.5rem;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .news-archive h2 span.backnumber__tit--main {
    font-size: 6.8vw;
  }
}

.news-archive h2 span.backnumber__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .news-archive h2 span.backnumber__tit--main:before {
    width: 4.6vw;
    height: 4.6vw;
    margin-right: 1.5625vw;
  }
}

.news-archive h2 span.backnumber__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after02.png);
  display: inline-block;
  background-size: contain;
  width: 57px;
  height: 57px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .news-archive h2 span.backnumber__tit--main:after {
    width: 4.6vw;
    height: 4.6vw;
    margin-left: 1.5625vw;
  }
}

.news-archive .archive {
  padding-bottom: 60px;
}

.news-archive .archive h2 {
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news-archive .archive h2 {
    margin-bottom: 4.03vw;
  }
}
.news-archive .mv-page .mv-r{
	margin-top:0;	
}

.news-archive .archive h2 span {
  display: block;
}

.news-archive .archive h2 span.archive__tit--main {
  color: #ed8599;
  font-size: 2.875rem;
}
.news-archive .archive__body{
	margin:0 auto;	
}

@media screen and (max-width: 768px) {
  .news-archive .archive h2 span.archive__tit--main {
    font-size: 6.8vw;
  }
}

.news-archive .archive h2 span.archive__tit--main:before {
  content: "";
  background-image: url(../assets/img/common/title_before01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .news-archive .archive h2 span.archive__tit--main:before {
    display:none;
  }
}

.news-archive .archive h2 span.archive__tit--main:after {
  content: "";
  background-image: url(../assets/img/common/title_after01.png);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 277px;
  height: 66px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .news-archive .archive h2 span.archive__tit--main:after {
    display:none;
  }
}

.news-archive .archive h2 span.archive__tit--sub {
  color: #8ab233;
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .news-archive .archive h2 span.archive__tit--sub {
    font-size: 4.84vw;
  }
}

.news-archive .backnumber {
  background-color: rgba(138, 178, 51, 0.1);
  padding-top: 60px;
  padding-bottom: 30px;
}

.news-archive .backnumber-list__tit {
  font-size: 2.125rem;
  line-height: 0.94118;
  letter-spacing: 0.04412em;
  color: #ed8599;
  margin-bottom: 30px;
}

.news-archive .backnumber-list__body {
  margin-bottom: 30px;
}

.news-archive .backnumber-list__body .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .news-archive .backnumber-list__body .flex {
    flex-direction: row;
  }
}

.news-archive .backnumber-list__body .flex li {
  width: calc(100% / 6);
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .news-archive .backnumber-list__body .flex li {
    width: calc(100% / 3);
  }
}

.news-archive .backnumber__link {
  color: #ed8599;
  font-size: 22px;
}

.news-archive .service {
  background-color: transparent;
}

.mv-page {
  padding-top: 50px !important;
}

@media screen and (max-width: 768px) {
  .mv-page .mv-l {
    width: 100%;
  }
  .news-archive .backnumber__link {
  font-size: 20px;
}
}

.mv-page .mv-l h1 {
  margin-bottom: 70px;
  font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
  .smcare .mv-page .mv-l h1 {
    font-size: 5.9vw !important;
    margin-bottom: 0;
  }
  .mv-page .mv-l h1 {
  font-size: 2.8rem;
}
}

.mv-page .mv-l h1 span {
  font-size: 1.75rem;
  letter-spacing: 0.35em;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .mv-page .mv-l h1 span {
    font-size: 3.75vw;
  }
}

.mv-page .mv-r {
  margin-top: auto;
  margin-left: auto;
  width: 47%;
}

@media screen and (max-width: 768px) {
  .mv-page .mv-r {
    margin-top: 0;
  }
}
