@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	font-feature-settings: "palt";
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
p a {
    text-decoration: underline;
	color: #06c;
}
p a:hover {
    text-decoration: underline;
	color: #09c;
}
.sp, .nobr {
	display: none!important;
}
hr.full {
	width: 100%;
	height: 1px;
	display: block;
    margin: 20px 0;
	border: none;
	background: #ccc;
}
.tac {
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 120px;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 120px;
    top: -120px;
    left: 0;
	display: block;
    background: rgba(0,0,0,0.7);
    transition: all 0.2s ease;
    opacity: 1;
}
body.home header .header_bg {
	background: rgba(0,0,0,0.7);
}
header .header_bg.appear {
    width: 100%;
    height: 120px;
    top: 0!important;
    transition: all 0.4s ease;
    opacity: 1;
}
header h1.headerLogo {
	position: absolute;
    width: 24%;
	max-width: 360px;
    left: 20px;
	display: block;
    z-index: 20000;
}
header h1.headerLogo a {
	width: 100%;
	aspect-ratio: 206/27;
	display: block;
    background: url("../images/logo_w.png") no-repeat left center;
    background-size: contain;
}
/*body.home header h1.headerLogo a {
	background: url("../images/logo_w.png") no-repeat left center;
	background-size: contain;
}*/
header h1.headerLogo a:hover {
	transition: all 0.3s;
	opacity: 0.5;
}
header a.btnContact {
	position: absolute;
	width: 180px;
    height: 50px;
    right: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	overflow: hidden;
	padding-left: 35px;
	font-size: clamp(1.2em, 1.4vw, 1.4em);
	font-weight: 400;
	line-height: 1em;
	letter-spacing: 0.05em;
	text-align: center;
	outline: none;
	background: #bfaf80;
	box-sizing: border-box;
	transition: all .3s;
}
header a.btnContact::after {
	position: absolute;
	content: '';
	width: 40px;
    aspect-ratio: 1/1;
    left: 0;
	display: block;
	border-right: solid 1px #000;
	background: url("../images/icon_mail.svg") no-repeat center center;
	background-size: 20px;
}
header a.btnContact:before {
	position: absolute;
	content: attr(data-hover);
	width: 100%;
	text-transform: uppercase;
	transform: translate(0, 100%);
	transition: all .3s ease-in-out;
	opacity: 0;
}
header a.btnContact:hover {
	cursor: pointer;
	background: #d3c7a7;
	transition: all .3s;
}
header a.btnContact:hover:before {
	transform: translate(0,0);
	opacity: 1;
}
header a.btnContact span {
	font-family: "ador-hairline", sans-serif;
	font-size: 1.1em;
	font-weight: 500;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
header a.btnContact:hover span {
	transform: translate(0, -100%);
	opacity: 0;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    right: 0;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
	padding-right: 240px;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu {
	width: calc(100% - 360px);
    max-width: 760px;
	height: 60px;
	right: 0;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
}
.sp_nav ul.sp_nav_menu li.home {
	display: none;
}
.sp_nav ul.sp_nav_menu li a {
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: 1.3em;
    line-height: 1em;
	color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}
/*body.home .sp_nav ul.sp_nav_menu li a {
	color: #fff;
}*/
.sp_nav ul.sp_nav_menu li a.arrow::after {
	content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-left: 5px;
	background: url("../images/plus.svg") no-repeat center center;
    background-size: contain;
	filter: invert(58%) sepia(21%) saturate(1947%) hue-rotate(172deg) brightness(105%) contrast(87%);
}
/*body.home .sp_nav ul.sp_nav_menu li a.arrow::after {
	filter: invert(98%) sepia(79%) saturate(7028%) hue-rotate(187deg) brightness(137%) contrast(100%);
}*/
.sp_nav ul.sp_nav_menu li a:hover,
body.home .sp_nav ul.sp_nav_menu li a:hover {
	color: #549bef;
	transition: all 200ms;
}
.sp_nav ul.sp_nav_menu > li:hover .pullDownMenu {
	height: auto;
	padding: 30px 0;
    box-sizing: border-box;
	opacity: 1;
	transform: translate(0,0);
	transition: all 300ms;
}
.sp_nav ul.sp_nav_menu li div.pullDownMenu {
	position: absolute;
	width: 100%;
	height: 0;
	top: 90px;
	left: 0;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		/*flex-wrap: wrap;*/
	overflow: hidden;
	z-index: 1000;
	background: rgba(14,39,71,0.9);
	box-sizing: border-box;
	opacity: 0;
    transform: translate(0,0);
    transition: all 200ms;
}
.sp_nav ul.sp_nav_menu li ul.pulldown,
.sp_nav ul.sp_nav_menu li ol.pulldown {
	width: calc(100%);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 0 2%;
	align-self: stretch;
	box-sizing: border-box;
}

/* 数字を割り振る */
/*
.sp_nav ul.sp_nav_menu li ol.pulldown {
	list-style: none;
	counter-reset: my-counter;
}
.sp_nav ul.sp_nav_menu li ol.pulldown li {
	counter-increment: my-counter;
}
*/
.sp_nav ul.sp_nav_menu li ol.pulldown li::before {
	position: absolute;
	left: 20px;
	z-index: 1000;
	font-size: clamp(1.2em, 1vw, 1.6em);
	font-weight: normal;
	line-height: 1.2em;
	color: #fff;
	/*content: counter(my-counter, decimal-leading-zero);*/
}

.sp_nav ul.sp_nav_menu li ul.pulldown li,
.sp_nav ul.sp_nav_menu li ol.pulldown li {
	position: relative;
	width: 24%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 7px 0.5%;
}
.sp_nav ul.sp_nav_menu li ul.about li,
.sp_nav ul.sp_nav_menu li ul.company li {
	width: 19%;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a,
.sp_nav ul.sp_nav_menu li ol.pulldown li a {
	position: relative;
	width: 100%;
	height: 70px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 0 30px 0 20px;
	font-size: clamp(1.2em, 1vw, 1.6em);
	font-weight: normal;
	line-height: 1.2em;
	text-align: left;
    color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	background: rgba(0,0,0,0.2);
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ol.pulldown li a {
	padding: 0 30px 0 50px;
	text-indent: -1.7em;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a span,
.sp_nav ul.sp_nav_menu li ol.pulldown li a span {
	position: relative;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a::before,
.sp_nav ul.sp_nav_menu li ol.pulldown li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #2967aa;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover span,
.sp_nav ul.sp_nav_menu li ol.pulldown li a:hover span {
	color: #fff;
	opacity: 1;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover::before,
.sp_nav ul.sp_nav_menu li ol.pulldown li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a::after,
.sp_nav ul.sp_nav_menu li ol.pulldown li a::after {
	position: absolute;
	content: '';
	width: 12px;
	aspect-ratio: 1/1;
	right: 10px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
}
.wrap {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0;
	box-sizing: border-box;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
	box-sizing: border-box;
}
.reverse {
	flex-direction: row-reverse;
}
.bgc_lightBlue {
	background: #e4ecf4;
}
.bgc_darkBlue {
	background: #0e2747;
}
.bgc_lightGray {
	background: #f7f7f7;
}

/*【共通】ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
	height: 400px;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
		flex-direction: row-reverse;
	background: #0e2747;
    box-sizing: border-box;
}
.pageTitle.tall {
	height: 600px;
}
.pageTitle figure {
    position: relative;
    width: 66.666%;
	height: 400px;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	background: #0e2747;
    box-sizing: border-box;
}
.pageTitle.tall figure {
    height: 600px;
}
.pageTitle figure figcaption {
	position: absolute;
	width: auto;
	top: 40%;
	left: 2%;
    display: block;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2.4em, 2.4vw, 3.6em);
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	color: #fff;
}
.pageTitle figure img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
.pageTitle .title {
	position: relative;
	width: 33.333%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	align-self: stretch;
	box-sizing: border-box;
}
.pageTitle .title h2 {
    width: 100%;
	display: block;
    font-size: clamp(1.4em, 2vw, 1.6em);
	font-weight: 400;
	line-height: 1.2em;
	text-align: center;
	color: #fff;
}
.pageTitle .title span {
	width: 100%;
	display: block;
	margin-bottom: 5px;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(2.4em, 3.6vw, 4em);
	font-weight: 400;
	line-height: 1.2em;
	color: #bfaf80;
}
.pageTitle .title .sub {
    width: auto;
	min-width: 240px;
	min-height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-top: 40px;
	padding: 10px;
    font-size: clamp(1.4em, 1.6vw, 1.8em);
	font-weight: 400;
	line-height: 1.4em;
	text-align: center;
	color: #fff;
	border-top: solid 1px rgba(255,255,255,0.5);
	border-bottom: solid 1px rgba(255,255,255,0.5);
	box-sizing: border-box;
}

/*メニュー*/
.pageTitle ul.menu {
    position: absolute;
    width: 280px;
	height: 100%;
	top: 0;
	left: 33.333%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding-top: 80px;
	background: rgba(0,0,0,0.5);
	box-sizing: border-box;
}
.pageTitle ul.menu.wide {
    width: 400px;
}
.pageTitle ul.menu li {
    width: 100%;
    display: block;
}
.pageTitle ul.menu li a,
.pageTitle ul.menu li span {
    position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 15px 20px;
	font-size: clamp(1em, 1.6vw, 1.3em);
	font-weight: 400;
	line-height: 1em;
	color: rgba(255,255,255,0.5);
	box-sizing: border-box;
}
.pageTitle ul.menu li a:hover {
	color: rgba(255,255,255,1);
	transition: all .2s;
}
.pageTitle ul.menu li span {
	color: rgba(255,255,255,1);
}
.pageTitle ul.menu li span::before {
    position: absolute;
    content: '';
	width: 30px;
	height: 1px;
	left: -15px;
    display: block;
	background: #fff;
}

/*【共通】パンくずリスト*/
ul.topicpath {
    position: absolute;
	width: 100%;
	min-height: 40px;
	bottom: 0;
	left: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
}
ul.topicpath li {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    padding: 0 15px;
    font-size: 1em;
	line-height: 1em;
	color: rgba(255,255,255,0.5);
}
ul.topicpath li+li {
    border-left: solid 1px rgba(255,255,255,0.5);
}
ul.topicpath li a {
    color: #fff !important;
	text-decoration: none !important;
}
ul.topicpath li a:hover {
    text-decoration: underline;
    transition: all 200ms;
}

/*【共通】中タイトル*/
.midTitle {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px 0;
	font-size: clamp(1.4em, 2vw, 1.8em);
}
.midTitle::before {
	position: absolute;
	content: '';
	width: 60px;
	aspect-ratio: 1/1;
	top: -30px;
	left: -50px;
    display: block;
	background: url("../images/title_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(3%) sepia(18%) saturate(450%) hue-rotate(314deg) brightness(98%) contrast(83%);
}
.midTitle.white::before {
	filter: invert(80%) sepia(100%) saturate(0%) hue-rotate(168deg) brightness(112%) contrast(102%);
}
.midTitle span {
	width: 100%;
    display: block;
	font-family: "ador-hairline", sans-serif;
	font-size: 2.4em;
	font-weight: 500;
	line-height: 1.2em;
	color: #0e2747;
}
.midTitle.white,
.midTitle.white span {
	color: #fff;
}

/*【共通】ブロックタイトル*/
.blockTitle {
	width: 100%;
	height: 100px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	font-size: clamp(1.2em, 2vw, 1.8em);
	line-height: 1em;
	background: #bfaf80;
}
.blockTitle span {
	width: 100%;
    display: block;
	margin: 10px 0 20px;
	font-family: "ador-hairline", sans-serif;
	font-size: 2.4em;
	font-weight: 500;
	text-align: center;
	color: #fff;
}

/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btn {
	position: relative;
	width: auto;
    height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0;
	font-size: clamp(1.2em, 1.6vw, 1.8em);
	line-height: 1.2em;
	transition: 0.3s;
	text-decoration: none !important;
	color: #fff !important;
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background-color: #0e2747;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
a.btn.mail,
a.btn.pdf {
	padding-left: 30px;
}
a.btn.out {
	padding-right: 20px;
}
a.btn::after,
a.btn.mail::after,
a.btn.out::after,
a.btn.pdf::after {
	position: absolute;
	content: '';
	aspect-ratio: 1/1;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(102%) contrast(102%);
}
a.btn::after {
	width: 12px;
	right: 10px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
}
a.btn.mail::after {
	width: 24px;
	left: 20px;
	background: url("../images/icon_mail.svg") no-repeat center center;
	background-size: contain;
}
a.btn.out::after {
	width: 18px;
	right: 10px;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
}
a.btn.pdf::after {
	width: 30px;
	left: 10px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
}
a.btn span {
	position: relative;
}
a.btn::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #2967aa;
	box-sizing: border-box;
}
a.btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/*透明ボタン*/
a.btnTrans {
	position: absolute;
    width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: 1000;
	background: #fff;
	opacity: 0;
	transition: all 200ms;
}
a.btnTrans:hover {
	transition: all 200ms;
	opacity: 0.5;
}

/*テキストリンク（矢印）*/
a.link {
	position: relative;
	width: auto;
	min-height: 30px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin: 10px 0;
	padding-right: 35px;
	font-size: 1.4em;
	line-height: 1em;
	box-sizing: border-box;
}
a.link.back {
	padding-left: 30px;
}
a.link:hover {
	text-decoration: underline;
	color: #06c;
}
a.link::before,
a.link::after {
	position: absolute;
	content: '';
    width: 24px;
	aspect-ratio: 1/1;
    display: block;
}
a.link.arrow::before,
a.link.arrow::after {
	right: 0;
}
a.link.back::before,
a.link.back::after {
	left: 0;
}
a.link.arrow::before,
a.link.back::before {
	border: solid 1px #888;
	box-sizing: border-box;
}
a.link.arrow::after,
a.link.back::after {
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 12px 12px;
}
a.link.back::after {
	transform: scaleX(-1);
}
a.link.pdf::after {
	position: absolute;
	content: '';
    width: 26px;
	aspect-ratio: 1/1;
	right: 0;
    display: block;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.link.out::after {
	position: absolute;
	content: '';
    width: 20px;
	aspect-ratio: 1/1;
	right: 0;
    display: block;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】コピー／テキスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonText {
	position: relative;
    width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px auto;
}
.commonText.half {
	width: 50%;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	align-self: stretch;
	margin: 0;
}
.commonText .copy {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2.4em, 2vw, 3.2em);
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	text-align: center;
	font-feature-settings: "palt";
}
.commonText.half .copy {
	text-align: left;
}
.commonText .copy .fsLarger {
	font-size: 1.2em;
}
.commonText .read {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-size: 2em;
	font-weight: 600;
    line-height: 1.4em;
    text-align: center;
	color: #0e2747;
}
.commonText .text {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: center;
}
.commonText .text.just {
	text-align: justify;
}
.commonText .note {
    width: calc(100% - 1em);
	display: block;
	margin: 20px 0 0 auto;
    font-size: 1.4em;
	line-height: 1.6em;
}
.commonText .note::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
figure.commonPhoto {
	width: 46%;
	display: block;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】注釈
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
ul.note,
ol.note {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 5px 0;
}
ol.note {
	counter-reset: note;
}
ul.note li,
ol.note li {
    display: list-item;
	margin: 5px 0 5px auto;
    font-size: 1.2em;
	line-height: 1.4em;
}
ul.note li {
    width: calc(100% - 1em);
}
ol.note li {
    width: calc(100% - 2em);
	list-style: none;
    counter-increment: note;
}
ul.note li::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
ol.note li::before {
    content: "※" counter(note);
	display: inline-block;
	text-indent: -2em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main#home {
	padding-top: 0;
}
#home h2.title {
	position: absolute;
	width: 200px;
	aspect-ratio: 1/1;
	top: -160px;
	left: 0;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.4em, 2vw, 3em);
	font-weight: 500;
	line-height: 1.2em;
	color: #1e1c1c;
	background: #bfaf80;
}
#home h2.title::before {
	content: '';
	width: 50%;
	aspect-ratio: 1/1;
    display: block;
	margin: 0 25% 10px;
	background: url("../images/title_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(3%) sepia(18%) saturate(450%) hue-rotate(314deg) brightness(98%) contrast(83%);
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 1080px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	z-index: 1000;
    box-sizing: border-box;
	background: url("../images/top/main_img.webp") no-repeat center center;
	background-size: cover;
}
#home .mainVisual .copy {
	position: absolute;
	width: auto;
	top: calc(50% - 15%);
    display: block;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(3.6em, 3vw, 4.8em);
	font-weight: 400;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-align: center;
	font-feature-settings: "palt";
	color: #fff;
}
#home .mainVisual .logo_group {
	position: absolute;
	width: 160px;
	right: 20px;
	bottom: 20px;
    display: block;
}

/*-- 【Home】お知らせ --*/
#home .mainVisual_news {
    position: absolute;
	width: 90%;
	max-width: 1200px;
	height: 120px;
	bottom: 10%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
	margin: 0 auto;
	padding: 0;
	background: rgba(0,0,0,0.3);
	background-size: cover;
    box-sizing: border-box;
}
#home .mainVisual_news h2 {
	width: 180px;
	height: 120px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    font: 200 2em/1em "ador-hairline", sans-serif;
	line-height: 1em;
	text-align: center;
    color: #fff;
	background: rgba(0,0,0,0.7);
}
#home .mainVisual_news dl {
	position: relative;
	width: calc(100% - 180px);
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	align-self: stretch;
	padding: 0 60px 0 20px;
	color: #fff;
    box-sizing: border-box;
}
#home .mainVisual_news dl a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: 1000;
	background: #000;
	transition: all .3s;
	opacity: 0;
}
#home .mainVisual_news dl a:hover {
	transition: all .3s;
	opacity: 0.2;
}
#home .mainVisual_news dl::after {
	position: absolute;
	content: '';
	width: 24px;
	aspect-ratio: 1/1;
	right: 20px;
	display: block;
	border: solid 1px rgba(0,0,0,0.5);
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 12px 12px;
	box-sizing: border-box;
	filter: invert(98%) sepia(79%) saturate(7028%) hue-rotate(187deg) brightness(137%) contrast(100%);
}
#home .mainVisual_news dl dt {
	position: relative;
    width: 180px;
	display: block;
	font-size: 1.6em;
	line-height: 1.4em;
	color: #fff;
}
#home .mainVisual_news dl dd {
	width: calc(100% - 180px);
	display: block;
	font-size: 1.6em;
	line-height: 1.4em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】ピックアップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homePickup {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
    padding: 120px 0;
	background: #0e2747;
    box-sizing: border-box;
}
#home .homePickup .homePickup_text {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: -40px 0 80px;
}
#home .homePickup .homePickup_text .copy {
	width: 100%;
    display: block;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2em, 2.4vw, 2.8em);
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	text-align: center;
	font-feature-settings: "palt";
	color: #fff;
}

