/********************************************************************************
common.css
********************************************************************************/

/*============================================================
 import
*============================================================*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Poppins:wght@400;500;700&display=swap');

/*============================================================
 css変数
*============================================================*/
:root {
    /* jsで変動 */
    --common-vh: 100vh;
    --common-vw: 100vw;
    --common-header-height: 0;
    --common-footer-height: 0;
}

/*============================================================
 format
*============================================================*/
html {
	width: 100%;
	background-color: #fff;
}
body {
	font-family:"Noto Sans JP",sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.6;
	color: #353535;
}
main {
	width: 100%;
	position: relative;
	z-index: 900;
	padding-top: 120px;
	margin-bottom: 96px;
}
section {
	width: 100%;
	padding: 1px 0;
}
img {
	max-width: 100%;
	height: auto;
}
span {
	font-weight: inherit;
}
a {
	transition: all .3s;
}
a:hover {
	opacity: 0.6;
}
a[href^="tel:"] {
    pointer-events: none;
}

/*============================================================
 共通部品
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
	display: initial;
}
.forSP {
	display: none;
}

.container {
	position: relative;
	z-index: 1;
}
.container:before {
	content: "";
	position: fixed;
	z-index: -1;
	background-image: url(../images/common/main_bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 1543px;
	height: 610px;
	top: -36px;
	left: calc(50% - 810px);
}

/* inner
---------------------------------------- */
.inner {
	width: 100%;
	max-width: 1288px;
	padding: 0 32px;
	margin: 0 auto;
}

/* button
---------------------------------------- */
.btn {
	text-align: center;
	border-radius: 100px;
	font-size: 18px;
	line-height: 1.6;
	display: inline-block;
	transition: all .3s;
}
.btn:hover {
	opacity: 1;
}
.mainBtn {
	background: #2784D6;
	color: #fff;
	width: 296px;
	height: 48px;
	line-height: 48px;
}
.mainBtn img {
	margin-right: 8px;
	margin-bottom: 12px;
}
.mainBtn:hover {
	background: #579EDD;
}

.subBtn {
	color: #B3B3B3;
	border: 1px solid #B3B3B3;
	border-radius: 100px;
	width: 240px;
	height: 48px;
	line-height: 48px;
}
.subBtn:hover {
	background: #F6F6F6;
}

.moreBtn {
	display: block;
	margin: 64px auto 0;
}
.searchRaundryBtn {
	height: 64px;
	align-content: center;
}

/* section title
---------------------------------------- */
.secTitle {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 24px;
}


/*============================================================
 header
*============================================================*/
.header {
	position: fixed;
	z-index: 1000;
	width: 100%;
	max-width: 1224px;
	left: 50%;
	transform: translatex(-50%);
	top: 16px;
	background: #fff;
	border-radius: 100px;
	padding: 16px 16px 16px 40px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}
.header__div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__title {
	display: flex;
	align-items: center;
	gap: 32px;
}
.header__title__text {
	font-size: 14px;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-family: 'M PLUS 1', sans-serif;
}

/* hamburger
---------------------------------------- */
.hamburger {
	width: 56px;
	aspect-ratio: 1;
	background-color: #2784D6;
	align-content: center;
	border-radius: 100%;
	transition: opacity .3s;
}
.hamburger:hover {
	opacity: 0.6;
}
.hamburger .layout {
	width: fit-content;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}
.hamburger .layout span {
	width: 26px;
	height: 1px;
	background-color: #fff;
	border-radius: 100px;
	transition: all 0.5s;
}
.hamburger .layout span:nth-child(3) {
	width: 16px;
}
.hamburger-open .hamburger .layout {
	position: relative;
}
.hamburger-open .hamburger .layout span:nth-child(1) {
	position: absolute;
    rotate: 45deg;
}
.hamburger-open .hamburger .layout span:nth-child(2) {
	rotate: -45deg;
}
.hamburger-open .hamburger .layout span:nth-child(3) {
	display: none;
}

