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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.l_header_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 50px 0;
}

.l_header_logo {
  width: 484px;
  max-width: 34vw;
}
.l_header_logo img {
  width: 90%;
  height: auto;
}

.l_header_nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  margin-left: auto;
}

.l_header_nav_text {
  margin-right: 20px;
}

.l_header_nav_contact,
.l_header_nav_tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  min-height: 50px;
  min-width: 0;
  padding: 4px 8px;
}

.l_header_hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 40px;
  flex: none;
}

.l_header_hamburger_bar {
  position: absolute;
  left: 4px;
  width: 40px;
  height: 3px;
}
.l_header_hamburger_bar:nth-child(1) {
  top: 8px;
}
.l_header_hamburger_bar:nth-child(2) {
  top: 18px;
}
.l_header_hamburger_bar:nth-child(3) {
  top: 28px;
}

@media screen and (max-width: 1200px) {
  .l_header_inner {
    align-items: center;
    padding: 24px 24px;
  }
  .l_header_logo {
    width: 280px;
    max-width: 46vw;
  }
  .l_header_nav_text,
  .l_header_nav_contact {
    display: none;
  }
  .l_header_nav {
    margin-top: 0;
    gap: 12px;
  }
  .l_header_hamburger {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .l_header_nav {
    display: none;
  }
  .l_header_hamburger {
    margin-left: auto;
  }
}
@media screen and (max-width: 896px) {
  .l_header_inner {
    padding: 16px 16px;
  }
  .l_header_logo {
    width: 200px;
  }
  .l_header_nav_tel {
    width: 44px;
    min-height: 44px;
    gap: 0;
  }
}
.l_drawer_overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.l_drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(360px, 86vw);
  height: 100dvh;
  padding: 88px 24px 40px;
  overflow-y: auto;
}

.l_drawer_close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}
.l_drawer_close::before, .l_drawer_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 32px;
  height: 3px;
}

.l_drawer_nav {
  display: flex;
  flex-direction: column;
}
.l_drawer_nav a {
  display: block;
  padding: 16px 8px;
}

.l_drawer_tel {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.is_scroll_locked {
  overflow: hidden;
}

.l_footer {
  position: relative;
}

.l_footer_deco {
  display: none;
  height: 318px;
  margin-bottom: -1px;
}

body.is_sale .l_footer_deco,
body.is_rent .l_footer_deco,
body.is_parking .l_footer_deco {
  display: block;
}

.l_footer_cta {
  padding: 129px 0;
}

.l_footer_cta_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.l_footer_cta_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 342px;
  padding: 56px 40px 61px;
}
.l_footer_cta_card::after {
  content: "";
  position: absolute;
}
.l_footer_cta_card:first-child::after {
  left: -53px;
  bottom: -24px;
  width: 148px;
  height: 171px;
}
.l_footer_cta_card:last-child::after {
  right: -21px;
  top: -35px;
  width: 143px;
  height: 166px;
}

.l_footer_cta_lead {
  margin-top: 34px;
}

.l_footer_cta_card .c_btn {
  margin-top: auto;
}

.l_footer_map {
  height: 531px;
  position: relative;
  overflow: hidden;
}
.l_footer_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l_footer_info {
  padding: 58px 0 40px;
}

.l_footer_info_inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 78px;
}

.l_footer_logo {
  flex: none;
  width: 397px;
}
.l_footer_logo img {
  width: 100%;
  height: auto;
}

.l_footer_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 42px;
}
.l_footer_links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.l_footer_links_icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 33px;
  height: 33px;
}

.l_footer_address {
  margin-top: 20px;
}

.l_footer_address_item {
  display: inline;
}

.l_footer_address_item--license {
  display: block;
}

.l_footer_address_item--contact {
  margin-left: 1em;
}

.l_footer_copy {
  margin-top: 58px;
}