/*スライド*/
#home .homePickup .slideBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    /*overflow: hidden;*/
}
#home .homePickup .slideBlock ol.slider {
    position: relative;
    width: 140%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 0 -20%;
}
#home .homePickup .slideBlock ol.slider li {
    position: relative;
	width: auto;
    display: block;
	align-self: stretch;
    margin: 0 30px;
    box-sizing: border-box;
}
#home .homePickup .slideBlock ol.slider li a {
    position: relative;
	width: auto;
	aspect-ratio: 5/3;
	display: block;
	overflow: hidden;
    box-sizing: border-box;
}
#home .homePickup .slideBlock ol.slider li a img,
#pickup ul.list li img {
    width: 100%;
    height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 4px;
}
#home .homePickup .slideBlock ol.slider li a:hover img {
    transition: all 200ms;
	opacity: 0.5;
}
#home .homePickup .slideBlock ol.slider li a div {
	position: absolute;
	width: 70%;
	aspect-ratio: 48/16;
	right: -1px;
	bottom: -1px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 0 0 0 17%;
	color: #fff;
	background: url("../images/top/matt.svg") no-repeat right bottom;
	background-size: contain;
	box-sizing: border-box;
}

/* 数字を割り振る */
#home .homePickup .slideBlock ol.slider li a div span {
    position: absolute;
	width: auto;
    left: 10%;
    z-index: 1000;
    font-family: "ador-hairline", sans-serif;
    font-size: clamp(1.4em, 2vw, 2em);
    font-weight: 500;
    line-height: 1.2em;
}
#home .homePickup .slideBlock ol.slider li a div h3 {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: clamp(1.6em, 1.6vw, 2em);
    line-height: 1.2em;
}
#home .homePickup .slideBlock ol.slider li a div h3::before {
	position: absolute;
	content: '';
	width: 1px;
	height: 120px;
	left: -5%;
    display: block;
	background: rgba(255,255,255,0.5);
	transform: rotate(13deg);
}
#home .homePickup .slideBlock ol.slider li p {
	width: 100%;
	height: 2.8em;
    display: block;
	margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.4em;
	color: #fff;
}

