@charset "UTF-8";
/* CSS Document */
/*
Theme Name: REBORNA KITASENJU
Theme URI:https://reborna.co.jp
Description: オリジナルテーマ
Version: 1.0
Author: smilebubbles
Author URI:https://reborna.co.jp
*/

/* ============================================
   REBORNA Real Estate Website Styles
   ============================================ */
.header_logo {
    display: inline-block;
    margin: 0;
}

.header_logo a{
    display: inline-block;
/*    padding-left: 40px;*/
}
/*.pc{
	
}
.sp{
	display: none;
}*/

/* clearfix
------------------------------------------- */
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content : '';
	display : block;
	clear : both;
	height: 0;
	visibility: hidden;
}

/*// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name*/

.noto-sans-jp-{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:300;
  font-style: normal;
}



.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.shippori-mincho-extrabold {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}


.nav-list li a{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    color: #fff;
	font-size: 16px;
}

/*	@media (min-width: 897px) {
		.header h1 .logo01 {
			display: none;
		}
		.header h1 .logo02 {
			display: block;
		}
		.header.color h1 .logo01 {
			display: block;
		}
		.header.color h1 .logo02 {
			display: none;
		}
	}
*/
/* ============================================
   LAYER ORGANIZATION
   ============================================ */

/* CSS Layers for proper cascade management */
@layer reset, base, layout, components;

/* ============================================
   LAYER: RESET
   ============================================ */
@layer reset {
  /* Box sizing reset */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Remove default list styles */
  ul,
  ol {
    list-style: none;
  }

  /* Remove default link styles */
  a {
    text-decoration: none;
    color: inherit;
  }

  /* Image defaults */
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
	

	
  /* Button reset */
  button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
  }

  /* Address reset */
  address {
    font-style: normal;
	  font-size: 14px;
  }
}

/* ============================================
   LAYER: BASE
   ============================================ */
@layer base {
  /* CSS Custom Properties / Design Tokens */
  :root {
    /* Colors */
    --color-primary: #003366;
    --color-secondary: #1a4d7a;
    --color-accent: #d4af37;
    --color-dark: #1a1a1a;
    --color-gray-dark: #333333;
    --color-gray-medium: #666666;
    --color-gray-light: #f5f5f5;
    --color-white: #ffffff;

    /* Typography */
    --font-primary: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', sans-serif;

    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 2rem; /* 32px */
    --font-size-3xl: 2.5rem; /* 40px */
    --font-size-4xl: 3rem; /* 48px */

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* Spacing */
    --spacing-xs: 0.5rem; /* 8px */
    --spacing-sm: 1rem; /* 16px */
    --spacing-md: 1.5rem; /* 24px */
    --spacing-lg: 2rem; /* 32px */
    --spacing-xl: 3rem; /* 48px */
    --spacing-2xl: 4rem; /* 64px */
    --spacing-3xl: 6rem; /* 96px */

    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-none: 0px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
  }

  /* Base HTML elements */
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100svh;
    overflow: hidden;
  }

  body {
    font-family: var(--font-primary), serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    height: 100svh;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    scroll-padding-top: 0;
    overscroll-behavior-y: contain;
  }

  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
  }

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

  h4 {
    font-size: var(--font-size-xl);
  }

  h5 {
    font-size: var(--font-size-lg);
  }

  h6 {
    font-size: var(--font-size-base);
  }

  p {
    margin-bottom: var(--spacing-sm);
  }
}

/* ============================================
   LAYER: LAYOUT
   ============================================ */