@media screen and (max-width: 1200px) {
  .l_footer_cta {
    padding: 80px 0;
  }
  .l_footer_cta_card {
    padding: 40px 24px;
  }
  .l_footer_cta_card:first-child::after {
    left: -24px;
    bottom: 8px;
    width: 100px;
    height: 116px;
  }
  .l_footer_cta_card:last-child::after {
    right: -16px;
    top: -48px;
    width: 96px;
    height: 112px;
  }
  .l_footer_info_inner {
    gap: 40px;
  }
  .l_footer_logo {
    width: 280px;
  }
}
@media screen and (max-width: 896px) {
  .l_footer_deco {
    height: 120px;
  }
  .l_footer_cta {
    padding: 40px 0;
  }
  .l_footer_cta_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .l_footer_cta_card {
    min-height: 0;
    padding: 32px 16px;
  }
  .l_footer_cta_card::after {
    display: none;
  }
  .l_footer_cta_lead {
    margin-top: 16px;
  }
  .l_footer_cta_card .c_btn {
    margin-top: 24px;
  }
  .l_footer_map {
    height: 280px;
  }
  .l_footer_info {
    padding: 40px 0 32px;
  }
  .l_footer_info_inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .l_footer_logo {
    width: 240px;
  }
  .l_footer_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .l_footer_links_icon {
    width: 28px;
    height: 28px;
  }
  .l_footer_address_item {
    display: block;
  }
  .l_footer_address_item--contact {
    margin-left: 0;
  }
  .l_footer_copy {
    margin-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .l_footer_deco {
    height: auto;
    aspect-ratio: 375/101;
  }
}
body.admin-bar .l_header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .l_header {
    top: 46px;
  }
  body.admin-bar .l_drawer {
    top: 46px;
    height: calc(100dvh - 46px);
  }
  body.admin-bar .l_drawer_overlay {
    top: 46px;
  }
}
.c_heading_01 {
  display: flex;
  align-items: center;
  gap: 28px;
}
.c_heading_01::before {
  content: "";
  flex: none;
  width: 42px;
  height: 41px;
}

.c_heading_01_text {
  min-width: 0;
}

.c_heading_01--center {
  justify-content: center;
}

@media screen and (max-width: 896px) {
  .c_heading_01 {
    gap: 12px;
  }
  .c_heading_01::before {
    width: 32px;
    height: 31px;
  }
}
.c_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 350px;
  min-height: 45px;
  max-width: 100%;
  min-width: 0;
  padding: 8px 16px;
}

.c_btn_text {
  min-width: 0;
}

.c_btn--pill {
  width: 200px;
  min-height: 50px;
}

.c_btn--wide {
  width: 100%;
}

@media screen and (max-width: 896px) {
  .c_btn {
    width: 100%;
    max-width: 280px;
    min-height: 40px;
    padding: 8px 12px;
  }
}
.c_area_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 30px;
  padding: 4px 12px;
}

.c_property_card {
  position: relative;
  overflow: hidden;
}

.c_property_card_link {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  min-height: 258px;
  padding: 16px;
}

.c_property_card_photo {
  position: relative;
  overflow: hidden;
}
.c_property_card_photo img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
}

.c_property_card_noimage {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
}

.c_property_card_body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.c_property_card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.c_property_card_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c_property_card_title {
  margin-top: 12px;
}

.c_property_card_price {
  margin-top: 16px;
}

.c_property_card_dl {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: auto 0 0;
  padding-top: 12px;
}

.c_property_card_row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}
.c_property_card_row dt {
  display: grid;
  place-items: center;
  min-height: 23px;
}
.c_property_card_row dd {
  margin: 0;
}

.c_property_card_badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
}

.c_property_card_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

@media screen and (max-width: 896px) {
  .c_property_card_link {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }
  .c_property_card_dl {
    margin-top: 16px;
  }
  .c_property_card_row {
    gap: 8px;
  }
}
.c_nav_search {
  width: min(1440px, 100% - 24px * 2);
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .c_nav_search {
    width: calc(100% - 16px * 2);
  }
}
.c_nav_search {
  position: relative;
  z-index: 5;
  margin-top: calc(160px / -2);
}

.c_nav_search_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 160px;
}

.c_nav_search_item {
  display: grid;
  place-items: center;
  position: relative;
}
.c_nav_search_item + .c_nav_search_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
}

