@charset "UTF-8";
/* 設定用 */
/*10px*/
/*12px*/
/*14px*/
/*16px*/
/*18px*/
/*20px*/
/*24px*/
/*40px*/
/*48px*/
/* TOP */
.top-kv {
  display: flex;
}

.topKv__nav {
  width: 20%;
  max-width: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.topKv__title {
  font-size: 0.625rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.topKv__logo {
  width: 160px;
  margin-bottom: 80px;
}

.topNav__item:not(:last-child) {
  margin-bottom: 1.25rem;
}
.topNav__item a {
  color: #333333;
  font-size: 0.876rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.topNav__item a::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #DAC556;
  transition: all 0.3s ease 0s;
}
.topNav__item a:hover::after {
  width: 100%;
}

.topKv__img {
  flex: 1;
  background-image: url(../../img/top/mv_pc.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  height: 100%;
  aspect-ratio: 515/406;
  position: relative;
}
.topKv__img h2 {
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  writing-mode: vertical-rl;
  font-size: 2.5vw;
  letter-spacing: 0.1em;
  position: absolute;
  top: 5%;
  right: 25%;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .topKv__nav {
    display: none;
  }
  .topKv__img {
    background-image: url(../../img/top/mv_sp.webp);
    aspect-ratio: 125/196;
  }
  .topKv__img h2 {
    top: 45px;
    right: 60px;
    line-height: 1.5;
    font-size: 26px;
  }
}
#topNews .wrapper {
  padding: 70px 50px;
}
#topNews .inner {
  display: flex;
}
#topNews .newsInner__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
#topNews .newsInner__left h2 {
  min-width: 210px;
}
#topNews .newsInner__left .btn__wrapper .btn {
  min-width: 200px;
}
#topNews .news__list {
  flex: 1;
  margin-left: 100px;
}
#topNews .news__item a {
  text-decoration: none;
  color: #333333;
}
#topNews .news__item a:hover {
  opacity: 0.5;
}
#topNews .news__item date {
  color: #888888;
  font-size: 14px;
  margin-bottom: 1rem;
}
#topNews .news__item:not(:last-child) {
  margin-bottom: 1rem;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #topNews .wrapper {
    padding: 0;
    width: calc(100% - 40px);
  }
  #topNews .inner {
    flex-direction: column;
    gap: 30px;
  }
  #topNews .newsInner__left {
    display: contents;
  }
  #topNews .btn__wrapper {
    order: 1;
    text-align: center;
  }
  #topNews .news__list {
    margin-left: 0;
  }
}
#topService .sec__title {
  margin-bottom: 50px;
}
#topService .btn__wrapper {
  margin-top: 50px;
}

.topService__container {
  display: flex;
  flex-wrap: wrap;
}

.topService__contents {
  width: 50%;
  padding: 50px 50px 100px;
}
.topService__contents-office {
  background-color: #005677;
  border-radius: 20px 0 0 20px;
}
.topService__contents-office .topService__title::before {
  background-image: url(../../img/top/icon-office.svg);
}
.topService__contents-btob {
  background-color: #DAC556;
  border-radius: 0px 20px 20px 0px;
}
.topService__contents-btob .topService__title::before {
  background-image: url(../../img/top/icon-btob.svg);
}

.topService__title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.topService__title::before {
  content: "";
  width: 70px;
  height: 70px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 10px;
}

.topService__item:not(:last-child) {
  margin-bottom: 15px;
}
.topService__item a {
  background-color: #FFFFFF;
  display: block;
  font-weight: 600;
  border-radius: 10px;
  color: #005677;
  text-decoration: none;
  padding: 1rem;
  position: relative;
  transition: box-shadow 0.5s ease;
}
.topService__item a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #005677;
  border-top: 1px solid #005677;
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.topService__item a:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #topService .sec__title {
    margin-bottom: 30px;
  }
  #topService .btn__wrapper {
    margin-top: 30px;
  }
  .topService__contents {
    width: 100%;
    padding: 50px 20px;
  }
  .topService__contents-office {
    border-radius: 20px 20px 0 0;
  }
  .topService__contents-btob {
    border-radius: 0px 0 20px 20px;
  }
  .topService__title::before {
    width: 50px;
    height: 50px;
  }
  .topService__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.topIntro__container {
  text-align: center;
  margin-bottom: 100px;
}