.post-categories{
	display: flex;
  flex-wrap: wrap;
	gap: 10px 0;
}
@layer layout {
  /* Container */
  .container {
    max-width: var(--container-max-width);
    margin: 0 0;
  }

	
  .header .logo{
	margin-top: 18px;
    height: 47px;
}
	
	
  /* Header */
  .header {
    position: absolute;
/*    top: 0;*/
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 100;
	height: 75px;
  }

  .header__logo {
    max-width: max-content;
  }

  .header__logo a {
    display: block;
    cursor: pointer;
  }

  .header__logo img {
    height: 32px;
    width: auto;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
	padding: 25px 0;
  }

  .nav-list a {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: inherit;
    transition: color var(--transition-base);
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-list a:hover {
    color: var(--color-accent);
  }

  /* Sections wrapper - no artificial height needed */
  .sections-wrapper {
    position: relative;
  }

  /* Section Layouts */
  section {
    padding: 0;
  }

  .section > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    background-color: var(--color-gray-light);
    object-fit: cover;
/*    border: 2px solid var(--color-gray-light);*/
    z-index: -1;
  }

section .overlay {
    /* position: absolute; */
    /* inset: 0; */
    /* display: flex
; */
    /* justify-content: space-between; */
    /* align-items: center; */
    padding: 0 5%;
    color: #003366;
}
  section .overlay a {
    text-decoration: underline;
	      position: relative;
  }

  section .label {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-2xl);
  }
  .section.about .label {
    top: 6rem;
  }

  /* HERO Section */
  .section.hero {
    height: 100svh;
  }


.hero header .container {
    max-width: 100%;
    margin: 0 40px;
}
	
	
  .section.hero header .container {
    display: flex;
    justify-content: space-between;
	align-items: start;
  }

  .hero__left-note {
    background: var(--color-primary);
    font-size: var(--font-size-sm);
    width: 17.4vw;
    padding: 17px;
    z-index: 10;
    color: #fff!important;
    position: absolute;
    /* inset: 0; */
    display: block;
    /* justify-content: space-between; */
    /* align-items: center; */
    /* padding: 0px 0 0 10px; */
    color: #003366;
    height: auto;
    left: 10px;
    bottom: 220px;
  }

  .hero__right-note {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    z-index: 10;
  }

  .about__left-note {
    font-size: var(--font-size-sm);
    padding: var(--spacing-md);
    z-index: 10;
  }

  .property__left-note {
    font-size: var(--font-size-sm);
    padding: var(--spacing-md);
    z-index: 10;
  }

  .reborna {
    height: 172svh !important;
  }

  .reborna__container {
    padding-top: 150px;
    width: 1160px;
    margin: 0 auto;
    text-align: center;
	padding-bottom: 170px;
  }

  .reborna__container_top {
    grid-row: 1;
    grid-column: 1/-1;
    position: relative;
    height: 55svh;
    background-color: var(--color-white);
  }

  .reborna__container_top img {
    position: absolute;
    width: 40%;
    height: auto;
    aspect-ratio: 1/1;
    top: -5%;
    right: 15%;
    z-index: 1;
  }

  .reborna__container_bottom {
    grid-row: 2;
    grid-column: 2/3;
    height: 200svh;
    background-color: var(--color-white);
  }

  .reborna__container_bottom img {
    position: relative;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 2;
  }

  /* Scroll-snap sections with stacking */
  .section {
    height: 100svh;
    /* scroll-snap-align: start;
    scroll-snap-stop: always; */
    position: sticky;
    top: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: paint;
  }

  body.navigating-back {
    scroll-snap-type: none !important;
  }

  body.navigating-back .section {
    position: relative !important;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  body:has(.section:target) .section {
    transition: opacity 480ms ease-out;
  }

  body:has(.section:target) .section:target {
    opacity: 1;
  }

  body:has(.section:target) .section:not(:target) {
    opacity: 0.98;
  }

  /* Respect user preference for reduced motion */
  @media (prefers-reduced-motion: reduce) {
    body:has(.section:target) .section {
      transition: none !important;
    }

    body:has(.section:target) .section:target,
    body:has(.section:target) .section:not(:target) {
      transform: none;
      opacity: 1;
    }
  }

  .section-heading {
    text-align: center;
    font-size: var(--font-size-2xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-2xl);
    color: var(--color-dark);
  }

  .section-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
  }
}

