html, body {
	overflow-x: hidden;
}
body{
	-webkit-text-size-adjust: 100%;
	font-family: 
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
    background-color: #fff;
	color: #181818;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
img {
	max-width: 100%;
	height: auto;
}
ul,ol {
	list-style-type: none;
	padding: 15px;
}


/* *,*:before,*:after {
    outline: 2px solid red!important;
} */

/* ==================================
全体ｃｓｓ
================================== */
.wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
:root {
	--mainColor : #FF7E4F;
	--subColor : #1C0805;
	--advertisement : #DF555C;
	--trip : #42B202;
	--publication : #545C9B;
	--mainTxt : #333;

	--menu-width: 360px;
}

.sp_br {
	display: none;
}
@media screen and (max-width:765px) {
	.sp_br {
		display: block;
	}
	.sp_br2 {
		display: none;
	}
}

/* =================================
ヘッダー
================================== */
/* 上メニュー */
.header-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 30px;
	border-bottom: 3px solid var(--mainColor);
	background: #fff;
	z-index: 1000;
}
.header-top::before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 50%;
	height: 3px;
	background: var(--subColor);
}
.header-top_inner {
	display: inline-flex;
	justify-content: space-around;
	width: 100%;
	align-items: center;
}
.header-top_inner a img {
	max-width: 200px;
	width: 100%;
	height: auto;
}
.header-top_inner ul {
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: center;
}
.header-top_inner ul li {
	border-left:5px solid var(--mainColor);
	padding:2px 8px;
	font-size: clamp(18px, 1.375vw, 22px);
}
.header-top_inner ul li:first-child {
	border-left:5px solid var(--advertisement);
}
.header-top_inner ul li:nth-child(2) {
	border-left:5px solid var(--trip);
}
.header-top_inner ul li:nth-child(3) {
	border-left:5px solid var(--publication);
}
.header-top_inner ul li a {
	color: #333;
	text-decoration: none;
}
@media screen and (max-width:1200px) {
	.header-top_inner a img {
		max-width: 200px;
		width: 90%;
		height: auto;
	}
}
@media screen and (max-width:1000px) {
	.header-top {
		padding: 25px 30px;
	}
	.header-top_inner {
		display: flex;
		justify-content: center;
	}
	.header-top_inner a {
		display: block;
		text-align: left;
	}
	.header-top_inner a img {
		display: block;
	}
	.header-top_inner a img {
		width: 80%;
	}
	ul.header-top_list {
		display: none;
	}
}

/* ================グローバルメニュー */
body.menu-open {
	overflow: hidden;
}
.menu-tab {
	position: fixed;
	top: 30%;
	right: 0;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	text-orientation: mixed;

	padding: 60px 18px;
	background: var(--mainColor);
	color: #fff;
	font-size: clamp(16px, 2vw, 20px);
	letter-spacing: 0.1em;
	border-radius: 15px 0 0 15px;

	cursor: pointer;
	z-index: 1001;
	transition: transform 0.4s ease-out, background 0.3s;
}
.menu-tab:hover {
	background: #333;
}
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;

	transition: opacity 0.3s ease;
	z-index: 999;
}
.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.global-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: var(--menu-width);
	max-width: 90%;
	height: 100%;
	background: #2b2b2bd2;
	color: #fff;
	transform: translateX(100%);
	transition: transform 0.4s ease-out;
	z-index: 999;
	padding: 200px 30px;
	box-sizing: border-box;
}
.global-menu.active {
	transform: translateX(0);
}
.global-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.global-menu li {
	margin-bottom: 20px;
	font-size: clamp(20px, 1.875vw, 30px);
}
.global-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	letter-spacing: 0.05em;
	transition: opacity 0.3s;
	font-size: clamp(20px, 1.875vw, 30px);
}
ul.child-menu li {
	margin-bottom: 0;
	margin-left: 20px;
}
ul.child-menu li a {
	font-size: 16px;
}

.global-menu a:hover {
	opacity: 0.6;
}
.menu-close {
	position: absolute;
	top: 152px;
	right: 20px;
	font-size: 20px;
	cursor: pointer;
}

body.menu-open .menu-tab {
	transform: translateY(-50%) translateX(calc(-1 * var(--menu-width)));
	background: #333;
}
@media screen and (max-width:1200px) {
	.menu-tab {
		padding: 60px 10px;
		border-radius: 10px 0 0 10px;
	}
}
@media (max-width: 1000px) {
	.menu-tab {
		display: none;
	}
	.global-menu {
		width: 100%;
	}
	.menu-close {
		display: none;
	}
	.global-menu {
		padding: 150px 30px;
	}
}
/* ===============================
	ハンバーガー（初期は非表示） */
.hamburger {
	display: none;

	position: fixed;
	top: 40px;
	right: 30px;
	width: 30px;
	height: 22px;

	z-index: 1002;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--mainColor);
	margin-bottom: 6px;
	transition: 0.3s;
}
body.menu-open .hamburger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background: #333;
}
body.menu-open .hamburger span:nth-child(2) {
	opacity: 0;
}
body.menu-open .hamburger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background: #333;
}
@media (max-width: 1000px) {
	.menu-tab {
		display: none;
	}
	.hamburger {
		display: block;
	}
	.global-menu {
		width: 90%;
		max-width: 100%;
	}
}