.topIntro__title {
  font-size: 24px; /*24-32*/
  margin-bottom: 1rem;
}

.topIntro__description {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem); /*14-18*/
}

.topIntro__item {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.topIntro__item .topIntroItem__img {
  width: 40%;
}
.topIntro__item .topIntroItem__title {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  background-color: #005677;
  border-radius: 30px 0px 0px 30px;
  color: #FFFFFF;
  margin-bottom: 1.5em;
  padding: 0.25rem 2rem;
  font-weight: 500;
  width: 55%;
  position: absolute;
  right: 0;
  top: 2em;
}
.topIntro__item .topIntroItem__description {
  width: 55%;
  margin-top: 6em;
  padding-left: 2rem;
}
.topIntro__item:nth-child(even) {
  flex-direction: row-reverse;
}
.topIntro__item:nth-child(even) .topIntroItem__title {
  border-radius: 0 30px 30px 0;
  right: initial;
  left: 0;
}
.topIntro__item:nth-child(even) .topIntroItem__description {
  padding-left: 0;
  padding-right: 2rem;
}
.topIntro__item:not(:last-child) {
  margin-bottom: 50px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .topIntro__container {
    padding: 40px 18px;
    text-align: center;
  }
  .topIntro__title {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  .topIntro__item {
    flex-direction: column;
    align-items: center;
  }
  .topIntro__item .topIntroItem__img {
    width: 80%;
    margin-bottom: 30px;
  }
  .topIntro__item .topIntroItem__title {
    border-radius: 30px;
    width: 100%;
    position: relative;
    right: initial;
    top: initial;
    text-align: center;
  }
  .topIntro__item .topIntroItem__description {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }
  .topIntro__item:nth-child(even) {
    flex-direction: column;
  }
  .topIntro__item:nth-child(even) .topIntroItem__title {
    border-radius: 30px;
    left: initial;
  }
  .topIntro__item:nth-child(even) .topIntroItem__description {
    padding-right: 0;
  }
}
#topAbout {
  position: relative;
}
#topAbout:after {
  content: "";
  width: 60%;
  height: -webkit-fill-available;
  background-image: url(../../img/top/about-top.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
#topAbout .inner {
  background-color: #FFFFFF;
  padding: 60px 50px 100px 0;
  position: relative;
  width: 60%;
  border-radius: 0 20px 20px 0;
  z-index: 1;
}
#topAbout .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  left: -100%;
  top: 0;
  display: block;
}
#topAbout .sec__title {
  margin-bottom: 30px;
}
#topAbout .title__description {
  margin-bottom: 30px;
  text-align: left;
}
#topAbout .topAboutLink__list {
  width: 12em;
}
#topAbout .topAboutLink__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
#topAbout .topAboutLink__item a {
  padding-left: 0.5em;
  text-decoration: none;
  color: #333333;
  display: block;
  font-weight: 700;
  border-bottom: 1px dashed #333333;
  padding-bottom: 5px;
  position: relative;
}
#topAbout .topAboutLink__item a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid #333333;
  border-top: 1px solid #333333;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 38%;
  transform: rotate(45deg);
}
#topAbout .topAboutLink__item a:hover {
  color: #005677;
}
#topAbout .topAboutLink__item a:hover::after {
  border-color: #005677;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #topAbout:after {
    width: 100%;
  }
  #topAbout .inner {
    padding: 40px 20px 40px 0;
    width: 100%;
  }
  #topAbout .inner:after {
    width: 115px;
    height: 100px;
    right: 15px;
    bottom: 30px;
  }
  #topAbout .sec__title {
    margin-bottom: 15px;
  }
}
#topVoice .sec__title {
  margin-bottom: 30px;
}
#topVoice .title__description {
  margin-bottom: 50px;
}