/* Arrows */
#home .homePickup .slideBlock .slick-prev,
#home .homePickup .slideBlock .slick-next {
    display: none;
}
#home .homePickup .slideBlock .slick-dots {
    position: absolute;
    width: 100%;
    bottom: -60px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    counter-reset: slide;/* カウンターをリセット */
}
#home .homePickup .slideBlock .slick-dots li {
    display: inline-block;
    margin: 0 5px !important;
    counter-increment: slide;/* カウンターを1つ進める */
}
#home .homePickup .slideBlock .slick-dots li button {
    position: relative;
    width: 40px;
    height: 1px;
    display: block;
    font-size: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #fff;
    opacity: 1;
}
#home .homePickup .slideBlock .slick-dots li button::before {
    position: absolute;
    content: counter(slide, decimal-leading-zero);
    width: 40px;
    height: auto;
    top: -25px;
    left: 0;
    background: none;
	font-family: "ador-hairline", sans-serif;
    font-size: 1rem;
    line-height: 1;
    color: #bfaf80;
    opacity: 1;
}
#home .homePickup .slideBlock .slick-dots li button::after {
    position: absolute;
    content: '';
    width: 40px;
    height: 1px;
    top: 0;
    left: 0;
    background: #bfaf80;
}
#home .homePickup .slideBlock .slick-dots li.slick-active button::after {
    color: #fff;
	background: #fff;
}
#home .homePickup .slideBlock .slick-dots li.slick-active button::before {
    color: #fff;
	background: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】ソリューション
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .searchSolution,
#solution .searchSolution {
	position: relative;
    width: 100%;
	min-height: 1280px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
    padding: 120px 0;
	background: #1e1c1c;
    box-sizing: border-box;
}
#solution .searchSolution {
	min-height: inherit;
	padding: 80px 0;
	background: #0e2747;
}
#home .searchSolution::before {
	position: absolute;
	content: '';
    width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: -1;
    background: url("../images/top/solutions_img.webp") no-repeat top center;
	background-size: cover;
}
#home .searchSolution .searchSolution_text {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 60px 0;
}
#home .searchSolution .searchSolution_text .copy,
#home .searchSolution .searchSolution_text .text {
	width: 48%;
    display: block;
	color: #fff;
}
#home .searchSolution .searchSolution_text .copy {
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2em, 2vw, 3.2em);
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}
#home .searchSolution .searchSolution_text .text {
	margin-top: 10px;
	font-size: clamp(1.2em, 1.6vw, 1.6em);
	font-weight: 500;
	line-height: 1.8em;
}

