@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

html {
  font-size: 16px;
}

@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}

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

@media (max-width: 375px) {
  html {
    font-size: 4.0533333333vw;
  }
}

body {
  font-size: 1.125rem;
  line-height: 1.1111111111;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #585151;
  background: #f2f2e6;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  -webkit-filter: brightness(1.2);
  /* Safari用 */
  filter: brightness(1.2);
  /* デフォルト */
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

.no-image {
  background: #fff;
  padding: 0.5rem;
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.no-article,
.no-search {
  margin-top: 5rem;
  text-align: center;
}

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

  .no-article,
  .no-search {
    margin-top: 8vw;
    text-align: center;
  }

  .no-article,
  .no-search {
    font-size: 3.85vw;
  }

  #article .p-news,
  #search .p-news {
    padding: 10vw 0;
  }
}

.l-inner {
  width: 100%;
  max-width: 910px;
  margin-inline: auto;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 25px;
  }
}

.l-section--bg {
  background: #ededed;
}

.c-article__image img {
    border: 2px solid #fff;
    aspect-ratio: 250 / 250;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.c-article__category {
    display: inline-block;
    font-size: 12px;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    font-weight: 500;
    background: #fff;
    margin-top: 0.9375rem;
    padding: 0.2rem 0.5rem 0.2rem;
}

.c-article__title {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    letter-spacing: 0em;
    font-weight: 600;
    margin-top: 0.7rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.c-article .c-article__date {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.1875rem;
  margin-top: 0.6rem;
}

.c-article__date .icon {
  width: 0.875rem;
}

.c-article__time {
  font-size: 0.9375rem;
  line-height: 1.1333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
}

.p-drawer__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 17px;
  background: #fff;
  cursor: pointer;
  z-index: 1000;
}

.p-drawer__icon-bars {
  position: relative;
  display: block;
  top: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  z-index: 1000;
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #f2f2e6;
  top: 0;
  left: 0;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.p-drawer__icon-bar1 {
  top: 3px;
}

.p-drawer__icon-bar2 {
  top: 12.5px;
}

.p-drawer__icon-bar3 {
  top: 22px;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1 {
  width: 25px;
  top: 13px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-drawer__icon.is-active .p-drawer__icon-bar2 {
  display: none;
}

.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  width: 25px;
  top: 13px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-drawer__icon.is-active {
  background: #fff;
  z-index: 251;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1,
.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  background: #f2f2e6;
}

.p-drawer__contents {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #f2f2e6;
  padding: 25.64vw 8.26vw;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: auto;
  pointer-events: none;
  overflow-y: scroll;
  z-index: 250;
}

.p-drawer__contents.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-drawer .p-drawer__search {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.13vw;
}

.p-drawer__search-text {
  line-height: 1.375;
  letter-spacing: 0em;
  font-weight: 700;
  font-size: 3.1vw;
}

.p-drawer__search-icon {
  display: inline-block;
  background: #fff;
  padding: 2.56vw;
}

.p-drawer__search-icon img {
  width: 7.69vw;
  height: 7.69vw;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawer .p-drawer__items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7.69vw;
  margin-top: 12.82vw;
}

.p-drawer__item {
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 2.56vw;
}

.p-drawer__item a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5.13vw;
}

.p-drawer__item .arrow {
  display: inline-block;
  width: 3.85vw;
}

.p-drawer__item .link_text {
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  font-size: 4.6vw;
}

.p-featured {
  background-image: url("../../webmedlia/images/featured_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.25rem 0 5.25rem;
}

.p-featured__head {
  text-align: center;
}

.p-featured__head-title {
  margin-top: 50px !important;
}


.p-featured__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  margin-top: 1.875rem;
}

.p-featured__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-featured__category {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
  background: #fff;
  margin-top: 0.9375rem;
  padding: 0.3125rem 0.5rem 0.375rem;
}

.p-featured__title {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .p-featured {
    padding: 5vw 0 18.51vw;
    background-image: url(../../webmedlia/images/featured_bg_sp.png);
  }

  .p-featured__head-title {
    font-size: 10.26vw;
  }

  .p-featured__head-sub-title {
    font-size: 4.62vw;
    margin-top: 0;
  }

  .p-featured__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.69vw 2.56vw;
    margin-top: 7.69vw;
  }

  .p-featured__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.3125rem 0.5rem 0.375rem;
    padding: 0.77vw 2.56vw;
  }

  .p-featured__title {
    font-size: 3.85vw;
    margin-top: 2.05vw;
    -webkit-line-clamp: 2;
  }
}

.p-focus {
  padding: 4.375rem 0 3.4375rem;
}

.p-focus__head {
  text-align: center;
}

.p-focus__head-title {
  font-size: 3.375rem;
  line-height: 1.1851851852;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
}

.p-focus__head-sub-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  letter-spacing: 0em;
  font-weight: 900;
  color: #00238c;
  margin-top: 0.625rem;
}

