* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "M PLUS 1", sans-serif !important;
  color: #333;
  line-height: 1.6;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0 !important;
  padding: 0;
}
a{
  cursor: pointer;
}
p {
  font-size: 16px;
  line-height: 30px;
}
.pc_none {
  display: none;
}
section {
  margin-bottom: 120px;
}
.kv,.about,.information-section,.point_btn {
  margin-bottom: 0px;
}
.container {
  width: 1300px;
  max-width: 90%;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.section-title.center {
  text-align: center;
}

/* ================= HEADER ================= */
header {
  display: block !important;
  padding-bottom: 0 !important;
}

.header {
  background: #1f8f3c;
  color: #fff;
}

.header__inner {
  position: relative;
  width: 100%;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header__text {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}
.header_br {
  display: none;
}

.header__text span {
  font-weight: 900;
  font-size: 48px;
  color: #FFF799;
}

.header__logo {
  display: flex;
  justify-content: center;
  height: 70px;
  background-color: #ffffff;
}

.header__logo img {
  width: 40%;
  max-width: 400px;
  display: block;
}


/* ================= HERO ================= */

.kv {
  position: relative;
  width: 100%;
  height: 980px;
  overflow: hidden;
  margin-top: 200px;

}

/* 반응형 */
@media (max-width: 1920px) {
  .kv {
    height: 50vw; /* 1920:980 비율 유지 */
    max-height: 980px;
  }
}

/* ===== 배경 ===== */
.kv__bg {
  position: absolute;
  inset: 0;
}

.kv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.kv__slide:first-child {
  opacity: 1;
}

.kv__slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* ===== 텍스트 ===== */
.kv__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 100px;
  color: #fff;
  font-size: 60px;
}

.kv__title {
  font-size: 54px;
  line-height: 80px;
}
.kv__title span{
  color: #15983F;
  font-weight: 900;
}
.kv__content::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.5),
    rgba(0, 0, 0, 0)
  );
  z-index: -1;
}

/* ================= ABOUT ================= */

.about {
  position: relative;
  padding: 240px 0;
  background: url("../img/about_bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 0px;
  width: 100%;
  max-width: 1500px;
}
.about__text {
  width: 50%;
  max-width: 680px;
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-title {
  font-size: 64px;
  color: #15983F;
}
.about__text h4 {
  font-size: 24px;
  line-height: 40px;
}
.about__image img {
  width: 100%;
  max-width: 840px;
   margin-left: auto;
}

/* ================= point ================= */

.point_btnAria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.point_btn_inner {
  text-align: center;
  display: flex;
  justify-content: center; /* 가로 중앙 */
  align-items: center; 
}
.point_btn_inner img{
  margin: 0 auto;
}
.point_btn_1 {
  position: relative;
  padding: 130px 0;
  background: url("../img/point_btn_1.jpg") no-repeat center center;
  background-size: cover;
}
.point_btn_1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
  z-index: 0;
}
.point_btn_1:hover::before {
  background: rgba(255, 255, 255, 0.8);
}
.point_btn_1 > * {
  position: relative;
  z-index: 1;
}

.point_btn_2 {
  position: relative;
  padding: 130px 0;
  background: url("../img/point_btn_2.jpg") no-repeat center center;
  background-size: cover;
}
.point_btn_2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
  z-index: 0;
}
.point_btn_2:hover::before {
  background: rgba(255, 255, 255, 0.8);
}
.point_btn_2 > * {
  position: relative;
  z-index: 1;
}