/*〇〇から探す*/
.listSearch {
	position: relative;
	width: 100%;
	min-height: 720px;
    display: flex;
		justify-content: flex-end;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 60px 0 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	background: #fff;
}
#home .listSearch {
	width: 80%;
	margin: 60px 0 0 auto;
	transition: all 200ms;
}
@media screen and (max-width: 1280px) {
#home .listSearch {
	width: 100%;
}
}
.listSearch::before {
	position: absolute;
	content: 'SEARCH';
	width: auto;
	height: 60px;
	top: -60px;
	left: 0;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding-left: 50px;
    font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.4em, 2vw, 2em);
	font-weight: 500;
	line-height: 1em;
	background: url("../images/icon_search.svg") no-repeat left center;
	background-size: 40px 40px;
	box-sizing: border-box;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(102%) contrast(102%);
}
.listSearch.bottom {
	width: 90%;
	margin: 0 auto;
	padding: 60px 0;
	border-top: solid 10px #e5ecf3;
}
.listSearch.bottom::before {
	display: none;
}

/*タブ切り替え全体のスタイル*/
.listSearch .tab {
	position: relative;
    width: 240px;
	height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    margin: -60px 0 0 5px;
    padding-left: 40px;
	font-size: clamp(1.2em, 2vw, 1.5em);
	line-height: 1em;
	text-align: center;
	color: #fff;
	cursor: pointer;
	caret-color: transparent;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: #bfaf80;
	box-sizing: border-box;
}
.listSearch .tab::before {
	position: absolute;
	content: '';
	width: 30px;
	aspect-ratio: 1/1;
	left: 10px;
	display: block;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(102%) contrast(102%);
}
.listSearch .tab::after {
	content: 'から探す';
	display: inline;
}
.listSearch .tab:hover {
	transition: all 200ms;
    opacity: 0.7;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.listSearch .inner {
	display: none;
	padding: 60px 40px 60px 0;
	box-sizing: border-box;
}

/*選択されているタブのコンテンツのみを表示*/
#department:checked ~ #departmentBlock,
#request:checked ~ #requestBlock,
#issue:checked ~ #issueBlock {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
/*選択されているタブのスタイルを変える*/
.listSearch input:checked + .tab {
	color: #000;
	background: #fff;
}
.listSearch input:checked + .tab::before {
	filter: none;
}
.listSearch input:checked + .tab:hover {
	cursor: default;
	transition: all 200ms;
	opacity: 1;
}

/*一覧表示*/
.listSearch .listSearch_title {
	width: 300px;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	font-size: clamp(1.8em, 2vw, 2.4em);
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	color: #444;
	box-sizing: border-box;
}
.listSearch .listSearch_title span {
	width: 100%;
	display: block;
	font-size: 1.2em;
}
.listSearch .listSearch_title::before {
	content: '';
	width: 50%;
	aspect-ratio: 1/1;
	display: block;
	margin: 0 25% 30px;
	background-size: contain;
	filter: invert(82%) sepia(26%) saturate(400%) hue-rotate(7deg) brightness(81%) contrast(91%);
}
.listSearch #departmentBlock .listSearch_title::before,
.listSearch .tab:nth-of-type(1):before {
	background: url("../images/solutions/icon_department.svg") no-repeat center center;
}
.listSearch #requestBlock .listSearch_title::before,
.listSearch .tab:nth-of-type(2):before {
	background: url("../images/solutions/icon_request.svg") no-repeat center center;
}
.listSearch #issueBlock .listSearch_title::before,
.listSearch .tab:nth-of-type(3):before {
	background: url("../images/solutions/icon_issue.svg") no-repeat center center;
}
.listSearch ul {
	width: calc(100% - 300px);
	height: 640px;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	overflow: auto;
	padding-right: 20px;
	box-sizing: border-box;
}
.listSearch.bottom ul {
	height: inherit;
	overflow: inherit;
	margin-top: -100px;
	padding-right: 0;
}
.listSearch ul li {
	position: relative;
    width: 100%;
    display: block;
	border-top: solid 1px #ccc;
}
.listSearch ul li:nth-last-child(1) {
	border-bottom: solid 1px #ccc;
}
.listSearch ul li a {
	position: relative;
    width: 100%;
	min-height: 70px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    padding: 10px 30px 10px 5px;
    box-sizing: border-box;
    transition: all .2s;
}
.listSearch ul li a h4 {
	width: 100%;
    display: block;
    font-size: clamp(1.6em, 1.6vw, 1.6em);
	font-weight: 700;
	line-height: 1.2em;
}
.listSearch ul li a p {
	width: 100%;
    display: block;
	margin-top: 5px;
    font-size: clamp(1em, 1.4vw, 1.2em);
	line-height: 1.4em;
	color: #444;
}
.listSearch ul li a::after {
	position: absolute;
	content: '';
    width: 24px;
	aspect-ratio: 1/1;
	right: 5px;
    display: block;
	border: solid 1px #ccc;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 12px 12px;
	box-sizing: border-box;
}
.listSearch ul li a:hover {
	background: rgba(191,175,128,0.2);
	transition: all .2s;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】事例紹介
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeCase {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
    padding: 120px 0;
	background: #f7f7f7;
    box-sizing: border-box;
}
#home .homeCase .homeCase_text {
	position: absolute;
	width: 30%;
	aspect-ratio: 4/3;
	top: 0;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	align-self: stretch;
	transition: all 200ms;
}
#home .homeCase .homeCase_text p {
	width: 100%;
    display: block;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(1.8em, 2vw, 2.4em);
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}
#home .homeCase a.link {
	position: absolute;
	left: 0;
}

