/* ---------------------------- */
/* Common */
/* ---------------------------- */
h2 {
	text-align: center;
	font-size: min(7vw, 60px);	
	line-height: 1.2;
}

@media (max-width: 425px) {
	h2 {
		font-size: 9vw;
	}
}

/* ---------------------------- */
/* Loading */
/* ---------------------------- */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	animation: fadeOut ease-in-out 0.6s 2.4s forwards;
}
.loading__img {
	position: fixed;
	text-align: center;
	margin: auto;
	z-index: 101;
	width: 100%;
	height: 100svh;
	animation: fadeLogo 2s 0.3s forwards;
	opacity: 0;
}
.loading__img img {
	width: min(40%, 350px);
    width: clamp(160px, 25%, 350px);
	height: 100%;
	margin-right: 5%;
}

@media screen and (max-height: 400px) {
	.loading__logo {
		width: auto;
		height: 50%;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeLogo {
	0% {
		opacity: 0;
		transform: translateY(0px);
	}

	30% {
		opacity: 1;
		transform: translateY(-30px);
	}

	60% {
		opacity: 1;
		transform: translateY(-30px);
	}

	100% {
		opacity: 0;
		transform: translateY(-60px);
	}
}

/* ---------------------------- */
/* Hero */
/* ---------------------------- */

.hero {
	border-radius: 30px;
	background: #f8b100;
	margin-bottom: 100px;
}
.hero__inner {
	width: 100%;
}
.hero__inner h2 {
	width: 100%;
	text-align: center;
	margin: auto;
}
.hero__inner h2 img {
	margin: 140px auto 50px;
	width: min(55%, 450px);
    width: clamp(160px, 33%, 450px);
}
.hero__inner-txt {
	text-align: center;
	line-height: 2;
	font-size: min(4.3vw, 30px);
	font-size: clamp(16px, 3.3vw, 30px);
	margin-bottom: 60px;
}
.link {
	width: 100%;
	text-align: center;
	margin: 0 auto 60px;
	padding: 0 4% 100px;
}
.link .link__inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 20px;
	margin: auto;
}
.link .link__inner a {
	max-width: 480px;
	position: relative;
	transition: all 0.3s;
}
.link .link__inner a:hover {
	transition: all 0.3s !important;
	transform: translateY(-15px) !important;
}
.link .link__inner a img {
	width: 100%;
}

.link .link__inner .button__arrow {
	position: absolute;
	max-width: 210px;
	width: 40%;
	min-height:50px;
	justify-content: center;
	padding: 0px 20px 0px 0px;
	font-size: min(3vw, 16px);
}

.link .link__inner .button__arrow.top_tnrm {
	bottom: 14%;
	left: 0;
	right: 0;
}
.link .link__inner .button__arrow.top_kitten {
	bottom: 14%;
	left: 9%;
}
.link .link__inner .button__arrow.top_adoption {
	bottom: 14%;
	left: 9%;
}

.link .link__inner .button__arrow::before {
	right: 5px;
}
.link .link__inner a:hover .button__arrow::before {
	transition: all 0.3s;
	right: 0;
	transform-origin: right center;
	background: url(../img/arrow_button-arrow-y.svg);
	background-size: cover;
}
.link .link__inner a:hover .button__arrow {
	transition: all 0.3s;
	background: #f8b100;
	color: #fff;
}
.link .link__inner a:hover .button__arrow * {
	color: #fff !important;
}


@media (max-width: 1024px) {
	.hero__inner h2 img {
		margin: 100px auto 50px;
	}
}
@media (max-width: 768px) {
	.hero {
		margin-bottom: 80px;
	}
	.link {
		padding: 0 4% 40px;
	}
}

@media (max-width: 660px) {
	.hero {
		margin-bottom: 40px;
	}
	.link .link__inner 	.button__arrow {
		min-height: 45px;
	}
	.link .link__inner 	.button__arrow::before {
		width: 25px;
		height: 25px;
		right: 3px;
	}
	.link .link__inner .button__arrow.top_kitten,
	.link .link__inner .button__arrow.top_adoption {
		bottom: 17%;
	}
}
@media (max-width: 425px) {
	.hero__inner h2 img {
		margin: 70px auto 30px;
	}
	.hero__inner-txt {
		margin-bottom: 30px;
	}
	.link .link__inner {
		gap: 10px 0px;
	}
	.link .link__inner 	.button__arrow {
		position: absolute;
		max-width: 210px;
		width: 40%;
		min-height: 38px;
		justify-content: center;
		padding: 0px 10px 0px 0px;
	}
	.link .link__inner 	.button__arrow::before {
		right: 0px;
	}
	.link .link__inner .button__arrow.top_tnrm {
		bottom: 12%;
	}
	.link .link__inner .button__arrow.top_kitten,
	.link .link__inner .button__arrow.top_adoption {
		bottom: 14%;
	}
}

/* ---------------------------- */
/* News */
/* ---------------------------- */

.news {
	position: relative;
	padding-bottom: 100px;
}
.news__inner {
	position: relative;
}
.news__inner h2 {
	margin-bottom: 60px;
}

.news__caption {
	text-align: center;
	margin: auto;
	font-size: 21px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	line-height: 1.5;
	margin-bottom: 10px;
}
.news__caption::before,
.news__caption::after {
	width: 1px;
	height: 38px;
	content: "";
	background-color: #111;
}
.news__caption::before {
	margin-right: 1em;
	transform: rotate(-35deg);
}
.news__caption::after {
	margin-left: 1em;
	transform: rotate(35deg);
}

.news .more-link {
	top: 15px;
	right: 2%;
	width: 100%;
	text-align: right;
	position: absolute;
	z-index: 1;
}
.news .more-link a {
	display: inline-block;
	margin: auto;
}

.news-rss {
	padding: 0 2%;
	overflow-x: auto;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	flex-wrap: nowrap;
}
.news-rss__list {
	display: flex;
	flex-wrap: nowrap;
}
.news-rss__item {
	margin-right: max(2%, 30px);
	width: max(24.5%, 220px);
	min-width: 275px;
	width: 23%;
	position: relative;
	margin-bottom: 15px;
}
.news-rss__item:last-child {
	margin-right: 0;
}
.news-rss__img {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	border-radius: 0px 30px 30px 3px;
	margin-bottom: 1em;
}
.news-rss__img img {
	transition: 0.3s all;
	width: 100%;
	aspect-ratio: 1 / 0.618;
	height: auto;
}
.news-rss__day {
	position: absolute;
	left: 0;
	top: 0;
	height: 55px;
	width: 90px;
	background: #fff;
	border-radius: 0 0 20px 0;
	z-index: 1;
}

.news-rss__day span {
	display: block;
	text-align: left;
	width: 100%;
	font-weight: 900;
	padding-left: 10px;
	line-height: 1.2;
}
.news-rss__day--y {
	font-size: 13px;
}
.news-rss__day--md {
	font-size: 22px;
}

.news-rss__day .corner--left {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 55px;
	left: 0px;
}
.news-rss__day .corner--right {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0px;
	left: 90px;
}
.news-rss__list h3 {
	margin-bottom: 1em;
	font-size: 18px;
	text-align: left;
	font-weight: normal;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	padding: 0 10px;
	font-size: min(4.3vw, 18px);
}
.news-rss__list h3 span {
	width: calc(100% - 60px);
}
.news-rss__list h3 img {
	width: 45px;
	height: 45px;
	transition: 0.3s all;
}
.news-rss__btn {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.news-rss__item:hover .news-rss__img img {
	transform: scale(1.2);
	transition: 0.3s all;
}
.news-rss__item:hover h3 img {
	transform: translateX(10px);
	transition: 0.3s all;
}
.scroll-hint-icon {
	top: 25%;
}
.scroll-hint-icon-white .scroll-hint-text {
	color: #111;
	font-weight: 900;
}
@media (max-width: 1024px) {
	.news {
		padding-bottom: 80px;
		margin-bottom: 80px;
	}
	.news .more-link {
		top: inherit;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.news {
		margin-bottom: 80px;
		padding-bottom: 70px;
	}
	.news__caption {
		font-size: 19px;
	}
	.news__caption::before,
	.news__caption::after {
		height: 33px;
	}
}

@media (max-width: 660px) {
	.news__inner h2 {
		margin-bottom: 30px;
	}
}

@media (max-width: 425px) {
	.news__caption {
		font-size: 15px;
	}
	.news__caption::before,
	.news__caption::after {
		height: 22px;
	}
	.news-rss__day {
		height: 45px;
		width: 80px;
		border-radius: 0 0 15px 0;
	}
	.news-rss__day .corner--left {
		top: 45px;
		width: 15px;
		height: 15px;
	}
	.news-rss__day .corner--right {
		left: 80px;
		width: 15px;
		height: 15px;
	}
	.news-rss__day--y {
		font-size: 12px;
	}
	.news-rss__day--md {
		font-size: 18px;
	}
	.news-rss__list h3 img {
		width: 35px;
		height: 35px;
	}
}

/* ---------------------------- */
/* Cats */
/* ---------------------------- */

.cats {
	border-radius: 30px;
	background: #f8b100;
	margin-bottom: 100px;
	padding: 0px;
	position: relative;
}
.cats__inner {
	background: url(../img/line-stripe.svg) repeat-x top;
	background-size: 25px;
	text-align: center;
	padding-top: 100px;
}
.cats h2 {
	display: inline-block;
	background: url(../img/line-wave.svg) repeat-x 100% 100%;
	background-size: 20px;
	padding: 0 10px 4px;
}

.cats__caption {
	text-align: center;
	margin: auto;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 0px;
}
.cats .more-link {
	top: 135px;
	right: 2%;
	width: 100%;
	text-align: right;
	position: absolute;
	z-index: 1;
}
.cats .more-link a {
	display: inline-block;
	margin: auto;
}
.cats .button__arrow--border {
	padding-left: 20px;
}
.cats__list {
	padding: 5%;
	overflow: hidden;
}
.cats__list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
}
.cats__list li {
	width: calc(20% - 2%);
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.95);
	transition: 0.3s all;
}
.cats__list li img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s all;
}