/* ============================================
   LAYER: COMPONENTS
   ============================================ */
@layer components {
  /* Buttons */
  .btn-contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 17px;
 border-radius: 18px;
/*    transition: background-color var(--transition-base);*/
  }

  .btn-contact:hover {
    background-color: var(--color-secondary);
  }

  /* Nav Footer Section */
  .nav_footer {
    position: relative;
    padding: var(--spacing-2xl);
    height: 85svh;
  }

  .nav_footer > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    z-index: 0;
  }

  .nav_footer_container {
    position: relative;
    background-color: transparent;
    z-index: 1;
  }

  .nav_footer_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    column-gap: var(--spacing-md);
  }

  .nav_footer_list a {
    display: contents;
    color: var(--color-white);
  }

  .nav_footer_list li {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    align-items: center;
    border-top: 1px solid white;
  }

  .nav_footer_list li:last-child {
    border-bottom: 1px solid white;
  }

		
  .nav_footer_list_text img {
    height: 19px;
}
	
	
	
  .nav_footer_list_text {
    grid-column: 2;
    font-size: clamp(var(--font-size-xl), 2vw, var(--font-size-2xl));
    line-height: 1;
    padding: var(--spacing-lg) 0;
    text-align: left;
    transition: padding var(--transition-slow);
	  
  }

  .nav_footer_list_subtext {
    grid-column: 3;
    font-size: 18px;
    line-height: 1;
    padding: var(--spacing-lg) 0;
    text-align: left;
    transition: padding var(--transition-slow);
	  position: relative;
  }

  .nav_footer_list li:hover .nav_footer_list_text,
  .nav_footer_list li:hover .nav_footer_list_subtext {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

  /* News Section */
  .news {
    background-color: var(--color-primary);
    padding: var(--spacing-3xl);
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-content: center;
  }

  .news__container {
    grid-column: 2;
	      position: relative;
    z-index: 99;
  }

  .news__title {
    font-size: clamp(var(--font-size-2xl), 3.2vw, var(--font-size-3xl));
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    margin: 0 0 var(--spacing-2xl);
    color: var(--color-white);
    text-transform: uppercase;
  }

  /* List container */
  .news__list {
    list-style: none;
    margin: 0 0 var(--spacing-sm);
    padding: 0;
    display: grid;
    gap: 0;
  }

  /* One item row */
  .news__item {
    display: grid;
    grid-template-columns: 14ch 12ch auto;
    grid-template-rows: auto auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    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: 30px;
    padding-bottom: 10px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;	  
  }
 .news__item_col {
    padding: 18px 0 0px 0px;
    position: relative;
    border-bottom: 1px solid var(--color-white);
}
	
	
  /* Meta row cells */
   .news__right {
	  flex: 1;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 5px 0;
  }
  .news__date {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    color: var(--color-white);
    white-space: nowrap;
    font-size: var(--font-size-sm);
  }

  .news__tag li{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: start;
    align-self: start;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    padding: 0.25rem 0.6rem;
    white-space: nowrap;
	  margin-right: 10px;
  }

  .news__labels {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    color: var(--color-white);
font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
  }

  .news__titleLink {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    text-decoration: none;
    color: var(--color-white);
    font-size: 18px;
    padding: 15px 0 18px 0;
    transition: color var(--transition-base);
	margin: 0;
  }

  .news__titleLink:hover {
    color: var(--color-accent);
  }

  .news__more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: auto;
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: color var(--transition-base);
  }

  .news__more:hover {
    color: var(--color-accent);
  }

  .news__more::after {
    content: "›";
    display: inline-block;
    transform: translateY(-0.5px);
    font-size: 1em;
  }

  footer {
    padding: var(--spacing-lg) var(--spacing-lg);
    background-color: var(--color-primary);
    color: var(--color-white);
	      padding-top: 160px;
  }

  .footer__container {
    display: grid;
    grid-template-columns: 3fr 2fr auto;
    grid-template-rows: auto auto auto;
    gap: var(--spacing-xs);
    width: 100%;
  }

  .footer__container__logo {
    grid-column: 1;
    grid-row: 1 / 2;
    height: 30px;
    width: auto;
  }

  .footer__container__address {
    grid-column: 1;
    grid-row: 2 / 3;
  }

  .footer__container__privacy_policy {
    grid-column: 3;
    grid-row: 2 / 3;
    text-decoration: underline;
	      font-size: 12px;
  }

  .footer__container__slogan {
    grid-column: 1;
    grid-row: 3 / 4;
	  font-size: 12px;
  }

  .footer__container__copyright {
    grid-column: 3;
    grid-row: 3 / 4;
	      font-size: 12px;
  }

}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .reborna__container_top img {
    width: 45%;
    top: 0;
    right: 10%;
  }
}

