@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------

@color
#333333  :   maintext

@z-index
999999  :   .modalBox
99999   :   .hamburger
9999    :   .globalNav_sp

@media
@media screen and (min-width:751px) and ( max-width:1200px)
@media only screen and (max-width: 750px)

------------------------------------------------------------------*/

@font-face {
    font-family: 'Noto Sans JP Subset';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: local("Noto Sans CJK JP Regular"),
    url('../fonts/NotoSans_Regular.woff2') format('woff2'),
    url('../fonts/NotoSans_regular.woff') format('woff'),
}

@font-face {
    font-family: 'Noto Sans JP Subset';
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: local("Noto Sans CJK JP Bold"),
    url('../fonts/NotoSans_Bold.woff2') format('woff2'),
    url('../fonts/NotoSans_bold.woff') format('woff'),
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("../fonts/YakuHanJP-Regular.woff2") format("woff2"),
    url("../fonts/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url("../fonts/YakuHanJP-Bold.woff2") format("woff2"),
    url("../fonts/YakuHanJP-Bold.woff") format("woff");
}

body{
font-family: 'YakuHanJP','Noto Sans', 'Noto Sans CJK JP', 'Noto Sans JP Subset', sans-serif;
-webkit-font-smoothing: antialiased;
line-height: 1.5;
overflow-wrap: break-word;
text-align: justify;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; }
body {
font-family: 'YakuHanJP','Noto Sans', 'Noto Sans CJK JP', 'Noto Sans JP Subset', sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 1.8rem;
line-height: 1.5;
overflow-wrap: break-word;
text-align: justify;
color: #333;
}
.clearfix::after {
content: '';
display: block;
clear: both;
}
.sans-serif{
font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}

/* PC / SP
------------------------------------ */
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 600px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* SP image
------------------------------------ */
@media only screen and (max-width: 600px) {
main img { display: block; width: 100%; }
}

/* BOX
------------------------------------ */

header { position: relative; z-index: 10;}
.inner {
margin: auto;
max-width: 1000px;
}
/*
@media screen and (min-width:751px) and ( max-width:1200px) {
.inner { width: 100%; }
}
*/
/*@media only screen and (max-width: 600px) {
.inner { width: 100%; }
}*/

/* header
------------------------------------ */
.header {
height: 50px;
box-shadow: 0 3px 5px 0 rgba(0,0,0,0.15);
}
.header .inner {
padding: 0 20px;
display: flex;
flex-wrap: nowrap;
}
.header .inner p {
width: 50%;
}
.header p img {
margin-top: 8px;
}
.header p.dhg_logo {
text-align: right;
}
.header p.dhg_logo img {
margin-top: 10px;
}
@media screen and (max-width: 600px) {
.header p.dhg_logo img {
width: 80%;
margin-top: 14px;
}
}
/* menu - SP
------------------------------------ */
@media screen and (max-width: 600px) {

.menu_sp {
padding: 10px;
background-color: aqua;
position: fixed;
top: 70px;
right: 0;
}
.menu_sp .inner { width: 100%;}

/* ハンバーガー */
.hamburger {
width: 24px;
height: 18px;
display: block;
z-index: 1000;
}
.hamburger span {
margin: 0 auto;
width: 100%;
height: 1px;
background-color: #000;
display: inline-block;
transition: all .4s;
position: absolute;
left: 0;
}
.hamburger span:nth-of-type(1) { top: 0;}
.hamburger span:nth-of-type(2) { top: 9px;}
.hamburger span:nth-of-type(3) { bottom: 0;}

.hamburger.active span { background-color: #FFF; }

.hamburger.active span:nth-of-type(1) { -webkit-transform: translateY(9px) rotate(135deg); transform: translateY(9px) rotate(135deg);}
.hamburger.active span:nth-of-type(2) { opacity: 0;}
.hamburger.active span:nth-of-type(3) { -webkit-transform: translateY(-8px) rotate(45deg); transform: translateY(-8px) rotate(45deg);}

}

/* global nav - PC
------------------------------------ */
/*
.globalNav_pc ul {
display: flex;
justify-content: space-between;
border-left: 1px solid #333;
}
.globalNav_pc ul li {
width: calc(100%/6);
height: 40px;
text-align: center;
border-right: 1px solid #333;
transition: 0.5s;
}
.globalNav_pc ul li:hover {
background-color: #ccc;
}
.globalNav_pc ul li a {
color: #333;
line-height: 40px;
display: block;
text-decoration: none;
}
.globalNav_pc ul li.current a {
background-color: #ccc;
}
*/

/* global nav - SP
------------------------------------ */
.globalNav_sp { display: none; }

@media screen and (max-width: 600px) {
.globalNav_sp {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.9);
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 9999;
overflow-y: auto;
}
.globalNav_sp ul {
padding: 70px 20px 0;
width: 100%;
}
.globalNav_sp ul li {
margin: 16px auto 0;
width: 100%;
height: 40px;
}
.globalNav_sp ul li:first-child {
margin-top: 0;
}
.globalNav_sp ul li a {
line-height: 40px;
color: #fff;
font-size: 1.8rem;
text-decoration: none;
border-bottom: 1px solid #8e8e8e;
display: block;
}
}


/* 共通
------------------------------------ */
@media screen and (max-width: 900px) {
	.mainvisual__inner img,.campaign-bonus img,.market-trend__title img,.market-trend__reasons img,.market-trend__chart img,.expert-valuation img,.campaign-section img,.livness-banner img{
		display: block;
		width: 100%;
	}
}

/* mainvisual
------------------------------------ */
.mainvisual {
height: 560px;
background-image: url("../images/main_bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.mainvisual__inner {
margin: auto;
padding-top: 150px;
width: 740px;
}
.mainvisual__inner div {
	background-image: url("../images/mainImg.png");
	width: 730px;
	height: 300px;
	position: relative;
}
.mainvisual__inner div a{
	position: absolute;
	right: 50px;
	bottom: 33px;
}

@media screen and (max-width: 900px) {
 /* メインビジュアル（高さは可変に） */
  .mainvisual{
    height: auto;           /* 固定高さをやめる */
    padding: clamp(24px,6vw,48px) 16px;
    background-position: center;
    background-size: cover;
  }
  .mainvisual__inner{ width: 100%; padding-top: 0; }
  .mainvisual__inner div{
    width: 100%;
    height: auto;           /* 固定高さをやめる */
    aspect-ratio: 730 / 300;/* パネル比率を維持して可変に */
    background-size: cover;
    background-position: center;
  }
  .mainvisual__inner div a{
    right: 6%;              /* ボタン位置を%に */
    bottom: 8%;
    width: 40%;             /* ボタンも相対で縮む */
  }  
}

@media screen and (max-width: 600px) {
.mainvisual {
height: auto;
background-image: url("../images/sp/SP_bg_main.jpg");
}
.mainvisual__inner div {
display: block;
background-image: url("../images/sp/SP_mainImg.png");
background-repeat: no-repeat;
	margin: 0 auto;
padding:92% 0 5%;
}
.mainvisual__inner div a {
display: block;
margin: 0 auto 5px; 
position: static;
width: 85%!important;
}
}




/* campaign-bonus
------------------------------------ */
.campaign-bonus {
	padding: 35px 0 120px;
background-color: #0d132a;
}
.campaign-bonus__inner {
margin:0 auto;
width: 900px;
position: relative;
}
.campaign-bonus__card{
	margin-bottom: 35px;
}

.campaign-bonus__cta a{
	display: block;
	margin: 0 auto;
	width: 520px;
}
@media screen and (max-width: 900px) {
	.campaign-bonus {
		padding: 35px 20px 120px;
	}
  .campaign-bonus__card{ /* min-width:900px をやめる */
    min-width: 0;
  }
  .campaign-bonus__cta a{ width: 100%; max-width: 520px; }
}

@media screen and (max-width: 600px) {
.campaign-bonus {
	display: none;
}
}

/* market-trend
------------------------------------ */
.market-trend{
	background-color: #0d132a;
}
.market-trend__inner{
	margin: 0 auto;
	padding-bottom: 60px;
	width: 900px;
}
.market-trend__title{
	text-align: center;
}
.market-trend__reasons{
	display: flex;
	gap:10px;
	margin: 40px 0;
}
.market-trend__chart figcaption{
	text-align: right;
}
@media screen and (max-width: 900px) {
	.market-trend{
		padding: 0 20px;
}
}
@media screen and (max-width: 600px) {
	.market-trend{
		padding:60px 0 0;
	}
.market-trend__inner {
	width: 100%;
	padding-bottom: 40px;
}
.market-trend__title{
	padding: 0 40px 40px;
}
	.market-trend__reasons{
		display: block;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.market-trend__reason{
		margin: 0 auto;
		padding: 0 20px 20px;
	}
	.market-trend__chart{
		padding: 0 20px;
	}
	.market-trend__chart figure{
		overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
	}
	.market-trend__chart figure img{
		max-width: 100%;
  min-width: 600px;
  vertical-align: top;
	}
	/*スクロールバー全体の高さ*/
.market-trend__chart::-webkit-scrollbar {
  height: 4px;
}
/*スクロールバー全体の背景*/
.market-trend__chart::-webkit-scrollbar-track {
  background: #eee;
}
/*スクロールバーの動く部分*/
.market-trend__chart::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.market-trend__chart::-webkit-scrollbar-thumb:hover {
  background: #999;
}
	.market-trend__chart figcaption{
	margin-top: 10px;
}
}

/* expert-valuation
------------------------------------ */
.expert-valuation{
	background-color: #0d132a;
}
.expert-valuation__inner{
	margin: 0 auto;
	padding-bottom: 120px;
	width: 900px;
}
.expert-valuation__title{
	text-align: center;
	margin-bottom: 60px;
}
.expert-valuation__lead{
	text-align: center;
	margin-bottom: 60px;
}
.expert-valuation__subtitle{
	text-align: center;
	margin-bottom: 35px;
}
.expert-valuation__modes{
	display: flex;
	gap:30px;
	margin-bottom: 60px;
}
.expert-valuation__coverage{
	margin-bottom: 80px;
}
.expert-valuation__cta{
	width: 520px;
	margin: 0 auto;
}
@media screen and (max-width: 900px) {
	.expert-valuation{
		padding: 0 20px;
}
}
@media screen and (max-width: 600px) {
	.expert-valuation__inner{
		padding: 0 0 45px;
		width: 100%;
	}
	.expert-valuation__title{
	margin-bottom: 25px;
}
	.expert-valuation__cta{
		width: 100%;
	}
	.expert-valuation__lead{
	margin-bottom: 25px;
}
	.expert-valuation__modes{
	display: block;
	margin-bottom: 20px;
}
	.expert-valuation__modes li{
		margin-bottom: 20px;
	}
	.expert-valuation__coverage{
	margin-bottom: 25px;
}
}

/* group-strength
------------------------------------ */
.group-strength {
background-image: url("../images/bg_img01.jpg");
background-repeat: no-repeat;
background-position: center top;
background-size:cover;
width: 100%;
font-family: Yu Mincho, 'Noto Serif JP', serif;
}
.group-strength__inner {
padding-top: 60px;
width: 900px;
margin: 0 auto 120px;
}
.group-strength__title {
display: block;
}
.group-strength__title {
margin: 0 auto 60px;
font-size: 3.0rem;
text-align: center;
color: #fff;
text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.group-strength__title::after {
content: '';
margin: 20px auto 0;
width: 120px;
height: 4px;
background: #A48849;
background: linear-gradient(90deg,rgba(164, 136, 73, 1) 0%, rgba(139, 111, 48, 1) 19%, rgba(203, 183, 136, 1) 50%, rgba(139, 111, 48, 1) 75%, rgba(164, 136, 73, 1) 100%);
display: block;
}

.group-strength__inner ul {
display: flex;
	gap:2%;
}
.group-strength__inner ul li{
	flex: 1;
	display: flex;
	flex-direction: column;
}
.group-strength__inner ul li h3{
background-repeat: no-repeat;
background-position: center top;
padding: 75px 0 50px;
text-align: center;
background-color: #fff;
font-size: 2.4rem;
}
.group-strength__inner ul .group-strength__point1 h3 { background-image: url("../images/benefits_1.jpg");background-position: 50% 20%;}
.group-strength__inner ul .group-strength__point2 h3 { background-image: url("../images/benefits_2.jpg");background-position: 50% 20%;}
.group-strength__inner ul .group-strength__point3 h3 { background-image: url("../images/benefits_3.jpg");background-position: 50% 20%;}
.group-strength__text{
	background-color: #545e64;
	padding:30px;
	color: #fff;
	
	flex-grow: 1;
}

@media screen and (max-width: 900px) {
	.group-strength{
		padding: 0 20px;
}
.group-strength ul {
display: block;
justify-content: center;
}
 .group-strength__inner ul li{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
	 margin-bottom: 20px;
  }
  .group-strength__inner ul li h3{ width: 35%; }
  .group-strength__inner ul li .group-strength__text{
    width: 65%;
    flex: 1;
  }
}

/* group-strength__companies
------------------------------------ */
.group-strength__companies {
padding-bottom: 120px;
margin:0 auto;
width: 900px;
font-family: Yu Mincho, 'Noto Serif JP', serif;
}
.group-strength__companies .company-card li {
display: flex;
margin-bottom: 30px;
}
.group-strength__companies .company-card li h3 {
padding: 30px 30px 110px;
font-size: 2.0rem;
width: 280px;
background: #fff;
position: relative;
text-align: center;
background-repeat: no-repeat;
background-position: 50% 75%;
}
.group-strength__companies .company-card li h3::before {
  content:"";
  position:absolute;
  left:26px;
  top:20px;
  bottom:20px;
  width:4px;
  background: #A48849;
background: linear-gradient(0deg,rgba(164, 136, 73, 1) 0%, rgba(139, 111, 48, 1) 19%, rgba(203, 183, 136, 1) 50%, rgba(139, 111, 48, 1) 75%, rgba(164, 136, 73, 1) 100%);
}

.group-strength__companies .company-card .company-card-house h3{
	background-image: url("../images/group-strength__companies__icon1.jpg");
}
.group-strength__companies .company-card .company-card-realestate h3{
	background-image: url( "../images/group-strength__companies__icon2.jpg");
}
.group-strength__companies .company-card .company-card-lifenext h3{
	background-image: url("../images/group-strength__companies__icon3.jpg");
}

.group-strength__companies .company-card li p {
font-size: 1.6rem;
width: 680px;
background-color: #545e64;
color: #fff;
padding: 30px;
}

.group-strength__companies .company-card .company-card-realestate .company-card-realestate__right{
	background-color: #545e64;
	width: 680px;
	padding: 30px;
}
.group-strength__companies .company-card .company-card-realestate .company-card-realestate__right>p{
	padding: 0;
	width: auto;
}
.group-strength__companies .company-card .company-card-realestate .company-card-realestate__cta{
	margin: 20px auto 0;
	width: 465px;
}
.group-strength__companies .company-card .company-card-realestate .company-card-realestate__cta  .js-modal {
margin: 10px 10px 0 0;
width: 220px;
height: 40px;
line-height: 40px;
font-size: 1.5rem;
font-weight: bold;
text-align: center;
color: #fff;
background-color: #162545;
border-radius: 20px;
display: inline-block;
}
.group-strength__companies .company-card .company-card-realestate .company-card-realestate__cta .js-modal img{
	margin-left: 10px;
}
.group-strength__companies .company-card li a {
text-decoration: none;
}
@media screen and (max-width: 900px) {
	.group-strength__companies .company-card .company-card-realestate .company-card-realestate__cta{
		width: 100%;
	}
	.group-strength__companies .company-card .company-card-realestate .company-card-realestate__cta .js-modal {
		width: 100%;
}
	.group-strength__companies .company-card .company-card-realestate h3{
		background-size: 68% auto;
    }
}

@media screen and (max-width: 600px) {
.group-strength__companies h2.type1 {
margin: 0 0 20px;
}
.group-strength__companies .company-card {
padding: 400px 0 0 0;
margin: 0 auto 20px;
width: 90%;
background-position: top center;
background-size: 300px auto;
}
.group-strength__companies .company-card li h3 {
margin-bottom: 20px;
line-height: 1.2em;
}
.group-strength__companies .company-card li h3 span {
margin-left: 0;
}
.group-strength__companies .company-card li p .js-modal {
width: 70%;
margin: 20px auto 10px;
display: block;
}
}


/* campaign-section
------------------------------------ */
.campaign-section p,
.campaign-section ul {
  margin: 0;
  padding: 0;
}

.campaign-section ul {
  list-style: none;
}

.campaign-section img {
  display: block;
}
.campaign-section{
	background-image: url("../images/bg_img02.jpg");
background-repeat: no-repeat;
background-position: center top;
background-size:cover;
width: 100%;
}
.campaign-section__inner{
	margin: 0 auto;
	width: 900px;
	padding: 120px 0 100px;
}
.campaign-section__title{
	margin-bottom: 60px;
}
.campaign-section__intro{
	margin-bottom: 80px;
}
.campaign-section__notes{
	background-image: url("../images/sec05_02.jpg");
	background-repeat: no-repeat;
	background-size: auto 100%;
	padding: 0 30px;
}
.campaign-section__notes h3 {
padding: 40px 0 20px;
text-align: center;
}
.campaign-section__list {
background-color: #fff;
background: rgba(255, 255, 255, 0.3);
padding: 30px !important;
font-size: 1.4rem;
position: relative;
}
.campaign-section__list li {
margin-bottom: 10px;
position:relative;
padding-left: 1.4em; 
}
.campaign-section__list li::before {
content: "●";
display: inline-block;
position: absolute;
left: 0;
}
.campaign-section__itemtitle{
	font-weight: 500;
}

.campaign-section__cta a{
	display: block;
	width: 520px;
	margin: 0 auto;
}
@media screen and (max-width: 900px) {
	.campaign-section__inner{
	padding: 80px 20px 45px;
}
}
@media screen and (max-width: 600px) {
	.campaign-section__inner{
	width: 100%;
	padding: 25px 20px 45px;
}
	.campaign-section__intro{
	margin-bottom: 25px;
}
	.campaign-section__notes{
	background-image: url("../images/sp/SP_sec05_02.jpg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	padding: 0 10px;
}
	.campaign-section__list{
	padding: 20px!important;
	font-size: 1.2rem;
}
	.campaign-section__cta a{
	width: 100%;
}
}

/* ivness-contact
------------------------------------ */
.livness-contact {
background-image: url("../images/bg_img03.jpg");
background-repeat: no-repeat;
background-position: center top;
background-size:cover;
width: 100%;
font-family: Yu Mincho, 'Noto Serif JP', serif;
padding: 120px 0 100px;
}
.livness-contact__inner {
margin: 0 auto;
width: 900px;
}
.livness-contact__title {
margin: 0 auto 60px;
font-size: 3.0rem;
text-align: center;
color: #fff;
text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.livness-contact__title::after {
content: '';
margin: 20px auto 0;
width: 120px;
height: 4px;
background: #A48849;
background: linear-gradient(90deg,rgba(164, 136, 73, 1) 0%, rgba(139, 111, 48, 1) 19%, rgba(203, 183, 136, 1) 50%, rgba(139, 111, 48, 1) 75%, rgba(164, 136, 73, 1) 100%);
display: block;
}
.group-strength h2.type1 span {
background: linear-gradient(transparent 70%, #fff000 0%);
display: inline-block;
}


.ivness-contact__inner p {
margin-bottom: 30px;
}
.livness-card {
	background: #F5F6F6;
background: linear-gradient(0deg,rgba(245, 246, 246, 1) 0%, rgba(244, 244, 244, 1) 100%);
	padding: 50px;
}
.livness-card__lead{
	margin-bottom: 30px;
}
.livness-links {
margin-bottom: 30px;
padding: 0 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.livness-links li {
margin-bottom: 20px;
width: 45%;
}
.livness-links li a {
width: 100%;
height: 50px;
line-height: 50px;
color: #fff;
background-color: #0d132a;
font-weight: bold;
text-align: center;
text-decoration: none;
display: block;
border-radius: 25px;
position: relative;
font-size: 1.6rem;
}
.livness-links li a::after {
content: url("../images/icon_blank.png");
display: block;
position: absolute;
top: 0;
right: 7%;
}
.livness-mail__title {
display: flex;
  align-items: center;      /* ← 垂直方向を中央揃え */
  justify-content: center;
  gap: 1em;               /* テキストと線の間隔 */
  font-weight: 700;
  color: #b69440;           /* 金色 */
  font-size: 1.2em;
  line-height: 1; 
  width: 360px;
  margin: 0 auto 30px;
}
.livness-mail__title::before,.livness-mail__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #b69440;
  opacity: 0.8;
  position: relative;
  top: 0; 
}
.livness-banner{
	text-align: center;
}
.group-links{
	background-color: #d7dcde;
	padding: 50px;
}
.group-links__title{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 30px;
}
.group-links__list{
	display: flex;
	gap:15px;
	width: 800px;
}
.group-links__list li:nth-child(2)>a{
	text-align: left;
	font-feature-settings: "palt";
	padding: 18px 0 18px 19px;
}
.group-links__list a{
	display: block;
	background-color: #545e64;
	color: #fff;
	text-decoration: none;
	width: 245px;
	font-size: 1.6rem;
	text-align: center;
	padding: 18px 0;
	position: relative;
}
.group-links__list a::after{
	content: url("../images/icon_blank.png");
display: block;
position: absolute;
top: 30%;
right: 7%;
}
@media screen and (max-width: 900px) {
	.livness-links {
padding: 0;
display: block;
}
.livness-links li {
margin-bottom: 20px;
width: 100%;
}
	.livness-links li a {
		width: 80%;
		margin: 0 auto;
	}
	.group-links__list{
	display: block;
	width: 100%;
}
	.group-links__list li{
		margin-bottom: 15px;
	}
	.group-links__list li:nth-child(2)>a{
	text-align: center;
	padding: 18px 0;
}
.group-links__list a{
	width: 80%;
	font-size: 1.6rem;
	margin: 0 auto;
}
}
@media screen and (max-width: 600px) {
.livness-contact {
	padding: 30px 0 25px;
	}
.livness-contact__inner {
margin: auto;
width: 90%;
}
.livness-contact__title {
font-size: 2.0rem;
margin: 0 auto 30px;
}
.livness-card {
	padding: 25px 20px;
}
	.livness-card__lead{
		font-size: 1.6rem;
		margin-bottom: 25px;
	}

.livness-mail__title {
  width: 100%;
 font-size: 1.6rem;
}
.group-links{
	padding: 25px 0 30px;
}
}


/* section_area
------------------------------------ */
.section_area p {
padding: 0 20px;
width: 100%;
}
.section_area p img {
margin: auto;
width: 800px;
}
@media screen and (max-width: 600px) {
.section_area p img {
width: 100%;
max-width: 460px;
}
}


/* footer - PC
------------------------------------ */
#footer {
padding: 50px 0 110px;
}
#footer p {
text-align: center;
font-size: 1.4rem;
}
#footer p span {
padding-top: 30px;
text-align: center;
font-size: 1.2rem;
line-height: normal;
color: #999;
display: block;
}

@media screen and (max-width: 600px) {
#footer .inner {
padding: 0 20px 0;
}
}

/* footer - SP
------------------------------------ */


/* other
------------------------------------ */
.bottom_nav {
width: 100%;
height: 80px;
background-color: /*rgba(13,19,42,0.8)*/#172353;
position: fixed;
bottom: 0;
z-index: 10;
}
.bottom_nav .inner {
margin: auto;
width: 1000px;
}
.bottom_nav .inner ul {
margin: auto;
padding-top: 10px;
width: 530px;
display: flex;
flex-wrap: nowrap;
/*
justify-content: space-between;
*/
justify-content: center;
}

.bottom_nav .inner ul li {
margin: 0 10px;
width: 320px;
}

.bottom_nav .inner ul li a {
width: 100%;
height: 60px;
line-height: 60px;
color: #3A1919;
background-color: #fff;
font-weight: normal;
text-align: center;
text-decoration: none;
display: block;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 4px 0px;
background-image: linear-gradient(#FBEDB2, #AA9035);
}
.bottom_nav .inner ul li a:hover {
opacity: 0.7;
}
@media screen and (min-width: 601px)  and (max-width: 900px) {
	.bottom_nav .inner {
margin: auto;
width: 100%;
}
}

@media screen and (max-width: 600px) {
.bottom_nav .inner {
margin: auto;
width: 100%;
}
.bottom_nav .inner ul {
margin: auto;
padding: 10px 10px 0;
width: 100%;
display: flex;
flex-wrap: nowrap;
}
.bottom_nav .inner ul li {
margin: 0;
padding: 0 5px;
width: 80%;
}
.bottom_nav .inner ul li a {
font-size: 1.5rem;
}
}

/* js
------------------------------------ */

/* js-modal */
.js-modal,
.js-modal-close {
cursor: pointer;
}
.modalBox {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.9);
position: fixed;
top: 0;
left: 0;
z-index: 999999;
display: none;
}
.modalContent {
width: 65%;
height: 65%;
background-color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.js-modal-close {
width: 40px;
height: 40px;
display: block;
position: absolute;
top: -50px;
right: 0;
}
.js-modal-close::before,
.js-modal-close::after {
content: '';
width: 100%;
height: 2px;
display: block;
background-color: #fff;
position: absolute;
top: 50%;
left: 0;
}
.js-modal-close::before { transform: rotate(45deg);}
.js-modal-close::after { transform: rotate(-45deg);}

@media screen and (max-width: 600px) {
.modalContent {
width: 100%;
height: 80%;
}
}


/* js-modal contents */
.modal_wrap {
padding: 40px;
width: 100%;
height: 100%;
overflow-y: scroll;
}
.modal_wrap h1 {
margin-bottom: 20px;
font-size: 2.8rem;
}
.modal_wrap h1 span {
font-size: 1.8rem;
}
.modal_wrap h2 {
padding-bottom: 10px;
margin-bottom: 20px;
font-size: 2.2rem;
border-bottom: 2px solid #162545;
}
.modal_wrap ul {
margin-bottom: 30px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.modal_wrap ul li {
margin-bottom: 5px;
width: 48%;
font-size: 1.6rem;
}
.modal_wrap p {
font-size: 1.6rem;
text-align: right;
}

@media screen and (max-width: 600px) {
.modal_wrap {
padding: 20px;
}
.modal_wrap h1 {
line-height: 1em;
}
.modal_wrap ul li {
width: 100%;
}
}


/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-60px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}


/* SATORI
------------------------------------ */
main .inner .satori__privacy_policy_message {
margin: 20px auto;
padding: 20px;
width: 100%;
max-width: 600px;
height: 150px;
font-size: 1.6rem;
background-color: #fff;
border: 1px solid #eee;
overflow-y: scroll;
}
#satori__creative_container {
    margin: 0 auto;
    width: 80%;
}
.satori__custom_form {
margin: 30px 0 50px;
padding: 20px;
border-radius: 10px;
}

/* 共通ラッパー
------------------------------------ */
@media (max-width: 900px){
  .inner,
  .campaign-bonus__inner,
  .market-trend__inner,
  .expert-valuation__inner,
  .group-strength__inner,
  .group-strength__companies,
  .campaign-section__inner,
  .livness-contact__inner {
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
  }
}