.p-focus__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.75rem;
}

.p-focus__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-focus {
    padding: 20.51vw 0 7.69vw;
  }

  .p-focus__head-title {
    font-size: 12.82vw;
  }

  .p-focus__head-sub-title {
    font-size: 4.62vw;
    margin-top: 0;
  }

  .p-focus__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.56vw;
    margin-top: 7.69vw;
  }
}

.p-footer {
  padding: 5.4375rem 0 1.25rem;
}

.p-footer-head {
    max-width: 165px;
    text-align: center;
    margin: 0 auto;
}

.footer__inner{
  margin: 30px 0;
}

.p-footer__logo {
  width: 100%;
  max-width: 16.625rem;
  margin-inline: auto;
}

.p-footer__copyright {
  display: block;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #9d9d9d;
  text-align: center;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .p-footer {
    padding: 12.82vw 0 5.13vw;
	border: none;
  }

  .p-footer__logo {
    max-width: 38.46vw;
  }

  .p-footer__copyright {
    font-size: 3.08vw;
    margin-top: 4.1vw;
  }
}

.p-header {
  position: relative;
  padding: 0;
  z-index: 30;
}

.p-header .p-header__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1.8rem 0;
}

.p-header__logo {
  width: 100%;
  max-width: 335px;
  margin-left: 0;
}

.p-header__contents {
  width: 100%;
  width: auto;
}

.p-header .p-header__search {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0;
}

.p-header__search-text {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0em;
  font-weight: 700;
  color: #585151;
}

.p-header__search-icon {
  display: inline-block;
  background: #fff;
  padding: 0.8rem;
}

.p-header__search-icon img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  border-top: 0.5px solid #c1b4b4;
  border-bottom: 0.5px solid #c1b4b4;
}

.p-header .p-header__lists {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 0;
}

li.p-header__list{
  border-right: 0.5px solid #c1b4b4;
  text-align: center;
  width: calc(16.6% - 2px);
}

li.p-header__list:last-child{
  border-right: none;
}

.p-header__list img {
    height: 40px;
    width: auto;
}

.p-header__list .link_text {
  font-size: 1rem;
  line-height: 1.40625;
  letter-spacing: 0em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f2f2e6;;
  }
  .p-header .p-header__inner{
    padding: 20px;
  }
  .p-header__logo {
    max-width: 45vw;
  }
}

.p-news {
  padding: 4rem 0 6.25rem;
}

.p-news__head {
  text-align: center;
}

.p-news__head-title {
    max-width: 191px;
    margin: 120px auto 0;
}

.c-article__tags{
    justify-content: flex-start !important;
    gap: 6px;
    margin-top: 19px;
    border-top: 0.5px dashed #c1b4b4;
    border-bottom: 0.5px dashed #c1b4b4;
    flex-wrap: wrap;
    padding: 5px 0;
}
  
.c-article__tag{
    font-size: 13px;
    line-height: 1;
    padding: 8px 10px 8px 0;
    border-radius: 999px;
    color: #636363;
    letter-spacing: 0;
}

.p-news__head-sub-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  letter-spacing: 0em;
  font-weight: 900;
  color: #00238c;
  margin-top: 0.625rem;
}

.p-news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem;
  margin-top: 2.1875rem;
}

/* TOPの実績紹介：PCは3件だけ表示（4件目を非表示） */
@media (min-width: 769px) {
  .p-news__items > .feature:nth-child(n+4) {
    display: none;
  }
}