/* Mobile (720px and below) */
@media (max-width: 720px) {
  .reborna {
    height: auto !important;
    min-height: 100svh;
    background-color: var(--color-white);
  }

  .reborna__container {
    grid-template-rows: auto auto;
    height: auto;
/*    min-height: 100svh;*/
/*    background-color: var(--color-white);*/
  }

  .reborna__container_top {
    height: 25svh;
  }

  .reborna__container_top img {
    width: 50%;
    height: auto;
    top: 0;
    right: 5%;
  }

  .reborna__container_bottom {
    height: auto !important;
  }

  .reborna__container_bottom img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }

  .nav_footer {
    margin-top: -80svh;
  }

  .nav_footer > img {
    aspect-ratio: 9/16;
    object-position: center center;
  }

    .news {
        grid-template-columns: 1fr;
        padding: 15px;
		        min-height: inherit;
        padding-top: 50px;
    }
  .news__container {
    grid-column: 1;
  }

  .news__item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--spacing-xs);
  }

  .news__date {
    grid-column: 1;
    grid-row: 1;
	  	          font-size: 11px;
  }

  .news__tag {
        grid-column: 1;
        grid-row: 2;
        /* font-size: 9px; */
        padding: 10px 0;
	  
  }

  .news__labels {
    display: none;
  }
.news__title {
        margin: 0 0 20px;
    width: 80px;
}
  .news__titleLink {
    grid-column: 1;
    grid-row: 3;
	          font-size: 14px;
  }


		


  .footer__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
gap: 10px;
  }

  .footer__container__logo {
	grid-column: 1;
	grid-row: 1;
	width: 169px;
	height: auto;
  }

  .footer__container__address {
    grid-column: 1;
    grid-row: 2;
	          font-size: 12px;
  }

  .footer__container__privacy_policy {
    grid-column: 1;
    grid-row: 3;
  }

  .footer__container__slogan {
    grid-column: 1;
/*    grid-row: 4;*/
        font-size: 10px;
  }

  .footer__container__copyright {
        grid-column: 1;
        grid-row: 5;
        font-size: 10px;
        text-align: center;
        padding-top: 40px;
  }

	
}

/* ============================================
   SLIDE-IN ANIMATION
   ============================================ */

/* Initial state: hidden and positioned below */
.slide-in-text {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	position: absolute;
	top: 260px;
	right: 40px;
}

/* Animated state: visible and in position */
.slide-in-text.animate {
  opacity: 1;
  transform: translateY(0);
}

p,li,a,h1,h2,h3,h4,h5{
	font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}



.main_lead {
    font-size: 28px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 20px;
    /* padding-bottom: 30px; */
}
.hero__left-note h3 {
    margin-bottom: 10px;
}
.hero__left-note p,.hero__left-note a{
    font-family: "Noto Sans JP", sans-serif!important;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
}
.hero__left-note a{
	text-decoration:underline;
}
.gradation {
  background-image: linear-gradient(90deg, #35a7c3, #2878ad);
}

#about .label {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
#property .label {
    font-size: 16px;
    font-weight: 500;
}
#about .slide-in-text,#property .slide-in-text {
padding: 0;
    font-size: 20px;
    line-height: 1.8;
    left: 5%;
    bottom: 50px;
    /* height: auto; */
    top: unset;
}
#about .slide-in-text{
	    color: #fff;
}

