@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&display=swap');

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. 基本
　02.ヘッダー（サブ）
　03.CTA
　04.フッター（サブ）

******************************************************************************* */


/* ==

　01. 基本

=============================================================================== */
#main .topicPath {
	background-color: #5E5E5E;
	color: #FFF;
}
#main .topicPath li a{
	color: #FFF;
}
#footerPagetop .pageTop {
	z-index: 6;
}


/* ==

　02.ヘッダー（サブ）

=============================================================================== */
/* headerSub
------------------------------------------------------------------------------- */
#headerSub {
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
#headerSub .headerSubHome a{
	font-weight:bold;
}
#headerSub .nav {
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 0;
	/*
	padding-right: clamp(20px, calc((1900px - 100vw) * 0.35), 250px);
	padding-right: clamp(20px, calc((1700px - 100vw) * 0.6), 250px);
	*/
	box-shadow: none;
	box-sizing: border-box;
	position: static;
}
#headerSub.headerSub_tenant .nav .nav01 {
	width: 75%;
	justify-content: flex-start;
	gap: 0 40px;
}
#headerSub .nav .nav01>li:nth-of-type(1) ,
#headerSub .nav .nav01>li:nth-of-type(2) ,
#headerSub .nav .nav01>li:nth-of-type(3) ,
#headerSub .nav .nav01>li:nth-of-type(4) {
	width: auto;
}
#headerSub.headerSub_tenant .navBtn {
	width: 25%;
	font-size: 135%;
	line-height: 1.3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 10px;
	box-sizing: border-box;
}
#headerSub.headerSub_tenant .navBtn .navBtn_item a{
	padding: 6px 14px;
	background: #FF9900;
	background: linear-gradient(180deg, rgba(255, 153, 0, 1) 0%, rgba(176, 106, 0, 1) 100%);
	border-radius: 5px;
	color: #FFF;
	font-feature-settings: "palt" 1;
	text-decoration: none;
	text-align: center;	
	display: inline-block;
	transition: opacity .5s;
}
#headerSub.headerSub_tenant .navBtn .navBtn_item a:hover{
	opacity: 0.6;
}
#headerSub .nav .nav02 {
	width: 230px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
#headerSub .nav .nav02Soudan > a {
	background: #A21B22;
	background: linear-gradient(0deg, rgba(162, 27, 34, 1) 0%, rgba(211, 35, 46, 1) 100%);
}
@media only screen and (max-width: 1260px) {
	#headerSub {
		padding-left: 20px;
		box-sizing: border-box;
	}
}

@media only screen and (max-width: 1720px) {
	#headerSub.headerSub_tenant .navBtn {
		padding-right: 20px;
	}
}
@media only screen and (max-width: 1700px) {
	#headerSub .nav {
		padding-right: clamp(20px, calc((1700px - 100vw) * 0.5), 250px);
	}
}
@media only screen and (max-width: 1250px) {
	#headerSub.headerSub_tenant .nav .nav01{
		gap: 0 30px;
	}
	#headerSub.headerSub_tenant .navBtn {
		font-size: 125%;
	}
}
@media only screen and (max-width: 1210px) {
	#headerSub.headerSub_tenant .navBtn {
		padding-right: 0;
		font-size: 117%;
	}
	#headerSub.headerSub_tenant .nav .nav01 {
		gap: 0 10px;
	}
}


#headerSub .dropArea #dropTenant .dropAreaInner>div {
	margin-top: 40px;
}
#headerSub .dropArea #dropTenant .dropAreaInner>div:nth-of-type(-n+2) {
	margin-top: 0;
}
#headerSub .dropArea #dropTenant .dropAreaInner a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#headerSub .dropArea #dropTenant .dropAreaImg {
	width: 20%;
}
#headerSub .dropArea #dropTenant .dropAreaImg img {
	width: 100%;
}
#headerSub .dropArea #dropTenant .dropAreaLink {
	width: 75%;
	height: auto;
}
#headerSub .dropArea #dropTenant .dropAreaTxt {
	margin-top: 20px;
}

/* CTA */
.cta{
padding:40px 10px 0;
margin-bottom:20px !important;
color:#fff;
box-sizing: border-box;
}
.cta__inner{
background: linear-gradient(180deg, #d2232e 0%, #a31b23 100%);
max-width:1400px;
margin:0 auto;
display:grid;
grid-template-columns:3fr 4fr;
align-items:center;
box-sizing: border-box;
border-radius: 5px;
}
.cta__content{
container-type:inline-size;
padding:20px 40px 20px 60px;
}
.cta__title{
font-size:clamp(1.75rem, 2.1vw, 2.125rem);
line-height:1.3;
margin-bottom:16px;
font-weight:normal;
letter-spacing: 0.1em;
}

.cta__text{
font-size:1rem;
line-height:1.6;
margin-bottom:24px;
letter-spacing: 0.1em;
}

.cta__button{
max-width:440px;
position: relative;
display:inline-block;
padding:14px 45px 14px 20px;
background: #fff;
font-size:1.25rem;
text-decoration:none;
color:#000;
font-weight: 600;
border-radius: 5px;
transition:opacity .3s ease;
box-sizing: border-box;
}
.cta__button:hover{
	opacity: 0.6;
}
.cta__button__arrow{
position:absolute;
top:50%;
right:20px;
transform:translateY(-50%);
display:inline-block;
width:15px;
height:1px;
background:#e60012;
}
.cta__button__arrow::before{
content:"";
position:absolute;
right:0;
top:0;
width:5px;
height:1px;
background:#e60012;
transform:rotate(45deg);
transform-origin:right center;
}
.cta__button__arrow::after{
content:"";
position:absolute;
right:0;
top:0;
width:5px;
height:1px;
background:#e60012;
transform:rotate(-45deg);
transform-origin:right center;
}
.cta__image img{
width:100%;
height:auto;
display:block;
border-radius: 0 5px 5px 0;
}

@media (max-width:1327px){
	.cta__content{
		container-type:inline-size;
		padding:20px 20px 20px 40px;
	}
	.cta__title {margin-bottom: 10px;}
	.cta__text{margin-bottom:15px;}	
	.cta .devPcTbl{display:none;}
	.cta__button {padding: 10px 45px 10px 20px;}
}


/* ==

　04.フッター（サブ）

=============================================================================== */
#footerSub .column div {
	margin-bottom: 0;
}
#footerSub .column div p {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footerSub .column p a:hover {
	text-decoration: underline;
}
    