<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*
theme name:hommasassi
author:travel sketch
description:this is my original theme.
version:1.0
*/
a:hover {
	text-decoration: none;
	cursor: pointer;
}

body {
	padding: 0;
	margin: 0;
	width: 100%;
	margin: 0;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #111111;
	background-color: white;
}



html {
	font-size: 62.5%;
}

img {
	width: 100%;
}

h1 {
	font-weight: 700;
	font-size: 4rem;
}

h2 {
	font-size: 3rem;
	font-weight: 700;
}

h3 {
	font-size: 2.5rem;
	font-weight: 600;
}

h4 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 600;
}

a,
p,
tr {
	font-size: 1.7rem;
}

p {
	line-height: 30px;
	text-align: justify;
	text-justify: auto;
}

@media screen and (max-width:780px) {
	h1 {
		font-size: 6.5vw;
	}

	h2 {
		font-size: 6vw;
	}

	h3 {
		font-size: 5.5vw;
	}

	h4 {
		font-size: 3.4vw;
	}

}

@media screen and (max-width:500px) {
	h4 {
		font-size: 4.6vw;
	}

	a,
	p,
	tr {
		font-size: 4vw;
		line-height: 1.8;
	}
}

/*ヘッダー画像*/
header {
	margin: 0;
	padding: 0;
}

header img {
	left: 20px;
	top: 0px;
	position: absolute;
	width: 250px;
	vertical-align: bottom;
	z-index: 3;
}



a[title="nolink"] {
	pointer-events: none;
	cursor: pointer;
}

/*ナビゲーションメニュー*/
/************************************
** グローバルメニュー
************************************/
.navi-in {
	/*幅を整える場合はwidthを設定する*/
	width: 100%;
	top: 0px;
	background-color: white;
	margin: auto;
	z-index: 99;
}

.navi-in &gt; ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: center;
	margin-bottom: 0;
}

.navi-in &gt; ul li {
	width: 160px;
	height: 60px;
	line-height: 60px;
	font-size: 1.5rem;
}


.navi-in &gt; ul li:hover ul li,
.navi-in &gt; ul li a:hover ul li {
	height: 100%;
	display: block;
}


.navi-in a {
	color: #5a544b;
	text-decoration: none;
	display: block;
	transition: 1s;

}

.navi-in a:hover {
	background-color: #0000CD;
	transition: 1s;
	border-radius: 7px;
	color: white;
}


.navi-in a:hover &gt; ul {
	display: block;
	transition: 1s;
}

/*サブメニュー*/
.navi-in ul li ul li {
	display: none;
	margin-left: -118px;
	min-width: 301px;
	list-style: none;
	background-color: white;
	/*IE8以下用*/
	z-index: 9999;
	font-size: 1.3rem;
	position: relative;
}

/*サブメニューのサブメニュー*/
.navi-in &gt; ul .sub-menu ul {
	top: -50px;
	left: 250px;
	position: relative;
}

.navi-in a {
	color: #cccccc;
	text-decoration: none;
	display: block;
	transition: .5s;

}

@media screen and (max-width:1100px) {
	.navi-in {
		display: none;
	}

	header img {
		left: auto;
		right: 15px;
		top: 10px;
	}

}

@media screen and (max-width:500px) {
	header img {
		left: auto;
		right: 15px;
		width: 150px;
		top: 10px;
	}
}

input[type="submit"] {
	-webkit-appearance: none;
}

#nav-drawer {
	position: fixed;
	top: 20px;
	z-index: 99;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	display: block;
	width: 40px;
	height: 30px;
	vertical-align: middle;
	margin-left: 20px;
	cursor: pointer;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 4px;
	/*線の太さ*/
	width: 35px;
	/*長さ*/
	border-radius: 3px;
	background: black;
	display: block;
	content: '';
	cursor: pointer;

}

#nav-open span:before {
	bottom: -10px;
}

#nav-open span:after {
	bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;
	/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;
	/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 20px;
	z-index: 9999;
	/*最前面に*/
	width: 85%;
	/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;
	/*最大幅（調整してください）*/
	height: 100%;
	background: white;
	/*背景色*/
	transition: .3s ease-in-out;
	/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	/*左に隠しておく*/
}

