@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* common======================= */

@media screen and (min-width: 960px) {
	.wide90{
	position: relative;
	top: 0;
	right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	width: 90%;
}
	.wide80{
	position: relative;
	top: 0;
	right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	width: 80%;
  min-width: 950px;
}
	.wide70{
	position: relative;
	top: 0;
	right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	width: 70%;
		min-width: 1000px;
}
}

@media screen and (max-width: 480px) {
	.wide80{
	position: relative;
	top: 0;
	right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	width: 90%;
}
}

/* マージン======================= */

.m-left {
	margin-left: auto;
}

.m-right {
	margin-right: auto;
}

.m-center {
	margin: 0 auto;
}

/* テーブル========================= */

.c_table td{
	line-height: 1.8;
	padding: 25px 0;
}

/* 見出し========================== */

.lead {
	
}

/* ボタン========================= */

a.c_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	white-space: nowrap;
	height: 3.5rem;
	max-width: 300px;
	padding: 0 4rem;
	background: #fff;
	background-size: 400%;
	color: #1f87c4;
	font-weight: bold;
	letter-spacing: 0.2rem;
}
a.c_btn:hover::before {
  transform: scaleX(1);
}
a.c_btn:hover {
	color: #fff;
}
a.c_btn span {
  position: relative;
  z-index: 1;
}
a.c_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(
    82.3deg,
    rgba(26, 118, 163, 1) 10.8%,
    rgba(26, 118, 163, 1) 94.3%
  );
  transition: all 0.475s;
}


/* ヘッダー=========================== */

#header {
	margin-top: 10px;
}

.c-gnav>.menu-item>a .ttl {
font-size: 15px;
letter-spacing: .1rem;   /*文字の間隔*/
  font-weight: bold;
}

/*ヘッダー電話番号*/
@media (min-width: 960px) {
.w-header__inner p {
line-height: 1.5;
}
}

.header_contact_phone {
font-family: Inter, "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
font-size: 1.4vw;
font-weight: 700;
color: #fff;
	white-space: nowrap;
letter-spacing: 1px;
}
.header_contact_phone span.icon-phone {
font-size: 1.2vw;
vertical-align: baseline;
margin-right: 2px;
}
.header_business_hours {
font-size: 0.7vw;
	color: #fff;
letter-spacing: 2px;
	white-space: nowrap;
text-align: center;
}

.header_phone_bg{
	background: #1f87c4;
	padding: 0.5vw 1.2vw;
}


/* トップページ======================== */
/*
.top-sec2-bg {
	position: relative;
}

.top-sec2-bg::after{
	content: '';
  position: absolute;
  bottom: 0;
  right: 5%;
  width: clamp(250px, 50vw, 800px);
    height: clamp(250px, 50vw, 800px); 
  background-image: url('http://www.tate-corp.co.jp/wp-content/uploads/2025/08/buillding.png');
	opacity: 0.5;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right; 
  pointer-events: none; 
}*/

.image-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
	z-index: 0;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
	position: relative;
	z-index: 0;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 59, 114, 0.3);
  z-index: 1;
  pointer-events: none;
}

.top-contents-item {
	position: relative;
}

.top-contents-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 1.5rem;
  pointer-events: none; 
}

.top-contents-text h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  line-height: 1.2;
  margin: 0;
}

.title-with-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 必要に応じてleftに変更 */
}

.arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #083b72;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.image-wrapper:hover ~ .top-contents-text .arrow-circle {
  transform: scale(1.2);
}

.arrow-icon {
  display: inline-block;
  color: #fff;
  transition: all 0.5s ease;
}

/* 画像ホバー時に矢印が右にスライド */
.image-wrapper:hover ~ .top-contents-text .arrow-icon {
  transform: translateX(5px);
}



@media screen and (max-width: 480px) {
	.top-contents-text {
	pointer-events: none; 
		font-size: 14px;
}
	
.image-wrapper {
  aspect-ratio: 4 / 3;
}
}


/* お知らせ========================== */

.news-item {
}
.newsList {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  align-items: flex-start; 
	background-color: #fff;
}
ul.newsList {
  padding: 1.5rem 0 1.5rem 1rem;
	width: 100%;
	margin: 15px auto;
	border-radius: 10px;
}

ul.newsList li {
  margin: 0 10px;
}

ul.newsList li a{
  color: #333;
}

.news_date {
  min-width: 100px;
  font-weight: bold;
	color: #1f87c4;
}

.news_text {
  flex: 1; 
}

.scroll {
  overflow: auto;
  height: 100%;
  max-height: 300px;
  width: 100%;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #a7c8d8 #fff;
}

/* WebKit */
.scroll::-webkit-scrollbar {
  width: 10px;
}
.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
.scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 768px) {
	.top-news-wrapper {
		width: 93%;
		margin: 0 auto;
	}
  .newsList {
    flex-direction: column;
  }
	.news_text p{
    margin-top: 0.8em;
  }
	.scroll {
  max-height: 350px;
}
}


/*news詳細ページ*/
.c-postTitle__ttl{
	display: none;
}