/*============================================================
 hamburger-menu
*============================================================*/
.hamburger-menu {
	width: 100%;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 990;
	background-color: #fff;
	transition: right 0.5s ease-out;
}
.hamburger-open .hamburger-menu {
	right: 0;
}
.hamburger-menu .hamburger-menu-inner {
	--padding-top: 200px;
    max-width: 480px;
	padding: var(--padding-top) 16px 16px 16px;
    margin: 0 auto;
	display: flex;
	flex-direction: column;
}
.hamburger-menu .searchRaundryBtn {
	display: block;
	width: 100%;
	height: 56px;
	max-width: 342px;
	margin: 0 auto 48px auto;
}
.hamburger-menu .label {
	font-weight: 700;
	font-size: 18px;
	line-height: 160%;
	margin-bottom: 32px;
}
.hamburger-menu ul {
	height: calc(100vh - var(--padding-top) - 56px - 48px - 28px - 32px - 16px);
	overflow-y: auto;

	display: flex;
	flex-direction: column;
	gap: 8px;
}
.hamburger-menu ul li a {
	display: block;
	height: 48px;
	padding: 0 40px 0 0;
	align-content: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	background-image: url(../images/common/icon_link_arrow.svg);
	background-repeat: no-repeat;
	background-position: center right 8px;
	background-size: 24px auto;
}