.menu-item a {
	color: #5a544b;
}

#nav-drawer ul li {
	padding: 10px 0px;
}

#nav-drawer ul li a {
	font-size: 1.5rem;
	padding: 10px 10px;
	color: #5a544b;
}

.menu-item {
	list-style: none;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;
	/*カバーを表示*/
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

@media screen and (min-width:1100px) {
	#nav-open {
		display: none;
	}


}

.blog2 {
	margin: 0px !important;
}

/*問い合わせ*/
.inquiry {
	background-color: white;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
	padding: 50px !important;
	transition: 1s;
	color: #111111;
}

.inquiry h3 {
	padding: 1rem 2rem;
	border-left: 4px solid #92D050;
	font-weight: 600 !important;
	text-align: center;
}

.inquiry:hover {
	transition: 1s;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:600px) {
	.inquiry {
		padding: 30px !important;
	}
}




/*フッター*/
/************************************
** フッターメニュー
************************************/

.footer-menu-1 {
	width: 300px;
	margin: auto;
	text-align: left;
}

#footer-menu {
	padding-top: 30px;
	background-color: white;
	height: 100%;
	position: relative;
}

.menu {
	text-align: center;
	margin: 30px 0px;
	padding: 0;
}

#footer-menu ul li {
	display: inline-block;
	width: 160px;
	vertical-align: top;
	font-size: 1.3rem;
	margin: 0;
	padding: 0;
}

#footer-menu img {
	width: 70%;
	text-align: center;
}

#footer-menu .container .row .col-2 {
	text-align: center;
}

#footer-menu p {
	font-size: 1rem;
	color: black;
}

#footer-menu &gt; li {
	list-style-type: none;
}

#footer-menu ul li a {
	color: #111111;
}

#footer-menu .sub-menu {
	list-style: none;
	padding-left: 40px;
	text-align: left;
}

.footer {
	text-align: center;
	font-size: 1.4rem;

}

.footer small {
	color: #5a544b;
}

/*SNSボタン*/
.insta_btn3 {
	/*ボタンの下地*/
	color: #FFF;
	/*文字・アイコン色*/
	border-radius: 7px;
	/*角丸に*/
	position: relative;
	display: block;
	height: 40px;
	/*高さ*/
	width: 40px;
	/*幅*/
	text-align: center;
	/*中身を中央寄せ*/
	padding-top: 7px;
	/*上側との余白*/
	box-sizing: border-box;
	font-size: 5px;
	/*文字のサイズ*/
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	/*グラデーション①*/
	overflow: hidden;
	/*はみ出た部分を隠す*/
	text-decoration: none;
	/*下線は消す*/
}

.insta_btn3:before {
	/*グラデーション②*/
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*全体を覆う*/
	height: 100%;
	/*全体を覆う*/
	background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
	background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 div {
	position: relative;
}

.insta_btn3 .fa-instagram {
	font-size: 25px;
	/*アイコンサイズ*/
	position: relative;
	display: inline-block;
	position: relative;
	transition: .5s
}

.insta_btn3 .fa-instagram:hover {
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
	color: white;
}

#social-icon a {
	display: block;
	float: left;
	margin: 0 5px 5px 0;
	padding: 0;
	color: white;
	transition: 1s;
	background: #00a1e9;
	border-radius: 7px;
}

#social-icon i {
	font-size: 25px;
	width: 40px;
	height: 40px;
	margin: 0;
	line-height: 40px;
	text-align: center;
}

#social-icon i:before {
	padding 0;
	line-height: 40px;
	transition: .5s;
}

#social-icon a:hover .fa-twitter {
	border-radius: 7px;
	background: #00a1e9;
	transition: .5s;
	color: white;
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
}


@media screen and (max-width:540px) {
	#footer-menu ul li {
		display: none;
	}
}




/*全共通スクロールアニメーション*/