/*スライド*/
#home .homeCase .slideBlock {
	position: relative;
    width: 65%;
	max-width: 1280px;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    /*overflow: hidden;*/
    margin: 0 0 0 auto;
}
#home .homeCase .slideBlock ul.slider2 {
    position: relative;
    width: 120%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
}
#case ul.list {
    position: relative;
    width: 103%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 -1.5% 20px;
}
#home .homeCase .slideBlock ul.slider2 li,
#case ul.list li {
    position: relative;
	width: auto;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
    margin: 0 20px;
	padding-bottom: 80px;
    box-sizing: border-box;
}
#case ul.list li {
    width: 30%;
    margin: 30px 1.5%;
}
#home .homeCase .slideBlock ul.slider2 li img {
    width: 100%;
    aspect-ratio: 4/3;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#case ul.list li figure {
    width: 100%;
    aspect-ratio: 4/3;
	display: block;
	overflow: hidden;
}
#case ul.list li figure img {
    width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .homeCase .slideBlock ul.slider2 li div,
#case ul.list li div {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	box-sizing: border-box;
}
#home .homeCase .slideBlock ul.slider2 li div h3,
#case ul.list li div h3 {
	width: 100%;
	min-height: 2.8em;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	overflow: hidden;
	padding: 10px 0;
	font-size: clamp(1.2em, 2vw, 1.8em);
	font-weight: bold;
    line-height: 1.4em;
}
#home .homeCase .slideBlock ul.slider2 li div span,
#case ul.list li div span {
	width: 100%;
	min-height: 2.8em;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 10px 0;
	font-size: 1.3em;
    line-height: 1.4em;
	color: #444;
	border-top: solid 1px #ccc;
	box-sizing: border-box;
}
#home .homeCase .slideBlock ul.slider2 li a.btn,
#case ul.list li a.btn {
	position: absolute;
	width: 200px;
	height: 50px;
	bottom: 0;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.2em, 2vw, 1.4em);
	font-weight: 500;
	line-height: 1em;
	letter-spacing: 0.1em;
}