.topVoice__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.topVoice__item {
  width: 49%;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
}
.topVoice__item:nth-child(1), .topVoice__item:nth-child(2) {
  margin-bottom: 20px;
}

.voice__title {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  padding-bottom: 0.5rem;
}

.voice__name {
  color: #888888;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .topVoice__list {
    margin-bottom: 30px;
  }
  .topVoice__item {
    width: 100%;
  }
  .topVoice__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* ABOUTページ */
#profile .sec__title {
  margin-bottom: 50px;
}
#profile .inner {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.profile__text {
  margin-bottom: 50px;
}

.profile__nameWrap {
  margin-top: 30px;
}
.profile__nameWrap .profile__post {
  color: #888888;
  font-size: 0.75rem;
}
.profile__nameWrap .profile__name {
  font-size: 1.25rem;
  font-weight: 600;
}

.profile__img {
  max-width: 250px;
  margin-right: 30px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #profile .inner {
    justify-content: center;
  }
  .profile__img {
    margin-right: 0;
  }
  .profile__nameWrap {
    text-align: center;
    margin-top: 15px;
  }
}
#member .sec__title {
  margin-bottom: 50px;
}
#member .inner {
  display: flex;
  flex-direction: column;
}

.member__item {
  padding: 30px 30px 40px;
}

.member__img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
}

.member__nameWrap {
  text-align: center;
  border-bottom: 1px solid #DAC556;
  padding-bottom: 10px;
  margin-bottom: 1rem;
}
.member__nameWrap .member__post {
  color: #888888;
  font-size: 0.876rem;
}
.member__nameWrap .member__name {
  font-size: 1.25rem;
  font-weight: 600;
}

.member__text {
  margin-bottom: 1rem;
}

.member__workTitle {
  background-color: #DAC556;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0 10px;
  font-size: 0.75rem;
  margin-bottom: 0.5em;
}

.slider .slick-slide {
  margin-right: 1vw !important;
  margin-left: 1vw !important;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:focus, .slick-dots li button:hover:before {
  color: #666;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
  border: 1px solid #ccc;
  border-radius: 10px;
}

#philosophy .sec__title {
  margin-bottom: 20px;
}
#philosophy .philosophy__read {
  margin-bottom: 80px;
}

.philosophy__item:not(:last-child) {
  margin-bottom: 50px;
}

.philosophy__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.philosophy__text {
  border-left: 2px solid #005677;
  margin-left: 15px;
  padding: 0.5em 0 0.5em 1.5em;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .philosophy__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .philosophy__title {
    font-size: 18px;
  }
}
#company .sec__title {
  margin-bottom: 50px;
}

.company__table-row {
  display: flex;
}
.company__table-row:last-child .company__table-head,
.company__table-row:last-child .company__table-cell {
  border-bottom: 1px dotted #888888;
}

.company__table-head {
  font-size: 0.875rem; /*14px*/
  font-weight: 700;
  padding: 24px 16px;
  border-top: 1px dotted #888888;
  width: 20%;
}

.company__table-cell {
  padding: 24px 16px;
  border-top: 1px dotted #888888;
  flex: 1;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .company__table-row {
    display: block;
  }
  .company__table-row:last-child .company__table-head {
    border-bottom: none;
  }
  .company__table-head {
    padding: 1rem 0.5rem 0;
    width: 100%;
  }
  .company__table-cell {
    padding: 0 0.5rem 1rem;
    border-top: none;
  }
}
/* 事業案内ページ */
#service02, #service03, #service04, #service05 {
  padding-top: 30px;
}

#serviceLink {
  padding-bottom: 0;
}

#serviceLink .wrapper-scroll {
  padding: 0 0 20px 40px;
  overflow-x: auto;
  white-space: nowrap;
}