.zzextend {
	animation-name: zzextendAnimeBase;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;
	/*　はみ出た色要素を隠す　*/
	opacity: 0;
}

@keyframes zzextendAnimeBase {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/*中の要素*/
.zzappear {
	animation-name: zzextendAnimeSecond;
	animation-duration: .5s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes zzextendAnimeSecond {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*左から右*/
.zzLRextend::before {
	animation-name: zzLRextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #0000CD;
	/*伸びる背景色の設定*/
	z-index: 20;
}

@keyframes zzLRextendAnime {
	0% {
		transform-origin: bottom;
		transform: scaleX(0);
		opacity: 1;
	}

	50% {
		transform-origin: bottom;
		transform: scaleX(1);
		opacity: 1;
	}

	50.001% {
		transform-origin: top;
	}

	100% {
		transform-origin: top;
		transform: scaleX(0);
		opacity: 1;
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zzappearTrigger,
.zzLRextendTrigger {
	opacity: 0;
}

/*ボタン*/
.button a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 230px;
	padding: 10px 0px 10px 25px;
	font-family: "Noto Sans Japanese";
	line-height: 1.8;
	text-decoration: none;
	color: #333;
	transition: 0.3s ease-in-out;
	font-weight: 500;
}

.button a:before,
.button a:after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
}

.button a:before {
	width: 1rem;
	height: 1rem;
	left: 1.7rem;
	border-top: solid 2px white;
	border-right: solid 2px white;
	z-index: 2;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}

.button a:after {
	left: 0;
	background: #69821B;
	z-index: 1;
	width: 5rem;
	height: 5rem;
	border-radius: 6rem;
	transform: translateY(-50%);
	transition: all 0.5s;
}

.button a span {
	position: relative;
	transition: all 0.3s;
	z-index: 3;
}

.button a:hover span {
	color: #fff;
}

.button a:hover:before {
	left: 2.5rem;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}

.button a:hover:after {
	right: 0;
	width: 100%;
	background: #69821B;
}

/*記事の付加情報*/

.postinfo {
	margin-top: 15px;
	font-size: 14px;
}

.postinfo a {
	color: #5a544b;
	text-decoration: none;
}


.postinfo {
	margin-left: 20px;
}

.postinfo i {
	color: #9E0C0D;
}


/*記事の概要*/

.excerpt p {
	font-size: 14px;
}

.excerpt .more a {
	padding: 5px 20px;
	border: solid 1px #cccccc;
	border-radius: 5px;
	color: #000000;
	text-decoration: none;
	transition: 1s;
}

.excerpt .more a:hover {
	color: #5a544b;
	transition: 1s;
	background-color: #A9D18E;
}

.excerpt .more i {
	margin-left: 10px;
	color: #5a544b;
}

.excerpt-1 {
	padding: 20px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

/*ブログ一覧*/
.blog1 img {
	width: 100%;
	height: 100%;
}

.blog1-img {
	background: linear-gradient(to top, #d5dee7 20%, #f2dde3 50%, #efe6c6 100%);
	border-radius: 10px;
}

.blog1 img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.blog1 img:hover {
	opacity: .8;
}

.blog1 time {
	border-radius: 5px;
	background-color: #F7B375;
	padding: 0 5px 5px 5px;
	color: #5a544b;
}

/*ブログ一覧、ブログ内容部分*/
.kotei {
	color: #5a544b;
	font-size: 1.5rem;
}

.kotei h2 {
	display: inline-block;
	position: relative;
	padding: .5em 1em;
	border-right: 27px solid #c51b1b;
	background-color: #f5f5f5;
	color: #333333;
}

.kotei h2::before {
	position: absolute;
	bottom: 2px;
	right: -20px;
	z-index: -1;
	transform: rotate(5deg);
	width: 100%;
	height: 50%;
	background-color: #d0d0d0;
	content: "";
	filter: blur(4px);
}

.kotei h4 {
	display: inline-block;
	position: relative;
	margin: calc(3.5em / 2) 0 calc(3.5em / 4) calc(3.5em / 2);
	color: #333333;
	line-height: 1;
}

.kotei h4::before {
	position: absolute;
	bottom: calc(-3.5em / 4);
	left: calc(-3.5em / 2);
	z-index: -1;
	width: 3.5em;
	height: 3.5em;
	border-radius: 50%;
	background: #bbdbfb;
	content: '';
}

/*前後の記事へのリンク*/

.pagenav a {
	padding: 5px 10px;
	border: solid 1px #cccccc;
	border-radius: 10px;
	color: #5a544b;
	font-size: 12px;
	text-decoration: none;
}

.pagenav .old a {
	float: left;
}

.pagenav .new a {
	float: right;
}

.pagenav {
	overflow: hidden;
	margin: 40px 0;
	clear: both;
}



/*本文中の画像*/

.kotei img {
	border: none;
	max-width: 100%;
	height: auto;
}

.aligncenter {
	display: block;
	margin: 30px auto;
}

.alignleft {
	float: left;
	margin-bottom: 30px;
	margin-right: 30px;
}

.alignright {
	float: right;
	margin-bottom: 30px;
	margin-left: 30px;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	margin: 0;
	color: #5a544b;
	font-size: 14px;
	text-align: center;
}


/*サイドメニュー*/

.sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar .widget {
	margin-bottom: 30px;
	padding: 20px;
	background-color: none;
}


.sidebar li a {
	color: #5a544b;
	font-size: 14px;
	text-decoration: none;
	padding: 10px 0px;
	transition: 0.5s;
}

.sidebar li a:hover {
	color: #000000;
	text-decoration: underline;
	transition: 0.5s;
}

.sidebar li {
	font-size: 1.4rem;
	color: #5a544b;
}

.sidebar h3 {
	margin-top: 50px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-left: 20px;
	border-left: solid 10px #9E0C0D;
	text-align: left;
}

/*見出し*/

.archive-title {
	margin-top: 30px;
	margin-bottom: 40px;
	font-size: 1.7rem;

}

.archive-title i {
	padding: 15px;
	color: #F7B375;
}


/*コメント投稿フォーム*/

#respond p {
	color: #5a544b;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.6rem;
}

#repond label {
	color: #5a544b;
	font-size: 1.6rem;
}

#respond input,
#respond textarea {
	width: 100%;
	padding: 5px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#respond input[type="submit"] {
	width: 200px;
	padding: 10px;
	border: none;
	background-color: #f8f4e6;
	-webkit-appearance: none;
	cursor: pointer;
	margin-bottom: 50px;
}

#respond input[type="submit"]:hover {
	background-color: #f8f4e6;
}

#respond .required {
	color: #ff0000;
}


