@charset "utf-8";

/* ===============================
            header
=================================*/
.new_mark{
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: #b40105;
  /* background: #e2d83e; */
  font-size: 12px !important;
  padding: 2px 10px;
}
header.on {
    top: 0;
}

#common_header{
    min-height: 120px;
}

header {
    width: 100%;
    background: #fff;
    border-bottom: solid 1px rgba(115,115,128,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.header_h{
    content: "";
    height: 120px;
    display: block;
}
header .header {
    max-width: 1100px;
    width: 96%;
    /* padding: 15px 0; */
    /* margin: 0 auto; */
}
header .header .top-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* align-items: center; */
}
header .header .top-box .logo {
    width: 100%;
    max-width: 400px;
}
header .header .top-box .link-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    /* margin: 10px 0 0; */
    padding: 8px 0;
    align-items: center;
}
header .header .top-box .link-box a {
    /* padding: 5px; */
    text-align: center;
    margin: 0 0 0 20px;
}
header .header .top-box .link-box a span {
    font-size: 13px;
}
header .header .top-box .link-box a.entry {
    width: 140px;
    padding: 0;
    position: relative;
    /* background: #9292a5;
    background: -webkit-linear-gradient(45deg, #223c6b 0%, #04104b 100%);
    background: linear-gradient(45deg, #223c6b 0%, #04104b 100%); */
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline-offset: -5px;
}

header .header .top-box .link-box a.entry{
    outline: 1px solid #8fa2b0;

}

header .header .top-box .link-box a.entry.reserve{
    outline: 1px solid #d6c5a0;
}

