@charset "UTF-8";
/********************************
* モバイルファースト
********************************/
/********************************
* シンシアHP流用
********************************/
/********************************
* シンシアHP流用
********************************/
/********************************
* ブロックエディタ　デフォルト削除
********************************/
:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
:root :where(.wp-block-post-date) {
  color: unset;
  font-size: unset;
}

:where(.wp-site-blocks) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

/********************************
* 全体共通事項
********************************/
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 62.5%;
  }
}

html,
body {
  overflow-x: hidden;
  background-color: #fff;
}

p,
h1,
h2,
h3,
h4 {
  font-family: "Noto Sans JP", sans-serif;
}

.tab-br {
  display: none;
}
@media only screen and (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

/********************************
* フォント
********************************/
.montserrat {
  font-family: "Montserrat", sans-serif;
}

.header {
  position: relative;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled .header__inner {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 2rem;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 2000;
  transition: box-shadow 0.3s ease;
  height: 8.5vh;
}
@media only screen and (min-width: 768px) {
  .header__inner {
    padding: 5.8rem 4rem;
  }
}
.header__logo {
  position: relative;
  z-index: 2000;
  max-width: 15.7rem;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .header__logo {
    max-width: 25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header__logo {
    max-width: 32.3rem;
    padding-left: 2rem;
  }
}
.header__logo img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .header__logo img {
    max-width: 100%;
  }
}
.header__outlink {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header__outlink {
    display: block;
  }
}
.header__nav {
  max-width: 44rem;
  width: 100%;
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__nav-item {
  font-size: 1.4rem;
  margin: 0 0 0 0.8rem;
}
.header__nav-item:nth-child(2) {
  padding-left: 4rem;
}
.header__nav-item:nth-child(3) {
  padding-left: 3rem;
}
.header__nav-item:nth-child(4) {
  padding-left: 1.7rem;
}
.header__btn {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header__btn {
    display: flex;
    align-items: center;
    background-color: #013b80;
    margin: 0 3.4rem 0 0;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: -0.8px;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  .header__btn img {
    margin-left: 0.8rem;
  }
}
.header .header__hamburger {
  position: relative;
  height: 20px;
  padding-right: 0.5rem;
  cursor: pointer;
  z-index: 2000;
}
@media only screen and (min-width: 768px) {
  .header .header__hamburger {
    display: none;
  }
}
.header .header__hamburger-line {
  display: block;
  width: 2.4rem;
  height: 2px;
  background-color: #222;
  margin: 4px 0;
  transition: all 0.3s ease;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 3.2px);
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(5px, -2.5px);
}

.hamburger-nav {
  position: relative;
  pointer-events: auto;
  display: block;
}
.hamburger-nav__menu {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  font-size: 16px;
  font-weight: bold;
  padding-top: 17rem;
  text-align: center;
  z-index: 500;
  height: 100vh;
  overflow-y: auto;
}
.hamburger-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: min(36.2vw, 136px) min(6.66vw, 25px) 0;
  margin: 0 auto;
}
.hamburger-nav__menu-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(3.46vw, 13px) min(4.53vw, 17px);
  margin-bottom: min(10.13vw, 38px);
}
.hamburger-nav__menu-item a {
  display: block;
  background-color: #e9f6fc;
  box-shadow: 0 0 0 1px #0068bb;
  border-radius: 50px;
  font-size: 1.2rem;
  color: #013b80;
  padding: min(1.6vw, 6px) 0 calc(min(1.6vw, 6px) - 2px);
}
.hamburger-nav__outlink {
  margin: 0 0 6.5rem;
}
.hamburger-nav__outlink-btn {
  background-color: #013b80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  border-radius: 50px;
  padding: min(2.66vw, 10px) 0;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3rem;
}
.hamburger-nav__outlink-btn img {
  padding-left: 11px;
}

.footer {
  background-image: url("/wp-content/themes/sincere-consulting/assets/img/footer-bg.webp	");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/********************************
* ホーム 全体共通
********************************/
.main {
  padding-top: 14.4rem;
}
@media only screen and (min-width: 768px) {
  .main {
    padding-top: 26rem;
  }
}

.component__top-sec {
  margin-bottom: min(22.6vw, 85px);
}
@media only screen and (min-width: 768px) {
  .component__top-sec {
    margin-bottom: min(8vw, 120px);
  }
}
.component__top-sec--title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: 0.2px;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.component__top-sec--subtitle {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
}

.pcNav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pcNav {
    display: block;
    margin-bottom: 16rem;
  }
}
.pcNav__nav ul {
  max-width: 121rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.1rem, 1fr));
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  gap: 2rem;
}
@media only screen and (min-width: 1200px) {
  .pcNav__nav ul {
    grid-template-columns: repeat(5, 21.1rem);
    justify-content: space-between;
  }
}
.pcNav__nav a {
  display: block;
  width: 100%;
  background-color: #e9f6fc;
  box-shadow: 0 0 0 1px #0068bb;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #013b80;
  padding: min(1.6vw, 6px) 0 calc(min(1.6vw, 6px) + 2px);
  transition: all 0.3s ease;
}
.pcNav__nav a.active {
  background-color: #013b80;
  color: #fff;
  border-radius: 50px;
}

