.container {
  max-width: 98rem;
  padding: 0 1.4rem;
}

/* 小さい端末でのコンテナ調整 */
@media screen and (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 320px) {
  .container {
    padding: 0 0.8rem;
  }
}

.container--full {
  width: 100%;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #0b0b0c;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* 小さい端末での画像最適化 */
@media screen and (max-width: 375px) {
  img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

figure {
  margin: 2.1rem auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  letter-spacing: 0;
}

a {
  color: #F99643CF;
  cursor: pointer;
}

a:hover {
  color: rgba(73, 131, 239, 0.81);
  text-decoration: none;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  height: auto;
  padding: .7rem 1.4rem;
  border-radius: 3px;
  color: #0b0b0c;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  border: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #0b0b0c;
  border: none;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #fff;
  background-color: #F99643CF;
  border-color: transparent;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #fff;
  background-color: rgba(73, 131, 239, 0.81);
  border-color: transparent;
}

.button.button-secondary {
  border: 1px solid #F99643CF;
  color: #F99643CF;
}

.button.button-secondary:hover,
button.button-secondary:hover,
input[type="submit"].button-secondary:hover,
input[type="reset"].button-secondary:hover,
input[type="button"].button-secondary:hover,
.button.button-secondary:focus,
button.button-secondary:focus,
input[type="submit"].button-secondary:focus,
input[type="reset"].button-secondary:focus,
input[type="button"].button-secondary:focus {
  color: rgba(73, 131, 239, 0.81);
  border-color: rgba(73, 131, 239, 0.81);
}

.button.button--large {
  padding: 1.4rem 2.8rem;
  font-size: 2.1rem;
}

label {
  color: #F99643CF;
  font-weight: 400;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  border: 1px solid rgba(255, 158, 158, 0.96);
  padding: .7rem 1.4rem;
  border-radius: 0;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #F99643CF;
}

table {
  width: 100%;
  table-layout: fixed;
}

th {
  width: 30%;
}

.header {
  position: relative;
  min-height: 5.6rem;
  background-color: #F99643CF;
  color: #fff;
}

@media screen and (min-width: 980px) {
  .header {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28rem;
    background-color: #F99643CF;
    z-index: 1;
  }
}

.header__inner {
  padding: 0 1.4rem;
}

@media screen and (min-width: 980px) {
  .header__inner {
    padding: 0;
  }
}

.header__logo {
  float: left;
  margin-top: 1.4rem;
  display: block;
  width: 9.8rem;
}

@media screen and (min-width: 980px) {
  .header__logo {
    float: none;
    width: 16.8rem;
    max-height: 4.2rem;
    padding: 2.8rem;
  }
}

.header__nav {
  float: right;
}

@media screen and (min-width: 980px) {
  .header__nav {
    float: none;
  }
}

.header__nav__button {
  display: block;
  padding: 1.4rem 0;
  width: 2.8rem;
  height: 2.8rem;
  background-repeat: no-repeat;
  background-size: auto 1.4rem;
  background-position: center center;
  background-image: url("/assets/themes/stylish/icon-menu@2x.png");
  cursor: pointer;
}

@media screen and (min-width: 980px) {
  .header__nav__button {
    display: none;
  }
}

.header__nav__list {
  display: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.header__nav__list.opened {
  display: block;
  position: absolute;
  top: 5.6rem;
  right: 0;
  z-index: 2;
  width: 100%;
  background-color: #F99643CF;
}

.header__nav__list > li {
  margin-bottom: 0;
}

.header__nav__list > li > a {
  display: block;
  padding: 1.4rem;
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 980px) {
  .header__nav__list {
    display: block;
    position: static;
    z-index: auto;
    width: auto;
    margin-top: 4.2rem;
  }
  
  .header__nav__list > li > a {
    padding: 1.4rem 2.8rem;
    color: #fff;
  }
}

.header__company-info {
  padding: 1.4rem 2.8rem;
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 980px) {
  .header__company-info {
    margin-bottom: 2.1rem;
    padding-bottom: 2.1rem;
  }
}

.header__service-type {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

@media screen and (min-width: 980px) {
  .header__service-type {
    font-size: 1.4rem;
  }
}

.header__company-name {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 980px) {
  .header__company-name {
    font-size: 2rem;
  }
}

.header__contact {
  padding: .7rem 0;
  border-top: 1px solid #fff;
}

@media screen and (min-width: 980px) {
  .header__contact {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 2.8rem;
    border-width: 0;
    text-align: left;
  }
}

.header__contact__tel__icon {
  width: 1.4rem;
  height: 1.4rem;
}

@media screen and (min-width: 980px) {
  .header__contact__tel__icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.header__contact__tel__num {
  vertical-align: middle;
}

@media screen and (min-width: 980px) {
  .header__contact__tel__num {
    font-size: 2.1rem;
  }
}

.header__contact__note {
  display: block;
  font-size: 1.19rem;
}

@media screen and (min-width: 980px) {
  .header__contact__note {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 980px) {
  .main {
    margin-left: 28rem;
  }
}

@media screen and (min-width: 980px) {
  .footer {
    margin-left: 28rem;
  }
}

.footer__copyright {
  margin-bottom: 0;
  padding: 1.19rem 0;
  border-top: 1px solid rgba(255, 158, 158, 0.96);
  font-size: 1.19rem;
  color: #959ba7;
  text-align: center;
}

.section,
.article {
  margin: 7rem 0;
}

.content-box {
  border: 1px solid #F99643CF;
  padding: 2.8rem;
}

.title-primary {
  font-size: 3.2rem;
  color: #F99643CF;
}

/* スマホ用のtitle-primaryサイズ調整 */
@media screen and (max-width: 767px) {
  .title-primary {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 480px) {
  .title-primary {
    font-size: 2.4rem;
  }
}

.title-primary:before {
  content: "";
  display: block;
  margin-bottom: 2.1rem;
  width: 5.6rem;
  height: 1px;
  background-color: #F99643CF;
}

/* スマホ用のtitle-primary:beforeサイズ調整 */
@media screen and (max-width: 767px) {
  .title-primary:before {
    margin-bottom: 1.8rem;
    width: 4.8rem;
  }
}

@media screen and (max-width: 480px) {
  .title-primary:before {
    margin-bottom: 1.6rem;
    width: 4.0rem;
  }
}

.title-secondary {
  font-size: 2.5rem;
}

/* スマホ用のtitle-secondaryサイズ調整 */
@media screen and (max-width: 767px) {
  .title-secondary {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 480px) {
  .title-secondary {
    font-size: 2.2rem;
  }
}

.title-tertiary {
  font-size: 1.4rem;
  font-weight: 700;
}

.list-box {
  list-style: none;
  margin-left: 0;
}

.list-box > li,
.list-box > .row > li {
  margin-bottom: 4%;
  padding: 1.4rem;
  border: 2px solid #edf0f5;
}

.list-box > li:nth-child(3n+1),
.list-box > .row > li:nth-child(3n+1) {
  margin-left: 0;
}

.list-box__name {
  margin: 2.1rem 0;
  font-size: 2.1rem;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-item {
  margin-left: 0 !important;
  width: 24% !important;
  margin-right: 1.333% !important;
}

.area-item:last-child {
  margin-right: 0 !important;
}

/* タブレット用（2カラム表示） */
@media screen and (max-width: 767px) {
  .area-item {
    width: 48% !important;
    margin-right: 4% !important;
  }
  
  .area-item:nth-child(2n) {
    margin-right: 0 !important;
  }
  
  .area-item:nth-child(2n+1) {
    margin-left: 0 !important;
  }
}

/* スマホ用（1カラム表示） */
@media screen and (max-width: 549px) {
  .area-item {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 2rem;
  }
  
  .area-item .list-box__name {
    font-size: 1.8rem;
    min-height: 60px;
    padding: 1rem;
  }
}

/* より小さなスマホ用 */
@media screen and (max-width: 400px) {
  .area-item .list-box__name {
    font-size: 1.6rem;
    min-height: 50px;
    padding: 0.8rem;
  }
}

/* メニューページのlist-box__nameのレスポンシブ対応 */
@media screen and (max-width: 767px) {
  .list-box__name {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 480px) {
  .list-box__name {
    font-size: 1.8rem;
  }
}

.list-box__price {
  font-size: 2.1rem;
  color: #F99643CF;
  text-align: center;
}

.list-box__media {
  overflow: hidden;
  margin: 0 -1.4rem;
}

.list-box__media > img {
  width: 100%;
  height: auto;
}

.list-box__desc {
  margin-top: 1.4rem;
}

.list-box__link {
  margin-top: 2.8rem;
  margin-left: -1.4rem;
  margin-right: -1.4rem;
  margin-bottom: -1.4rem;
  padding: 1.4rem;
  background-color: #edf0f5;
  text-align: center;
}

.list-box__link > .button {
  margin-bottom: 0;
}

.list-box-h {
  list-style: none;
  margin-left: 0;
}

.list-box-h > li {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.list-box-h__name,
.list-box-h__price,
.list-box-h__link {
  display: table-cell;
  padding: 1.4rem;
  vertical-align: middle;
  box-sizing: border-box;
}

.list-box-h__name:after,
.list-box-h__price:after,
.list-box-h__link:after {
  content: "";
  display: table;
  clear: both;
}

.list-box-h__name {
  background-color: #fff;
}

@media screen and (min-width: 980px) {
  .list-box-h__name {
    font-size: 2.1rem;
  }
}

.list-box-h__price {
  width: 30%;
  border-left: 1px dashed #0b0b0c;
  background-color: #fff;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .list-box-h__price {
    width: 25%;
    font-size: 2.1rem;
  }
}

.list-box-h__link {
  width: 20%;
  background-color: #F99643CF;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 980px) {
  .list-box-h__link {
    width: 12.5%;
  }
}

.list-box-h__link:hover {
  background-color: rgba(73, 131, 239, 0.81);
  color: #fff;
}

.list-service {
  list-style: none;
  margin-left: 0;
}

.list-service > li {
  text-align: center;
  margin-bottom: 0;
}

.list-service__price {
  font-size: 2.1rem;
}

.list-service__time {
  font-size: 1.19rem;
}

.list-service__time:before,
.list-service__time:after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1px;
  background-color: #0b0b0c;
  vertical-align: middle;
}

.list-service__time:before {
  margin-right: .35rem;
}

.list-service__time:after {
  margin-left: .35rem;
}

.timetable {
  width: 100%;
  table-layout: fixed;
}

@media screen and (min-width: 550px) {
  .timetable {
    width: 100%;
    table-layout: auto;
  }
}

.timetable thead,
.timetable tbody,
.timetable tr,
.timetable tbody th {
  display: block;
}

@media screen and (min-width: 550px) {
  .timetable thead {
    display: table-header-group;
  }
  
  .timetable tbody {
    display: table-row-group;
  }
  
  .timetable tr {
    display: table-row;
  }
  
  .timetable tbody th {
    display: table-cell;
    border-bottom-style: solid;
  }
}

.timetable th,
.timetable td {
  padding: 1.4rem 0;
}

@media screen and (min-width: 550px) {
  .timetable th,
  .timetable td {
    padding: 1.4rem;
  }
}

.timetable thead th:first-child {
  display: none;
}

@media screen and (min-width: 550px) {
  .timetable thead th:first-child {
    display: table-cell;
  }
}

.timetable thead th,
.timetable tbody td {
  width: calc(100% / 6);
}

@media screen and (min-width: 550px) {
  .timetable thead th,
  .timetable tbody td {
    width: auto;
  }
}

.timetable tbody th {
  text-align: center;
  border-bottom-style: dashed;
}

@media screen and (min-width: 550px) {
  .timetable tbody th {
    text-align: left;
  }
}

.figure {
  overflow: hidden;
  background-color: #edf0f5;
  border-radius: 3px;
}

.figure__caption {
  margin-bottom: 1.4rem;
  padding: .7rem 0;
  background-color: #0b0b0c;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.hero {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 42rem;
}

@media screen and (min-width: 980px) {
  .hero {
    margin-left: -28rem;
    height: 56rem;
    height: 100vh;
  }
}

.hero__slogan {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  max-width: 42rem;
  color: #fff;
}

/* スマホ用のスローガン位置とサイズ調整 */
@media screen and (max-width: 767px) {
  .hero__slogan {
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    max-width: none;
  }
}

@media screen and (max-width: 480px) {
  .hero__slogan {
    left: 0.8rem;
    bottom: 0.8rem;
    right: 0.8rem;
  }
}

@media screen and (min-width: 550px) {
  .hero__slogan {
    right: 1.4rem;
    left: auto;
  }
}

.hero__slogan__word {
  font-size: 2.1rem;
}

/* スマホ用のテキストサイズ調整 */
@media screen and (max-width: 767px) {
  .hero__slogan__word {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .hero__slogan__word {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

.hero__slogan__speaker {
  margin-top: 1.19rem;
  padding-top: 1.19rem;
  border-top: 1px solid #454545;
}

/* スマホ用のスピーカー部分のサイズ調整 */
@media screen and (max-width: 767px) {
  .hero__slogan__speaker {
    font-size: 2.0rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero__slogan__speaker {
    font-size: 2.0rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }
}

.banner {
  font-family: "Helvetica Neue", Helvetica, Arial, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #F99643CF;
  color: #fff;
}

.banner a,
.banner a:hover {
  color: #fff;
}

.banner__item {
  padding: 1.4rem;
  padding-bottom: 2.8rem;
}

.banner__item:first-child {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 550px) {
  .banner__item:first-child {
    border-right: 1px solid #fff;
    border-bottom-width: 0;
  }
}

.banner__item__title {
  margin-bottom: 1.4rem;
  font-size: 2.1rem;
}

.banner__item__content {
  padding-left: 4.2rem;
  background-repeat: no-repeat;
  background-size: auto 4.2rem;
  background-position: left top;
}

.banner__item__content.banner__item__content--tel {
  background-image: url("/assets/themes/stylish/icon-tel@2x.png");
}

.banner__item__content.banner__item__content--access {
  background-image: url("/assets/themes/stylish/icon-access@2x.png");
}

.banner__item__tel {
  font-size: 2.8rem;
  line-height: 1;
}

.banner__item__note {
  display: block;
  font-size: 1.19rem;
}

.banner__item__access__link {
  display: block;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-tel {
  background-image: url("/assets/themes/clean/icon-tel@2x.png");
  background-position: center center;
}

.contact__form {
  margin-bottom: 0;
}

@media screen and (min-width: 980px) {
  .contact__form {
    padding: 2.8rem;
    border: 2px solid #edf0f5;
  }
}

.contact__form__input {
  width: 50%;
}

.contact__form__textarea {
  width: 100%;
}

.merit-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.merit-list li {
  margin-bottom: 2.1rem;
}

.merit-list__title {
  margin-top: .7rem;
  margin-bottom: .7rem;
  font-size: 2.0rem;
  font-weight: 700;
}

@media screen and (min-width: 980px) {
  .merit-list__title {
    margin-top: 0;
  }

  .meri__list__desc{
    width: 103%;
  }
}

.meri__list__desc {
  margin-bottom: 0;
}

.merit-list__image {
  border: 1px solid #fff;
  box-sizing: border-box;
}

.merit-list__image > img {
  width: 100%;
  height: auto;
}

.news-list {
  position: relative;
}

.news-list__items dt {
  float: left;
}

.news-list__items dd {
  margin-left: 8.4rem;
}

.access__intro {
  margin-bottom: 4.2rem;
}

.access__intro__map {
  width: 100%;
  height: calc(80vw * 0.618);
  max-height: 42rem;
}

.staff__list {
  list-style: none;
}

.staff__list > li {
  margin-left: 0;
}

.staff__list__media,
.staff__list__name,
.staff__list__skill {
  text-align: center;
}

@media screen and (min-width: 550px) {
  .staff__list__media,
  .staff__list__name,
  .staff__list__skill {
    text-align: left;
  }
}

.staff__list__media > img {
  max-width: 50%;
  height: auto;
}

@media screen and (min-width: 550px) {
  .staff__list__media > img {
    max-width: 100%;
  }
}

.staff__list__name {
  margin-top: 2.1rem;
  margin-bottom: 0;
  font-size: 2.1rem;
  font-weight: 700;
}

@media screen and (min-width: 550px) {
  .staff__list__name {
    margin-top: 0;
  }
}

.staff__list__skill {
  margin-bottom: 2.8rem;
}

.text-overlay {
  background-color: rgba(255, 255, 255, 0.8); /* 白い半透明背景 */
  padding: 10px 15px; /* 内側の余白 */
  border-radius: 5px; /* 角を丸く */
  backdrop-filter: blur(5px); /* 背景をぼかす（オプション） */
  -webkit-backdrop-filter: blur(5px); /* Safari対応 */
}

/* 画像上のテキスト用の汎用クラス */
.image-text-overlay {
  background-color: rgba(255, 255, 255, 0.9); /* 白い半透明 */
  color: #333; /* テキスト色 */
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 軽い影 */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* スマホ用のオーバーレイパディング調整 */
@media screen and (max-width: 767px) {
  .image-text-overlay {
    padding: 12px 16px;
    border-radius: 4px;
  }
}

@media screen and (max-width: 480px) {
  .image-text-overlay {
    padding: 10px 14px;
    border-radius: 3px;
  }
}

/* ご利用の流れページの画像最適化 */
.flow-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.flow-image:hover {
  transform: scale(1.05);
}

/* 画像拡大表示用のモーダル */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image-modal img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.image-modal .close:hover {
  opacity: 0.7;
}

/* スマホ用のご利用の流れ画像調整 - 文字を読みやすくするため適切にスケール */
@media screen and (max-width: 767px) {
  .flow-image {
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
    transform-origin: center;
  }
}

/* iPhone SEなど小さい端末向け調整（375px以下） */
@media screen and (max-width: 375px) {
  .flow-image {
    width: 100%;
    max-width: 100%;
    margin: 0.8rem auto;
    transform-origin: center;
    object-fit: contain;
  }
}

/* さらに小さい端末向け調整（320px以下） */
@media screen and (max-width: 320px) {
  .flow-image {
    width: 100%;
    max-width: 100%;
    margin: 0.5rem auto;
    transform-origin: center;
    object-fit: contain;
  }
}

/* ご利用の流れセクションの調整 */
@media screen and (max-width: 767px) {
  .flow-section {
    padding: 1rem 0.5rem;
    overflow-x: hidden;
  }
  
  .flow-section .container {
    padding: 0 1rem;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 375px) {
  .flow-section {
    padding: 0.8rem 0.3rem;
    overflow-x: hidden;
  }
  
  .flow-section .container {
    padding: 0 0.8rem;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 320px) {
  .flow-section {
    padding: 0.5rem 0.2rem;
    overflow-x: hidden;
  }
  
  .flow-section .container {
    padding: 0 0.5rem;
    overflow-x: hidden;
  }
}

/* ===== お知らせページ用スタイル ===== */

.loading-message {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.error-message {
  text-align: center;
  padding: 2rem;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 4px;
  margin: 2rem 0;
}

.no-posts-message {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}

.no-posts-message p {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #495057;
}

.no-posts-sub {
  font-size: 1.4rem !important;
  color: #6c757d !important;
  margin-bottom: 0 !important;
}

.blog-posts {
  margin-top: 2rem;
}

.blog-post {
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid #edf0f5;
  border-radius: 4px;
  background-color: #fff;
}

.blog-post__header {
  margin-bottom: 1rem;
  border-bottom: 1px solid #edf0f5;
  padding-bottom: 1rem;
}

.blog-post__title {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  line-height: 1.3;
}

.blog-post__title a {
  color: #F99643CF;
  text-decoration: none;
}

.blog-post__title a:hover {
  color: rgba(73, 131, 239, 0.81);
  text-decoration: underline;
}

.blog-post__date {
  color: #666;
  font-size: 1.2rem;
}

.blog-post__content {
  margin-top: 1rem;
}

.blog-post__excerpt {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.blog-post__read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #F99643CF;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 1.2rem;
}

.blog-post__read-more:hover {
  background-color: rgba(73, 131, 239, 0.81);
  color: #fff;
}

@media screen and (max-width: 549px) {
  .blog-post {
    padding: 1.5rem;
  }
  
  .blog-post__title {
    font-size: 1.6rem;
  }
}