/* Arrows */
#home .homeCase .slideBlock .slick-prev,
#home .homeCase .slideBlock .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 60px;
    display: block;
    z-index: 1000;
    padding: 0;
	margin: 0;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
	border-radius: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
	background: #fff;
}
#home .homeCase .slideBlock .slick-prev {
    left: -60px;
}
[dir="rtl"] .slick-prev {
    left: -60px;
    right: auto;
}
#home .homeCase .slideBlock .slick-next {
    left: -120px;
}
[dir="rtl"] .slick-next {
    left: -120px;
    right: auto;
}
#home .homeCase .slideBlock .slick-prev::before,
#home .homeCase .slideBlock .slick-next::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: 16px 16px;
}
#home .homeCase .slideBlock .slick-next::before {
    transform: rotate(180deg);
}
#home .homeCase .slideBlock .slick-prev:hover,
#home .homeCase .slideBlock .slick-next:hover {
    transition: all 200ms;
    opacity: 0.5;
}
#home .homeCase .slideBlock .slick-prev:focus,
#home .homeCase .slideBlock .slick-next:focus {
    /*outline: none;
    background: transparent;
    color: transparent;*/
}
#home .homeCase .slideBlock .slick-prev:hover:before,
#home .homeCase .slideBlock .slick-prev:focus:before,
#home .homeCase .slideBlock .slick-next:hover:before,
#home .homeCase .slideBlock .slick-next:focus:before {
    opacity: 1;
}
#home .homeCase .slideBlock .slick-prev.slick-disabled:before,
#home .homeCase .slideBlock .slick-next.slick-disabled:before {
    opacity: 0.25;
}
#home .homeCase .slideBlock .slick-prev:before,
#home .homeCase .slideBlock .slick-next:before {
    outline: none;
    font-family: "slick";
    font-size: 0;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dots */