/* =================================
フッター
================================== */
.footer{
    margin-top: auto;
	text-align: center;
}
.footer_inner h3 {
	background-color: var(--mainColor);
	color: #fff;
	max-width: 400px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 30px 30px 0 0;
	padding: 1em 1.5em;
	font-size: clamp(20px, 1.5625vw, 25px);
}
.footer_inner-cont {
	background-color: #ebebeb;
	padding: 100px 10px 50px;
}
.footer_inner-cont  section.footer_inner-contFlex {
	max-width: 1400px;
	width: 100%;
	height: auto;
	margin: 0 auto;

	display: flex;
	gap: 30px;
	justify-content: center;
}
.footer_inner-contactItem1 {
	flex-basis: 40%;
	max-width: 400px;
	width: 100%;
	height: auto;
}
.footer_inner-contactItem1 h4 {
	font-size: 20px;
	text-align: left;
	margin-bottom: 0;
}
.footer_inner-contactItem2 {
	flex-basis: 45%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 10px;
}
.footer_inner-contactItem2 a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	text-decoration: none;
	color: #181818;
	height: auto;

	border: 2px solid #181818;
	border-radius: 20px;
	padding: 1em .3em;
	transition: .5s;
}
.footer_inner-contactItem2 a img {
	width: 80px;
}
.fottxt_hover {
	display: none;
}
.footer_inner-contactItem2 a:hover .fottxt_default {
	display: none;
}
.footer_inner-contactItem2 a:hover .fottxt_hover {
	display: inline;
	color: #fff;
}
/* 色変更 */
.footer_inner-contactItem2 a.fot_com:hover {
	background-color: var(--advertisement);
	border: 2px solid var(--advertisement);
}
.footer_inner-contactItem2 a.fot_trip:hover {
	background-color: var(--trip);
	border: 2px solid var(--trip);
}
.footer_inner-contactItem2 a.fot_book:hover {
	background-color: var(--publication);
	border: 2px solid var(--publication);
}
.footer_inner-contactItem2 a.fot_contact:hover {
	background-color: var(--mainColor);
	border: 2px solid var(--mainColor);
}
/* 色変更 */

.footer_inner-contIndex {
	background-color: var(--mainColor);
	color: #fff;
	font-weight: light;
	text-align: left;
}
.footer_inner-contIndex-flex {
	padding: 50px 10px;
	display: flex;
	justify-content: center;
	gap: 50px;
	line-height: 1.5em;
	font-size: 18px;
}
.footer_inner-addres:first-child p {
	padding-bottom: .5em;
}
.footer_inner-contIndex-flex a {
	text-decoration: none;
	color: #fff;
}
.footer_inner-siteindex p {
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
}
.footer_inner-siteindex ul {
	display: flex;
	gap: 20px;
	padding: 0;
	flex-wrap: wrap;
}
.footer_inner-siteindex ol {
	padding: 0;
	font-size: 14px;
}
.footer_inner-contIndex small {
	display: block;
	text-align: center;
	padding-bottom: 5px;
}

@media screen and (max-width:1300px) {
	.footer_inner-contactItem2 {
		flex-basis: 50%;
	}
}
@media screen and (max-width:765px) {
	.footer_inner-cont {
		padding: 50px 10px;
	}
	.footer_inner-contactItem1 h4 {
		text-align: center;
	}
	.footer_inner-cont  section.footer_inner-contFlex {
		flex-direction: column;
	}
	.footer_inner-contactItem2 a {
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}
	.footer_inner-contIndex-flex {
		flex-direction: column;
	}
}

/* =================================
メイン
================================== */
/* トップスライド */
.top-slider {
	position: relative;
	width: 100%;
	height: 1080px;
	overflow: hidden;
}
.top-slide {
	position: absolute;
	height: 100%;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease;
}
.top-slide.active {
	opacity: 1;
}
.top-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}
.top-sp {
	display: none;
}
@media screen and (max-width:1200px) {
	.top-slider {
		height: 900px;
	}
}
@media (max-width: 1000px) {
	.top-pc {
		display: none;
	}
	.top-sp {
		display: block;
	}
	.top-slider {
		height: 95vh;
	}
}
/* ===================================== */
/* 共通 */
.main-wrap-cont {
	margin: 30px 0;
}
.cont-ttl_wrap {
	position: relative;
	border-bottom: 3px solid var(--subColor);
}
.cont-ttl_wrap::before {
	content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--mainColor);
}
.cont-ttl {
	position: relative;
	font-size: clamp(25px, 2.5vw, 40px);
	padding: 0 20px;
	text-align: left;
}
.cont-ttl span {
	color: var(--mainColor);
}
.cont-ttl::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 5%;
	color: #5a5a5a33;
	font-size: clamp(16px, 1.875vw, 30px);
	font-style: italic;
}

/* hero */
.top-hero {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 150px 10px 0;

	background-image: url('../images/Right-o.png');
	background-size: 30%;
	background-position: top 20% left 0;
	background-repeat: no-repeat;

	text-align: center;
}
.top-hero_inner {
	display: inline-block;
	text-align: left;
}
.top-hero_inner h1 {
	font-size: clamp(30px, 5vw, 50px);
	letter-spacing: 5px;
}
.top-hero_inner h1 span {
	color: var(--mainColor);
}
.top-hero_inner p {
	margin: 50px 0;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 3em;
}
.top-hero_inner figure {
	max-width: 850px;
	margin: 0 auto;
}
@media screen and (max-width:765px) {
	.top-hero {
		padding: 50px 10px 0;
		background-size: 60%;
		background-position: top 20% right 0;
	}
	.top-hero_inner p {
		margin: 30px 0;
		line-height: 2em;
	}
}