.text_h2{
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.news_date{
		margin-bottom: 20px;
}
.news-box{
	max-width: 1200px;
	margin-bottom: 50px;
}

.text_main p{
	margin-bottom: 1.5em;
}

.text_main{
	margin-top: 40px;
	margin-bottom: 30px;
}
@media screen and (max-width: 480px){
  .text_box{
    font-size: 17px;
  }
}

.flex_news_img {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap; 
  justify-content: space-between;
  gap: 10px 4px; 
  margin-top: 60px;
}

.flex_news_img::after {
  content: "";
  display: block;
  width: 32%;
}

.news_img {
  width: 32.5%;
  position: relative;
  overflow: hidden; 
}

.news_img::before {
  content: "";
  display: block;
}

.news_img img {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

@media screen and (max-width: 768px) { /* タブレット以下 */
  .news_img {
    width: 48%; /* 2カラム */
  }
}

@media screen and (max-width: 480px) { /* スマホ以下 */
  .flex_news_img {
    gap: 10px; /* スマホでの隙間調整 */
  }
}



/* メインビジュアル===================== */

.mv-copy {
	font-size: clamp(1.5rem, 3.5vw, 3rem);
	font-weight: bold;
	color: #333;
}


/* pmページ========================= */

.pm-item {
	height: 100%;
}


/* 不動産仲介======================== */

/* 一蘭 */

.block_outer {
	margin-bottom: 80px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-item {
  width: calc(33.333% - 20px); /* 3カラム */
  box-sizing: border-box;
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2; /* 正方形の枠を作成 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f0f0f0; /* 背景色は任意で設定 */
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 画像の縦横比を維持し、枠内に収める */
	transition: transform 0.3s ease; /* スムーズな拡大効果 */
}

.product-image-wrapper:hover .product-img {
  transform: scale(1.05); /* 画像を5%拡大 */
}

.product-title {
	color: #232323;
  font-size: 16px;
  font-weight: bold;
	margin-top: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #e8e8e8;
}

@media screen and (max-width: 959px){
.product-item {
  width: calc(50% - 20px); /* 2カラム */
	padding: 5px;
}
	.product-img {
  max-width: 90%;
  max-height: 100%;
}
}
@media screen and (max-width: 480px){
.product-item {
  width: calc(100% - 5px); /* 1カラム */
	padding: 5px;
}
	.product-img {
  max-width: 90%;
  max-height: 100%;
}
}

.takken {
	display: flex;
	flex-wrap: wrap;
  gap: 30px;
	margin-top: 50px;
}

/* テーブル=== */

.estate_info_box {
	height: 100%;
	background-color: #fff;
	padding: 10px 50px;
}

.estate_table {
	font-size: 13px;
	text-align: left;
	width: 100%;
	margin-top: 10px;
}
.estate_table th {
	width: 25%;
	font-weight: normal;
	white-space: nowrap;
	color: #aaa;
	padding: 0 20px 0 0;
	min-width: 75px;
}
.estate_table td {
	width: 75%;
	font-weight: normal;
	white-space: nowrap;
	color: #232323;
}
.estate_table_title {
	line-height: 23px;
}

.estate_in_table {
	font-size: 14px;
	text-align: left;
	width: 100%;
	margin-top: 10px;
}
.estate_in_table th {
	width: 20%;
	font-weight: normal;
	white-space: nowrap;
	color: #aaa;
	border-bottom: 1px solid #e8e8e8;
	padding: 0 20px 0 0;
	min-width: 75px;
}
.estate_in_table td {
	width: 80%;
	font-weight: normal;
	white-space: nowrap;
	color: #232323;
	border-bottom: 1px solid #e8e8e8;
}
.estate_in_table_title {
	line-height: 35px;
}

@media screen and (max-width: 480px){
	.estate_info_box {
	padding: 10px 10px;
}
.estate_in_table {
	font-size: 14px;
	text-align: left;
	width: 100%;
	margin-top: 10px;
}
.estate_in_table th {
	font-weight: normal;
	color: #aaa;
	border-bottom: 1px solid #e8e8e8;
	padding: 0 10px 0 0;
}
.estate_in_table td {
	white-space: wrap;
	color: #232323;
	border-bottom: 1px solid #e8e8e8;
	padding: 5px 0;
}
}

/* 詳細 */

#top_title_area {
	height: 300px;
}

.c-postTitle__ttl {
	display: none;
}

@media screen and (min-width: 1200px) {
	.flex {
	display: flex;
}
.flex_item{
	width: 50%;
	min-width: 520px;
	padding: 1rem;
}
}
	
.single-estate_p .l-mainContent {
  max-width: 1600px;
}

.product_ttl {
	font-size: 23px;
	text-align: center;
	position: relative;
	margin-bottom: 60px;
}

.product_ttl:after {
	background-color: #8dc031; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -15px; /* 線の位置 */
  content: "";
  height: 1px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 100px; /* 線の長さ */
}

.product-info {
	background-color: #fff;
	padding: 2rem;
	margin-top: 50px;
}

.product-info p{
	margin-bottom: 0.5rem;
}

.product-map {
	margin-top: 50px;
}

.product-map iframe {
  width: 100% !important;
  height: 450px !important; /* 必要なら固定 or auto に変更 */
  max-width: 100% !important;
  display: block;
}

.cp_cssslider02 {
	width: 520px;
	min-width: 520px;
	background-color: #fff;
	padding-top: 350px; /* メイン画像の高さに応じて調整 */
	position: relative;
	margin: auto;
	text-align: center;
}
.cp_cssslider02 > img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s;
	border-radius: 3px;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	width: 100%;
	height: 347px;
	object-fit: contain;
}
.cp_cssslider02 input[name='cp_switch'] {
	display: none;
}
.cp_cssslider02 label {
	margin: 15px 5px 0 5px;
	border: 2px solid #ffffff;
	display: inline-block;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0.6;
	border-radius: 3px;
	padding: 0;
}
.cp_cssslider02 label:hover {
	opacity: 0.9;
}
.cp_cssslider02 label img {
	display: block;
	width: 80px;
	height:53px;
	object-fit: cover;
	border-radius: 2px;
}
.cp_cssslider02 input[name='cp_switch']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider02 input[name='cp_switch'] ~ img {
	opacity: 0;
}
.cp_cssslider02 input[name='cp_switch']:checked + label + img {
	opacity: 1;
}

@media screen and (max-width: 1199px){
 .cp_cssslider02 {
	 margin-bottom: 30px;
}
}
@media screen and (max-width: 767px){
 .cp_cssslider02 {
	width: 500px;
	min-width: 500px;
	padding-top: 350px; /* メイン画像の高さに応じて調整 */
}
	.cp_cssslider02 > img {
	height: 333px;
}
}
@media screen and (max-width: 480px){
 .cp_cssslider02 {
	width: 100%;
	min-width: 100%;
	padding-top: 240px; /* メイン画像の高さに応じて調整 */
}
	.cp_cssslider02 label img {
	width: 50px;
		height: 35px;
}
	.cp_cssslider02 > img {
	height: 236px;
}
}

.product-description {
	background-color: #f7f7f7;
	padding: 1.5rem;
}

.product-description p {
	margin-bottom: 1em;
}


/* 追従バナー========================= */

#fixed-sidebar-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 7%;
    bottom: 0;
    transform: translateY(-50%);
    z-index: 99;
}