#about .slide-in-text p,#property .slide-in-text p{
    letter-spacing: 2px;
	 font-weight: 600;
}

#about .slide-in-text p a,#property .slide-in-text p a {
    font-size: 12px;
}
#about .slide-in-text p.no_letter,#property .slide-in-text p.no_letter {
    letter-spacing: normal;
    padding-top: 5px;
}


  .nav_footer_list_subtext:after {
    background: url(img/common/icon.png);
    background-size: 9px 100%;
    background-position: 16px 0px;
    background-repeat: no-repeat;
    width: 26px;
    height: 11px;
    z-index: 1;
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -4.5px;
}
.no_letter a:after {
    background: url(img/common/icon.png);
    background-size: 9px 100%;
    background-position: 16px 0px;
    background-repeat: no-repeat;
    width: 26px;
    height: 11px;
    z-index: 1;
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -4.5px;
}
#property .no_letter a:after {
    background: url(img/common/icon_b.png);
	    background-size: 9px 100%;
    background-position: 16px 0px;
    background-repeat: no-repeat;
}

.reborna__container h2 {
    text-align: center;
    display: inline-block;
}
.reborna__container p {
    line-height: 2;
	    letter-spacing: 2px;
}
.circle {
    position: absolute;
    top: -15px;
    left: 42%;
    z-index: -1;
    width: 588px;
}
#reborna{
    position: relative;
}
.reborna__container02{
    width: 1160px;
    margin: 0 auto;
    padding-bottom: 170px;
	display: flex;
}
.part_left {
    width: 50%;
    background-color: var(--color-primary);
    padding: 75px 40px;
    color: #fff;
    float: left;
}
.part_right {
    width: 50%;
    color: #fff;
	    float: left;
}
.part_right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.part_left h2 {
    font-size: 20px;
}
.part_left p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 0px;
}
.part_left .no_letter {
    padding-top: 40px;
}

.part_left .no_letter a {
    font-size: 12px;
	    text-decoration: underline;
    position: relative;
}

@media (max-width: 1160px) {
.reborna__container02 {
    width:95%;
    margin: 0 auto;
    padding-bottom: 170px;
}
	.reborna__container {
    padding-top: 150px;
    width:95%;
    margin: 0 auto;
    padding-bottom: 170px;
}
}



.concept_t{
    font-size: 18px;
}


@media (max-width: 896px) {
	.slide-in-text {
	opacity: 1;
    position: absolute;
    top: inherit;
        right: inherit;
        top: 168px;
        left: 0;
}
}


@media (min-width: 720px) and (max-width: 1100px){
    .slide-in-text {
        opacity: 1;
        position: absolute;
        top: inherit;
        right: inherit;
        top: 150px;
        left: 10px;
        width: 297px;
    }
.main_lead {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 20px;
    /* padding-bottom: 30px; */
}
}