header .header .top-box .link-box a.btn_req {
  margin: 0 0 0 20px;
}
header .header .top-box .link-box a.entry:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    left:0;
    top: 0;
    transition:0.5s;
    background: #294763;
}
header .header .top-box .link-box a.entry::after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    left:0;
    top: 0;
    transition:0.5s;
    /* background: #91a4af; */
    background: #7cb0e0;
}
header .header .top-box .link-box a.entry.reserve:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-1;
  left:0;
  top: 0;
  transition:0.5s;
  background: #96804f;
}
header .header .top-box .link-box a.entry.reserve::after{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-2;
  left:0;
  top: 0;
  transition:0.5s;
  background:#c8ac6d;
}
header .header .top-box .link-box a.entry.btn_req:before{
  background: -webkit-linear-gradient(45deg, #6b2222 0%, #4b0404 100%);
 background: linear-gradient(45deg, #6b2222 0%, #4b0404 100%);
}
header .header .top-box .link-box a.entry.btn_req::after{
  background: -webkit-linear-gradient(45deg, #cf3c3c 0%, #642525 100%);
  background: linear-gradient(45deg, #cf3c3c 0%, #642525 100%);
}
header .header .top-box .link-box a.entry:hover::before{
    opacity: 0;

}
header .header .top-box .link-box a.entry span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
header .header .top-box .link-box a.entry.reserve span{
  color: #fff;
}
header .header .nav-box {
    margin: 20px 0 0;
}
nav.header-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-between;
}
nav.header-nav ul li {
    position: relative;
    width: auto;
    text-align: center;
    max-width: unset;
    flex: 1;
}
nav.header-nav ul li::before {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    content: "";
    width: 0%;
    max-width: 90%;
    height: 2px;
    background: #83949e;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
}
nav.header-nav ul li:last-child::before{
	content: none;
}
nav.header-nav ul li:hover::before{
    width: 140%;
}

nav.header-nav ul a {
    display: block;
    /* padding: 5px 3px; */
    padding: 0px 15px;
    border-right: 1px solid #000;
}

nav.header-nav ul li:first-of-type a{
    /* border-left: 1px solid #000; */
    border-left: none;
}

nav.header-nav ul li.brand a{
    border-right: none;
}

nav.header-nav ul span {
    font-size: 14px;
    color: #1a1a1a;
    white-space: nowrap;
}
.com-nav-btn {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.com-nav-btn.on {
    opacity: 1;
}
.outline:hover, .map:hover{
    opacity: 0.6;
    transition: 0.5s;
}
.outline, .map{
    transition: 0.5s;
}

nav.header-nav ul li.soon a {
  pointer-events: none;
}
nav.header-nav ul li.soon a span{
  color: rgb(175 175 175) !important;
}
nav.header-nav ul li.soon::before{
  display:none;
}

.link-box_txt{
  display: flex;
  /* justify-content: flex-end; */
  justify-content: flex-start;
  flex-wrap: wrap;
  /* width: 170px; */
  width: 190px;
  margin-left: auto;
}

.link-box_txt a:last-of-type {
  margin: 0 !important;
}

.link-box_txt a span{
    /* padding-left: 20px; */
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5;
}

.link-box_txt a span::before{
    content: "";
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #231815;
    border-right: 0;
    
}

.link-box_txt > a:first-of-type{
    margin-left: 0 !important;
}

nav.header-nav ul li.nav_sp {
  display: none;
}

.ent{
	/* background: #91bdb2; */
	background: #294763;
	margin-top: 20px;
}
.ent a {
	text-align: center;
	/* color: #3e3a39!important; */
	color: #fff!important;
}
.finfo{
	width: 30%;
}
.finfo p{
	text-align: right;
    padding-top: 10px;
    font-size: 23px;
}
.finfo p span{
	font-size: 18px;
    
}
.finfo2{
	width: 75%;
	font-size: 18px;
	display: flex;
	padding: 0px 0px; 
}

.bd_one{
  width: 1px;
  height: 60px;
  background: #17737f;
  margin: 0 auto;
}

.bg_pd01{
  /* padding: 120px 0 100px; */
  padding: 60px 0;
}

@media screen and (max-width: 1500px){
header .header .top-box .link-box a.entry span {
  font-size: 14px;
}
.new_mark {
  top: -15px;
  font-size: 10px;
  padding: 2px 8px;
}

#common_header{
    min-height: 100px;
}

header {
    height: 100px;
}
header .header .top-box .logo {
    /* max-width: 350px; */
}
header .header .top-box .link-box a.entry {
    padding: 0;
    width: 95px;
    height: 40px;
}
header .header .nav-box {
    margin: 10px 0 0;
}
nav.header-nav ul span {
    font-size: 12px;
}
header .header .top-box .link-box a {
    margin: 0 0 0 15px;
}
.header_h {
    content: "";
    height: 100px;
    display: block;
}

}
@media screen and (max-width: 1000px){
  .bg_pd01{
    /* padding: 70px 0 60px; */
  }
}

@media screen and (max-width: 900px){
  header .header .top-box .logo {
    max-width: 330px;
  }
  .link-box_txt{
    width: 150px;
  }  
  .link-box_txt a:first-of-type{
    margin: 0 !important;
  }
  header .header .top-box .link-box a span {
    font-size: 11px;
  }

  nav.header-nav ul a{
    padding: 0px 5px;
  }
}
@media screen and (max-width: 750px){
nav.header-nav ul li.nav_sp {
  display: block;
}
.new_mark {
    top: 50%;
    padding: 2px 4px;
    font-size: 10px !important;
    transform: translate(0, -50%);
    left: -20px;
    right: initial;
}
nav.header-nav {
    width: 222px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
}
nav.header-nav ul span {
    font-size: 14px;
}
nav.header-nav ul li {
    max-width: inherit;
    text-align: inherit;
}
nav.header-nav.act {
    right: 0;
}
header .header {
    width: 90%;
    /* padding: 8px 0 15px; */
}
header .header .top-box .logo {
    width: 300px;
}
header .header .top-box .link-box {
    display: none;
}
header .header .nav-box {
    margin: 0;
}
nav.header-nav {
    -webkit-transition: all .75s ease;
    transition: all .75s ease;
    right: -222px;
}
nav.header-nav ul {
    display: block;
    height: calc(100% - 60px);
    padding: 40px 26px 0;
	overflow: auto;
}

	
	html.is-fixed,html.is-flixed body{
		height: 100%;
		overflow: hidden;
	}
nav.header-nav ul li::before{
    width: 10px!important;
    background: #1a1a1a;
    height: 1px;
    left: 0;
    top: 50%;
    /* transform: translateY(-50%); */
}

#common_header{
    min-height: 52px;
}

header {
    height: 52px;
}
.header_h {
    height: 52px;
}
#pageTop nav.header-nav ul li::before{
    width: 10px;
    background: #1a1a1a;
}
nav.header-nav ul a {
    padding: 10px 20px;
    border-right: none;
}

nav.header-nav ul li:first-of-type a{
    border-left: none;
}

.com-nav-btn, .com-nav-btn span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.com-nav-btn {
    width: 28px;
    height: 11px;
    position: fixed;
    top: 19px;
    right: 5%;
    z-index: 9999;
}
.com-nav-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #9191a4;
}
.com-nav-btn, .com-nav-btn span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.com-nav-btn span:nth-of-type(1) {
    top: 0;
}
.com-nav-btn span:nth-of-type(1) {
    -webkit-animation: btn07-bar01 .75s forwards;
    animation: btn07-bar01 .75s forwards;
}
.com-nav-btn.act span:nth-of-type(1) {
    -webkit-animation: active-btn07-bar01 .75s forwards;
    animation: active-btn07-bar01 .75s forwards;
}
.com-nav-btn span:nth-of-type(2) {
    bottom: 0;
}
.com-nav-btn span:nth-of-type(2) {
    -webkit-animation: btn07-bar03 .75s forwards;
    animation: btn07-bar03 .75s forwards;
}
.com-nav-btn.act span:nth-of-type(2) {
    -webkit-animation: active-btn07-bar03 .75s forwards;
    animation: active-btn07-bar03 .75s forwards;
}
.com-nav-btn span:nth-of-type(3) {
    bottom: 50%;
}
.com-nav-btn span:nth-of-type(3) {
    -webkit-animation: btn07-bar04 .75s forwards;
    animation: btn07-bar03 .75s forwards;
}
.com-nav-btn.act span:nth-of-type(3) {
    -webkit-animation: active-btn07-bar04 .75s forwards;
    animation: active-btn07-bar04 .75s forwards;
}
}