#home .homeCase .slideBlock .slick-dotted.slick-slider {
    display: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout {
	position: relative;
    width: 100%;
	min-height: 760px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	padding: 120px 0;
	background: url("../images/top/about_bg.webp") no-repeat left center;
	background-size: 120%;
    box-sizing: border-box;
}
#home .homeAbout .block {
	height: 100%;
}
#home .homeAbout .homeAbout_text {
	width: 47%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .homeAbout .homeAbout_text h3,
#home .homeAbout .homeAbout_text p {
	width: 100%;
    display: block;
	color: #fff;
}
#home .homeAbout .homeAbout_text h3 {
	margin-bottom: 20px;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2.4em, 2.4vw, 3.6em);
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}
#home .homeAbout .homeAbout_text p {
	margin-top: 20px;
	font-size: clamp(1.2em, 2vw, 1.6em);
	font-weight: 500;
	line-height: 1.8em;
}
#home .homeAbout .homeAbout_menu {
	position: absolute;
	width: 280px;
	right: 0;
	bottom: 0;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .homeAbout .homeAbout_menu a {
	position: relative;
	width: 100%;
    height: 70px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 5px 0;
	padding: 0 10px 0 20px;
	font-size: clamp(1.2em, 1.2vw, 1.6em);
	line-height: 1.2em;
	transition: 0.3s;
	color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background: transparent;
	box-sizing: border-box;
}
#home .homeAbout .homeAbout_menu a::after {
	position: absolute;
	content: '';
	width: 12px;
	aspect-ratio: 1/1;
	right: 10px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(102%) contrast(102%);
}
#home .homeAbout .homeAbout_menu a img {
	position: absolute;
	width: 36px;
    aspect-ratio: 1/1;
	left: 10px;
	display: block;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(102%) contrast(102%);
}
#home .homeAbout .homeAbout_menu a span {
	position: relative;
}
#home .homeAbout .homeAbout_menu a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #43adef;
	box-sizing: border-box;
}
#home .homeAbout .homeAbout_menu a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}


/*□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□*/


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】お知らせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeNews {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
    padding: 120px 0 90px;
    box-sizing: border-box;
}

/*お知らせ一覧*/
.newsBlock {
    position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
#home .newsBlock {
    padding-left: 20%;
	box-sizing: border-box;
}
#news .newsBlock {
    margin: 40px auto 20px;
}
.newsBlock dl.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 20px 0;
	border-top: solid 1px #ccc;
    box-sizing: border-box;
}
#news .newsBlock dl.list:nth-last-child(1) {
	border-bottom: solid 1px #ccc;
}
#home .newsBlock dl.list:nth-last-child(2) {
	border-bottom: solid 1px #ccc;
}
.newsBlock dl.list dt {
	width: 320px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1.4em;
	line-height: 1.2em;
	color: #333;
}
#home .newsBlock dl.list dt {
	width: 100%;
}
.newsBlock dl.list dt::before,
.newsBlock .date::before {
	position: relative;
	width: 140px;
	height: 30px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 10px;
	font-size: 0.9em;
	color: #fff;
	border-radius: 15px;
	box-sizing: border-box;
}

/*ニュース*/
.newsBlock dl.list dt.news::before,
.newsBlock .date.news::before {
	content: 'News';
	background: #2967aa;
}

/*お知らせ*/
.newsBlock dl.list dt.info::before,
.newsBlock .date.info::before {
	content: 'Info';
	background: #0e2747;
}

/*トピックス*/
.newsBlock dl.list dt.topics::before,
.newsBlock .date.topics::before {
	content: 'Topics';
	background: #48682c;
}

/*イベント*/
.newsBlock dl.list dt.event::before,
.newsBlock .date.event::before {
	content: 'Event';
	background: #aa9120;
}

/*ブログ*/
.newsBlock dl.list dt.blog::before,
.newsBlock .date.blog::before {
	content: 'Blog';
	background: #4e3f31;
}

/*採用情報*/
.newsBlock dl.list dt.recruit::before,
.newsBlock .date.recruit::before {
	content: 'Recruit';
	background: #872532;
}

.newsBlock dl.list dd {
	width: calc(100% - 320px);
	display: inline-block;
	padding: 5px 0;
	font-size: 1.6em;
	line-height: 1.6em;
}
#home .newsBlock dl.list dd {
	width: 100%;
	padding: 10px 0 0;
}
.newsBlock dl.list dd a:hover {
	text-decoration: underline;
    color: #2e74e5;
}
.newsBlock a.link {
	margin: 20px 0 0 auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	position: relative;
	width: 100%;
	max-width: 1080px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px auto;
    box-sizing: border-box;
}
.commonContact .title {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(2.4em, 2vw, 3.6em);
	font-weight: 500;
	line-height: 1.2em;
	text-align: center;
}
.commonContact p {
	width: 100%;
    display: block;
	margin: 20px 0 40px;
	font-size: clamp(1.2em, 2vw, 1.6em);
    line-height: 1.6em;
	text-align: center;
}
.commonContact .tel,
.commonContact .web {
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
.commonContact .tel {
	width: 55%;
}
.commonContact .web {
	width: 45%;
}
.commonContact h4 {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-bottom: 10px;
	font-size: clamp(1.4em, 1.6vw, 1.6em);
	line-height: 1em;
}
.commonContact h4::before {
	content: '';
	width: 36px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.commonContact .tel h4::before {
	background-image: url("../images/icon_tel.svg");
}
.commonContact .tel a {
	width: auto;
	height: 70px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-family: "ador-hairline", sans-serif;
    font-size: clamp(2.4em, 3vw, 4em);
	font-weight: 500;
    line-height: 1em;
	box-sizing: border-box;
}
.commonContact .tel a::before {
	content: 'Tel.';
	width: auto;
	display: inline-block;
	font-size: 0.8em;
}
.commonContact .tel span {
	width: 100%;
    display: block;
	font-size: clamp(1.2em, 2vw, 1.4em);
    line-height: 1.2em;
	text-align: center;
}
.commonContact .web h4::before {
	background-image: url("../images/icon_web.svg");
}
.commonContact .web a.btn {
	width: 90%;
	height: 80px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	padding: 60px 0 240px;
	background: url("../images/footer_bg.webp") no-repeat center bottom #e4ecf4;
	background-size: 100%;
    box-sizing: border-box;
}
footer #page-top {
	position: fixed;
	width: 60px;
	right: 10px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: #0e2747;
}
footer .info {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0 60px;
	box-sizing: border-box;
}
footer .info .copy {
	width: 100%;
    display: block;
	margin-bottom: 40px;
	font-family: "ryo-text-plusn", serif;
	font-size: clamp(2.4em, 2.4vw, 3em);
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: 0.05em;
	text-align: center;
	font-feature-settings: "palt";
}
footer .info a.logo {
    width: 412px;
	display: block;
}
footer .bottom {
	position: absolute;
	width: 100%;
	bottom: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 25px 0;
	background: rgba(0,0,0,0.3);
}
footer .bottom .block {
	align-content: center;
	align-items: center;
}
footer .bottom ul {
	width: auto;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
}
footer .bottom ul li {
	display: block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 1em;
	color: #fff;
}
footer .bottom ul li+li {
	padding-left: 20px;
	border-left: solid 1px rgba(255,255,255,0.5);
}
footer .bottom ul li a {
	color: #fff;
}
footer .bottom ul li a:hover {
	text-decoration: underline;
    color: #00b3ea;
}
footer .bottom .copyright {
	width: auto;
    display: block;
	font: 300 1.2em/1em "avenir-lt-pro", sans-serif;
	color: #fff;
}
a.footer_logo_group {
	width: 180px;
    display: block;
	margin: 40px auto;
}
a.footer_logo_group img {
	width: 100%;
    display: block;
}
a.footer_logo_group:hover {
	transition: all .2s;
	opacity: 0.5;
}