.legend__list {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.legend__item-office {
  margin-right: 1rem;
}
.legend__item-office::before {
  content: "■";
  color: #005677;
  font-size: 0.876rem;
}
.legend__item-btob::before {
  content: "■";
  color: #DAC556;
  font-size: 0.876rem;
}

.pageLink__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pageLink__item {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.pageLink__item-office a {
  background-color: #005677;
}
.pageLink__item-btob a {
  background-color: #DAC556;
}
.pageLink__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
}
.pageLink__item a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-top: 5px;
}
.pageLink__item a:hover {
  opacity: 0.5;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #serviceLink .wrapper-scroll {
    padding: 0 0 20px 20px;
  }
  .pageLink__list {
    flex-wrap: nowrap;
  }
  .pageLink__item a {
    padding: 5px 8px 10px;
  }
  .pageLink__item a::after {
    border-width: 1px;
    margin-top: 0;
  }
}
.service__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
}
.service__item .sec__title {
  position: absolute;
  left: min(50% + 40px, 520px);
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.service__img {
  width: min(50%, 480px);
  border-radius: 10px;
  overflow: hidden;
  margin-right: 40px;
}

.service__text {
  flex: 1;
  padding-top: 60px;
}

.serviceExample__title {
  background-color: #005677;
  color: #FFFFFF;
  padding: 5px 1.5rem;
  font-weight: 700;
}

.serviceExample__listInner {
  background-color: #FFFFFF;
  border-radius: 0 0 10px 10px;
  padding: 1rem 1.5rem 0;
}

.serviceExample__item {
  display: flex;
}
.serviceExample__item:not(:last-child) {
  margin-bottom: 0.5em;
}
.serviceExample__item::before {
  content: "・";
  margin-right: 5px;
}

#service04 .service__example {
  margin-bottom: 40px;
}
#service04 .serviceExample__item {
  display: block;
}
#service04 .serviceExample__item-title {
  color: #005677;
  font-weight: 600;
}
#service04 .serviceExample__item::before {
  display: none;
}

#service05 .service__example {
  margin-bottom: 40px;
}
#service05 .btn {
  background-color: transparent;
  color: #333333;
}
#service05 .btn::after {
  border-color: #333333;
}
#service05 .btn:hover {
  opacity: 0.7;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .service__item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .service__item .sec__title {
    position: initial;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
  }
  .serviceExample__listInner {
    padding-left: 1em;
  }
  .service__img {
    width: 100%;
    margin-right: 0;
  }
  .service__text {
    padding-top: 20px;
  }
  #service04 .service__example {
    margin-bottom: 20px;
  }
}
/* お客さまの声ページ */
.voice__item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
}
.voice__item:not(:last-child) {
  margin-bottom: 20px;
}

#contact .wrapper {
  width: min(100%, 800px);
}
#contact .intro__text {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.876rem;
  text-align: left;
  font-weight: normal;
}
#contact .form__row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted #888888;
  padding: 1rem 0;
}
#contact .form__row:first-child {
  border-top: 1px dotted #888888;
}
#contact .form__row:not(:last-child) {
  margin-bottom: 0;
}
#contact .form__row .form__head {
  width: 35%;
  display: flex;
  align-items: center;
}
#contact .form__row .form__cell {
  flex: 1;
}

.intro__text {
  background-color: #FFFFFF;
  text-align: center;
  padding: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.intro__text a {
  color: #005677;
  text-decoration: underline;
  padding: 0 8px;
}

.form__icon {
  color: #FFFFFF;
  font-size: 0.75rem;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 1rem;
}
.form__icon-require {
  background-color: #E76C5B;
}
.form__icon-any {
  background-color: #888888;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

.send-btn {
  text-align: center;
}

input[type=submit] {
  color: #FFFFFF;
  background-color: #005677;
  line-height: 60px;
  padding: 0 40px;
  border: none;
  font-size: 1.375rem; /*22px*/
  font-weight: bold;
  border-radius: 50px;
  width: 60%;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.5;
}
input[type=submit]:hover {
  opacity: 0.5;
  transition: all 0.5;
}

.contact__notice {
  width: min(100%, 600px);
  font-size: 0.75rem;
  margin: 30px auto;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #contact .form__row {
    flex-direction: column;
    padding: 1rem 0;
  }
  #contact .form__row .form__head {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  #contact .form__row .form__cell {
    width: 100%;
  }
  .intro-text {
    text-align: left;
    padding: 16px;
    margin-bottom: 32px;
  }
  .icon-require {
    border-radius: 4px;
    padding: 2px 8px;
  }
  input[type=submit] {
    line-height: 60px;
    font-size: 18px;
    border-radius: 50px;
    width: 100%;
  }
}
.thanks__text {
  text-align: center;
  margin-bottom: 100px;
}