@keyframes btn07-bar01 {
    0% {transform: translateY(8px) rotate(45deg);}
    50% {transform: translateY(8px) rotate(0);}
    100% {transform: translateY(0) rotate(0);}
}
@keyframes btn07-bar03 {
    0% {transform: translateY(-5px) rotate(-45deg);}
    50% {transform: translateY(-5px) rotate(0);}
    100% {transform: translateY(0) rotate(0);}
}
@keyframes btn07-bar04 {
    0% {opacity: 0;}
    50% {opacity: 0.5}
    100% {opacity: 1;}
}
@keyframes active-btn07-bar01 {
    0% {transform: translateY(0) rotate(0);}
    50% {transform: translateY(5px) rotate(0);}
    100% {transform: translateY(5px) rotate(45deg);}
}
@keyframes active-btn07-bar03 {
    0% {transform: translateY(0) rotate(0);}
    50% {transform: translateY(-5px) rotate(0);}
    100% {transform: translateY(-5px) rotate(-45deg);}
}
@keyframes active-btn07-bar04 {
    0% {opacity: 1;}
    50% {opacity: 0.5}
    100% {opacity: 0;}
}

/* ===============================
            footer
=================================*/
footer{
	margin-top:60px;
	padding-bottom: 20px;
	line-height: 1.6;
}
footer .Area{
	width:92%;
	max-width:1000px;
	margin:auto;
	position:relative;
	justify-content:space-between;
}
footer .Area a.tel{
	width:460px;
	display:block;
  margin:0 auto;
	cursor:default;
}
footer .Area a.tel img{
	display:block;
	width:100%;
}

footer .Area .Flogo{
	
}
footer .Area .Flogo ul{
	max-width: 850px;
	margin: 0 auto;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
  margin-top:50px;
}