.c-widget+.c-widget {
	margin-top: 0;
}


/*お問い合わせページ==================*/
.CF7_contact{
	width:100%;
}

/*入力欄*/
.CF7_contact input, .CF7_contact textarea {
	width:100%;
	background-color: #fff;
	border-radius: 3px;
	border: 1px solid #d8d8d8;
	margin-top:10px;
	margin-bottom:25px
}

.CF7_honbun{
	width:100%;
}

/*入力欄*/
.CF7_honbun input, .CF7_honbun textarea {
	width:100%;
	background-color: #fff;
	border-radius: 3px;
	border: 1px solid #d8d8d8;
	margin-top:10px;
	margin-bottom:25px
}

/*タイトル左ライン*/
.title_contact{
   position:relative;
}

span.wpcf7-list-item {
  margin-top: 20px;
  margin-bottom: 20px
}

.title_contact::before{
   content:"";
   display:inline-block;
   width:3px;
   height:30px;
   background-color:#1f87c4;
   position:absolute;
}

/*「必須」文字*/
.CF7_req{
	font-size:.8em;
	padding: 5px;
	background: #dc143c;
	color: #fff;
	border-radius: 3px;
}

/*個人情報*/
.title01 {
	font-size:18px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 10px;
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#1f87c4;
	border:0;
	color:#fff;
	font-weight:bold;
	padding-right:50px;
	padding-left:50px;
	letter-spacing: 5px;
}

.CF7_btn{
	text-align:center;
	margin-top:30px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}

.scroll2 {
    overflow: scroll;  /* 常にスクロールバーを表示 */
    height: 250px;
    border-radius: 3px;
    border: 1px solid #d8d8d8;
    padding: 10px;

    &::-webkit-scrollbar {
        width: 10px;
        height: 0;
    }

    &::-webkit-scrollbar-track {
        border-radius: 0px;
        height: 100%;
        background-color: #eeeeee;
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: #c0c0c0;
    }
}


/* フッター========================== */

@media screen and (min-width: 960px){
	#footer .l-container {
	max-width: 1400px;
}
}

#footer .l-container {
	padding: 50px 5% 10px;
}

@media not all and (max-width: 960px) {
    #nav_menu-2, #nav_menu-3 {
	margin: 50px 0 0 0;
}
}

@media not all and (min-width: 960px) {
    .w-footer__box + .w-footer__box {
        margin-top: 0;
    }
}
	@media not all and (min-width: 960px) {
    .w-footer__box {
        padding: 0 0px;
    }
}

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

/*ぱんクズリスト非表示*/
#breadcrumb {
 display: none;
}

/*reCAPTCHA全面表示*/
.grecaptcha-badge {
	z-index: 1; 
}

/* 「トップへ戻るボタン」の位置調整 */ 
.p-fixBtnWrap { 
	bottom: 85px;
	right: 10px
}