/* 強み */
.strength_wrap {
	max-width: 1200px;
	width: 100%;
	height: auto;
	margin: 150px auto 0;
	padding: 0 10px;
	text-align: center;
}
.strength_inner {
	margin: 50px 10px;
}
.strength_inner figure.strength_map {
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.strength_txt {
	display: inline-block;
	text-align: left;
}
.strength_txt h2 {
	font-size: clamp(25px, 4vw, 40px);
	margin-top: 30px;
}
.strength_txt p {
	margin: 50px 0;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 3em;
}
.strength_inner figure.strength-cap {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
/* ---------------------------- */
.logo-slider {
	overflow: hidden;
	max-width: 900px;
	width: 100%;
	margin: 50px auto 0;
	text-align: left;
}
.logo-slider h3 {
	padding-bottom: 1em;
}
.logo-slider small {
	font-weight: 10px;
}
.logo-track {
	display: flex;
	width: max-content;
	gap: 1em;
	animation: scroll 20s linear infinite;
}
.logo-list {
	display: flex;
	gap: 50px;
}
.logo-list img {
	height: 60px;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media screen and (max-width:765px) {
	.strength_wrap {
		margin: 100px auto 0;
	}
	.strength_inner p {
		margin: 30px 0;
		line-height: 2em;
	}

	.logo-list img {
		height: 50px;
	}
}

/* 事業案内 */
.Binformation-wrap {
	margin: 150px 0 0;
	text-align: center;
}
.Binformation-wrap div.cont-ttl_wrap {
	max-width: 1200px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0 10px;
}

.Binformation-cont_wrap {
	margin: 100px 0;
	display: flex;
	flex-direction: column;
	gap: 200px;
}
.Binformation-cont {
	max-width: 1500px;
	width: 100%;
	height: auto;
	margin-right: auto;
	padding: 30px 30px 30px 0;
	border-radius: 0 30px 30px 0;
	text-align: center;
	box-shadow: 10px 5px 5px rgb(194, 194, 194);

	background-image: url(../images/Right-g.png);
    background-size: 20%;
    background-repeat: no-repeat;
	background-position: right 5% top;
}
.Binformation-contFlex {
	display: flex;
	align-items: top;
	gap: 50px;
}
.Binformation-cont:nth-child(even) {
	border-radius: 30px 0 0 30px;
	box-shadow: -10px 5px 5px rgb(194, 194, 194);
	margin-right: 0;
	margin-left: auto;
	padding: 40px 0 40px 40px;

	background-position: left 40% top;
}
.Binformation-cont:nth-child(even) .Binformation-contFlex {
	flex-direction: row-reverse;
} 
/* .Binformation-cont:nth-child(even) .Binformation-cont_txt h2 {
	margin-left: auto;
}
.Binformation-cont:nth-child(even) .Binformation-cont_txt p.Binformation-cont_txtEN,
.Binformation-cont:nth-child(even) .Binformation-cont_txt h1 {
	text-align: right;
} */

.Binformation-contFlex figure {
	flex-basis: 50%;
	width: 100%;
	margin: 0;
}
.Binformation-cont_txt {
	flex-basis: 50%;
	text-align: left;
}
.Binformation-cont_txt h2 {
	color: #fff;
	width: 260px;
	padding: 5px 0;
	text-align: center;
	font-size: clamp(20px, 1.875vw, 30px);
	margin-bottom: 0;
}
p.Binformation-cont_txtEN {
	font-size: clamp(20px, 1.5625vw, 25px);
	margin-top: 0;
}
.Binformation-cont_txt h1 {
	font-size: clamp(30px, 4.0vw, 40px);
	margin: 30px 0;
}
.Binformation-cont_txt p {
	font-size: clamp(18px, 1.25vw, 20px);
	line-height: 2em;
}
.Binformation-cont_txt a {
	display: block;
	text-align: center;
	font-size: clamp(16px, 1.25vw, 20px);
	margin-top: 1em;
	background-color: #fff;
	width: 250px;
	margin-left: auto;
	border-radius: 100vh;
	padding: 10px;
	text-decoration: none;

	position: relative;
	letter-spacing: 0.1em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	overflow: hidden;

}
.Binformation-cont_txt a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: -1;
	transition: width 1s ease;
	border-radius: 100vh;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
	transform: translateX(-98%) translateY(-25%) rotate(45deg);

}
.Binformation-cont_txt a:hover::before {
	width: 100%;
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.Binformation-cont_txt a:hover {
	color: #fff;
}

/* 色変更 */
.top-com h2 {
	background-color: var(--advertisement);
}
.top-com p.Binformation-cont_txtEN {
	color: #f1999d;
}
.top-com a {
	border: var(--advertisement) 2px solid;
	color: var(--advertisement);
}
.top-com a:hover {
	background-color: var(--advertisement);
}
.top-trip h2 {
	background-color: var(--trip);
}
.top-trip p.Binformation-cont_txtEN {
	color: #acdf8f;
}
.top-trip a {
	border: var(--trip) 2px solid;
	color: var(--trip);
}
.top-trip a:hover {
	background-color: var(--trip);
}
.top-book h2 {
	background-color: var(--publication);
}
.top-book p.Binformation-cont_txtEN {
	color: #c0c5ee;
}
.top-book a {
	border: var(--publication) 2px solid;
	color: var(--publication);
}
.top-book a:hover {
	background-color: #545C9B;
}
/* 色変更 */

.Binformation-slider {
	overflow: hidden;
	width: 100%;
	margin: 50px auto 0;
}
.Binformation-track {
	display: flex;
	width: max-content;
	animation: scroll 50s linear infinite;
}
.Binformation-img {
	display: flex;
}
.Binformation-img img {
	height: 300px;
}
/* アニメーション */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* 広告事業 */
.com-swiper {
	max-width: 1200px;
	width: 100%;
	margin: 50px auto 0;
	overflow: hidden;
}
.com-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.com-swiper .swiper-slide img {
	width: 300px;
	height: auto;
	padding: 10px 0;
}
.com-swiper h2 {
	text-align: left;
	padding: 1em 20px 5px;
	border-bottom: 1px solid var(--advertisement);
}
.com-swiper h2 span {
	color: var(--advertisement);
}
.com-swiper h2 a {
    width: fit-content;
    text-align: center;
    text-decoration: none;
    color: var(--advertisement);
	font-size: 18px;
	padding-left: 2em;
}

/* 出版事業 */
.Binformation-contBook-item {
	width: 100%;
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.Binformation-contBook-item figure {
	max-width: 320px;
	width: 100%;
}


@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media screen and (max-width:1200px) {
	.Binformation-contFlex figure {
		flex-basis: 60%;
	}
	.Binformation-cont_txt h1 {
		margin: 25px 0;
	}
	.Binformation-contFlex {
		gap: 20px;
	}
	.Binformation-cont {
		width: 85%;
	}
	.Binformation-cont_txt {
		flex-basis: 80%;
	}
	.Binformation-cont_wrap {
		gap: 150px;
	}
	.Binformation-cont:nth-child(even) {
		background-position: left 50% top;
	}
	.Binformation-cont_txt a {
		/* padding: 5px; */
	}
	.Binformation-cont_txt a {
		width: 200px;
	}
	.com-swiper {
		max-width: 900px;
	}
	.com-swiper .swiper-slide img,
	.Binformation-contBook-item figure {
		width: 230px;
	}
	.Binformation-img img {
		height: 200px;
	}
	.Binformation-cont_txt h2 {
		padding: 13px 0;
	}
	.com-swiper {
		margin: 0 auto 20px;
	}
	.Binformation-contBook-item {
		margin: 0 auto 20px;
	}
}
@media screen and (max-width:765px) {
	.Binformation-cont {
		width: 95%;
	}
	.Binformation-contFlex {
		flex-direction: column;
	}
	.Binformation-cont:nth-child(even) .Binformation-contFlex {
		flex-direction: column;
	} 
	.Binformation-wrap  {
		margin: 100px auto 0;
	}
	.Binformation-cont_wrap {
		gap: 80px;
	}
	.Binformation-img img {
		height: 200px;
	}
	.Binformation-cont_txt p,
	.Binformation-cont_txt h1 {
		padding: 0 10px;
	}
	.Binformation-cont:nth-child(even) .Binformation-contFlex .Binformation-cont_txt h1,
	.Binformation-cont:nth-child(even) .Binformation-contFlex .Binformation-cont_txt p.Binformation-cont_txtEN {
		text-align: right;
	}
	.Binformation-cont:nth-child(even) .Binformation-contFlex .Binformation-cont_txt h2 {
		margin-left: auto;
	}
	.Binformation-cont:nth-child(even) .Binformation-contFlex .Binformation-cont_txt a {
		margin-left: 0;
	}
	.com-swiper .swiper-slide img {
		width: 100%;
		height: auto;
	}
	.Binformation-contBook-item figure {
		max-width: 100%;
		margin: 0;
	}

	.Binformation-cont {
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: right center;
	}
	.Binformation-cont:nth-child(even) {
		background-position: left 10% center;
	}

}


/* =============================================================================
各事業
============================================================================= */
.Business-wrapper {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
.Business-wrap-cont {
	max-width: 1400px;
	width: 100%;
	margin: 120px auto 0;
	padding: 0 10px;
}
.Business-top_wrap {
	margin-top: 100px;
	display: flex;
	align-items: center;
}
.Business-top_wrap figure {
	flex-basis: 55%;
}
.Business-top_txt {
	text-align: center;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.Business-top_txt p {
	font-size: clamp(18px, 2.5vw, 25px);
}
.Business-top_txt h2 {
	width: 400px;
	margin: 0 auto;
	color: #fff;
	padding: 10px 0;
	font-size: clamp(25px, 3.5vw, 35px);
}
/* 色調整 */
.advertising-color p {
	color: var(--advertisement);
}
.publishing-color p {
	color: var(--publication);
}
.company-color p {
	color: var(--mainColor);
}
.advertising-color h2 {
	background-color: var(--advertisement);
}
.publishing-color h2 {
	background-color: var(--publication);
}
.company-color h2 {
	background-color: var(--mainColor);
}

/* 色調整 */

.Business-top_txt figure {
	max-width: 400px;
	width: 100%;
	margin-top: 100px;
}
@media screen and (max-width:765px) {
	.Business-top_wrap {
		margin-top: 80px;

		flex-direction: column;
		gap: 1em;
	}
	.Business-top_txt {
		align-items: start;
	}
	.Business-top_txt p {
		text-align: left;
	}
	.Business-top_txt figure {
		margin: 0 auto;
		width: 80%;
	}
	
}

.advertising-hero,
.publishing-hero,
.company-hero,
.recruit-hero {
	padding: 130px 0;

	background-image: url('../images/Right-o.png');
	background-size: 30%;
	background-position: top 20% left 0;
	background-repeat: no-repeat;

	text-align: center;
}
.advertising-hero_inner,
.publishing-hero_inner,
.company-hero_inner,
.recruit-hero_inner {
	display: inline-block;
	text-align: left;
}
.advertising-hero_inner h1,
.publishing-hero_inner h1,
.company-hero_inner h1,
.recruit-hero_inner h1 {
	font-size: clamp(30px, 5vw, 50px);
}
.advertising-hero_inner p,
.publishing-hero_inner p,
.company-hero_inner p,
.recruit-hero_inner p {
	margin: 50px 0;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 3em;
	letter-spacing: 3px;
}
@media screen and (max-width:765px) {
	.Business-wrap-cont {
		margin: 50px auto;
	}
	.advertising-hero,
	.publishing-hero,
	.company-hero,
	.recruit-hero {
		padding: 50px 10px;
		background-size: 60%;
		background-position: top 20% right 0;
	}
	.advertising-hero_inner p,
	.publishing-hero_inner p,
	.company-hero_inner p,
	.recruit-hero_inner p {
		margin: 30px 0;
		line-height: 2em;
	}
}


.advertising_wrap,
.publishing_wrap,
.company_wrap,
.recruit_wrap {
	max-width: 1400px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.advertising_inner,
.publishing_inner,
.advertising-achievements_inner {
	margin: 50px 20px 100px;
}

/* スワイプ */
.Business-wrap-cont-swipe {
	position: relative;
	max-width: 1000px;
	margin: 150px auto;
}
.Business-wrap-cont-swipe p {
	text-align: center;
	padding: 1em;
	font-size: 14px;
}
.Business-swipe_txt {
	display: flex;
	gap: 20px;
	align-items: center;
	padding-bottom: 20px;
}
.Business-swipe_txt a {
	width: 200px;
	height: auto;
	padding: .5em;
	background-color: var(--advertisement);
	text-align: center;
	border-radius: 100vh;
	color: #fff;
	text-decoration: none;
}

.lower-swiper {
	width: 100%;
	margin: 0; 
}
.lower-swiper .swiper-slide img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	padding: 0 10px;
}
/* 矢印 */
.lower-prev,
.lower-next {
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	z-index: 2;

	width: 60px;
	height: 60px;

	color: #333;
}
.lower-prev::after {
	content: "‹";
	font-size: 60px;
}
.lower-next::after {
	content: "›";
	font-size: 60px;
}
.lower-prev { left: -50px; }
.lower-next { right: -50px; }

@media screen and (max-width:765px) {
	.Business-wrap-cont-swipe {
		margin: 80px auto;
	}
	.lower-prev,
	.lower-next {
		display: none;
	}
	.advertising_inner,
	.publishing_inner,
	.advertising-achievements_inner {
		margin: 50px 0 100px;
	}
}

/* 電話番号の部分 */
.Business-contact {
	text-align: center;
	max-width: 1000px;
	width: 100%;
	margin: 50px auto;
}
.advertising-contact {
	border: 1px solid var(--advertisement);
}
.publishing-contact {
	border: 1px solid var(--publication);
}

.Business-contact h4 {
	padding: 1em;
	color: #fff;
}
.advertising-contact h4 {
	background-color: var(--advertisement);
}
.publishing-contact h4 {
	background-color: var(--publication);
}

.Business-contact p {
	padding: 20px 10px;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: bold;
}
.advertising-contact p {
	color: var(--advertisement);
}
.publishing-contact p {
	color: var(--publication);
}

.Business-contact h2 {
	max-width: 500px;
	width: 100%;
	padding: 15px 10px;
	margin: 0 auto 20px;
	font-size: clamp(25px, 4vw, 40px);
	border-radius: 100vh;
	text-align: center;
}
.Business-contact h2::before {
	content: '\f095';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 15px;
	margin-right: 10px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
}
.advertising-contact h2 {
	background-color: var(--advertisement);
	color: #fff;
}
.advertising-contact h2::before {
	color: var(--advertisement);
}
.publishing-contact h2 {
	background-color: var(--publication);
	color: #fff;
}
.publishing-contact h2::before {
	color: var(--publication);
}

@media screen and (max-width:765px) {
	.Business-contact h2 {
		width: 95%;
	}
}

a.link-btn {
	display: block;
	text-align: center;
	max-width: 450px;
	width: 100%;
	height: auto;
	margin: 100px auto;
	background-color: #fff;
	border: 2px solid var(--mainColor);
	border-radius: 100vh;
	padding: 1em 0;
	color: var(--mainColor);
	text-decoration: none;
	font-size: clamp(16px, 2vw, 20px);
}

@media screen and (max-width:765px) {
	a.link-btn {
		margin: 50px auto;
	}
}

/* =======================================================広告事業 */
.biz-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1200px;
	margin: 0 auto;
}
.biz-item {
	background: #ffffff;
	border: 1px solid #858585;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}

/* 上2つ */
.biz-item.grid-big {
	grid-column: span 2;
	display: flex;
}
.biz-item.grid-big h3 {
	margin-bottom: 10px;
	color: #858585;
	font-size: clamp(25px, 2.5vw, 40px);
	text-align: center;
}
.biz-item.grid-big h3 span {
	color: var(--advertisement);
}
.biz-item.grid-big .grid-flex {
	display: flex;
	gap: 20px;
}
.biz-item.grid-big .grid-txt {
	flex: 2;
	font-size: clamp(16px, 1.25vw, 20px);
	line-height: 2em;
}
.biz-item.grid-big figure {
	flex: 1.5;
}
.biz-item.grid-big img {
	width: 100%;
}

/* 下4つ */
.biz-item.grid-small h4 {
	margin-bottom: 10px;
	color: #858585;
	font-size: clamp(20px, 3vw, 30px);
	text-align: center;
}
.biz-item.grid-small h4 span {
	color: var(--advertisement);
}
.biz-item.grid-small p {
	font-size: clamp(16px, 1.25vw, 20px);
	line-height: 2em;
}
.biz-item.grid-small figure {
	margin-top: 20px;
}
.biz-item.grid-small img {
	width: 60%;
	margin: 0 auto;
}

/* hover切り替え */
.grid-txt-hover {
	display: none;
}
ul.grid-txt-hover li {
	list-style-position: outside;
	list-style-type: square;
	padding: 0!important;
}
.biz-item.grid-big:hover .grid-txt-default,
.biz-item.grid-small:hover .grid-txt-default {
	display: none;
}
.biz-item.grid-big:hover .grid-txt-hover,
.biz-item.grid-small:hover .grid-txt-hover {
	display: block;
}
.biz-item.grid-big:hover,
.biz-item.grid-small:hover {
	background-color: #f3d1d3;
	border: 1px solid var(--advertisement);
}
.biz-item.grid-big:hover h3,
.biz-item.grid-small:hover h4 {
	color: var(--advertisement);
}
.biz-item.grid-big:hover h3 span,
.biz-item.grid-small:hover h4 span {
	color: var(--advertisement);
}
@media screen and (max-width:1200px) {
	.biz-grid {
		max-width: 1000px;
	}
}
@media (max-width: 765px) {
	.biz-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.biz-item {
		justify-content: space-between;
	}
	.biz-item.grid-big {
		grid-column: span 2;
		flex-direction: column;
	}
	.biz-item.grid-small img {
		width: 100%;
		margin: 0;
	}

}

/* =======================================================出版事業 */
.publishing_inner p.publishing_hero {
	font-size: clamp(16px, 1.8vw, 18px);
	line-height: 2em;
}
.publishing_tab {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
	width: 100%;
	margin: 50px auto;
}
.publishing_tab > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .5em 1em;
    border-radius: 20px 20px 0 0;
    background-color: #e4e4e4;
    color: #333;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
	font-size: clamp(18px, 2vw, 20px);
}
.publishing_tab input {
    display: none;
}
.publishing_tab > div {
    display: none;
    width: 100%;
    padding: 2em 1em;
    background-color: #fff;
	border-top: var(--publication) 5px solid;
	text-align: center;
}
.publishing_tab label:has(:checked) {
    background-color: var(--publication);
    border-radius: 20px 20px 0 0;
	color: #fff;
}
.publishing_tab label:has(:checked) + div {
    display: block;
}

.corporateB-hero {
	width: 100%;
	display: inline-block;
	text-align: left;
	padding: 130px 0;
    background-image: url(../images/corporateB-back.png);
    background-size: 45%;
    background-position: top right;
    background-repeat: no-repeat;
}
.personalP-wrapper div.corporateB-hero {
    background-image: url(../images/personalP-back.png);
}
.corporateB-hero h2 {
	font-size: clamp(30px, 5vw, 50px);
	margin-bottom: 20px;
}
.corporateB-hero p {
	font-size: clamp(16px, 2.5vw, 20px);
	line-height: 2em;
}
.corporateB-txt:last-child p {
	margin-top: 1em;
}
.corporateB-list,
.publishing-flow,
.publishing-sonota {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 0 auto 150px;
}
.corporateB-list h2,
.publishing-flow h2,
.publishing-sonota h2 {
	text-align: left;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid #ccc;
	margin: 30px 10px;
}
.feature-item {
	position: relative;
	padding: 40px 20px;
	text-align: center;
	border: 1px solid #ccc;
}
.feature-item div.num {
	position: absolute;
	top: 0;
	left: 0;
	background: #999;
	color: #fff;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-item div.num p {
	vertical-align: middle;
	font-weight: bold;
	font-size: 20px;
	margin: 0;
}
.feature-item figure {
	margin: 20px 0;
}
.feature-item img {
	max-width: 250px;
	width: 100%;
	margin: 0 auto;
}
.feature-item h3 {
	font-size: clamp(18px, 2.5vw, 25px);
	margin: 20px 0 10px;
}
.feature-item p {
	font-size: 16px;
	line-height: 1.8;
}
.feature-flex {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.feature-flex figure {
	flex: 1;
}
.feature-txt {
	flex: 1;
}
@media (max-width: 765px) {
	.corporateB-hero {
		padding: 130px 0 100px;
	}
	.feature-grid {
		grid-template-columns: 1fr;
	}
	.corporateB-list,
	.publishing-flow,
	.publishing-sonota {
		margin: 0 auto 100px;
	}
}

/* フローチャート */
.publishing-flow {
	text-align: center;
}
.publishing-flow-item {
	margin: 40px 0;	
}
.publishing-flow-head {
	display: flex;
	align-items: center;
	gap: 20px;
}
.publishing-num {
	max-width: 40px;
	width: 100%;
	height: 40px;
	background: #6c6fb3;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.publishing-flow-separator {
	text-align: center;
	margin: 60px 0 30px;
	position: relative;
}
.publishing-flow-separator::before,
.publishing-flow-separator::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background: #333;
}
.publishing-flow-txt {
	text-align: left;
}
.publishing-flow-separator::before { left: 0; }
.publishing-flow-separator::after { right: 0; }

.publishing-flow-separator span {
	background: #fff;
	color: #6c6fb3;
	text-align: center;
}
.publishing-flow-chat {
	margin-top: 20px;
}
.publishing-chat-box {
	background: #fff;
	padding: 15px;
	max-width: 450px;
	text-align: left;
}
.publishing-chat-box {
	position: relative;
	background: #d2d6f8;
	padding: 15px 20px;
	max-width: 400px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.publishing-chat-box::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -8px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid #d2d6f8;
}
.publishing-flow-flex {
	display: flex;
	/* flex-direction: column; */
	justify-content: space-between;
	gap: 30px;
}
.publishing-flow-chat {
	flex: 1;
}
.publishing-flow-head {
	flex-shrink: 0;
}
@media screen and (max-width:765px) {
	.publishing-flow-flex {
		flex-direction: column;
	}
	.publishing-chat-box::after {
		/* top: -32%;
		left: 20px;
		border: 8px solid transparent;
		border-bottom: 12px solid #d2d6f8; */
		display: none;
	}
	.publishing-flow-separator::before,
	.publishing-flow-separator::after {
		width: 17%;
	}
	.publishing-flow-flex {
		align-items: flex-start;
	}
}

.publishing-arrows {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.publishing-arrows span {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	line-height: 1;
	width: 3em;
	height: 3em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-15%) rotate(135deg);
	animation: arrowMove 1.5s infinite;
}
.publishing-arrows span:nth-child(1) { color: #545C9B; animation-delay: 0s; }
.publishing-arrows span:nth-child(2) { color: #6e76b1; animation-delay: 0.2s; }
.publishing-arrows span:nth-child(3) { color: #c2c6e6; animation-delay: 0.4s; }

@keyframes arrowMove {
	0% {
		opacity: 0;
		transform: translateY(-10px) rotate(135deg);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(10px) rotate(135deg);
	}
}

@media screen and (max-width:765px) {
	.publishing-arrows span {
		width: 2em;
		height: 2em;
	}
}

.simple-flow-wrap {
	max-width: 800px;
	margin: 0 auto;
}
.simple-flow-item {
	margin: 15px 0;
}
.simple-flow-head {
	display: flex;
	align-items: center;
	gap: 20px;
}
.simple-num {
	width: 30px;
	height: 30px;
	background: #b1b1b1;
	color: #fff;
	font-weight: bold;
	font-size: 16px;

	display: flex;
	align-items: center;
	justify-content: center;
}
.simple-flow-head p {
	font-size: 16px;
	margin: 0;
}

.publishing-sonota_container {
	margin: 30px 0;
	padding: 0.25em 0.5em;
	background: transparent;
	border-left: solid 5px #6c6fb3;
	text-align: left;
}
.publishing-sonota_container h3 {
	padding-bottom: 10px;
}
.publishing-sonota_container p {
	font-size: 16px;
	line-height: 2em;
}

/* =============================================================================
会社概要
============================================================================= */
.company_wrap {
	display: flex;
	flex-direction: column;
	gap: 100px;
}
.History-table {
	width: 100%;
	border-collapse: separate;
	margin: 30px 0;
	border-spacing: 5px 0;
}
.History-table tr.table-last th,
.History-table tr.table-last td {
	color: #d1d1d1;
}
.History-table th,
.History-table td {
	padding: 16px 0;
	text-align: left;
	border-bottom: 1px solid #ddd; /* ← 下線だけ */
	vertical-align: top;
}
.History-table th {
	width: 20%;
	font-weight: 600;
	color: #333;
}
.History-table td {
	width: 70%;
	color: #555;
}

.Overview-table {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 30px auto;
	border-collapse: separate;
	border-spacing: 5px;
}
.Overview-table th,
.Overview-table td {
	padding: 16px 0;
	text-align: left;
	vertical-align: top;
}
.Overview-table th {
	width: 20%;
	font-weight: 600;
	color: #333;
	background-color: #dbdbdb;
	text-align: center;
}
.Overview-table td {
	width: 70%;
	color: #555;
	background-color: #f7f7f7;
	padding-left: 10px;
}
.Overview-table td ul {
	margin: 0;
	padding-top: 10px;
}
.Overview-table td ul li {
	padding-bottom: 10px;
}
.Overview-table td ul li::before {
	content: "\025cb";
	padding-right: 2px;
}
@media screen and (max-width: 768px) {
	.Overview-table {
		border-spacing: 0;
	}
	.Overview-table th,
	.Overview-table td {
		display: block;
		width: 100%;
	}
	.Overview-table th {
		padding-bottom: 4px;
		border-bottom: none;
	}
	.Overview-table td {
		padding-top: 0;
		border-bottom: 1px solid #ddd;
	}
}

.Associated-linkwrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 50px 0 100px;
}
.Associated-linkwrap a {
	margin: 0;
}
@media screen and (max-width:765px) {
	.Associated-linkwrap {
		display: flex;
		flex-direction: column;
	}
}

/* =============================================================================
リクルート
============================================================================= */
.recruit-top_wrap {
	margin-top: 100px;
	display: flex;
	align-items: center;
}
.recruit-sp {
	display: none;
}
@media screen and (max-width:765px) {
	.recruit-top_wrap {
		margin-top: 20px;
	}
	.recruit-pc {
		display: none;
	}
	.recruit-sp {
		display: block;
	}
}

.recruit-table {
	width: 100%;
	border-collapse: separate;
	margin: 30px 0;
	border-spacing: 5px 0;
}
.recruit-table th,
.recruit-table td {
	padding: 16px 0;
	text-align: left;
	border-bottom: 1px solid #ddd; /* ← 下線だけ */
	vertical-align: top;
}
.recruit-table th {
	width: 20%;
	font-weight: 600;
	color: #333;
}
.recruit-table td {
	width: 70%;
	color: #555;
}
.recruit-table td ul {
	margin: 0;
}
.recruit-table td ul li::before {
	content: "\025cb";
	padding-right: 2px;
}


/* =============================================================================
実績紹介
============================================================================= */

.advertising-tab-buttons {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
}
.advertising-tab {
	position: relative;
	padding: 12px;
	background: #eee;
	border: none;
	cursor: pointer;
}
.advertising-tab.active {
	background: #333;
	color: #fff;
}
.advertising-tab.active::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 8px 8px 0 8px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}
.advertising-tab-contents {
	margin: 50px 0;
}
.advertising-tab-content {
	display: none;
}
.advertising-tab-content.active {
	display: block;
}
.advertising-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.advertising-grid div {
	background: #fff;
	padding: 20px;
	box-shadow: 10px 5px 5px rgb(206, 206, 206);
}
@media screen and (max-width: 1024px) {
	.advertising-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.advertising-tab-buttons {
		display: flex;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 8px;
	}

	.advertising-tab {
		flex: 0 0 auto;
		min-width: 120px;
	}
	.advertising-grid {
		grid-template-columns: 1fr;
	}
	.advertising-tab.active::after {
		bottom: -6px;
	}
}

/* モーダル */

.grid-item {
	background: #ffffff;
	padding: 20px;
	cursor: pointer;
	text-align: center;
}
.advertising-modal {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center; 
	background: rgba(0,0,0,0.6);

	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
}
.advertising-modal.show {
	opacity: 1;
	pointer-events: auto;
}
.advertising-modal-content {
	background: #fff;
	padding: 24px;
	width: min(90%, 800px);
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	
	transform: translateY(20px);
	opacity: 0;
	transition: 0.3s;
}
.advertising-modal.show .advertising-modal-content {
	transform: translateY(0);
	opacity: 1;
}
.advertising-close {
	position: absolute;
	top: -33px;
	right: 5px;
	font-size: 20px;
	cursor: pointer;
	color: #fff;
}
body.modal-open {
	overflow: hidden;
}

.advertising-modal-txt {
	padding: 20px ;
}
.advertising-modal-txt p {
	padding: 20px 0;
	line-height: 2em;
}
.advertising-modal-txt h4 {
	padding: 0 5px 5px;
	border-bottom: 1px solid var(--mainColor);
	margin: 0 0 20px;
}
.advertising-modal-txt a {
	text-decoration: none;
	color: #333;
}

.advertising-achievements_inner a {
	display: block;
	width: fit-content;
	text-align: center;
	text-decoration: none;
	color: var(--advertisement);
}

/* =============================================================================
アニメーション（共通）
============================================================================= */
/* ===== 共通ベース ===== */
.fade {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== 方向 ===== */
/* 下から */
.fade-up {
	transform: translateY(40px);
}
.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

/* 左から */
.fade-left {
	transform: translateX(-40px);
}
.fade-left.show {
	opacity: 1;
	transform: translateX(0);
}

/* 右から */
.fade-right {
	transform: translateX(40px);
}
.fade-right.show {
	opacity: 1;
	transform: translateX(0);
}

/* スケール */
.fade-scale {
	transform: scale(0.95);
}
.fade-scale.show {
	opacity: 1;
	transform: scale(1);
}

/* ===== 遅延 ===== */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ===== 連続表示（親に付ける） ===== */
.fade-group .fade {
	opacity: 0;
	transform: translateY(20px);
}

.fade-group.show .fade {
	opacity: 1;
	transform: translateY(0);
}

.fade-group.show .fade:nth-child(1) { transition-delay: 0.1s; }
.fade-group.show .fade:nth-child(2) { transition-delay: 0.3s; }
.fade-group.show .fade:nth-child(3) { transition-delay: 0.5s; }
.fade-group.show .fade:nth-child(4) { transition-delay: 0.7s; }
.fade-group.show .fade:nth-child(5) { transition-delay: 0.9s; }
.fade-group.show .fade:nth-child(6) { transition-delay: 1.1s; }
.fade-group.show .fade:nth-child(7) { transition-delay: 1.3s; }
.fade-group.show .fade:nth-child(8) { transition-delay: 1.5s; }
.fade-group.show .fade:nth-child(9) { transition-delay: 1.7s; }
.fade-group.show .fade:nth-child(10) { transition-delay: 1.9s; }
.fade-group.show .fade:nth-child(11) { transition-delay: 2.1s; }
.fade-group.show .fade:nth-child(12) { transition-delay: 2.3s; }