@media (max-width: 896px) {

	.hero__left-note {
    background: var(--color-primary);
    font-size: var(--font-size-sm);
    width: 36.4vw;
    padding: 10px;
    color: #003366;
    height: auto;
        left: 0;
        top: 325px;
        bottom: inherit;
    }

.hero__right-note.slide-in-text.sp img {
    width: 250px;
}
	#about .slide-in-text, #property .slide-in-text {
        bottom: 90px;
    top: unset;
}
	
	section .label {
    left: 10px;
}
	#about .label {
    font-size: 14px!important;
}
	    .reborna__container02 {
        position: relative;
		display: block;
    }
	#about .slide-in-text p, #property .slide-in-text p {
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
}
	
	.part_left {
        width: 100%;
        background-color: transparent;
        padding: 75px 20px;
        color: #fff;
        float: none;
        /* position: absolute; */
        background: url(img/home/top_image_sp.jpg);
        background-size: cover;
        background-position: center center;
        display: block;
        background-repeat: no-repeat;
}
	.part_right {
    width: 100%;
    color: #fff;
    float: none;
}
	.nav_footer {
        position: relative;
        padding: 80px 15px;
        height: 70svh;
}
.reborna__container {
margin: 0 auto;
    }

	.concept_t {
    font-size: 14px;
}
	.circle {
        position: absolute;
        top: 3%;
        left: 25%;
        z-index: -1;
        width: 100%;
}
.part_left p {
    line-height: 25px;
}
.part_left p {
    font-size: 12px;
}
.part_left p {
    color: rgba(255, 255, 255, 1.00);
}

.part_left h2 {
    font-size: 18px;
    line-height: 1.6;
}
	.nav_footer_list_text img {
    height: 13px;
    width: auto;
}
.nav_footer_list_subtext {
    grid-column: 3;
    font-size: 14px;
    line-height: 1;
    padding: 20px;
    text-align: left;
    transition: padding var(--transition-slow);
    position: relative;
}
.nav_footer_list_text {
    grid-column: 2;
    font-size: 14px;
    line-height: 1;
        padding: 30px 0 30px 0px;
    text-align: left;
    transition: padding var(--transition-slow);
}
.nav_footer_list {
        column-gap: inherit;
}
	footer {
    padding: 5%;
        padding-top: 150px;
}
#reborna h2{
    width: 110px;
}
	    .reborna__container {
/*        padding-top: 100px;
        padding-bottom: 100px;*/
    }

	}




.news_more p{
    text-align: right;
}
.news .no_letter a {
	font-size: 12px;
	text-decoration: underline;
	position: relative;
	color: #fff;
	padding-right: 30px;
}
.news {
    position: relative;
}
.news:after {
    background: url(img/home/circle.png);
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 880px;
    height: 880px;
    z-index: 1;
    position: absolute;
    content: "";
    top: 15px;
    margin-top: 0;
}





@media (max-width: 896px) {
.news:after {
    background: url(img/home/circle.png);
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 700px;
    height: 700px;
    z-index: 1;
    position: absolute;
    content: "";
    top: 15px;
    margin-top: 0;
    left: -10%;
}
		.reborna__container02 .part_right.pc{
		display: none;
	}
	
}

.news_section {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    /* width: 1060px; */
}



#news {
    padding:160px 60px 150px 60px;
}
#news_content .news__inner {
    display: block;
}
#news .news__items {
    width: 75%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 47px;
}
#news .news__item {
	display: block;
/*    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
gap: 30px;*/
    padding-bottom: 10px;
    border-bottom: dotted 1px #0A6C8E;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
#news .news__date {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #001F50;
    font-weight: 600;
    float: left;
    padding-right: 0px;
    width: auto;
    margin-right: 20px;
}


#news_content .news__items {
    width: 100%;
}

#news_detail .news_section {
    margin: 0 auto;
    padding: 0;
    padding: 80px 60px 0px 60px;
}
#news_detail #news_content {
    padding: 0px 30px;
}
#news .news__item::after {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    content: "";
    right: 8px;
    width: 12px;
    height: 8px;
    background: url(img/icon-arrow-blue.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#news .news__text {
    letter-spacing: 0.1em;
    color: #333333;
    font-weight: 300;
    clear: both;
    width: 100%;
    vertical-align: top;
    margin: 0;
}
#news .news__tag {
    float: left;
}
#news .news__tag li{
	background: #001F50;
	color: #fff;
}

	

#news .news__labels{
    color: #333;
}

@media screen and (max-width: 767px) {
	#news .news__date {

	        font-size: 11px;
	}
	
	#news .news__text {
        float: none;
        font-size: 15px;
        line-height: 2;
        display: block;
        padding-top: 0;
		padding-bottom: 10px;

}
	#news {
    padding: 80px 20px;
}
   #news .inner {
        padding: 0px;
    }
	#news .news__tag li {
    background: #001F50;
    color: #fff;
    font-size: 10px;
}
		#news main .sections-wrapper a {
    transition: .3s;
    padding-bottom: 20px;
}
	#news .news__item {
    padding-bottom: 0px;
	}

}




@media screen and (max-width: 767px) {
#news_detail .news_section {
    margin: 0 auto;
    padding: 0;
        padding: 80px 20px;
	    max-width: 100%;
}
#news_content {
    padding: 0;
}
	#news_detail .service_detail_title {
        font-size: 18px;
        line-height: 1.6;
        font-weight: 500;
        padding-bottom: 0px;
        padding-top: 10px;
        margin-bottom: 20px;
}

#news_detail .news_contents_col p {
        padding-bottom: 5px;
        font-size: 14px;
        font-weight: 300;
        line-height: 26px;
        margin: 10px 0;
}
    #news_detail .footer-post-meta {
        font-size: 10px!important;
    }

	#news_detail .news_contents_col {
    padding-bottom: 50px;
}


}
.photo{
    margin-bottom: 30px;
}
.news_contents_col img {
    width: 100%;
    height: auto;
}
.news_contents_col .property__map::before {
    top: 9px;
}
.news_contents_col p.property__map {
    font-size: 14px;
    margin: 10px 0;
	float: left;
}

@media screen and (max-width: 767px) {
#news_detail #news_content {
        padding: 0 3%;
}
   .news__tag {
        padding: 0;
    }
	#news_detail .post-categories li {
    font-size: 11px;
}

}
.news_section.page{
    padding-top: 50px;
}
@media screen and (max-width: 767px) {

.news_section.page {
    padding-top: 50px;
    padding: 80px 20px;
}
#news .news__tag {
        grid-column: 1;
        grid-row: 2;
        padding: 0;
	}
#news_detail .news__date {
    font-size: 11px!important;
}
.alignleft a {
    font-size: 14px;
}
#news_body .com-visual .news_sp_im,#news_body .com-visual .news_sp_im {
height: 300px;
}
#news_body .com-visual,#news_detail_body .com-visual {
height: 300px;
}
main .sections-wrapper .navigation a {
font-size: 14px;
padding-bottom: 0;
}
	
}

#news_detail .news__date {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #001F50;
    font-weight: 600;
    float: left;
    padding-right: 0px;
    width: auto;
	margin-right: 20px;
}
#news_detail .news__tag {
    float: left;
}
#news_detail .post-categories li{
    background: #001F50;
    color: #fff;
}
.news_contents_col {
    padding-top: 50px;
	    padding-bottom: 150px;
}
.service_detail_title {
    clear: both;
    padding-top: 30px;
}
main .sections-wrapper #page-path a {
    padding-bottom: 0px;
}
.news__list a{
	    margin-bottom: 40px;
}

.page_col{
    padding: 30px 60px 150px 60px;
	    max-width: 980px;
    margin: 0 auto;
}


.service_detail_contents p {
/*    font-size: 14px;*/
	    line-height: 1.8;
}

@media (max-width: 896px) {
.service_detail_contents p {
    font-size: 14px;
}
.page_col .content {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
}
.page_col {
        padding: 0 3%;
    max-width: 100%;
    margin: 0 auto;
}
}

  /* Remove default link styles */
#news_content .service_detail_contents a {
    text-decoration: underline;
    color:blue;
  }
.hero__left-note h2 {
    font-size: 16px;
}

@media (max-width: 896px) {
.hero__left-note h2 {
    font-size: 14px;
}
.hero__left-note {
        background: var(--color-primary);
        font-size: 12px;
}
}