/********************************
* consulting
********************************/
.consulting {
  margin-bottom: 15rem;
}
@media only screen and (min-width: 768px) {
  .consulting {
    margin-bottom: 21.5rem;
  }
}
.consulting__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .consulting__inner {
    flex-direction: row;
  }
}
.consulting__content-title {
  margin-bottom: 4.6rem;
}
@media only screen and (min-width: 768px) {
  .consulting__content-title {
    display: flex;
    margin-bottom: 5.5rem;
  }
}
.consulting__content-title img {
  display: inline-block;
  width: min(25.6vw, 96px);
}
@media only screen and (min-width: 768px) {
  .consulting__content-title img {
    width: min(9.06vw, 136px);
    margin-right: 3.2rem;
  }
}
.consulting__content-title h2 {
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.4;
  letter-spacing: 0.8px;
  font-weight: bold;
  margin-top: 1rem;
}
.consulting__content-text {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 2.3;
}
@media only screen and (min-width: 768px) {
  .consulting__content-text {
    width: min(59.6vw, 421px);
  }
}
@media only screen and (min-width: 1200px) {
  .consulting__content-text {
    width: min(32.5vw, 490px);
  }
}
.consulting__content-left {
  padding: 0 2.7rem;
  margin-bottom: 18rem;
}
@media only screen and (min-width: 768px) {
  .consulting__content-left {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1501px) {
  .consulting__content-left {
    margin: 1.8rem 0 18rem 14.3rem;
  }
}
.consulting__content-right {
  background-image: url("/wp/wp-content/themes/sincere-consulting/assets/img/bg-blue.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 800px) {
  .consulting__content-right {
    position: absolute;
    margin-left: auto;
    width: 48vw;
    height: min(41.1vw, 370px);
    right: 0;
    transform: translate(0, 50%);
  }
}
@media screen and (min-width: 1501px) {
  .consulting__content-right {
    width: 48vw;
    height: 480px;
  }
}
.consulting__content-right-img {
  width: min(77.6vw, 291px);
  height: min(66.6vw, 250px);
  transform: translate(0, -50%);
  top: 50%;
  right: 0;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .consulting__content-right-img {
    width: min(37.3vw, 560px);
    height: min(30.6vw, 460px);
    transform: none;
  }
}
.consulting__content-right-img img {
  width: 100%;
  height: min(63.7vw, 239px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .consulting__content-right-img img {
    transform: translate(0, -52%);
    height: auto;
  }
}

/********************************
* business
********************************/
.business {
  margin-bottom: min(30.9vw, 116px);
}
@media only screen and (min-width: 768px) {
  .business {
    margin-bottom: 8.3rem;
  }
}
.business__inner {
  padding: 0 2.7rem;
}
@media only screen and (min-width: 768px) {
  .business__inner {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1201px) {
  .business__inner {
    padding: 0 17.2rem;
  }
}
.business-item__strong {
  margin-bottom: min(14.6vw, 55px);
}
@media only screen and (min-width: 768px) {
  .business-item__strong {
    margin-bottom: min(9.06vw, 136px);
  }
}
.business-item__introduction {
  margin-bottom: min(16.5vw, 62px);
}
@media only screen and (min-width: 768px) {
  .business-item__introduction {
    margin-bottom: min(8.46vw, 127px);
  }
}
.business-item-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: bold;
}
.business-item-title h3 {
  line-height: 1.6;
}
.business-item__about-title {
  margin-bottom: min(9.6vw, 36px);
}
@media only screen and (min-width: 768px) {
  .business-item__about-title {
    margin-bottom: min(3.86vw, 58px);
  }
}
.business-item__detail-title {
  margin-bottom: min(3.73vw, 14px);
}
@media only screen and (min-width: 768px) {
  .business-item__detail-title {
    margin-bottom: min(1.2vw, 18px);
  }
}
.business-item__introduction-title {
  margin-bottom: min(4.26vw, 16px);
}
.business-item-img {
  width: min(85vw, 319px);
  height: min(56.8vw, 213px);
}
@media screen and (min-width: 376px) {
  .business-item-img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .business-item-img {
    width: min(69.4vw, 1041px);
    height: min(46.8vw, 703px);
    margin: 0 auto;
  }
}
.business-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .business-item__list {
    max-width: 96rem;
    width: 100%;
    margin: 0 auto;
  }
}
.business-item__list ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.business-item__list li {
  margin-bottom: min(4vw, 15px);
  padding-bottom: min(4vw, 15px);
  border-bottom: 1px solid #e4e4e5;
}
@media only screen and (min-width: 768px) {
  .business-item__list li {
    display: flex;
    align-items: center;
    padding-bottom: min(4.8vw, 18px);
  }
}
.business-item__list li:last-child {
  border-bottom: none;
}
.business-item__list .list-header {
  display: flex;
  align-items: flex-start;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .business-item__list .list-header {
    min-width: 32rem;
    margin-bottom: 0;
    margin-top: 0.8rem;
  }
}
.business-item__list .roman-numeral,
.business-item__list h4 {
  color: #013b80;
  font-weight: bold;
}
.business-item__list .roman-numeral {
  font-family: "Noto Serif JP", serif;
  margin-right: 1rem;
  line-height: 1.2;
}
.business-item__list h4 {
  margin: 0;
  line-height: 1.4;
}
.business-item__list p {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 2;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .business-item__list p {
    line-height: 1.8;
  }
}
.business-item-text {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.9;
}
@media only screen and (min-width: 768px) {
  .business-content {
    width: 100%;
    margin: 0 auto;
  }
}
.business-content__about {
  margin-bottom: min(17.6vw, 66px);
}
@media only screen and (min-width: 768px) {
  .business-content__about {
    margin-bottom: min(11.8vw, 178px);
  }
}
.business-content__list {
  margin-bottom: 7rem;
}
@media only screen and (min-width: 768px) {
  .business-content__list {
    margin-bottom: min(7.33vw, 110px);
  }
}
@media only screen and (min-width: 768px) {
  .business-content__detail {
    max-width: 96rem;
  }
}
.business-content__detail .business-item__service-img {
  width: min(84vw, 315px);
  height: min(65.8vw, 247px);
  margin: 0 auto;
}
@media screen and (min-width: 376px) {
  .business-content__detail .business-item__service-img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .business-content__detail .business-item__service-img {
    width: min(61.6vw, 924px);
    height: min(48.3vw, 725px);
  }
}
.business-content__detail .business-item__service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* news
********************************/
.news {
  margin-bottom: min(44.2vw, 166px);
}
@media only screen and (min-width: 768px) {
  .news {
    margin-bottom: min(3.06vw, 46px);
  }
}
.news__title {
  margin-bottom: min(10.1vw, 38px);
}
.news__title h2 {
  margin-bottom: min(2.13vw, 8px);
}
@media only screen and (min-width: 600px) {
  .news {
    background-color: #fff;
    padding: min(26.6vw, 100px) 0 min(41.3vw, 155px);
  }
}
.news__inner {
  padding: 0 2.7rem;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .news__inner {
    max-width: 120.9rem;
    padding: 0 4rem;
  }
}
.news__content {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .news__content {
    display: flex;
  }
}
.news__content-left {
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .news__content-left {
    max-width: 31%;
    width: 100%;
    text-align: left;
    padding: 2rem;
  }
}
.news__post {
  margin-bottom: 1.1rem !important;
}
@media only screen and (min-width: 768px) {
  .news__post {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .news__list {
    max-width: 70%;
    width: 100%;
    margin-left: auto;
    padding: 8rem 0 1.6rem 0;
  }
}
.news__list li {
  display: flex;
  align-items: center;
  gap: min(5.33vw, 20px);
  padding-bottom: 1.3rem;
  margin-bottom: 1.2rem;
  font-size: clamp(14px, 2vw, 16px);
  border-bottom: 1px solid #727171;
}
.news__list li:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .news__list li {
    gap: min(2.66vw, 40px);
    padding-bottom: min(0.66vw, 10px);
    margin-bottom: min(1.6vw, 24px);
  }
}
.news__list-post {
  min-width: 80px;
  flex-shrink: 0;
}
.news__list-post time {
  vertical-align: super;
}
.news__list-title a {
  overflow: hidden; /* はみ出した部分を隠す */
  white-space: nowrap; /* １行に固定 */
  text-overflow: ellipsis; /* 省略記号（…）を表示 */
  width: 100%;
}
.news__list-item {
  display: flex;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .news__list-item {
    display: flex;
    padding: 2rem 0;
  }
}
.news__button {
  text-align: right;
}
.news .component__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #013b80;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: bold;
  position: relative;
}
.news .component__btn .component__btn-text {
  margin-right: 2.2rem;
}
.news .component__btn .component__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #013b80;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .news .component__btn .component__btn-icon {
    width: 65px;
    height: 65px;
  }
}
.news .component__btn:hover .component__btn-icon {
  transform: translateX(5px);
}