.point_btn_3 {
  position: relative;
  padding: 130px 0;
  background: url("../img/point_btn_3.jpg") no-repeat center center;
  background-size: cover;
}
.point_btn_3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
  z-index: 0;
}
.point_btn_3:hover::before {
  background: rgba(255, 255, 255, 0.8);
}
.point_btn_3 > * {
  position: relative;
  z-index: 1;
}
.point_btn_inner-box {
  padding-top: 50px;
}
.point_btn_inner-box p {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ================= FEATURES ================= */

.features {
  background: #e9efe9;
  padding: 100px 0;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.feature.reverse {
  flex-direction: row-reverse;
}
.feature__image{
  width: 60%;
  margin-bottom: 60px;
}
.feature__image img {
  width: 100%;
}

.feature__text {
  width: 40%;
  margin-left: -50px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  align-self: flex-end;
  position: relative;
  z-index: 1;
}
.reverse .feature__text {
  margin-left: 0px;
  margin-right: -50px;
  z-index: 99;
}
.feature__text h3 {
  font-size: 32px;
  margin-bottom: 20px !important;
}


.point-box::before {
  content: attr(data-point);
  position: absolute;
  top: -35px;
  left: 30px;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #c8e2d4;
  font-family: sans-serif;
  letter-spacing: 2px;
  z-index: -1;
  line-height: 1;
}




.bg_w {
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 85px;
  margin-bottom: 30px;
}
.sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.sub-title h6 {
  font-size: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sub-title h6::before{
  content: "";
  width: 10px;
  height: 10px;
  background-color: #15983F;
  border-radius: 50%;
  display: inline-block;
}
.sub-title h3 {
  font-size: 32px;
}
.sub-content {
  display: flex;
  justify-content: space-evenly;
  margin-bottom:30px;
}
.sub-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-content-inner p {
  margin-top: 24px;
  background: #FFF799;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.bedspace-img img{
  margin: 0 auto;
}
.kitchen-text {
  margin-bottom: 20px;
}
.kitchen-text p span {
  color: #FF2323;
}

/* ================= SPEC ================= */

.spec {
  padding: 100px 0;
}

.spec__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
.spec__item {
  background: #1f8f3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 22px;
  line-height: 27px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}



/* ================= CALENDAR ================= */


.background-title {
  position: relative;
  display: block; 
  font-size: 42px;
  font-weight: bold;
  color: #333;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}


.price-title::before {
  content: attr(data-bg);
  position: absolute;
  top: -35px; 
  left: 50%;
  transform: translateX(-50%); 
  font-size: 60px;           
  color: #d4e9d7;        
  letter-spacing: 5px;      
  z-index: -1;
  opacity: 0.8;
  white-space: nowrap;
}


.price-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #28a745;
}

.calendar {
  margin-top: 120px;
}

.calendar__box {
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
}
.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
}

.row {
  display: grid;
  grid-template-columns: 180px repeat(5, 1fr);
  gap: 12px;
}

.cell {
  background: #FAFAFC;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.label {
  background: #FAFAFC;
}

.header .cell {
  background: #ddd;
}

.header .empty {
  background: transparent;
}

.grade {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* Grade colors */
.s { background: #f4e6c8; }
.s .dot { background: #f4b63f; }

.a { background: #dcebd2; }
.a .dot { background: #76c043; }

.b { background: #ececec; }
.b .dot { background: #fff; }

.c { background: #f2d9f2; }
.c .dot { background: #d98ed9; }

.d { background: #d8edf4; }
.d .dot { background: #1da6d8; }

/* Last row colspan style */
.colspan {
  grid-column: span 5;
  background: #FAFAFC;
}


.detail-container {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  justify-content: space-between;
}
.car-spec {
  max-width: 518px;
}
.car-spec__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px !important;
  position: relative;
  padding-left: 20px;
}

.car-spec__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #1f9d45;
  border-radius: 50%;
}

.car-spec__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
}

.car-spec__table th,
.car-spec__table td {
  padding: 22px 28px;
  font-size: 15px;
  line-height: 1.6;
}

.car-spec__table th {
  width: 40%;
  background: #1f9d45;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.car-spec__table td {
  width: 60%;
  background: #FAFAFC;
  border-bottom: 1px solid #DBDBDB;
}

.car-spec__table tr:last-child th,
.car-spec__table tr:last-child td {
  border-bottom: none;
}
.detail-inner {
  width: 50%;
  max-width: 550px;
}
.detail-inner__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px !important;
  font-size: 24px;
  font-weight: 700;
}
.detail-inner__title::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #15983F;
    border-radius: 50%;
    display: inline-block;
}
.notice__list {
  list-style: disc;
}
.notice__list li {
  font-size: 13px;
}

.store-buttons {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-btn {
  flex: 1;
  background: #1f9d45;
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.store-btn:hover {
  background: #17873a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}



.information-section {
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}


.information-bg {
  background: #FEFCE6;
  padding: 140px 20px 160px;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  position: relative;
}

.information-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: #DEF0D9;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.information-title::before {
  content: attr(data-bg);
  position: absolute;
  top: -35px; 
  left: 50%;
  transform: translateX(-50%); 
  font-size: 60px;           
  color: #d4e9d7;        
  letter-spacing: 5px;      
  z-index: -1;
  opacity: 0.8;
}


.information-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #28a745;
}

/* =========================
   Title Area
========================= */
.information-title {
  text-align: center;
  margin-bottom: 70px !important;
  position: relative;
  z-index: 2;
}

.information-title .en {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #b9d3b2;
}

.information-title .jp {
  font-size: 28px;
  font-weight: 700;
  margin-top: -10px !important;
  color: #333;
}

.information-title .line {
  width: 40px;
  height: 3px;
  background: #6aa57a;
  margin: 15px auto 0;
}

/* =========================
   Content Area
========================= */
.information-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.information-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #aaa;
}

/* 좌우 컬럼 */
.info-column {
  width: 50%;
  text-align: center;
}

/* =========================
   Left Column
========================= */
.info-column h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px !important;
}

.info-note {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.hours {
  font-size: 14px;
  margin-bottom: 5px;
}

.small-note {
  font-size: 12px;
  color: #666;
}

/* =========================
   Right Column
========================= */
.info-column-right h3 {
  margin-bottom: 40px !important;
}
.store-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.store-link:hover {
  opacity: 0.6;
}



/* ================= FOOTER ================= */

.footer {
  background: #ffffff;
  padding: 120px 0 50px 0;
  text-align: center;
  font-size: 14px;
}
.footer__inner {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer__inner h3 {
  color: #15983F;
  font-size: 20px;
  font-weight: 700;
}
.footer__inner p {
  font-size: 12px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 27px;
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  section {
    margin-bottom: 80px;
  }
  .header__text {
  font-size: 22px;
}

.header__text span {
  font-weight: 900;
  font-size: 18px;
  color: #FFF799;
}
.header__logo img {
  width: 50%;
}
  .kv {
    height: 150vw;
  }
  .kv__title {
    font-size: 24px;
    line-height: 40px;
  }
  
  .kv__content {
    padding-left: 20px;
  }
  .kv__content::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 70%;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.4),
    rgba(0, 0, 0, 0)
  );
  z-index: -1;
}
  .about {
    padding: 80px 0;
  }
  .about__inner {
    flex-direction: column;
    gap: 30px;
  }
  .about__text {
    width: 100%;
    margin-left: 0;
    padding: 0 30px;
  }
  .about__text h4 {
    font-size: 16px;
    line-height: 30px;
  }
  .about-title {
    font-size: 32px;
  }
  .about__image img {
    width: 90%;
  }
  .point_btnAria {
    grid-template-columns: 1fr;
  }
  .point_btn_1,.point_btn_2,.point_btn_3 {
    padding: 0;
    height: 250px;
  }
  .point_btn_inner-box {
    padding-top: 30px;
  }
  .point_btn_inner-box p {
    font-size: 20px;
    line-height: 32px; 
    margin-bottom: 15px;
  }
  .point_btn_inner-box img {
    width: 30px;
  }
  .features {
    padding: 50px 0;
  }
  .feature,.feature.reverse {
    flex-direction: column;
    gap: 0;
  }
  .feature__text {
    margin-left: 0;
  }
  .reverse .feature__text {
    margin-right: 0;
  }
  .feature__image {
    margin-bottom: 0;
    width: 100%;
  }
  .feature__text {
    width: 100%;
    margin-top: 35px;
  }
  .point-box::before {
    top: -15px;
    font-size: 30px;
  }
  .feature__text h3 {
    font-size: 22px;
  }
  .bg_w {
    padding: 40px 30px;
  }
  .sub-content {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
  }
  .sub-content-inner p {
    margin-top: 10px;
  }
  .sub-title {
    align-items: start;
    flex-direction:column;
  }
  .sub-title h6 {
    font-size: 14px;
  }
  .sub-title h3 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 25px !important;
  }
  .spec__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec__item {
    font-size: 14px;
    line-height: 20px;
  }
  .detail-container {
   flex-direction: column;
   gap: 80px;
  }
  .detail-inner {
    width: 100%;
  }
  .car-spec__title,.detail-inner__title {
    margin-bottom: 20px !important;
    font-size: 22px;
  }
  .car-spec__table th, .car-spec__table td  {
    padding: 10px 15px;
  }
  .notice__list {
    list-style-position: inside;
  }
  .background-title{
    font-size: 24px;
  }
  .price-title::before{
    font-size: 24px;
    top: -18px;
  }
  .price-table {
    overflow-x: auto;
  }
  .row {
    min-width: 720px;
    grid-template-columns: 120px repeat(5, 1fr);
  }
  .cell{
    font-size: 14px;
    padding: 10px 0;
  }
  .store-buttons{
    flex-direction: column;
    width: 80%;
    gap: 20px;
  }
  .store-btn {
    font-size: 16px;
    padding: 20px;
  }
  .information-title::before{
    font-size: 24px;
    top: -18px;
  }
  .information-content {
    flex-direction: column;
  }
  .info-column {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px 10px;
  }
  .info-column h3 {
    font-size: 16px;
  }
  .info-note {
    font-size: 13px;
  }
  .store-name,.store-link {
    font-size: 14px;
  }
  .tel{
    font-size: 20px;
  }
  .tel img,.store-link img{
    width: 20px;
  }
  .information-content::before{
    display: none;
  }
  .footer__inner h3 {
  color: #15983F;
  font-size: 14px;
}
.kv__content {
  padding: 100px 20px 80px;
}
}

@media (max-width: 480px) {
  .header__inner {
    padding: 20px 0;
  }
  .header__text {
    font-size: 19px;
  }
  .header_br {
    display: block;
  }
  .header__text {
    font-size: 20px;
  }
}

/* ================= カレンダー ================= */
.wpsbc-calendars {
  margin: 0 auto !important;
  width: fit-content;
}
.wpsbc-date {
  border-radius: 30px;
}
.wpsbc-container .wpsbc-calendars .wpsbc-calendar {
    border: none !important;
  }
  .wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header {
    background: none !important;
  }
  .wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header .wpsbc-select-container select {
    border: none !important;
    text-align: center !important;
    width: auto !important;
  }
  .wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header .wpsbc-calendar-header-navigation .wpsbc-next, .wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header .wpsbc-calendar-header-navigation .wpsbc-prev {
    background: #fff !important;
  }
  /* next (▶) */
.wpsbc-container .wpsbc-next .wpsbc-arrow {
  border-color: transparent transparent transparent #3D4354 !important;
}

/* prev (◀) */
.wpsbc-container .wpsbc-prev .wpsbc-arrow {
  border-color: transparent #3D4354 transparent transparent !important;
}
.wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header .wpsbc-calendar-header-navigation {
  font-size: 14px;
  font-weight: 600;
  font-family: 'M PLUS 1', sans-serif;
}
.wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header .wpsbc-select-container select {
  font-size: 14px;
  font-weight: 600;
  font-family: 'M PLUS 1', sans-serif;
}