.c_nav_search_link {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 8px;
}

.c_nav_search_icon {
  flex: none;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 1200px) {
  .c_nav_search_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c_nav_search_item + .c_nav_search_item::before {
    display: none;
  }
  .c_nav_search_item:not(:nth-child(3n+1))::before {
    display: block;
  }
  .c_nav_search_link {
    flex-direction: column;
    gap: 8px;
    padding: 20px 8px;
  }
}
@media screen and (max-width: 896px) {
  .c_nav_search {
    margin-top: -32px;
    padding: 8px;
  }
  .c_nav_search_list {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }
  .c_nav_search_item::before {
    display: none !important;
  }
  .c_nav_search_item:last-child {
    grid-column: 1/-1;
  }
  .c_nav_search_link {
    flex-direction: row;
    gap: 12px;
    padding: 12px 8px;
    width: 100%;
  }
  .c_nav_search_icon {
    width: 40px;
    height: 40px;
  }
}
.c_page_header {
  display: grid;
  place-items: center;
  height: 540px;
  padding: 0 24px;
}

@media screen and (max-width: 1200px) {
  .c_page_header {
    height: 400px;
  }
}
@media screen and (max-width: 896px) {
  .c_page_header {
    height: 200px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .c_page_header {
    height: auto;
    min-height: 200px;
    align-content: center;
    gap: 24px;
    padding: 80px 16px 56px;
  }
  .c_page_header .c_sp_menu {
    width: 100%;
    max-width: 86.933vw;
  }
}
.c_sp_menu {
  display: none;
}

@media screen and (max-width: 600px) {
  .c_sp_menu {
    display: flex;
    gap: 4.267%;
  }
  .c_sp_menu > a {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    aspect-ratio: 155/39;
  }
}
.c_area_tab_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.c_area_tab_item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  min-width: 0;
  padding: 8px 12px;
}

@media screen and (max-width: 896px) {
  .c_area_tab_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .c_area_tab_item a {
    min-height: 44px;
  }
  body.is_parking .c_area_tab_item a {
    padding-inline: 8px;
  }
}
.c_pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.c_pager_item .page-numbers {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 896px) {
  .c_pager_list {
    gap: 12px;
  }
  .c_pager_item .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.p_home_fv {
  position: relative;
  height: 910px;
  overflow: hidden;
}

.p_home_fv picture {
  display: block;
  height: 100%;
}

.p_home_fv_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.p_home_fv_logo {
  display: none;
}

.p_home_nav_slot {
  display: flow-root;
}

.p_home_news {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}

.p_home_news--parking {
  padding-top: 64px;
  padding-bottom: 260px;
}

.p_home_news .l_inner {
  position: relative;
  z-index: 1;
}

.p_home_news_list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p_home_news_more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.p_home_news_more .c_btn {
  width: 500px;
  min-height: 40px;
}

.p_home_news--sale::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -78px;
  width: 549px;
  height: 275px;
  z-index: 2;
  pointer-events: none;
}

.p_home_deco_sea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -63px;
  height: 500px;
  z-index: 0;
  pointer-events: none;
}

.p_home_worry {
  padding: 192px 0 54px;
}

.p_home_worry_grid {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 56px;
  align-items: start;
}

.p_home_worry_photo img {
  width: 100%;
  aspect-ratio: 700/490;
  height: auto;
  object-fit: cover;
}

.p_home_worry_list {
  margin-top: 32px;
}

.p_home_worry_item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 8px 13px;
}

.p_home_worry_pro {
  margin-top: 32px;
  padding-left: 13px;
}

.p_home_worry_cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}

.p_home_worry_balloon {
  position: relative;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
}