footer .Area .Flogo ul li{
	/*width:18%;*/
	width: 21%;
}
footer .Area .Flogo ul li:nth-child(3) a img { margin-top:-5px; }
footer .Area .Flogo ul li sup {display:block;font-size:11px;color:#3E3A39;margin-bottom:15px;top: unset;line-height: 1.6;}
footer .Area .Flogo ul li a{
	display:block;
	transition:all 0.5s;
    text-decoration:none;
}
footer .Area .Flogo ul li a:hover{
	opacity:0.7;
}
footer .Area .Flogo ul li a img{
	width:100%;
	display:block;
}
footer .Area .Flogo ul li:nth-child(1) a img { max-width:150px; }
footer .Area .Flogo ul li:nth-child(4) a img { max-width:150px; }
footer .Area .Flogo div{
	margin-top:10px;
	margin-bottom:6px;
	text-align:right;
	line-height:105%;
}
footer .Area .Flogo a.s{
	display:inline-block;
	font-size:12px;
	padding-left:20px;
	color:#3A749F;
	text-decoration:none;
	letter-spacing:1px;
	position:relative;
	transition:all 0.5s;
	line-height: 1.6;
}
footer .Area .Flogo a.s:hover{
	opacity:0.7;
}
footer .Area .Flogo a.s::before,
footer .Area .Flogo a.s::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
footer .Area .Flogo a.s::after{
	left: 3px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #3A749F;
    border-right: 1px solid #3A749F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

footer address{
	color:#333333;
	letter-spacing:1px;
	text-align:right;
	display:block;
	font-style:normal;
	font-size:10px;
}
footer div.Fb{
	background-color:#00447C;
	background:-webkit-linear-gradient(left,#00447C,#afd4f2);
	background:linear-gradient(left,#00447C,#afd4f2);
	height:14px;
	margin-top:20px;
}

footer .keikyu-fudousan{
    max-width: 140px;
}

@media screen and (max-width: 640px) {
	footer{
		margin-top:40px;
      margin-bottom:60px;
	}
	footer .Area a.tel{
		width:84%;
		margin:auto;
		margin-bottom:20px;
	}
	footer .Area .Flogo{
		width:84%;
		margin:auto;
		position:static;
	}
	footer .Area .Flogo ul li{
		width:42%;
		margin:auto;
	}
	footer .Area .Flogo ul li:nth-child(1){
		width:53%;
	}
  footer .Area .Flogo ul li:nth-child(3) a img { margin-top:0px; }
	footer .Area .Flogo div{
		margin-top:11px;
		margin-bottom:12px;
		text-align: center;
		line-height:125%;
	}
	footer address{
		text-align:center;
	}
	footer div.Fb{
		margin-top:25px;
		padding-bottom:40px;
	}
  footer .Area .Flogo { width:90%; }
  footer .Area .Flogo ul li { width:100%!important; }
  footer .Area .Flogo ul li:nth-of-type(n+2) { margin-top:20px; }
  footer .Area .Flogo ul li a { display:flex; align-items:center; }
  footer .Area .Flogo ul li sup { width:50%; }
  footer .Area .Flogo ul li a img { width:45%; }
  footer .Area .Flogo ul li:nth-child(1) a img { max-width:100%; }
  footer .Area .Flogo ul li:nth-child(4) a img { max-width:100%; }

  footer .keikyu-fudousan{
      max-width: none;
  }
}
footer .Area .Flogo a.s { color:#333; }


.bnr-area { max-width:1040px; padding:50px 20px; margin:0 auto; box-sizing:border-box; background:#fff; text-align:center; position:relative; z-index:600; }
.bnr-area li { max-width:756px; margin:0 auto;  }
.bnr-area li:nth-of-type(n+2) { margin-top:50px; }
.bnr-area li a { display:block; transition:all ease-out .6s; box-shadow:0 2px 8px rgb(0 0 0 / 15%);}
.bnr-area li a:hover { opacity:.6; }
.bnr-area p { text-align: center;font-size:14px;margin-bottom:10px; }



/* .pc { display:block; }
.sp { display:none; }

.pc_im { display:block !important; }
.sp_im { display:none !important; }


@media screen and (max-width:600px){
  .pc { display:none; }
  .sp { display:block; }

  .pc_im { display:none !important; }
  .sp_im { display:block !important; }
} */



/* ===============================
            SP固定フッター
=================================*/

@media screen and (max-width: 750px) {
  .concept_area{
    background-image: url(../img/top/concept_bg_sp.jpg);
  }
    .com-float-nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
      position: fixed;
      bottom: 0;
      background: #fff;
      left: 0;
      z-index: 99998;
      justify-content: space-between;
    }
    .com-float-nav a {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      width: calc(100% / 4 - 1px);
      height: 60px;
      background: #84959e;
    }
    .com-float-nav a i {
      height: 34px;
      position: relative
    }
    .com-float-nav a img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      margin: auto
    }
    .com-float-nav a span {
      font-size: 10px;
      color: #eeeae0;
      letter-spacing: 0.1em;
      text-align: center;
      height: 1.5em;
      display: flex;
    }
    .com-float-nav a.reserve {
      /* background: #16737f; */
      background: #96804f;
  }
    .com-float-nav a.reserve img {
      width: 21px;
    }
    .com-float-nav a.request span{
      color: #fff;
    }
    .com-float-nav a.request {
      background: #a49c8d;
    }
    /* .com-float-nav a.reserve {
      background: #928977;
    } */
    .com-float-nav a.request img {
      width: 21px
    }
    .com-float-nav a.tel img {
      width: 14px
    }
    .com-float-nav a.outline img {
      width: 16px
    }
    .com-float-nav a.map img {
      width: 14px
    }
    .com-float-nav .top-btn {
      display: block;
      width: 45px;
      height: auto;
      position: absolute;
      right: 10px;
      top: -35px;
    }
    .com-float-nav a.app {
        background: #4379a5;
    }
    .com-float-nav a.app img {
        width: 24px;
    }
    .com-float-nav {
      -webkit-transition: all .5s ease;
      transition: all .5s ease;
      bottom: -90px
    }
    .com-float-nav.on {
      bottom: 0px;
      padding-bottom: env(safe-area-inset-bottom);
      background: rgb(242 242 242 / 70%);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
  }

@media screen and (min-width: 751px){
    .com-float-nav {
    display: none;
  }
}



/* slick */
footer .slider_wrap{
  background: #231815;
  padding: 60px 0 80px;
}
footer .slider-2 li{
	position: relative;
}
.slider-2 .slick-slide {
  width: 600px;
  height: 400px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .slider-2 li .text_box{
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	color: #fff;
	width: 100%;
	padding: 0;
  pointer-events: none;
}
footer .slider-2 li .text_box p{
	text-align: center;
}
footer .slider-2 li .text_box p.ttl{
	margin-bottom: 10px;
	font-size: 20px;
	text-align: center;
}
footer .slider-2 li .text_box p.subttl{
	font-size: 20px;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.2;
	letter-spacing: 0;
}

footer .slick-prev:before,
footer .slick-next:before{
    font-family: 'unset';
    font-size: 50px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
footer .slick-prev, body .slick-next{
  width:50px;
  height: 50px;
}
footer .slick-dots li button:before{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #9e9e9f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer .slick-dots li.slick-active button:before{
    opacity: 1;
    color: #fff;
}
footer .slick-dotted.slick-slider{
  margin-bottom:40px;
}
footer .slick-dots{
  bottom: -10px;
  transform: translateY(0%);
}
footer .slick-prev:before,
footer .slick-next:before {
  color: #fff !important;
	top:50%;
}

footer .slider p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 100px;
  color: #666;
  margin: 10px;
  text-align: center;
  background-color: #e0e0e0;
}

footer .arrows {
  position: relative;
  text-align: center;
  margin: 0px auto 0px;
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 650px) {
.slider-2 .slick-slide {
  width: 90vw;
  height: 50vw;
}
}




/* フッタースライダー読み込みcer */
.keikyu_wrap .b{
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #333333;
}
.keikyu_wrap{
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
	overflow: hidden;
}
.keikyu_wrap .item-text h4 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	/* margin-bottom: 12px; */
}
.keikyu_wrap .item-text h4.new:after {
	content: "NEW!";
	display: inline-block;
	color: #004b90;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 11px;
	font-weight: bold;
	margin-left: 10px;
}
.keikyu_wrap .item-text p {
	font-size: 14px;
	letter-spacing: 0em;
	display: none;
}
.keikyu_wrap .item-img {
	overflow: hidden;
	margin-bottom: 20px;
}
.keikyu_wrap .item-img img {
	width: 100%;
	height: auto;
}
.keikyu_wrap .keikyu_slide li .item-text {
	margin-bottom: 15px;
	-ms-flex: 1 0 auto;
	flex-grow: 1;
}
.keikyu_wrap .btn {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	max-width: 100%;
	height: 50px;
	padding-left: 15px;
	padding-right: 15px;
	background: #ff0000;
	border: none;
	text-decoration: none;
	color: #004b90;
	border-radius: 0;
	font-size: 14px;
	font-size: 1rem;
	letter-spacing: 0.1em;
	box-sizing: border-box;
	text-align: center;
	-webkit-transition: background 0.3s ease, color 0.3s ease;
	-moz-transition: background 0.3s ease, color 0.3s ease;
	-ms-transition: background 0.3s ease, color 0.3s ease;
	-o-transition: background 0.3s ease, color 0.3s ease;
	transition: background 0.3s ease, color 0.3s ease;
	position: relative;
	appearance: none;
	top: 0;
	line-height: 1.2;
	z-index: 2;
}
.keikyu_wrap .btn:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #004b90;
	z-index: -2;
}
.keikyu_wrap .btn:after {
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	top: 1px;
	width: calc(100% - 1px * 2);
	height: calc(100% - 1px * 2);
	border-radius: 8px;
	background: #FFF;
	z-index: -1;
	transition: all 0.3s ease;
}
.keikyu_wrap .item-li {
	/* margin-bottom: 50px; */
	display: flex!important;
	-webkit-box-orient: vertical;
	flex-direction: column;
}
.keikyu_wrap .item-btn {
	margin-top: auto;
}


/* slide */
.keikyu_wrap .slick-track{
	display: flex;
}
.keikyu_wrap .slick-slide{
	height: auto;
}
.keikyu_slide li{
	margin: 0 10px;
}
.keikyu_slide{
	margin: 0 auto;
}
.keikyu_wrap .slick-prev {
	width: 20px !important;
	height: 25px !important;
	background: url(https://www.prime-keikyu.jp/yokohamatomioka/css/fonts/allow_l.png) no-repeat left top !important;
	background-size: 20px !important;
	left: -20px !important;
	z-index: 2;
}
.keikyu_wrap .slick-next {
	width: 20px !important;
	height: 25px !important;
	background: url(https://www.prime-keikyu.jp/yokohamatomioka/css/fonts/allow_r.png) no-repeat left top !important;
	background-size: 20px !important;
	right: -20px !important;
	z-index: 2;
}
.keikyu_wrap .slick-prev:before{
	content: "";
}
.keikyu_wrap .slick-next:before{
	content: "";
}



@media screen and (max-width: 900px) {
.keikyu_wrap .item-text h4 {
	font-size: 14px;
}
.keikyu_wrap .btn{
	font-size: 12px;
}
.keikyu_wrap .keikyu_slide li .item-text {
	margin-bottom: 10px;
}
.keikyu_wrap .item-img {
    margin-bottom: 10px;
}
}



/* recomend */

body{
    font-family: "Noto Serif JP", serif;
}

.common_recomend_renew{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ★基本設定（スマホ含む全体）: アニメーション(transition)は記述しない */
.common_recomend_renew li{
    width: 24.5314%;
    background: #686767;
    overflow: hidden;
    /* transition-duration: 0.6s; ←削除 */
}

/* ★基本設定: アニメーション(transition)は記述しない */
.common_recomend_renew li a{
    position: relative;
    /* transition-duration: 0.6s; ←削除 */
}

/* ★ホバー用のオーバーレイ: 基本設定ではアニメーションさせない */
.common_recomend_renew li a::before{
    content: "";
    
    /* ▼ 変更：乗算をやめて、単なる半透明のカラー（少し濃いめ）にする ▼ */
    background: rgba(12, 45, 58, 0.65);
    
    /* mix-blend-mode: multiply; は完全に削除（またはコメントアウト）します */
    
    position: absolute;
    
    /* 以下は以前の記述のままでOKです（top:0; left:0; に変更済みならそのままで） */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.common_recomend_renew li:first-of-type a::before{
    content: none;
}

.common_recomend_renew li a .reco_ttl{
    position: relative;
    z-index: 2;
}

/* ★ここがポイント: スマホでは :hover の記述自体をしない */

.common_recomend_renew li:first-of-type{
    width: 100%;
}

.common_recomend_renew li:first-of-type a{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1枚目の背景色変化くらいは残しても軽量ですが、念のためPCのみに移動させます */
/* 
.common_recomend_renew li:first-of-type:hover{
    background: #2c9db4;
}
*/

.common_recomend_renew li:nth-of-type( n + 2 ){
    margin-top: 0.75%;
}
.common_recomend_renew li:nth-of-type( n + 2 ) a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 335 / 232;
}

/* ★基本設定: 背景画像自体にはアニメーション(transition)は記述しない */
.reco_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* transition-duration: 0.6s; ←削除 */
}

/* 各背景画像の指定 (変更なし) */
.reco_location .reco_bg{ background: url(../img/common/reco_location.jpg) no-repeat; background-size: cover; }
.reco_residence .reco_bg{ background: url(../img/common/reco_residence.jpg) no-repeat; background-size: cover; }
.reco_plan .reco_bg{ background: url(../img/common/reco_plan.jpg) no-repeat; background-size: cover; }
.reco_modelroom .reco_bg{ background: url(../img/common/reco_modelroom.jpg) no-repeat; background-size: cover; }
.reco_merit .reco_bg{ background: url(../img/common/reco_merit.jpg) no-repeat; background-size: cover; }
.reco_quality .reco_bg{ background: url(../img/common/reco_quality.jpg) no-repeat; background-size: cover; }
.reco_access .reco_bg{ background: url(../img/common/reco_access.jpg) no-repeat; background-size: cover; }
.reco_brand .reco_bg{ background: url(../img/common/reco_brand.jpg) no-repeat; background-size: cover; }

.reco_ttl_en img{
    height: 18px;
}

.reco_ttl_jp{
    color: #fff;
    margin-top: 1em;
    font-size: 15px;
}


/* ============================================================
   ★ここから追加: PCサイズ（画面幅751px以上）のみにホバー処理を記述
   ============================================================ */
@media screen and (min-width: 751px) {
    /* PCではアニメーションを有効にする */
    .common_recomend_renew li,
    .common_recomend_renew li a,
    .reco_bg {
        transition: all 0.6s ease;
    }

    /* PCでのみ1枚目の背景色を変える */
    .common_recomend_renew li:first-of-type:hover{
        background: #2c9db4;
    }

    /* PCでのみ画像拡大アニメーションを実行する */
    .common_recomend_renew li:hover .reco_bg{
        transform:  translate(-50%, -50%) scale(1.2);    
    }
}


/* ===============================
            既存のメディアクエリ
=================================*/
@media screen and (max-width: 1000px) {
    .reco_ttl_en img {
        height: 14px;
    }
    .reco_ttl_jp{
        font-size: 13px;
    }
}

@media screen and (max-width: 750px){
    .common_recomend_renew li {
        width: 49.5%;
    }

    .common_recomend_renew{
        will-change: auto;
    }
}