/********************************
* CONSULTANT
********************************/
.staff {
  margin-bottom: 21.8rem;
}
@media only screen and (min-width: 768px) {
  .staff {
    margin-bottom: 22.1rem;
  }
}
.staff__container {
  padding: 0 2.7rem;
  max-width: 96rem;
  max-width: 121.7rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .staff__container {
    padding: 0 4rem;
  }
}
.staff__title {
  margin-bottom: 9.3rem;
}
.staff__title h2 {
  margin-bottom: 0.8rem;
}
.staff__detail {
  padding: 0 2rem;
  margin-bottom: min(38.4vw, 144px);
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .staff__detail {
    flex-direction: row;
    margin-bottom: min(6.53vw, 98px);
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .staff__detail:nth-child(2 of .staff__detail) {
    margin-bottom: min(5.93vw, 89px);
  }
}
@media only screen and (min-width: 768px) {
  .staff__detail-pc-wrapper {
    padding-left: min(1.73vw, 26px);
    width: 71.8%;
  }
}
.staff__detail:last-child {
  margin-bottom: 0;
}
.staff__name {
  display: flex;
  align-items: center;
  font-size: clamp(24px, 3vw, 26px);
  border-bottom: 1px solid #000;
  padding-bottom: min(4vw, 15px);
  margin-bottom: min(8vw, 30px);
}
@media only screen and (min-width: 768px) {
  .staff__name {
    padding-bottom: min(0.86vw, 13px);
  }
}
.staff__name h3 {
  padding-right: min(5.33vw, 20px);
}
.staff__name span {
  font-size: clamp(12px, 3vw, 14px);
}
.staff__list-wrapper {
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: min(5.86vw, 22px);
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .staff__list-wrapper {
    flex-direction: row;
    gap: 21rem;
  }
}
.staff__list-left {
  margin-bottom: min(5.33vw, 20px);
}
@media only screen and (min-width: 768px) {
  .staff__list-left {
    width: 33%;
  }
}
.staff__list-left h4 {
  margin-bottom: min(4.26vw, 16px);
}
.staff__list-left ul {
  line-height: 1.7;
}
.staff__list-right h4 {
  margin-bottom: min(3.46vw, 13px);
}
.staff__list-right ul {
  line-height: 1.8;
}
.staff__content-img {
  width: min(58.6vw, 220px);
  height: min(62.6vw, 235px);
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .staff__content-img {
    width: min(13.3vw, 200px);
    height: min(16vw, 240px);
    margin-left: min(6vw, 90px);
  }
}
.staff__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* CONSULTANT CASE
********************************/
.caseStudy {
  padding: 0 2.7rem;
  margin-bottom: 13rem;
}
@media only screen and (min-width: 768px) {
  .caseStudy {
    margin-bottom: 24rem;
  }
}
@media only screen and (min-width: 768px) {
  .caseStudy__container {
    max-width: 120rem;
    padding: 0 2rem;
    margin: 0 auto;
  }
}
.caseStudy__title {
  margin-bottom: min(15.7vw, 59px);
}
@media only screen and (min-width: 768px) {
  .caseStudy__title {
    margin-bottom: min(5.13vw, 77px);
  }
}
.caseStudy__detail {
  border-top: 1px solid #727171;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.caseStudy__detail:last-child {
  border-bottom: 1px solid #727171;
}
@media only screen and (min-width: 768px) {
  .caseStudy__detail {
    max-width: 86rem;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    padding: min(2.66vw, 40px) 0 min(1.8vw, 27px);
  }
}
.caseStudy__list-title {
  padding-top: min(8vw, 30px);
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .caseStudy__list-title {
    padding-top: 0;
    min-width: 260px;
  }
}
.caseStudy__list-title h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
}
.caseStudy__list-wrapper {
  font-size: clamp(14px, 3vw, 16px);
}
.caseStudy__list-top {
  margin-bottom: 0.4rem;
}
.caseStudy__list-top h4, .caseStudy__list-bottom h4 {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.caseStudy__list-top h4::before, .caseStudy__list-bottom h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-65%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid #000;
}
.caseStudy__list-top ul, .caseStudy__list-bottom ul {
  padding-left: 1.5rem;
}
.caseStudy__list-top ul li, .caseStudy__list-bottom ul li {
  font-size: 1.4rem;
  line-height: 1.6;
}

