@charset "utf-8";
/* ==================================================
  /tochikatsuyou/style_tichikatsuyou.css
  => 土地活用サイト用スタイルシート
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap&subset=japanese');


/* phbasesスタイル上書き
==================================================================================================== */
#contents {
  word-wrap: break-word;
}
#contents,
#contents *,
body #contents, 
body #contents * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
}
/* mobile用 */
@media screen and (max-width:768px) {
	#contents,
	#contents *,
	body #contents,
	body #contents * {
		font-weight: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		-moz-font-feature-settings: "palt";
		-webkit-font-feature-settings: "palt";
		font-feature-settings: "palt" 1;
	}
}
#contents img {
	max-width: 100%;
	height: auto;
}

/* 汎用
==================================================================================================== */
/* 文字
============================================================ */
/* font-family
---------------------------------------- */
body #contents .txt_serif,
body #contents .txt_serif * {
	font-family: YakuHanMP,'Noto Serif JP', "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",  "HGS明朝E", serif !important;
}
/* font-weight
---------------------------------------- */
body #contents .txt_weight_ul {
	font-weight: 100 !important;
}
body #contents .txt_weight_el {
	font-weight: 200 !important;
}
body #contents .txt_weight_l {
	font-weight: 300 !important;
}
body #contents .txt_weight_r {
	font-weight: 400 !important;
}
body #contents .txt_weight_m {
	font-weight: 500 !important;
}
body #contents .txt_weight_sb {
	font-weight: 600 !important;
}
body #contents .txt_weight_b {
	font-weight: 700 !important;
}
body #contents .txt_weight_eb {
	font-weight: 800 !important;
}
body #contents .txt_weight_ub {
	font-weight: 900 !important;
}
/* 見出し
============================================================ */
body #contents h1,
body #contents h1 *,
.cmn-cvArea h1,
body #contents h2,
body #contents h2 *,
.cmn-cvArea h2,
body #contents h3,
body #contents h3 *,
.cmn-cvArea h3,
body #contents h4,
body #contents h4 *,
.cmn-cvArea h4,
body #contents h5,
body #contents h5 *,
.cmn-cvArea h5,
body #contents h6,
body #contents h6 *,
.cmn-cvArea h6 {
	font-family: YakuHanMP,'Noto Serif JP', "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
/* 本文
============================================================ */
body #contents p,
body #contents p *,
.cmn-cvArea p {
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* LAYOUT
============================================================ */
@media screen and (min-width:769px) {
	.pcTxtCenter{text-align: center}
}

/* flexbox
---------------------------------------- */
/* flexboxコンテナ
------------------------------ */
.flex-cont {
	display:-webkit-box;
	display:-ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.flex-cont {
		display: block;
	}
}
/* Flexboxアイテム
------------------------------ */
.flex-item {
}
.flex-item2 {
    margin: 0 auto;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.flex-item, .flex-item2 {
		margin-top: 10vw;
	}
}
/* flex-direction
   => 子要素の配置方向
------------------------------ */
.fd-r {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
.fd-c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.fd-rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.fd-cr {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
/* flex-wrap
   => 子要素の折り返し設定
------------------------------ */
.fw-n {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fw-w {
  -ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fw-wr {
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}
/* justify-content
   => 水平方向の揃え方
------------------------------ */
.jc-fs {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc-fe {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc-c {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc-sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jc-sa {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
/* align-items
   => 垂直方向の揃え方
------------------------------ */
.ai-fs {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.ai-fe {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.ai-c {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.ai-b {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.ai-s {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
/* align-content
   => 行の揃え方
------------------------------ */
.ac-fs {
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.ac-fe {
	-ms-flex-line-pack: end;
	align-content: flex-end;
}
.ac-c {
	-ms-flex-line-pack: center;
	align-content: center;
}
.ac-sb {
	-ms-flex-line-pack: justify;
	align-content: space-between;
}
.ac-sa {
	-ms-flex-line-pack: distribute;
	align-content: space-around;
}
/* order
   => 個別の子要素の順序の指定
------------------------------ */
.o-1 {
	order: 1;
}
.o-2 {
	order: 2;
}
.o-3 {
	order: 3;
}
.o-4 {
	order: 4;
}
.o-5 {
	order: 5;
}
.o-6 {
	order: 6;
}
/* align-self
   => 個別の子要素の垂直方向の揃え方
------------------------------ */
.as-a {
	-ms-flex-item-align: auto;
	align-self: auto;
}
.as-fs {
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.as-fe {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.as-c {
	-ms-flex-item-align: center;
	align-self: center;
}
.as-b {
	-ms-flex-item-align: baseline;
	align-self: baseline;
}
.as-s {
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
/* IE11での表示崩れ対応
------------------------------ */
.flex-cont.fd-c .flex-item,
.flex-cont.fd-cr .flex-item {
  min-height: 0%;
}
/* 汎用幅
============================================================ */
/* width */
.w05per {
	width: 5%;
}
.w10per {
	width: 10%;
}
.w15per {
	width: 15%;
}
.w20per {
	width: 20%;
}
.w25per {
	width: 25%;
}
.w30per {
	width: 30%;
}
.w35per {
	width: 35%;
}
.w40per {
	width: 40%;
}
.w45per {
	width: 45%;
}
.w50per {
	width: 50%;
}
.w55per {
	width: 55%;
}
.w60per {
	width: 60%;
}
.w65per {
	width: 65%;
}
.w70per {
	width: 70%;
}
.w75per {
	width: 75%;
}
.w80per {
	width: 80%;
}
.w85per {
	width: 85%;
}
.w90per {
	width: 90%;
}
.w100per {
	width: 100%;
}
.w95per {
	width: 95%;
}
.w100px {
	width: 100px;
}
.w215px{
	width: 215px;
}
.w155px{
	width: 155px;
}
.w270px {
	width: 270px;
}
.w290px{
	width: 290px;
}
.w300px{
	width: 300px;
}
.w330px{
	width: 330px;
}
.w350px {
	width: 350px;
}
.w400px {
	width: 400px;
}
.w420px{
	width: 420px;
}
.w440px {
	width: 440px;
}
.w450px {
	width: 450px;
}
.w460px {
	width: 460px;
}
.w482px {
	width: 482px;
}
.w549px {
	width: 549px;
}
.wcol2,
.flex-cont.col2 > .flex-item {
	width: 47.5%;
}
.wcol3,
.flex-cont.col3 > .flex-item {
	width: 30%;
}
.wcol4,
.flex-cont.col4 > .flex-item {
	width: 21.25%;
}
.wcol5,
.flex-cont.col5 > .flex-item {
	width: 16%;
}
.wcol6,
.flex-cont.col6 > .flex-item {
	width: 12.5%;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.flex-item.w05per,
	.flex-item.w10per,
	.flex-item.w15per,
	.flex-item.w20per,
	.flex-item.w25per,
	.flex-item.w30per,
	.flex-item.w35per,
	.flex-item.w40per,
	.flex-item.w45per,
	.flex-item.w50per,
	.flex-item.w55per,
	.flex-item.w60per,
	.flex-item.w65per,
	.flex-item.w70per,
	.flex-item.w75per,
	.flex-item.w80per,
	.flex-item.w85per,
	.flex-item.w90per,
	.flex-item.w95per,
	.flex-item.w100px,
	.flex-item.w155px,
	.flex-item.w215px,
	.flex-item.w270px,
	.flex-item.w290px,
	.flex-item.w300px,
	.flex-item.w330px,
	.flex-item.w350px,
	.flex-item.w400px,
	.flex-item.w420px,
	.flex-item.w440px,
	.flex-item.w450px,
	.flex-item.w460px,
	.flex-item.w482px,
	.flex-item.w549px,
	.wcol2,
	.flex-cont.col2 > .flex-item,
	.wcol3,
	.flex-cont.col3 > .flex-item,
	.wcol4,
	.flex-cont.col4 > .flex-item,
	.wcol5,
	.flex-cont.col5 > .flex-item,
	.wcol6,
	.flex-cont.col6 > .flex-item {
		width: auto;
	}
}
/* リンク
============================================================ */
/* 動画リンク
---------------------------------------- */
a.link_video {
  display: block;
  position: relative;
  width: 520px;
  height: auto;
  margin: 0 auto;
}
/* mobile用 */
@media screen and (max-width:768px) {
  a.link_video {
    width: auto;
  }
}
a.link_video::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.9);
  background-image: url("/tochikatsuyou/img/common/icon_arrow_video_play_blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
/* mobile用 */
@media screen and (max-width:768px) {
  a.link_video::after {
    width: 16vw;
    height: 16vw;
  }
}
/* リンク ホバーエフェクト
------------------------------ */
a:hover img {
    opacity: 0.7;
    transition: all 0.3s ease;
}
/* pc用 */
@media screen and (min-width:769px) {
	a.link_video:hover {
		text-decoration: none;
		opacity: 0.6;
		transition: all 0.3s ease;
	}
}
#contents p.link_video_caption {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}
/* mobile用 */
@media screen and (max-width:768px) {
  #contents p.link_video_caption {
    font-size: 15px;
  line-height: 1.5;
    margin-top: 3vw;
  }
}
/* その他
============================================================ */
.flex-between{
	display: flex;
	justify-content: space-between;
}
.flex-between-pc{
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:768px) {
	.flex-between-pc{
		display: block;
	}
}
.row-reverse{
	flex-flow: row-reverse;
}


/* common top */
/*.tochikatsu-common-top > header {
  height: auto;
  margin: 0 -112px;
  padding: 0;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: right center;
}*/
@media (max-width: 1200px) {
  .tochikatsu-common-top > header {
    margin-bottom: -100px;
    transform: scale(0.813);
    -webkit-transform: scale(0.813);
    transform-origin: center 0;
    -webkit-transform-origin: center 0;
  }
}


#chintai-top.tochikatsu-common-top > header {background-image: none; overflow:hidden}
#senior-top.tochikatsu-common-top > header {background-image: url(../img/senior/top/main-image.png);}
#clinic-top.tochikatsu-common-top > header {background-image: url(../img/clinic/top/main-image.png);}
#nursery-top.tochikatsu-common-top > header {background-image: url(../img/nursery/top/main-image.png);}
#shukuhaku-top.tochikatsu-common-top > header {background-image: url(../img/shukuhaku/top/main-image.png);}

header{
	margin: 0 0 84px 0;
}
header h1{
  font-size: 36px;
  text-align: center;
  line-height: 1;
  margin: 30px 0 40px 0;
}
header h1 span{
	font-size: 30px;
}
header p{
	font-size: 17px;
	line-height: 2;
}
h2{
  margin: 70px 0 25px;
  text-align: center;
  font-size: 30px;
  padding: 0 0 20px;
  position: relative;
}
#chintai-top .yourmaison h2.tochikatsu-h2{
	margin: 100px 0 25px;
}
h2.tochikatsu-h2:before{
	content:"";
	position: absolute;
	right: 50%;
	bottom: 0;
	display: inline-block;
	width: 80px;
	height: 4px;
}
h2.tochikatsu-h2:after{
	content:"";
	position: absolute;
	left: 50%;
	bottom: 0;
	display: inline-block;
	width: 80px;
	height: 4px;
	background-color: #002870;
}
#chintai-top h2:before{
	background-color: #c6264e;
}
#chintai-top .lead{
	font-size: 15px;
    margin: 0 0 50px;
    line-height: 1.7;
}

@media screen and (max-width:768px) {
	
	header {
		margin: 0 0 30px;
	}
	header h1 {
		font-size: 7.5vw;
		line-height: 1.4;
		margin: 30px 0 20px 0;
		padding: 0 !important;
	}
	header h1 span {
		display: block;
		font-size: 30px;
	}
	header p {
		font-size: 17px;
		line-height: 1.5;
	}
	.sp-btn-secondary {
		border-radius: 30px !important;
	}
	#contents #chintai-top .yourmaison,
	#contents #chintai-top .about,
	#contents #chintai-top .kurashi{
	margin: 60px 0 80px;
	}
	#contents #chintai-top h2 {
		margin: 20px 0 25px 0;
	}
	#chintai-top.tochikatsu-common-top > header::before {
		background-image: none;
	}
	#chintai-top .lead{
		font-size: 15px;
		margin: 0 0 50px;
	}
	h2.tochikatsu-h2 {
		font-size: 6vw;
	}
	h2 {
		margin: 20px 0 0 0;
	}
	h2.tochikatsu-h2:before{
	width: 50px;
}
h2.tochikatsu-h2:after{
	width: 50px;
}
}


/*家賃保証に関する注釈---------------------------*/
.yachin-hosho_annotation{
	font-size: 15px;
	line-height: 1.7;
	margin: 30px 0 0;
}
.yachin-hosho_annotation span{
	text-indent: -1em;
	margin: 0 0 0 1em;
	display: inline-block;
}
@media screen and (max-width:768px) {
	.yachin-hosho_annotation{
		text-align: left;
	}
}


/*共通バナー---------------------------*/
.c-bnr { margin-top: 100px;}
.c-bnr.mb100 { margin-bottom: 100px;}
.c-bnr.pb100 { padding-bottom: 100px;}
@media screen and (max-width:768px) {
	.c-bnr { margin-top: 40px;}
	.c-bnr.mb100 { margin-bottom: 60px;}
	.c-bnr.pb100 { padding-bottom: 60px;}
}


/*ビルボード---------------------------*/

.billboard{
	background-image: url("../img/billboard_chintai.jpg");
	background-position: center center;
	background-size: cover;
	height: 500px;
	position: relative;
}
.billboard .billboard-bg{
	display: none;
}
.billboard .billboard-cont{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 100px 0 0;
}

/* モニタ幅 1200px以下 */
@media screen and (max-width:1200px) {
	.billboard{
		background-size: 1366px auto;
	}
}

/* モニタ幅 1366px以上 */
@media screen and (min-width:1366px) {
	.billboard{
		height: auto;
	}
	.billboard .billboard-bg{
		display: block;
	}
	.billboard .billboard-cont{
		padding: 100px 277px 0;
	}
}

/* モニタ幅 1920px以上 */
@media screen and (min-width:1920px) {
	.billboard{
		height: 703px;
	}
	.billboard .billboard-bg{
		display: none;
	}
}

/* mobile用 */
@media screen and (max-width:768px) {
	.billboard{
		background-image: none;
		height: auto;
	}
	.billboard .billboard-bg{
		display: block;
	}
	.billboard .billboard-cont{
		padding: 12vw 0;
	}
}