.p-news__item a {
  display: block;
}

.p-news__btn {
  margin-top: 3.75rem;
  text-align: center;
}

.p-news__btn a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 304px;
    margin-inline: auto;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    color: #fff;
    border: 1px solid #585151;
    padding: 1.25rem;
    background: #585151;
    border-radius: 10px;
}

.p-news__btn a::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../../webmedlia/images/btn_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-news__cat-title{
  padding: 30px 0;
  margin: 0 auto 4rem;
  border-top: 0.5px dashed #c1b4b4;
  border-bottom: 0.5px dashed #c1b4b4;
}

.p-news__tag {
  margin-top: 4rem;
}

.p-news__tag-head {
    max-width: 142px;
    text-align: center;
    margin: 0 auto;
}


.p-news__tag .tag-icon {
  width: 2.5rem;
  height: auto;
}

.p-news__tag .tag-text {
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 500;
  color: #00238c;
}

.p-news__tag-lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem 0.9375rem;
}

.p-news__tag-list a {
  display: inline-block;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-news {
    padding: 20px 0;
  }

  .p-news__head-title {
    font-size: 12.82vw;
    margin: 70px auto 0;
  }

  .p-news__head-sub-title {
    font-size: 4.62vw;
    margin-top: 0;
  }
  
  .p-news__cat-title{
    font-size: 1.3rem;
    padding: 1.3rem 0;
    margin: 0 auto 2rem;
  }

  .p-news__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.2vw 7.69vw;
    margin-top: 10.26vw;
  }

  .c-article__category {
    font-size: 2.9vw;
    margin-top: 2.56vw;
    padding: 0.5vw 1.6vw;
  }

  .c-article__title {
    font-size: 3.3vw;
    margin-top: 2.05vw;
    -webkit-line-clamp: 2;
  }

  .c-article__tags{
      gap: 3px;
  }

  .c-article__tag{
      font-size: 11px;
      padding: 6px 6px 6px 0;
  }
  
  .c-article .c-article__date {
    gap: 0.77vw;
    margin-top: 2.05vw;
  }

  .c-article__date .icon {
    width: 3.08vw;
  }

  .c-article__time {
    font-size: 3.08vw;
  }

  .p-news__btn {
    margin-top: 7.69vw;
  }

  .p-news__btn a {
    font-size: 4.6vw;
    padding: 4.5vw 1.56vw;
    max-width: 250px;
  }

  .p-news__btn a::before {
    width: 5.2vw;
    height: 5.2vw;
    right: 1.8vw;
  }

  .p-news__tag {
    margin-top: 15.38vw;
  }

  .p-news__tag-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }

  .p-news__tag-head {
    gap: 2.56vw;
  }
  .p-news__tag-head {
    width: 100%;	
  }
  .p-news__tag .tag-icon {
    width: 8.97vw;
  }

  .p-news__tag .tag-text {
    font-size: 3.85vw;
  }

  .p-news__tag-lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.56vw 2.56vw;
  }

  .p-news__tag-list a {
    font-size: 3.3vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }
}

.p-property-journal {
  padding: 0 0 6.25rem;
}

.p-property-journal .p-news__head-title {
  margin-top: 0;
}

.p-property-journal__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.1875rem;
}

.p-property-journal__link {
  display: block;
}

.p-property-journal__image img {
  border: 2px solid #fff;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.p-property-journal__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 0.75rem;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-property-journal__empty {
  grid-column: 1 / -1;
  text-align: center;
}

.p-property-lightbox {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-property-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-property-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.p-property-lightbox.is-open .p-property-lightbox__overlay {
  opacity: 1;
}

.p-property-lightbox__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: calc(100% - 3rem);
  max-width: 900px;
  max-height: calc(100vh - 4rem);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-property-lightbox.is-open .p-property-lightbox__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.p-property-lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.p-property-lightbox__close {
  position: absolute;
  top: -2rem;
  right: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-property-journal {
    padding: 40px 0 50px;
  }

  .p-property-journal__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw 3vw;
    margin-top: 10.26vw;
  }

  .p-property-journal__title {
    font-size: 3.3vw;
    margin-top: 2.05vw;
  }

  .p-property-lightbox__dialog {
    width: calc(100% - 2rem);
  }
}

.p-special {
  margin-top: -4.375rem;
}

.p-special__box {
  position: relative;
  gap: 2.5rem;
  padding: 1.25rem 3.375rem 1.875rem 1.875rem;
  background-image: url("../../webmedlia/images/special_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-special__head {
  text-align: center;
}

.p-special__title {
  font-size: 2rem;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
}

.p-special__sub-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  letter-spacing: 0em;
  font-weight: 900;
  color: #00238c;
}

.p-special__banners {
  gap: 1.25rem;
}

.p-special__banner a {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p-special {
    padding: 20.51vw 0 0;
    margin-top: 0;
  }

  .p-special__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
    padding: 0;
    background: none;
  }

  .p-special__title {
    font-size: 10.26vw;
  }

  .p-special__sub-title {
    font-size: 4.62vw;
  }

  .p-special__banners {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.56vw;
  }

  .p-special__banner {
    width: 100%;
  }
}

.u-target {
  opacity: 0;
  -webkit-transform: translateY(3.125rem);
  transform: translateY(3.125rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.u-target.SlideUp {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.u-is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .u-is-pc {
    display: none;
  }
}

.u-is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-is-sp {
    display: block;
  }
}

.u-en {
  font-family: "din-2014", sans-serif;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-is-br {
  display: inline-block;
}

.u-mt40 {
  margin-top: 2.5rem;
}

.u-mt60 {
  margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
  .u-mt40 {
    margin-top: 5.13vw;
  }

  .u-mt60 {
    margin-top: 7.69vw;
  }
}

/* ページネーション */
.c-pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 5.625rem;
}

.c-pagination li {
  display: inline-block;
}

.c-pagination a,
.c-pagination span {
  display: block;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 700;
  color: #5b5454;
  padding: 0.625rem;
}

.c-pagination a:hover {
  background: #5b5454;
  color: #fff;
}

.c-pagination .active span,
.c-pagination .current {
  background: #5b5454;
  color: #fff;
}

/* 詳細ページ */
.c-single {
  padding: 5rem 0;
}

.c-single__category {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  background: #fff;
  padding: 0.3125rem 0.5rem 0.375rem;
}

.c-single__title {
  font-size:  1.8rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 1.4rem;
}

.c-single__image {
  margin-top: 1.5rem;
}

.c-single__image img {
  border: 0.0625rem solid #00238c;
  aspect-ratio: 243 / 173;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.9375rem;
  margin-top: 1.5rem;
}

.c-single__tag {
  display: inline-block;
  width: calc(20% - 0.9375rem);
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

.c-single__sub-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
}

.c-single__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
  margin-top: 1rem;
}

.c-single__sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
}

.c-single__sns-text {
  font-size: 0.875rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
}

.c-single__sns-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem;
}

.c-single__sns-icon img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.c-single__btn a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 38.75rem;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #929798;
  border: 1px solid #cccccc;
  padding: 2.375rem 1.25rem;
}

.c-single__btn a::before {
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../../webmedlia/images/btn_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .c-single {
    padding: 15vw 0;
  }

  .c-single__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.77vw 2.56vw;
  }

  .c-single__title {
    font-size: 6vw;
    margin-top: 2.56vw;
  }

  .p-news__tag-lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.56vw 2.56vw;
  }

  .c-single__tags {
    margin-top: 5.12vw;
  }

  .c-single__tag {
    width: calc(33.3% - 2.56vw);
    font-size: 3.6vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }

  .c-single__sub-title {
    font-size: 4.2vw;
  }

  .c-single__text {
    font-size: 3.85vw;
  }

  .c-single__image {
    margin-top: 5.12vw;
  }

  .c-single__sns {
    gap: 20px;
    margin-top: 7vw;
  }

  .c-single__sns-text {
    font-size: 3.33vw;
  }

  .c-single__sns-icons {
    gap: 15px;
  }

  .c-single__btn {
    margin-top: 6vw;
  }

  .c-single__btn a {
    font-size: 3.59vw;
    padding: 5.13vw 2.56vw;
  }

  .c-single__btn a::before {
    width: 3.46vw;
    height: 3.46vw;
    right: 2.56vw;
  }
}

/* 検索機能 */
.search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.search-popup.active {
  display: block;
}

.search-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 910px;
  text-align: center;
}

.search-popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.search-popup__form {
  gap: 0.625rem;
}

.search-popup__input {
  width: 80%;
  padding: 0.625rem 1.25rem;
  border: 1px solid #ccc;
  outline: none;
}

.search-popup__input::placeholder {
  font-size: 0.9375rem;
  font-size: 1rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #9d9d9d;
}

.search-popup__button {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #cccca6;
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.search-popup__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .search-popup__content {
    padding: 5.12vw 2.56vw;
    width: 90%;
  }

  .search-popup__close {
    top: 1vw;
    right: 0.5vw;
    font-size: 3.59vw;
  }

  .search-popup__form {
    flex-direction: column;
    gap: 2.56vw;
  }

  .search-popup__input {
    width: 88%;
    padding: 2.56vw 2.56vw 3.2vw;
  }

  .search-popup__input::placeholder {
    font-size: min(3.51vw, 18px);
  }

  .search-popup__button {
    font-size: min(3.51vw, 18px);
    padding: 1.15vw 5.12vw 1.4vw;
  }
}

/* 検索ページ */
.p-search {
  padding: 5rem 0;
}

.p-search__title {
  text-align: center;
}

.p-search .no-search {
  margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */

/* 投稿用CSS */
.p-contents {
  margin: 3rem 0;
}

.p-contents p {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
  margin-top: 1rem;
}

.p-contents figure {
  margin: 3rem 0 1rem;
}

/* .p-contents iframe {
  width: 768px;
  height: 500px;
} */

.p-contents h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
}

@media screen and (max-width: 768px) {
  .p-contents iframe {
    width: 100% !important;
    height: 400px;
  }
	
.p-contents h3 {
  font-size: 5.5vw;
}
}

@media screen and (max-width: 550px) {
  .p-contents iframe {
    height: 300px;
  }
}

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #dedac0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #dedac0;
    border-right: 3px solid #dedac0;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
.pagetop {
    right: 10px;
    bottom: 10px;
}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
詳細ページ サイドバー用CSS追加
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.c-single {
  padding: 0 0;
}

.c-single__inner {
  max-width: 1210px;
}

.c-single__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-left: 0.5px solid #c1b4b4;
  border-right: 0.5px solid #c1b4b4;
  margin-top: 25px;
}

/* サイドバー */
.c-single__aside {
  width: 30%;
}

.c-aside__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  border-top: 0.5px solid #c1b4b4;
  padding: 1rem 2rem 1.6rem;
}

.c-aside__article-title {
  border-top: none;
}

.c-aside__article {
  padding: 0 0 2rem;
}

.c-aside__article-inner {
  padding: 0 2rem;
}

.c-aside__item:not(:first-of-type) {
  margin-top: 2rem;
}

.c-aside__search-inner {
  padding: 0 2rem;
}

.c-aside__search-box {
  padding: 0;
}

.c-aside__search form {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.c-aside__search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #c1b4b4;
  outline: none;
}

.c-aside__search-button {
  background: #c1b4b4;
  padding: 10px;
}

.c-aside__search-button img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-aside__tag-inner {
  padding: 0 2rem;
}

.c-aside__tag-contents {
  padding: 2rem 0;
}

.c-aside__tag-lists {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem 0.9375rem;
}

.c-aside__tag-list {
  width: calc(50% - 0.95rem / 2);
}

.c-aside__tag-list a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

/* コンテンツ */
.c-single__contents {
  width: 70%;
  padding: 3rem 5rem 5rem;
  border-right: 0.5px solid #c1b4b4;
}

.c-single__image {
  margin-top: 1.5rem;
}

.c-single__image img {
  border: 0.0625rem solid #00238c;
  aspect-ratio: 243 / 173;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.9375rem;
  margin-top: 1.5rem;
}

.c-single__tag {
  display: inline-block;
  width: calc(20% - 0.9375rem);
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

.c-single__sub-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00238c;
}

.c-single__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
  margin-top: 1rem;
}

.c-single__sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
}

.c-single__sns-text {
  font-size: 0.875rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
}

.c-single__sns-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem;
}

.c-single__sns-icon img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.c-single__btn a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 304px;
    margin-inline: auto;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    color: #fff;
    border: 1px solid #585151;
    padding: 1.25rem;
    background: #585151;
    border-radius: 10px;
}

.c-single__btn a::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: calc( 50% - 1.6rem);
    left: 0.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../../webmedlia/images/btn_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    rotate: 180deg;
}

@media screen and (max-width: 768px) {
  .c-single {
    padding: 2vw 0;
  }

  .c-single__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	border: none;
  }

  .c-single__aside {
    width: 100%;
    border-left: none;
    border-right: none;
    padding-top: 20vw;
  }

  .c-aside__article {
    padding: 0;
    padding-top: 4vw;
  }

  .c-aside__article-inner,
  .c-aside__search-inner,
  .c-aside__tag-inner {
    padding: 0;
  }

  .c-aside__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw 2vw;
  }

  .c-aside__item:not(:first-of-type) {
    margin-top: 0;
  }

  .c-aside__title {
    font-size: 5vw;
    padding: 0;
    padding-bottom: 1vw;
    border-top: none;
  }

  .c-single__contents {
    width: 100%;
    padding: 0;
	border: none;
  }

  .c-single__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.77vw 2.56vw;
  }

  .c-aside__search {
    margin-top: 10vw;
  }

  .c-single__tags {
    margin-top: 5.12vw;
  }

  .c-single__tag {
    width: calc(33.3% - 2.56vw);
    font-size: 3.6vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }

  .c-single__sub-title {
    font-size: 4.2vw;
  }

  .c-single__text {
    font-size: 3.85vw;
  }

  .c-single__image {
    margin-top: 5.12vw;
  }

  .c-single__sns {
    gap: 20px;
    margin-top: 7vw;
  }

  .c-single__sns-text {
    font-size: 3.33vw;
  }

  .c-single__sns-icons {
    gap: 15px;
  }

  .c-single__btn {
    margin-top: 6vw;
  }

  .c-single__btn a {
    font-size: 3.59vw;
    padding: 5.13vw 2.56vw;
  }

  .c-single__btn a::before {
    width: 3.46vw;
    height: 3.46vw;
    right: 2.56vw;
  }

  .c-aside__items {
    padding: 0;
    margin-top: 5vw;
  }

  .c-aside__search-box {
    padding: 0;
  }

  .c-aside__search-input {
    padding: 4vw 2vw;
  }

  .c-aside__search-button {
    padding: 1vw 4vw;
  }

  .c-aside__search-button img {
    width: 6vw;
    height: 6vw;
  }

  .c-aside__tag {
    margin-top: 10vw;
  }

  .c-aside__tag-contents {
    padding: 0;
    margin-top: 5vw;
  }

  .c-aside__tag-lists {
    gap: 2.56vw 2.56vw;
  }

  .c-aside__tag-list {
    width: calc(50% - 2.56vw / 2);
  }

  .c-aside__tag-list a {
    font-size: 3.3vw;
    border-radius: 5.13vw;
    padding: 1.53vw 2.56vw 2.04vw;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ローンチ用（ナビゲーションなし・タグなし・注目記事なしVer. 正式Ver.のときはここは消去する）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* .p-header__logo {
  max-width: 18rem;
}

@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 45vw;
  }
}

.p-drawer {
  display: none;
}*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
タグ検索　追加　20250731
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0 35px;
    border-top: 0.5px dashed #c1b4b4;
    border-bottom: 0.5px dashed #c1b4b4;
    padding: 16px;
}

.tag-item {
  display: inline-block;
  padding: 8px;
  font-size: 15px;
  color: #636363;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background-color: #cccca6;
  color: #fff;
  border-color: #cccca6;
}

.p-tag__btn{
  margin-top: 0;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 768px) {
  .tag-cloud {
    gap: 4px;
    margin: 18px 0 17px;
    padding: 10px;
  }
  .tag-item {
  padding: 7px;
  font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
    .p-news__btn {
        margin-bottom: 7.69vw;
    }
}

.c-single__tag{
  width: auto;
  padding: 0.5625rem 0.8rem 0.6875rem;
}

@media screen and (max-width: 768px) {
    .p-news__btn {
          width: auto;
          padding: 1.03vw 3.56vw 0;
    }
}

.p-footer__banner{
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.p-footer__banner a{
  width: calc( 50% - 20px);
}

@media screen and (max-width: 768px) {
    .p-footer__banner {
        gap: 2.56vw;
    }
      .p-footer__banner a{
      width: calc( 50% - 2.56vw);
    }
}

.c-single__aside {
    position: sticky;
    top: 0;
    align-self: start;
}

@media screen and (max-width: 768px) {
	.c-single__aside {
		position: relative;
	}
}


/* =========================
   FV Carousel (new classes)
   ========================= */

.fv-carousel {
  width: 100%;
  padding: 45px 0 10px;
}

.fv-carousel__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

/* Swiper 初期化までのチラつき防止（JSでも制御） */
.fv-carousel__swiper {
  width: 100%;
}

.fv-carousel__slide {
  height: auto;
}

.fv-carousel__link {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  height: 100%;
  text-decoration: none;
}

.fv-carousel__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.fv-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 10px solid #fff;
}

.fv-carousel__meta {
  display: grid;
  gap: 8px;
  margin: 0 10px; 
}

.fv-carousel__cat {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  background: #fff;
  height: 25px;
}

.fv-carousel__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ナビ */
.fv-carousel__nav {
  display: flex;
  gap: 45px;
  justify-content: center;
  margin-top: 55px;
}

.fv-carousel__prev,
.fv-carousel__next {
    width: 35px;
    height: 35px;
    background: #cccca6;
    cursor: pointer;
    position: relative;
}

.fv-carousel__prev::before,
.fv-carousel__next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.fv-carousel__prev::before {
  transform: rotate(-135deg);
}

.fv-carousel__next::before {
  transform: rotate(45deg);
}

/* ページネーション */
.fv-carousel__pagination {
  margin-top: 14px;
  text-align: center;
}

/* PCで「画像が大きくなる」＝ブレイクポイントに合わせて内側max幅を拡張 */
@media (min-width: 1181px) {
  .fv-carousel__inner {
    max-width: 1400px; /* 4枚になったとき、画像もちゃんと大きくなる */
    padding: 0 24px;
  }

  .fv-carousel__title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .fv-carousel {
    padding: 18px 0 28px;
    margin-top: 70px;
  }
    /* 画像(スライド)の上にナビを重ねるための基準 */
  .fv-carousel__swiper {
    position: relative;
  }
  .swiper-wrapper{
    width: 90%;  
  }
  .fv-carousel__nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    pointer-events: none;   /* 矢印以外はクリック透過 */
  }
  .fv-carousel__nav {
    top: 20%;
  }
  .fv-carousel__prev, .fv-carousel__next{
    width: 30px;
    height: 30px;
    pointer-events: auto;
  }
  
  .fv-carousel__cat{
    height: 25px;
  }
}

/* Swiper初期化前の“1枚目ドーン”防止：CSSで最初から隠す */
.fv-carousel__swiper {
  visibility: hidden;
}

/* Swiper初期化完了で表示（Swiperが自動で付けるクラス） */
.fv-carousel__swiper.swiper-initialized {
  visibility: visible;
}

/* fv下にバナー追加 */
.fv-banner{
	width: 100%;
    max-width: 910px;
    margin-inline: auto;
    padding: 0 25px;
	text-align: center;
}
.fv-banner-text{
	font-size: 20px;
	font-weight: 600;
	width: 100%;
}
.sp-only{
	display: none;
}
@media screen and (max-width: 768px) {
	.fv-banner-text{
		font-size: 16px;
		line-height: 1.3;
	}
	.sp-only{
		display: block;
	}
	.fv-banner{
		flex-direction: column;
		gap: 20px;
	}
	.fv-banner a{
		width: 100%;
	}
}

.p-property-journal__head-title{
	max-width: 473px;
    margin: 0px auto 0;
}