/********************************
* company
********************************/
.company {
  background-image: url("/wp/wp-content/themes/sincere-consulting/assets/img/company-bg.webp");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
  padding: 8.2rem 0 7.2rem;
}
@media only screen and (min-width: 768px) {
  .company {
    padding: 13.2rem 0 11.2rem;
  }
}
.company__container {
  padding: 0 2.7rem;
}
@media only screen and (min-width: 768px) {
  .company__container {
    max-width: 121rem;
    margin: 0 auto;
    padding: 0 4rem;
  }
}
.company__title {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .company__title {
    margin-bottom: 3.7rem;
  }
}
.company__title h2 {
  margin-bottom: 0.7rem;
}
@media only screen and (min-width: 768px) {
  .company__detail {
    max-width: 81rem;
    margin-left: auto;
  }
}
.company__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem; /* 行間 */
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .company__list {
    grid-template-columns: auto 1fr;
  }
}
.company__list dt {
  padding: 2rem 0 0;
  border-top: 1px solid #727171;
}
@media only screen and (min-width: 768px) {
  .company__list dt {
    padding: 0;
    min-width: 222px;
    border-top: none;
  }
}
.company__list dd {
  padding: 0 0 1rem;
}
@media only screen and (min-width: 768px) {
  .company__list dd {
    padding: 0;
  }
}
.company__list dt,
.company__list dd {
  margin: 0;
  font-size: clamp(14px, 3vw, 16px);
}
@media only screen and (min-width: 768px) {
  .company__list dt,
  .company__list dd {
    padding: 2rem 0 1.5rem;
    border-top: 1px solid #727171;
  }
}
.company__term {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .company__desc--pc {
    line-height: 1.85;
  }
}
.company .access__address-wrapper {
  margin-bottom: 2.6rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .company .access__address-wrapper {
    margin-bottom: 3.4rem;
  }
}
.company .access__contact-wrapper {
  line-height: 1.9;
}