.p_home_worry_person {
  flex: none;
  width: 213px;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .p_home_fv {
    height: auto;
  }
  .p_home_fv picture {
    height: auto;
  }
  .p_home_fv_image {
    height: auto;
  }
  .p_home_news_list {
    grid-template-columns: 1fr;
  }
  .p_home_news--sale::after {
    width: 320px;
    height: 160px;
    bottom: -40px;
  }
  .p_home_deco_sea {
    height: 260px;
    bottom: -40px;
  }
  .p_home_news--parking {
    padding-bottom: 180px;
  }
  .p_home_worry {
    padding-top: 120px;
  }
  .p_home_worry_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 896px) {
  .p_home_news {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .p_home_news--parking {
    padding-top: 40px;
    padding-bottom: 120px;
  }
  .p_home_news_list {
    margin-top: 24px;
    gap: 16px;
  }
  .p_home_news_more {
    margin-top: 32px;
  }
  .p_home_news_more .c_btn {
    width: 100%;
    max-width: 280px;
  }
  .p_home_news--sale::after {
    display: none;
  }
  .p_home_deco_sea {
    height: 160px;
    bottom: -24px;
  }
  .p_home_worry {
    padding: 80px 0 40px;
  }
  .p_home_worry_list {
    margin-top: 24px;
  }
  .p_home_worry_item {
    align-items: flex-start;
    padding: 12px;
  }
  .p_home_worry_cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .p_home_worry_person {
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  .p_home_fv_logo {
    display: block;
    position: absolute;
    left: 2.667%;
    top: 10.36%;
    width: 97.333%;
    aspect-ratio: 365/173;
  }
  .p_home_fv .c_sp_menu {
    position: absolute;
    left: 6.667%;
    right: 6.667%;
    top: 61.93%;
  }
  .p_home_nav_slot .c_nav_search {
    margin-top: -28%;
  }
  .p_home_deco_sea {
    height: auto;
    aspect-ratio: 375/150;
  }
}
.p_archive {
  padding-top: 64px;
  padding-bottom: 80px;
}

.p_archive_list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p_archive_empty {
  margin-top: 64px;
}

.c_pager {
  margin-top: 64px;
}

@media screen and (max-width: 1200px) {
  .p_archive_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 896px) {
  .p_archive {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p_archive_list {
    margin-top: 32px;
    gap: 16px;
  }
  .c_pager {
    margin-top: 40px;
  }
}
.p_detail {
  padding-top: 64px;
  padding-bottom: 80px;
}

.p_detail_box {
  margin-top: 64px;
  padding: 64px 140px;
}

.p_detail_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.p_detail_title {
  flex: 1 1 360px;
  min-width: 0;
}

.p_detail_meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: none;
}

.p_detail_no {
  min-width: 297px;
  padding: 12px 16px;
}

.p_detail_gallery {
  margin-top: 40px;
}

.p_detail_gallery_main {
  display: grid;
  grid-template-areas: "slide";
}

.p_detail_gallery_slide {
  grid-area: slide;
  min-width: 0;
}

.p_detail_gallery_slide img {
  width: 100%;
  aspect-ratio: 29/21;
  height: auto;
  object-fit: cover;
}

.p_detail_gallery_thumbs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.p_detail_gallery_thumb_item {
  min-width: 0;
}

.p_detail_gallery_thumb {
  display: block;
  width: 100%;
  padding: 0;
}

.p_detail_gallery_thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 29/21;
  height: auto;
  object-fit: cover;
}

.p_detail_map {
  margin-top: 40px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.p_detail_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p_detail_lead {
  margin-top: 24px;
}

.p_detail_table {
  display: grid;
  grid-template-columns: 150px 1fr 150px 1fr;
  gap: 2px;
  margin: 24px 0 0;
}

.p_detail_row {
  display: contents;
}
.p_detail_row dt {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 8px;
}
.p_detail_row dd {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 8px 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.p_detail_note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2px;
  margin: 24px 0 0;
}
.p_detail_note dt {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 8px;
}
.p_detail_note dd {
  margin: 0;
  padding: 16px 24px;
}

.p_detail_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}

.p_detail_contact {
  width: 500px;
  min-height: 40px;
}

.p_detail_back {
  width: 250px;
  min-height: 40px;
}

@media screen and (max-width: 1200px) {
  .p_detail_box {
    padding: 48px 40px;
  }
  .p_detail_gallery_thumbs {
    gap: 16px;
  }
}
@media screen and (max-width: 896px) {
  .p_detail {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p_detail_box {
    margin-top: 32px;
    padding: 24px 16px;
  }
  .p_detail_head {
    gap: 16px;
  }
  .p_detail_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .p_detail_no {
    min-width: 0;
    padding: 8px 12px;
  }
  .p_detail_gallery {
    margin-top: 24px;
  }
  .p_detail_gallery_thumbs {
    margin-top: 16px;
    gap: 8px;
  }
  .p_detail_map {
    height: 220px;
    margin-top: 24px;
  }
  .p_detail_table {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p_detail_row {
    display: block;
  }
  .p_detail_note {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p_detail_row dt,
  .p_detail_note dt {
    display: block;
    min-height: 0;
    padding: 6px 12px;
  }
  .p_detail_row dd,
  .p_detail_note dd {
    display: block;
    min-height: 0;
    padding: 8px 12px;
  }
  .p_detail_actions {
    margin-top: 40px;
    gap: 16px;
  }
  .p_detail_contact,
  .p_detail_back {
    width: 100%;
  }
}
.p_about_greeting {
  padding-top: 120px;
  padding-bottom: 120px;
}

.p_about_greeting_grid {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 56px;
  align-items: start;
}

.p_about_greeting_photo img {
  width: 100%;
  aspect-ratio: 700/433;
  height: auto;
  object-fit: cover;
}

.p_about_greeting_text {
  margin-top: 32px;
}

.p_about_greeting_sign {
  margin-top: 40px;
}

.p_about_company {
  padding: 64px 0;
}

.p_about_company_photo img {
  width: 100%;
  aspect-ratio: 691/660;
  height: auto;
  object-fit: cover;
}

.p_about_company_card {
  padding: 64px 0 144px;
}

.p_about_company_card .c_heading_01 {
  padding-left: 144px;
}

.p_about_company_table {
  width: min(664px, 100%);
  margin-top: 40px;
  margin-inline: auto;
}

.p_about_company_row {
  display: grid;
  grid-template-columns: 168px 1fr;
  align-items: center;
  min-height: 68px;
}

.p_about_company_label {
  padding-left: 8px;
}

.p_about_company_value {
  margin: 0;
  padding-left: 32px;
}

@media screen and (max-width: 1200px) {
  .p_about_greeting {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .p_about_greeting_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p_about_company_card {
    padding: 48px 24px 64px;
  }
  .p_about_company_card .c_heading_01 {
    padding-left: 0;
  }
}
@media screen and (max-width: 896px) {
  .p_about_greeting {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .p_about_greeting_grid {
    gap: 24px;
  }
  .p_about_greeting_text {
    margin-top: 24px;
  }
  .p_about_greeting_sign {
    margin-top: 24px;
  }
  .p_about_company {
    padding: 40px 0;
  }
  .p_about_company_card {
    padding: 32px 16px 40px;
  }
  .p_about_company_table {
    margin-top: 24px;
  }
  .p_about_company_row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 12px 0;
  }
  .p_about_company_label {
    padding-left: 0;
  }
  .p_about_company_value {
    padding-left: 0;
  }
}
.p_page {
  padding-top: 120px;
  padding-bottom: 144px;
}

.p_page_body > * + *,
.p_contact_privacy_body > * + * {
  margin-top: 24px;
}
.p_page_body h2,
.p_contact_privacy_body h2 {
  margin-top: 48px;
}
.p_page_body h3,
.p_contact_privacy_body h3 {
  margin-top: 32px;
}
.p_page_body ul,
.p_page_body ol,
.p_contact_privacy_body ul,
.p_contact_privacy_body ol {
  padding-left: 1.5em;
}
.p_page_body li + li,
.p_contact_privacy_body li + li {
  margin-top: 8px;
}
.p_page_body li > * + *,
.p_contact_privacy_body li > * + * {
  margin-top: 8px;
}

@media screen and (max-width: 1200px) {
  .p_page {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media screen and (max-width: 896px) {
  .p_page {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .p_page_body > * + *,
  .p_contact_privacy_body > * + * {
    margin-top: 16px;
  }
  .p_page_body h2,
  .p_contact_privacy_body h2 {
    margin-top: 32px;
  }
  .p_page_body h3,
  .p_contact_privacy_body h3 {
    margin-top: 24px;
  }
}
.p_contact {
  padding-top: 120px;
  padding-bottom: 144px;
}

.p_contact_lead + .c_heading_01 {
  margin-top: 112px;
}

.p_contact_form + .c_heading_01 {
  margin-top: 160px;
}

.p_contact_note {
  margin-top: 32px;
}

.p_contact_privacy {
  height: 362px;
  overflow-y: auto;
  margin-top: 32px;
  padding: 24px 32px;
}

.p_contact_privacy_body {
  margin-top: 16px;
}

.p_contact_form {
  margin-top: 64px;
}

.p_contact_form_row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  min-height: 100px;
  padding: 16px 0;
}

.p_contact_form_row--textarea {
  align-items: start;
}

.p_contact_form_label {
  padding-left: 32px;
}

.p_contact_form_input {
  min-width: 0;
}

.p_contact_form_input input[type=text],
.p_contact_form_input input[type=tel],
.p_contact_form_input input[type=email] {
  width: 100%;
  max-width: 620px;
  min-height: 58px;
  padding: 8px 16px;
}

.p_contact_form_input textarea {
  width: 100%;
  max-width: 875px;
  height: 380px;
  padding: 16px;
}

.p_contact_form_note {
  margin-top: 8px;
}

.p_contact_form_agree {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.p_contact_form_submit {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 32px;
}
.p_contact_form_submit .wpcf7-spinner.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
}

.p_contact_form_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  transition: 0.25s ease;
  min-width: 0;
  overflow-wrap: anywhere;
  width: 250px;
  min-height: 40px;
}

.p_contact .c_heading_01 + .p_contact_tel {
  margin-top: 64px;
}

.p_contact_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
}

.p_contact_tel_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 370px;
  max-width: 100%;
  min-height: 80px;
  padding: 8px 16px;
}

.p_contact_tel_no {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 1200px) {
  .p_contact {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .p_contact_lead + .c_heading_01 {
    margin-top: 80px;
  }
  .p_contact_form + .c_heading_01 {
    margin-top: 96px;
  }
  .p_contact .c_heading_01 + .p_contact_tel {
    margin-top: 48px;
  }
  .p_contact_form_row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    gap: 8px;
    padding: 20px 0;
  }
  .p_contact_form_label {
    padding-left: 0;
  }
}
@media screen and (max-width: 896px) {
  .p_contact {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .p_contact_lead + .c_heading_01 {
    margin-top: 56px;
  }
  .p_contact_form + .c_heading_01 {
    margin-top: 64px;
  }
  .p_contact .c_heading_01 + .p_contact_tel {
    margin-top: 32px;
  }
  .p_contact_privacy {
    height: 280px;
    padding: 16px;
  }
  .p_contact_form {
    margin-top: 32px;
  }
  .p_contact_tel {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .p_contact_tel > li {
    width: 100%;
    max-width: 300px;
  }
  .p_contact_tel_item {
    width: 100%;
    min-height: 64px;
  }
}
.l_main {
  display: block;
}

.l_inner {
  width: min(1440px, 100% - 24px * 2);
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .l_inner {
    width: calc(100% - 16px * 2);
  }
}

.l_inner--narrow {
  width: min(1160px, 100% - 24px * 2);
}
@media screen and (max-width: 896px) {
  .l_inner--narrow {
    width: calc(100% - 16px * 2);
  }
}

.l_section + .l_section {
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .l_section + .l_section {
    margin-top: 40px;
  }
}

.u_br_sp {
  display: none;
}
@media screen and (max-width: 896px) {
  .u_br_sp {
    display: inline;
  }
}

@media screen and (max-width: 896px) {
  .u_pc_only {
    display: none;
  }
}

.u_sp_only {
  display: none;
}
@media screen and (max-width: 896px) {
  .u_sp_only {
    display: block;
  }
}

.u_visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