/*コメント*/

#comments footer {
	background: none;
	margin: 0;
	color: #000000;
	font-size: 12px;
}

#comments footer a {
	color: #000000;
}

#comments footer div {
	display: inline;
}

#comments ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#comments article {
	border: dotted 1px #aaaaaa;
	margin-bottom: 10px;
	padding: 10px 20px 20px 20px;
}

#comments .comment-content {
	margin-left: 30px;
}


/*お問い合わせフォーム*/
.toiawase {
	margin-top: 100px;
	color: #5a544b;
}

@media(max-width:768px) {
	toiwase {
		margin-top: 50px;
	}
}

.toiawase h3 {
	font-size: 2rem;
}

.toiawase p {
	font-size: 1.5rem;
	color: #5a544b;
}

@media(max-width:768px) {
	.toiawase p {
		font-size: 1.4rem;
	}
}

.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	border-bottom: 1px dashed #ccc;
	transition: all .3s;
}

.cf-area:last-child {
	border-bottom: none;
}

.cf-area dt {
	width: 200px;
	padding-right: 30px;
	text-align: right;
	line-height: 1.5em;
}

.cf-area dd {
	flex: 1;
}

.cf-area input,
.cf-area textarea {
	width: 100%;
	padding: 0.8em;
	border: none;
	background-color: #e6e6e6;
	font-size: 16px;
	resize: vertical;
	transition: all .3s;
}

.cf-area input:focus,
.cf-area textarea:focus {
	outline: none;
	background: #dde2e9;
}