/********************************
* footer
********************************/
.footer p {
  text-align: center;
  margin: 2rem auto;
  font-size: 1.2rem;
  letter-spacing: -0.6px;
}
@media only screen and (min-width: 768px) {
  .footer p {
    font-size: 1.4rem;
    margin: 3rem 0;
  }
}

/********************************
* お知らせページ シンシアHP流用
********************************/
.montserrat__news {
  font-family: "Montserrat", serif;
  font-weight: 400;
  line-height: 1.7;
  color: #231815;
  margin-bottom: -0.5rem;
}

.page-component {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 3rem auto 11rem;
  padding: 0 0 2rem 2rem;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .page-component {
    display: block;
    position: static;
    padding: 0;
    margin: 9rem auto 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-component {
    margin: 4rem auto 0;
  }
}
.page-component__title {
  max-width: 52rem;
  width: 100%;
  height: 20rem;
  background: #fff;
  padding: 4rem 0 0 19rem;
  z-index: 2;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .page-component__title {
    position: static;
    margin-left: 0 !important;
    padding: 2rem 0 0 2.5rem;
    height: 13rem;
  }
}
.page-component__title-text {
  color: #000;
  margin-bottom: -0.5rem;
}
.page-component__subtitle {
  font-size: 1.8rem;
  color: #000;
}
@media only screen and (max-width: 56.25em) {
  .page-component__subtitle {
    font-size: 1.2rem;
  }
}
.page-component__img {
  max-width: 100%;
  margin-top: 7.5rem;
  margin-right: 0 !important;
  z-index: 1;
}
@media only screen and (max-width: 56.25em) {
  .page-component__img {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-component__img {
    margin-top: -2rem;
  }
}
.page-component__img img {
  width: 100%;
  height: auto;
  display: block;
  padding-left: 14.4rem;
}
@media only screen and (max-width: 56.25em) {
  .page-component__img img {
    padding-left: 0;
  }
}

.page-news {
  font-size: 1.6rem;
  margin-top: 15rem;
  padding-bottom: 15.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-news {
    margin-top: 5rem;
  }
}
.page-news__container {
  max-width: 98.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media only screen and (max-width: 56.25em) {
  .page-news__container {
    padding: 0 2.7rem;
  }
}
.page-news__container .page-news__inner {
  max-width: 100%;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-news__container .page-news__inner .wp-block-post-template {
  margin-bottom: 6.6rem;
}
@media only screen and (max-width: 37.5em) {
  .page-news__container .page-news__inner .wp-block-post-template {
    margin-bottom: 5.6rem;
  }
}
.page-news__container .page-news__inner .page-news__date-text {
  margin-top: 0 !important;
  font-size: 1.6rem;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-news__container .page-news__inner .page-news__date-text {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 4rem;
}
.page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-numbers {
  display: flex;
  gap: 4rem;
}
.page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-numbers .current {
  color: #e9f6fc;
}
.page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-previous, .page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-next {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border: 1px solid #ececec;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 37.5em) {
  .page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-previous, .page-news__container .page-news__inner .page-news__pagination .wp-block-query-pagination-next {
    width: 4rem;
    height: 4rem;
  }
}
.page-news .wp-block-post-template li {
  padding: 2rem 0;
  border-top: 1px solid;
}
@media only screen and (max-width: 37.5em) {
  .page-news .wp-block-post-template li {
    padding: 1.3rem 0;
  }
}
.page-news .wp-block-post-template li:nth-child(2) {
  padding: 2.5rem 0 2.1rem;
}
.page-news .wp-block-post-template li:nth-child(3), .page-news .wp-block-post-template li:nth-child(4), .page-news .wp-block-post-template li:nth-child(6), .page-news .wp-block-post-template li:nth-child(7), .page-news .wp-block-post-template li:nth-child(8), .page-news .wp-block-post-template li:nth-child(10) {
  padding: 2.5rem 0 2rem;
}
.page-news .wp-block-post-template li:nth-child(9) {
  padding: 2rem 0;
}
.page-news .wp-block-post-template li:last-child {
  border-bottom: 1px solid;
}
@media only screen and (max-width: 37.5em) {
  .page-news .wp-block-post-template li:nth-child(2) {
    padding: 1.1rem 0;
  }
  .page-news .wp-block-post-template li:nth-child(3), .page-news .wp-block-post-template li:nth-child(4) {
    padding: 1.2rem 0;
  }
  .page-news .wp-block-post-template li:nth-child(6), .page-news .wp-block-post-template li:nth-child(7) {
    padding: 1.4rem 0;
  }
  .page-news .wp-block-post-template li:nth-child(8) {
    padding: 1.1rem 0;
  }
  .page-news .wp-block-post-template li:nth-child(9) {
    padding: 1rem 0 1.5rem;
  }
  .page-news .wp-block-post-template li:last-child {
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid;
  }
}
.page-news .wp-block-post-template li .page-news__item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .page-news .wp-block-post-template li .page-news__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    font-size: 1.4rem;
  }
}

.page-single {
  background: #fff;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .page-single {
    padding-top: 9rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-single {
    padding-top: 5rem;
  }
}
.page-single .page-component__img {
  margin-top: 11.5rem;
}
@media only screen and (max-width: 56.25em) {
  .page-single .page-component__img {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-single .page-component__img {
    margin-top: -2rem;
  }
}

.page-single__wrap .wp-block-group,
.page-single__wrap .wp-block-group .wp-block-spacer,
.page-single__wrap .entry-content p {
  max-width: 1070px;
  margin: 0 auto;
}
.page-single__wrap .wp-block-post-content p {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.page-single__wrap .page-single__title {
  padding-top: 12.5rem;
  margin-bottom: min(85.3vw, 320px);
}
@media only screen and (max-width: 56.25em) {
  .page-single__wrap .page-single__title {
    padding-top: 4.5rem;
  }
}
.page-single__wrap .page-single__title-text {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-size: 2.8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .page-single__wrap .page-single__title-text {
    font-size: 2.4rem !important;
    line-height: 1.6;
  }
}
.page-single__wrap .page-single__title .wp-block-group .has-global-padding {
  padding: 0 !important;
}