.cats__list li:hover {
	transform: scale(1.15) translateY(-15px) !important;
	transition: 0.3s all!important;
}

@media (max-width: 1024px) {
	.cats__inner {
		padding-top: 80px;
	}
	.cats__caption {
		font-size: 21px;
	}
	.cats__list {
		padding-top: 7%;
		padding-bottom: 140px;
	}
	.cats__list li {
		width: calc(25% - 2%);
	}
	.cats__list li:nth-of-type(8),
	.cats__list li:nth-of-type(9) {
		display: none;
	}
	.cats .more-link {
		top: inherit;
		bottom: 50px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	.cats__list li {
		border: 6px solid rgba(255, 255, 255, 0.95);
	}
}
@media (max-width: 768px) {
	.cats__inner {
		background-size: 18px;
		padding-top: 65px;
	}
	.cats__caption {
		font-size: 19px;
		letter-spacing: 1px;
	}
}
@media (max-width: 600px) {
	.cats__list ul {
		gap: 0 10px;
		align-items: center;
	}
	.cats__list li {
		width: calc(50% - 10px);
		border: 6px solid rgba(255, 255, 255, 0.95);
	}
	.cats__list li:nth-of-type(3n) {
		margin: -10px 6px;
	}
	.cats__list li:nth-of-type(6),
	.cats__list li:nth-of-type(7),
	.cats__list li:nth-of-type(8) {
		display: none;
	}
}
@media (max-width: 425px) {
	.cats {
		margin-bottom: 60px;
	}
	.cats__inner {
		background-size: 12px;
		padding-top: 50px;
	}
	.cats h2 {
		padding: 0 5px 10px;
		background-size: 16px;
	}
	.cats__caption {
		font-size: 17px;
	}
	.cats__list {
		padding: 7% 2% 120px 2%;
	}
	.cats .more-link {
		bottom: 40px;
	}
}
/* ---------------------------- */
/* Instargram */
/* ---------------------------- */

.instagram {
	position: relative;
	padding-bottom: 100px;
}
.instagram__caption {
	text-align: center;
	margin: auto;
	font-size: 21px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	line-height: 1.5;
	margin-bottom: 10px;
}
.instagram__caption::before,
.instagram__caption::after {
	width: 1px;
	height: 38px;
	content: "";
	background-color: #111;
}
.instagram__caption::before {
	margin-right: 1em;
	transform: rotate(-35deg);
}
.instagram__caption::after {
	margin-left: 1em;
	transform: rotate(35deg);
}
.instagram__name {
	text-align: center;
	font-size: 18px;
	margin-bottom: 40px;
}
.instagram__name a {
	text-decoration: underline;
}
.instagram__list {
	width: 97%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: auto;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	margin-bottom: 40px;
	overflow: hidden;
	border-radius: 30px;
}

.instagram__list li {
	position: relative;
	width: calc(100% / 6);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.instagram__list li::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.instagram__list a {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.instagram__list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.instagram__button {
	padding: 0.5em 1em;
	width: fit-content;
	margin: 0 auto;
	transition: 0.3s;
	top: 55px;
	right: 2%;
	width: 100%;
	text-align: right;
	position: absolute;
	z-index: 1;
}
/* .instagram__button a {
	display: inline-block;
	margin: auto;
} */

@media (max-width: 1024px) {
	.instagram {
		padding-bottom: 90px;
		margin-bottom: 60px;
	}
	.instagram__list li {
		width: calc(100% / 4);
	}
	.instagram__button {
		top: inherit;
		bottom: 0px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
}
@media (max-width: 768px) {
	.instagram__list {
		width: 95%;
	}
	.instagram__list li {
		width: calc(100% / 3);
	}
	.instagram__caption {
		font-size: 19px;
	}
	.instagram__caption::before,
	.instagram__caption::after {
		height: 55px;
	}
}
@media (max-width: 425px) {
	.instagram__list {
		margin-bottom: 20px;
	}
	.instagram__name {
		margin-bottom: 20px;
		font-size: 16px;
	}
	.instagram__caption {
		font-size: 15px;
	}
	.instagram__caption::before,
	.instagram__caption::after {
		height: 35px;
	}
}