/*============================================================
 cta-raundry-search
*============================================================*/
.cta-raundry-search {
	border-radius: 100%;
	background-color: #fff;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);

	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 980;
}
.cta-raundry-search a {
	width: 80px;
	aspect-ratio: 1;
	background-color: #2784D6;
	border-radius: 100%;
	border: solid 4px #fff;
	font-weight: 700;
	font-size: 14px;
	line-height: 160%;
	color: #fff;
	text-align: center;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
}
.cta-raundry-search a::before {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(../images/common/icon_raundry.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
}

/*============================================================
 footer
*============================================================*/
.footer {
	background: #2784D6;
	color: #fff;
	padding-top: 64px;
	padding-bottom: 48px;
}
.footer__inner {
	margin-bottom: 72px;
	max-width: 952px;
	/* padding-left: 140px; */
}
.footer__div {
	display: flex;
	gap: 56px;
	align-items: center;
	justify-content: center;
}
.footer__div__link .logo {
	display: inline-block;
	margin-bottom: 24px;
}
.footer__div__link .outerLinks {
	display: flex;
	gap: 40px;
	align-items: center;
}
.footer__div__link .outerLinks a {
	font-size: 14px;
}
.footer__div__link .outerLinks a img {
	width: 75px;
	margin-right: 12px;
	margin-bottom: 2px;
}
.footer__div__btn a {
	background: #fff;
	border-radius: 100px;
	color: #2784D6;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 6px 0;
	letter-spacing: 0.02em;
	font-weight: 700;
	width: 264px;
}
.footer__div__btn a:hover {
	opacity: 0.8;
}
.footer__copyright {
	text-align: center;
}

/*============================================================
 全体アウトライン
*============================================================*/
.outline {
	display: flex;
	gap: 40px;
	justify-content: flex-end;
}
.outline .mainContents {
	max-width: 952px;
	width: 100%;
}

/*============================================================
 サイドバー 
*============================================================*/
.sidebar {
	position: fixed;
	top: 120px;
	right: calc(50% + 380px);
	max-width: 232px;
	letter-spacing: 0.02em;
}
.sidebar__innerSearch {
	background: #fff;
	padding: 16px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	margin-bottom: 16px;
}
.sidebar__innerSearch form {
	margin-bottom: 12px;
	border: 1px solid #B3B3B3;
	position: relative;
	padding: 11px 11px 11px 48px;
	border-radius: 100px;
	background: #fff;
}
.sidebar__innerSearch form .icon {
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	left: 16px;
}
.sidebar__innerSearch form input {
	width: 100%;
}
.sidebar__innerSearch a {
	transition: none;
	display: block;
	padding: 4px 0;
}
.sidebar__innerSearch a:hover {
	font-weight: 700;
	opacity: 1;
}
.sidebar__innerSearch a.current {
	font-weight: 700;
	position: relative;
}
.sidebar__innerSearch a.current:before {
	position: absolute;
	content: "";
	background: url(../images/common/nav_current_deco.svg) no-repeat center center / contain;
	width: 32px;
	height: 16px;
	right: 0;
	top: 9px;
}
.sidebar__innerSearch_cat .newPost {
	display: block;
	padding-bottom: 12px;
	border-bottom: 1px solid #B3B3B3;
	margin-bottom: 16px;
}
.sidebar__innerSearch_cat .label {
	font-size: 11px;
	letter-spacing: 0.04em;
	line-height: 1;
	font-weight: 500;
	color: #B3B3B3;
	margin-bottom: 8px;
}
.sidebar__innerSearch_cat ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sidebar__raundrySearch {
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}
.sidebar__raundrySearch a {
	display: block;
}
.sidebar__raundrySearch a:hover {
	opacity: 0.8;
}
.sidebar__raundryNew {
	margin-top: 16px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}
.sidebar__raundryNew a {
	display: block;
}
.sidebar__raundryNew a:hover {
	opacity: 0.8;
}


/*============================================================
 投稿パーツ
*============================================================*/
.postList {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 24px;
}
.postList.load {
	margin-top: 32px;
}
.postList.load.noData {
	margin-top: 0;
}
.postItem {
	transition: all .3s;
	cursor: pointer;
}
.postItem:hover .postItem__img a {
	opacity: 0.6;
	transform: scale(1.2);
}
.postList.col3 .postItem {
	width: calc((100% - 48px) / 3);
}
.postItem__img {
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 16px;
}
.postItem__img a {
	display: block;
}
.postItem__img img {
	max-height: 170px;
	object-fit: cover;
}
.postItem__cat {
	margin-bottom: 8px;
}
.postItem__cat a {
	font-size: 12px;
	letter-spacing: 0.02em;
	color: #2784D6;
	border: 1px solid #2784D6;
	border-radius: 100px;
	line-height: 1.8;
	padding: 1px 16px;
	display: inline-block;
}
.postItem__title {
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.postItem__title a {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.postItem__tag {
	display: flex;
	justify-content: space-between;
}
.postItem__tag__author {
	display: flex;
	align-items: center;
	color: #B3B3B3;
	font-size: 12px;
	letter-spacing: 0.02em;
	line-height: 1.8;
}
.postItem__tag__author img {
	border-radius: 50%;
	overflow: hidden;
	margin-right: 8px;
}
.postItem__date {
	color: #B3B3B3;
	font-size: 12px;
	letter-spacing: 0.02em;
	line-height: 1.8;
}

/*============================================================
 スライダー
*============================================================*/
.slider .postItem__img {
	margin-bottom: 8px;
}
.slider .postItem__img img {
	height: 124px;
	width: 100%;
	object-fit: cover;
}
.slider .postItem__title {
	font-size: 14px;
	line-height: 1.6;
	min-height: 44.8px;
}
.slider .postItem .wrap {
	margin: 0 12px;
}
.slider .postItem:nth-child(5) .wrap,
.slider .postItem:nth-child(9) .wrap,
.slider .postItem:nth-child(13) .wrap{
	margin-left: 0;
}
.slider .postItem:nth-child(8) .wrap,
.slider .postItem:nth-child(12) .wrap,
.slider .postItem:nth-child(16) .wrap {
	margin-right: 0;
}

.slider .slide-arrow {
	cursor: pointer;
	transition: all .3s;
}
.slider .slide-arrow:hover {
	opacity: 0.8;
}
.slider .prev-arrow {
	position: absolute;
	top: 84px;
	left: -20px;
	z-index: 1;
}
.slider .next-arrow {
	position: absolute;
	top: 84px;
	right: -20px;
	z-index: 1;
}

/*============================================================
 ランキング
*============================================================*/
.p_search .ranking {
	margin-top: 64px;
}
.ranking .postItem {
	position: relative;
}
.ranking .postItem__img {
	position: relative;
	margin-top: 12px;
}
.ranking .postItem:before {
	position: absolute;
	content: "";
	width: 32px;
	height: 32px;
	font-weight: 500;
	color: #fff;
	padding-top: 4px;
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	top: 0;
	left: 12px;
	z-index: 1;
}
/* slickの関係で数字がずれる */
.ranking .postItem:nth-child(5):before {
	content: "1";
	background: #DBAB31;
	left: 0;
}
.ranking .postItem:nth-child(6):before {
	content: "2";
	background: #ACACAA;
}
.ranking .postItem:nth-child(7):before {
	content: "3";
	background: #8F7A59;
}
.ranking .postItem:nth-child(8):before {
	content: "4";
	background: #2784D6;
}
.ranking .postItem:nth-child(9):before {
	content: "5";
	background: #DBAB31;
	left: 0;
}
.ranking .postItem:nth-child(10):before {
	content: "6";
	background: #ACACAA;
}
.ranking .postItem:nth-child(11):before {
	content: "7";
	background: #8F7A59;
}
.ranking .postItem:nth-child(12):before {
	content: "8";
	background: #2784D6;
}
.ranking .postItem:nth-child(13):before {
	content: "9";
	background: #DBAB31;
	left: 0;
}
.ranking .postItem:nth-child(14):before {
	content: "10";
	background: #ACACAA;
}
.ranking .postItem:nth-child(15):before {
	content: "11";
	background: #8F7A59;
}
.ranking .postItem:nth-child(16):before {
	content: "12";
	background: #2784D6;
}
.ranking .prev-arrow {
	top: 95px;
}
.ranking .next-arrow {
	top: 95px;
}

/*============================================================
 記事本文ブロック共通パーツ
*============================================================*/
/* 記事カード
---------------------------------------- */
.parts-block-postcard {
	padding: 24px;
	background-color: #fff;
	border: solid 1px #eaeaea;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.parts-block-postcard .image {
	width: 160px;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
}
.parts-block-postcard .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.parts-block-postcard .info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.parts-block-postcard .info .title {
	font-weight: 700;
	font-size: 18px;
	line-height: 200%;
	letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.parts-block-postcard .info .lead {
	font-size: 12px;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: #b3b3b3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.parts-block-postcard .info .url {
	font-size: 10px;
	line-height: 180%;
	color: #b3b3b3;
	text-decoration: underline;
	margin-top: auto;
}


/*============================================================
 下層ページ
*============================================================*/
/* common
---------------------------------------- */
.pageHeader {
	margin-bottom: 40px;
}
.pageHeader label {
	font-size: 14px;
	color: #2784D6;
	font-weight: 500;
	letter-spacing: 0.04em;
	display: inline-block;
	margin-bottom: 8px;
}
.pageHeader h1 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
}

/*============================================================
 パンくず
*============================================================*/
.breadcrumbs {
	margin-bottom: 16px;
}
.breadcrumbs__inner > * {
	padding: 0 7px;
	font-size: 12px;
	color: #B3B3B3;
	line-height: 1.8;
	letter-spacing: 0.02em;
	position: relative;
}
.breadcrumbs__inner > *:before {
	content: "/";
	position: absolute;
	left: -2px;
	top: -1px;
}
.breadcrumbs__inner > *:first-child {
	padding-left: 0;
}
.breadcrumbs__inner > *:first-child:before {
	display: none;
}

/*============================================================
 ページナビ
*============================================================*/
.pagination {
	margin: 40px 0;
	text-align: center;
}
.pagination ul {
	display: flex;
	justify-content: center;
}
.pagination a, .pagination span {
	display: inline-block;
	border: 1px solid #ccc;
	width: 36px;
	height: 36px;
	line-height: 36px;
	margin: 0 6px;
	text-align: center;
}
.pagination span.current {
	background-color: #666;
	border: 1px solid #666;
	color: #fff;
}
.pagination a.prev,
.pagination a.next {
	display: none;
}

/*============================================================
 Infinite Scroll 
*============================================================*/
.page-load-status {
	text-align: center;
	margin-top: 16px;
}


@media screen and (max-width:1272px) {
	.container:before {
		background-image: url(../images/common/main_bg_sp_01.svg);
		width: 253px;
		height: 147px;
		top: -44px;
		left: -46px;
	}
	.container:after {
		position: fixed;
		z-index: -1;
		content: "";
		background-image: url(../images/common/main_bg_sp_02.svg);
		width: 100px;
		height: 84px;
		top: 0;
		right: 0;
	}
	.header {
		max-width: 952px;
		width: calc(100% - 64px);
	}
	
	.outline {
		align-items: center;
		flex-direction: column;
		gap: 48px;
	}
	
	.sidebar {
		position: static;
		width: 100%;
		max-width: 560px;
	}
	.sidebar__innerSearch {
		padding: 0;
		margin-bottom: 0;
		box-shadow: none;
		background: transparent;
	}
	.sidebar__innerSearch .forPC {
		display: none;
	}
	.sidebar__innerSearch .forSP {
		display: block;
	}
	.sidebar__innerSearch form {
		margin-bottom: 24px;
	}
	/*.sidebar__innerSearch_cat .label {
		display: none;
	}
	.sidebar__innerSearch_cat ul {
		flex-direction: row;
		gap: 24px;
	}*/
	.sidebar__innerSearch .spWrap {
		overflow-x: scroll;
	}
	.sidebar__innerSearch .spWrap__inner {
		display: inline-block;
		white-space: nowrap;
	}
	.sidebar__innerSearch .spWrap__inner > a {
		display: inline-block;
		padding: 8px 0;
		margin: 0 12px;
	}
	.sidebar__innerSearch .spWrap__inner > a.current:before {
		background: #FCB732;
		width: 100%;
		height: 2px;
		left: 0;
		top: auto;
		bottom: 4px;
	}
	.sidebar__innerSearch .spWrap__inner > a:first-child {
		margin-left: 0;
		margin-right: 36px;
		border-bottom: none;
		position: relative;
	}
	.sidebar__innerSearch .spWrap__inner > a:first-child:after {
		content: "";
		position: absolute;
		width: 1px;
		height: 24px;
		background: #B3B3B3;
		right: -26px;
		top: 10px;
	}
	.sidebar__raundrySearch {
		display: none;
	}
	.sidebar__raundryNew {
		display: none;
	}
	
}


@media screen and (max-width:1015px) {
	.forPC {
		display: none;
	}
	.forSP {
		display: block;
	}
	
	.inner {
		padding: 0 24px;
		max-width: 560px;
	}
	
	.container:before {
		left: calc(50% - 385px);
		top: -34px;
	}
	.container:after {
		top: 6px;
		right: calc(50% - 334px);
	}
	
	.header {
		max-width: 560px;
		width: calc(100% - 32px);
		padding: 0 0 0 16px;
	}
	.header__title {
		flex-direction: column;
		gap: 2px;
		align-items: flex-end;
	}
	.header__title__logo {
		width: 197px;
	}
	.header__title__text {
		font-size: 12px;
		letter-spacing: 0.04em;
	}
	.header__btn {
		width : 64px;
		height: 64px;
		font-size: 10px;
		line-height: initial;
		padding-top: 13px;
	}
	.header__btn img {
		display: block;
		margin: 0 auto 2px;
	}

	.hamburger:hover {
		opacity: 1;
	}
	.hamburger-menu .hamburger-menu-inner {
		--padding-top: 128px;
	}
	.cta-raundry-search {
		right: 16px;
	}
	
	.footer__inner {
		max-width: 608px;
	}
	.footer__div {
		flex-direction: column;
		gap: 72px;
	}
	.footer__div__btn {
		width: 100%;
	}
	.footer__div__btn a {
		width: 100%;
		padding: 18px 8px;
	}
		
	
	.postList.col3 {
		flex-direction: column;
	}
	.postList.col3 .postItem {
		width: 100%;
	}
	.postItem__img img {
		max-height: initial;
		aspect-ratio: 5 / 2.8;
	}
	
	.slider .postItem .wrap {
		margin: 0;
	}
	.slider .postItem__img img {
		height: auto;
	}
	.slider .postItem__title {
		min-height: initial;
	}
	.slider .prev-arrow {
		top: 120px;
	}
	.slider .next-arrow {
		top: 120px;
	}

	
	.ranking {
		margin-bottom: 48px;
	}
	.ranking .prev-arrow {
		top: 132px;
	}
	.ranking .next-arrow {
		top: 132px;
	}
	.ranking .postItem:before {
		left: 0!important;
	}
	/* slickの関係で数字がずれる */
	.ranking .postItem:nth-child(2):before {
		content: "1";
		background: #DBAB31;
		left: 0;
	}
	.ranking .postItem:nth-child(3):before {
		content: "2";
		background: #ACACAA;
	}
	.ranking .postItem:nth-child(4):before {
		content: "3";
		background: #8F7A59;
	}
	.ranking .postItem:nth-child(5):before {
		content: "4";
		background: #2784D6;
	}
	.ranking .postItem:nth-child(6):before {
		content: "5";
		background: #DBAB31;
		left: 0;
	}
	.ranking .postItem:nth-child(7):before {
		content: "6";
		background: #ACACAA;
	}
	.ranking .postItem:nth-child(8):before {
		content: "7";
		background: #8F7A59;
	}
	.ranking .postItem:nth-child(9):before {
		content: "8";
		background: #2784D6;
	}
	.ranking .postItem:nth-child(10):before {
		content: "9";
		background: #DBAB31;
		left: 0;
	}
	.ranking .postItem:nth-child(11):before {
		content: "10";
		background: #ACACAA;
	}
	.ranking .postItem:nth-child(12):before {
		content: "11";
		background: #8F7A59;
	}
	.ranking .postItem:nth-child(13):before {
		content: "12";
		background: #2784D6;
	}

	.parts-block-postcard {
		gap: 24px;
	}
	.parts-block-postcard .image {
		width: 80px;
	}
	.parts-block-postcard .info .title {
		font-size: 14px;
		line-height: 160%;
	}
	.parts-block-postcard .info .lead {
		display: none;
	}

	.breadcrumbs {
		overflow-x: scroll;
	}
	.breadcrumbs__inner {
		display: inline-block;
		white-space: nowrap;
	}
	.breadcrumbs__inner > * {
		display: inline-block;
	}
	
	.pageHeader h1 {
		font-size: 28px;
	}
}

@media screen and (max-width: 560px) {
	.container:before {
		left: -96px;
	}
	.container:after {
		right: -32px;
	}

	.slider .prev-arrow {
		top: 22vw;
	}
	.slider .next-arrow {
		top: 22vw;
	}
	
	.ranking .prev-arrow {
		top: 24vw;
	}
	.ranking .next-arrow {
		top: 24vw;
	}
}

@media screen and (max-width: 480px) {
	.slider .prev-arrow {
		top: 20vw;
	}
	.slider .next-arrow {
		top: 20vw;
	}
	
	.ranking .prev-arrow {
		top: 22vw;
	}
	.ranking .next-arrow {
		top: 22vw;
	}
	
}