.cf-required {
	background: #b91e23;
	color: #fff;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px
}

.cf-send input {
	display: block;
	background: linear-gradient(135deg, #6b7a8e 0%, #3b4a5e 100%);
	width: 300px;
	height: 60px;
	margin: 30px auto 0;
	border: none;
	border-radius: 10px;
	color: #fff;
	box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, .2);
	font-size: 1.3em;
	font-weight: bold;
	transition: all .3s;
}

.cf-send input:hover {
	filter: brightness(1.25);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #fce3e3;
	border: none;
	text-align: center;
}

@media screen and (max-width:768px) {
	.cf-area {
		display: block;
	}

	.cf-area dt {
		width: 100%;
		margin-bottom: 5px;
		padding-right: 0;
		text-align: left;
		line-height: 1.5em;
	}
}

.information {
	background-color: #f2f2f2;
	padding: 20px;
	width: 310px;
	border-radius: 8px;
	font-family: Arial, sans-serif;
}

.partner {
	color: #333;
}

.phone-number {
	font-weight: bold;
	color: #333;
}

.phone-number a {
	font-size: 2.7rem;
	color: #333;
}

.contact-person {
	color: #666;
	margin-left: 5px;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid black;
	border-radius: 30px;
	padding: 10px 20px;
	text-decoration: none;
	color: black;
	font-size: 14px;
	margin-top: 10px;
	width: 180px;
}

/*アイキャッチ画像*/
.eyecatch {
	max-height: 360px;
	overflow: hidden;
}

.eyecatch img {
	margin: 0 auto;
	max-width: 100%;
}

/*レスポンシブの設定*/

@media(min-width:768px) {

	/*２段組*/



	/*ナビゲーション
    nav li {
        margin-right: 40px;
    }*/
}

.excerpt img {
	float: left;
	margin-right: 20px;
	width: 40%;
}

.siteinfo {
	padding: 0;
	margin: 0;
}

@media(max-width:499px) {
	.mei h1 a {
		font-size: 1.4rem;
	}

	/*
    .siteinfo h1 {
        font-size: 20px;
    }

    .siteinfo p {
        font-size: 12px;
    }
*/
	.excerpt img {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}

	/*記事*/
	article h1 {
		font-size: 20px;
	}


	/*記事の概要*/
	.excerpt p {
		font-size: 12px;
	}



	/*メニュー*/
	.blogmenu .widgettitle {
		font-size: 12px;
	}

	.blogmenu li a {
		font-size: 12px;
	}

	/*見出し*/
}

/*ロード*/

/* Loading画像中央配置　*/
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
.loader img {
	width: 260px;
}

.shutter {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1E90FF;
	z-index: 9999;
	animation: byeShutter 2.6s forwards;
}

.shutter::before,
.shutter::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

.shutter::before {
	background-color: white;
	width: 0;
	height: 1px;
	animation: shutterOpen1 2.6s forwards;
}

.shutter::after {
	width: 120%;
	height: 0;
	margin-left: -10%;
	background-color: #006FDE;
	animation: shutterOpen2 2.6s forwards;
}

.content {
	animation: contentScale 2.6s forwards;
}

@keyframes byeShutter {
	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}

@keyframes shutterOpen1 {
	0% {
		width: 0;
		height: 800px;
	}

	50% {
		width: 100%;
		height: 800px;
	}

	60% {
		width: 100%;
		height: 1px;
	}

	90% {
		width: 100%;
		height: 100%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}

@keyframes shutterOpen2 {
	60% {
		width: 120%;
		height: 0;
		transform: rotate(30deg);
	}

	90% {
		width: 120%;
		height: 150%;
		transform: rotate(-30deg);
	}

	100% {
		width: 120%;
		height: 150%;
		transform: rotate(-30deg);
	}
}

@keyframes contentScale {
	70% {
		transform: perspective(800px) scale(0.9) rotateX(15deg);
	}

	100% {
		transform: perspective(800px) scale(1) rotateX(0);
	}
}
</pre></body></html>