/* お知らせページ */
.blog__wrapper {
  display: flex;
  justify-content: space-between;
}

/*===========================
記事詳細にはスタイルなし
===========================*/
.article__inner h1, .article__inner h2, .article__inner h3, .article__inner h4, .article__inner h5, .article__inner h6 {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  margin-bottom: 1rem;
}
.article__inner p, .article__inner figure, .article__inner ol, .article__inner ul {
  margin-bottom: 2rem;
}
.article__inner .wp-block-button {
  margin-bottom: 2rem !important;
}
.article__inner h2 {
  background-color: #DAC556;
  padding: 5px 10px;
  border-radius: 4px;
}
.article__inner h3 {
  border-top: 2px solid #DAC556;
  border-bottom: 2px solid #DAC556;
  padding: 5px 10px;
}
.article__inner h4 {
  border-left: 5px solid #DE7BA1;
  padding-left: 10px;
}
.article__inner h5 {
  font-size: 1rem;
}
.article__inner h5::before {
  content: "●";
  color: #DE7BA1;
  margin-right: 5px;
}
.article__inner h6 {
  font-size: 1rem;
  background-color: #eee;
  padding-left: 10px;
  font-weight: 500;
  padding: 5px 10px;
}
.article__inner ol, .article__inner ul {
  list-style: inside;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .blog__wrapper {
    flex-direction: column;
  }
}
.article__date {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); /*12-14px*/
  font-weight: 600;
  color: #888888;
}

.article__ttl {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem); /*16-24*/
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 2px solid #005677;
  padding-bottom: 1rem;
  margin-bottom: 20px;
}

.article__pagerList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
}
.article__pagerList li a {
  display: block;
  text-decoration: none;
  width: 10em;
  line-height: 40px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  background-color: #005677;
  color: #FFFFFF;
}
.article__pagerList li.back a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg) translateY(-50%);
}
.article__pagerList li.next a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(-45deg) translateY(-50%);
}

/*===========================
sp
===========================*/
.main__column {
  flex: 1;
  max-width: 700px;
}

.blog__item:not(:last-child) {
  margin-bottom: 30px;
}
.blog__item a {
  color: #005677;
  text-decoration: none;
  background-color: #FFFFFF;
  padding: 1rem 1.5rem;
  display: block;
  border-radius: 10px;
  transition: box-shadow 0.5s ease; /* ホバー時の影のアニメーション */
}
.blog__item a span {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 1rem;
}
.blog__item .blog__title {
  font-weight: 600;
}
.blog__item .blog__title-date {
  color: #cccccc;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.blog__item .blog__title-main {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.blog__item .blog__text {
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/*===========================
sp
===========================*/
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 30px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  border: 1px solid #005677;
  border-radius: 20px;
  color: #005677;
  text-decoration: none;
}

.pagination .current {
  background: #005677;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #005677;
  text-decoration: none;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    width: 30px;
    height: 30px;
    border-radius: 15px;
  }
}
.side-column {
  width: 30%;
  max-width: 300px;
  margin-left: 50px;
}
.side-column .side-column-ttl {
  background: #005677;
  padding: 6px 10px;
  border-radius: 5px;
  color: #FFFFFF;
}
.side-column .side-column-ttl:last-of-type {
  margin-top: 50px;
}
.side-column li a {
  display: block;
  padding: 10px;
  border-bottom: 1px dashed #888888;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  font-weight: 500;
  color: #333333;
  text-decoration: none;
}
.side-column li a:hover {
  opacity: 0.5;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .side-column {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */