*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.8;
  overflow-x: hidden;
}


.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}


img { 
    width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 40px min(5.333%, 20px);
    }
}


/* header */
.header01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s, padding 0.3s;
    background: rgba(255, 255, 255, 0);
}

.header01.is-scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    background: rgba(255,255,255,0);
    box-sizing: border-box;
}

.header-logo {
    text-decoration: none;
    width: 70px;
    margin: 0;
}

.header-logo-img[src*="header-logo1.svg"] {
  filter: brightness(0) invert(1);
}

.header-logo-img[src*="header-logo2.svg"] {
  filter: brightness(0);
}

.header-left,
.header-right {
    display: flex;
}

.header-left {
    align-items: center;
    height: 70px;
}

.header-right {
    align-items: center;
    height: 70px;
}

.header-ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-li {
    margin: 0 min(2.667vw, 32px) 0 0;
}

.header-li._last {
    margin: 0;
}

.header-text1 {
    font-family: 'Montserrat';
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}



.header-text1:hover {
  text-decoration: none;
  animation: rainbow 10s linear infinite;
  color: #FF248B;
}


.header01.is-scrolled .header-text1 {
    color: #565656;
}

.header-btn1 {
    font-size: 'Jost';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 min(3.333vw, 40px);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: #2c2c2c 0% 0% no-repeat padding-box;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 50px; 

}

@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }
    .header01.is-scrolled {
        background-color: rgba(255, 255, 255, 1);        
        box-shadow: none;
    }


    .header-logo {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .header-logo.visible {
        opacity: 1;
        visibility: visible;
    }

    .nav01 {
        width: 100%;
        height: 60px;
        padding: 0;
        border-radius: 0;
        margin: 0;
        align-items: start;
    }

    .header-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .header-logo {
        width: min(18.667vw, 70px);
        margin: 0;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        display: none;
        opacity: 0;
     }   

    .header-logo.visible {
        display: block;
        opacity: 1;
    }

/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        /* padding: 0 20px; */
        margin: 0;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        color: #565656;
    }

    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-icon2 {
        width: 30px;
    }

    .header-modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: 50px 20px 20px 20px;
        box-sizing: border-box;
        /* box-shadow: 0px 1px 6px #00000029; */
    }

    .header-modal.is-active {
        right: 0;
        display: flex;
    }

    .header-ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-ul2 {
        width: 100%;
        padding: 20px 0;
    }

    .header-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

    .header-li {
        width: 100%;
        border-bottom: 1px solid #000000;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }

    .header-li._last {
        border-bottom: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
    background: #2c2c2c 0% 0% no-repeat padding-box;
        position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .ham-btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn span:nth-of-type(2) {
      width: 30px;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn.is-active span:nth-of-type(1),
    .ham-btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }

    .ham-btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }

    body.no-scroll {
        overflow: hidden;
    }
}

/* Hero */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 1.2s;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero__content {
    position: absolute;
    inset: 0; display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero__en {
    display: block;
    font-size: 1rem;
    color: #FF248B;
    margin-bottom: 20px;
}

.hero__catch {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hero__en.em {
    font-style:normal;
    color:#FF248B;"
}

.flex-grow { 
    flex-grow:1;
}

/* RENT SALE */
.top-links__grid {
 display: grid;
  grid-template-columns: 1fr 1fr;
}

.top-link { 
  position: relative;
  padding: 80px 60px 100px; 
  background: #f9f9f9; 
  cursor: pointer; 
  transition: 0.3s; 
  border-bottom: 1px solid #eee; 
  display: flex; 
  flex-direction: column; 
}

.top-link:hover {
    background: #f4f4f4;
}

.top-link:first-child {
    border-right: 1px solid #eee;
}

.top-link__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.top-link__icon {
    width: 75px;
    height: auto;
    flex-shrink: 0;
}

.top-link__title-group {
    display: flex;
    flex-direction: column;
}

.top-link__label {
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.top-link__tags {
    font-size: 0.85rem;
    color: #FF248B;
    font-weight: 700;
    display: block;
}

.top-link__desc { font-size: 0.9rem; color: #555; margin-bottom: 20px; padding-left: 5px; }

.top-link__sub-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
  padding-bottom: 2px;
  margin-top: auto;
  transition: 0.3s;
  align-self: flex-start;
}

.top-link__sub-link:hover {
    color: #FF248B;
    border-color: #FF248B;
}

.top-link__arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 54px;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
  font-size: 1.2rem;
  transition: 0.3s;
}

.top-link:hover .top-link__arrow {
    background: #FF248B;
    border-color: #FF248B;
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 960px) {
      .top-links__grid,
      .nav-cards__grid {
        grid-template-columns: 1fr;
        }

      .top-link {
        padding: 50px 30px 80px;
        }

      .top-link:first-child {
        border-right: none;
        }

      .top-link__header {
        gap: 20px;
        }

      .top-link__icon {
        width: 50px;
        }

      .top-link__label {
        font-size: 2.5rem;
        }

      .top-link__arrow {
        width: 48px;
        height: 48px;
        bottom: 30px;
        right: 30px;
        }
}

/* SERVICE */
.nav-cards__grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.nav-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #000;
    display: block;
}

.nav-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.6s;
}

.nav-card:hover img {
    transform: scale(1.05);
    opacity: 0.5;
}

.nav-card__body {
  position: absolute;
  inset: 0;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.nav-card__en {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.nav-card__title {
    font-size: 1.1rem;
    color: rgba(255,255,255,1);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.nav-card__tags {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.nav-card__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
    position: relative;
    z-index: 10;
}

.nav-card__btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 15px;
  text-align: center;
  transition: 0.3s;
  white-space: nowrap;
  border-radius: 4px;
}

.nav-card__btn:hover {
    background: #FF248B;
    border-color: #FF248B;
}

.nav-card__arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s;
}

.nav-card:hover .nav-card__arrow {
    background: #FF248B;
    border-color: #FF248B;
    transform: translateX(5px);
}

@media (max-width: 960px) {
    .nav-cards__grid {
        grid-template-columns: 1fr;
    }

    .nav-card__arrow {
        width: 54px;
        height: 54px;
        bottom: 30px;
        right: 30px;
    }

}

/* Concept */
#pr-movie {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.movie-text {
    margin-bottom: 40px;
}

.movie-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.movie-text p {
    font-size: 0.95rem;
    color: #555;
}

.movie-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eee;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.movie-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Resident */
#resident {
    padding: 180px 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.resident__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat',sans-serif;
  font-size: 15vw;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.resident__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: url('../img/resident-bg.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.resident__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
}
.resident__content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 650px;
    color: #1a1a1a;
    box-sizing: border-box;
}
.resident__label {
  display: inline-block;
  color: #FF248B;
  font-size: 0.85rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #FF248B;
  padding-bottom: 4px;
}

.resident__h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.resident__text {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.resident__btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #2c2c2c;
  color: #ffffff;
  padding: 18px 45px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: 0.3s;
  box-sizing: border-box;
}

.resident__btn:hover {
    background: #FF248B;
    transform: translateX(10px);
}

.resident__btn._arrow {
    font-size:1.2rem;
    font-weight:bold;
    margin-left:10px;
}

@media (max-width: 960px) {
    #resident {
        padding: 180px 20px;
    }
    .resident__content {
        padding: 60px 20px;        
    }
    .resident__btn {
      padding: 10px 20px;
    }

    .resident__h2 {
        font-size: 2rem;
    }
}

/* Access */
#access {
    width: 100%;
    height: 450px;
    background: #eee;
}

#access iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.2) opacity(0.8);
}

/* Footer */
#footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 80px 40px 40px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer__logo img {
    width: fit-content;
    height: 32px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__right {
    text-align: right;
}

.footer__bb-link { 
  display: inline-block; background: rgba(255,255,255,0.1); padding: 12px 24px; 
  border-radius: 4px; font-size: 0.85rem; color: #fff; margin-bottom: 10px;
}
.footer__bottom { 
  border-top: 1px solid rgba(255,255,255,0.1);
   padding-top: 30px; 
  display: flex;
   justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__sub-nav {
    display: flex;
    gap: 24px;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 960px) {

  .resident__bg-text { font-size: 25vw; }
}


/* contact */
.contact-block {
    margin: 0 0 30px 0;
}

.contact-block._last {
    margin: 0;
}

.contact-text1 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.contact-text1 p {
    font-weight: 400;
}

._required {
    font-weight: 400;
    margin: 0 0 0 10px;
    color: #E04F9B;
}

.privacy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.privacy-wrapper label {
    display: flex !important;
    align-items: center !important;
}

.privacy-text1 {
    text-decoration: none;
    font-size: 16px;
    margin: 0;
}

 
input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    padding: 15px 2%;
    height: 70px;
    background: #F7F7F7 0% 0% no-repeat padding-box;
    border: 1px solid #CFC6D8;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
textarea.form-control {
    height: 240px !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #B59B55;
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

input[type="checkbox"]:checked {
    background-color: #E04F9B;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #D30001;
        font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #D30001;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: #d30001;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* bootstrap */
button.btn-success {
    cursor: pointer;
}
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}

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



/* footer */

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}

.arrow-fixed-link {
    width: 50px;
    height: auto;
}


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

    .cta-fixed {
        width: 100%;
        position: fixed;
        display: flex;
        justify-content: center;
        bottom: 0;
        z-index: 13;
    }

    .cta-fixed-link1 {
        width: 100%;
        height: 50px;
        background: #2c2c2c;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .arrow-fixed {
        bottom: 60px;
    }

}

/* page02 common */
.page02 {
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
    height: 288px;
    background: #1a1a1a;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #E04F9B;

}

.crumbs-separator {
    margin: 0 8px;
}

.crumbs-current {
    font-size: 16px;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .heading._crumbs {
        padding: 20px min(5.333%, 20px);
    }


}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    font-family: 'Jost';
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #dddddd 0% 0% no-repeat padding-box;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #FF248B 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {

    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.88px;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #2c2c2c;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #2c2c2c;
    padding: 0 0 0 10px;
    margin: 20px 0 40px 0;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    border-bottom: 1px solid #2c2c2c;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
}
.detail-common-area a {
    font-size: 16px;
    color: #FF248B;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #FF248B;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}

/* archiveページ用 */
.archive-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.archive-area._achivements {
    grid-template-columns: 1fr;
    gap: 0;
}

.archive-block {
    position: relative;
}

.archive-block._achivements {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 23fr 56fr;
    gap: 2rem;
}

.archive-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 0 8px 0;
    aspect-ratio: 93/60;
    border-radius: 10px;
}

.archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.achivements-text1 {
    text-decoration: none;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: #E04F9B;
    margin: 0 0 10px 0;
}

.achivements-text2 {
    text-decoration: none;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #1C1324;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .archive-area {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }
}



/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0 0 0;
}

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #FF248B 0% 0% no-repeat padding-box;
    max-width: 220px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    padding: 13px 0;
    border-radius: 30px;
}


.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

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




/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}

/* 緊急のお知らせ全体の枠組み */
.emergency-banner {
    max-width: 800px;
    margin: 80px auto 20px;
    border: 2px solid #d00000; /* 赤い枠線 */
    background-color: #fff;
    font-family: sans-serif;
    box-sizing: border-box;
    width: 95%; /* スマホ等の小さい画面用 */
}

/* 「緊急のお知らせ」固定文言部分 */
.emergency-header {
    background-color: #ff0000; /* 鮮やかな赤 */
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* タイトルと本文を包むエリア */
.emergency-body {
    padding: 15px 20px;
    text-align: left; /* 基本左寄せ */
}

/* 投稿タイトル（2行目） */
.emergency-title {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

/* 投稿本文（3行目〜） */
.emergency-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* 本文内の改行（pタグ等）の余白調整 */
.emergency-content p {
    margin: 0 0 1em 0;
}
.emergency-content p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ：画面幅が狭い時の微調整 */
@media screen and (max-width: 480px) {
    .emergency-header {
        font-size: 1rem;
        padding: 6px 10px;
    }
    .emergency-body {
        padding: 10px 15px;
    }
}