@charset "UTF-8";

/* reset */
html, body, footer, header, main,
div, section, nav, form,
h1, h2, h3, h4, h5, h6, a, p, img, address,
span, b, i, q, small, strong, blockquote,
pre, abbr, cite, code, del, dfn, em, ins,
kbd, samp, sub, sup, var, article aside,
details, menu, summary, mark, time,
dl, dt, dd, ol, ul, li,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
iframe, object,
audio, video
canvas, figcaption, figure {
	margin: 0;
	padding: 0;
	border: 0;
}
*, *::before, *::after {
	box-sizing: border-box;
}
table {
	border-collapse: collapse;
}
table, tr, td {
	border-spacing: 0;
}
tr, td, img {
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}
p {
	margin-block-start: 0;
	margin-block-end: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
html {
	font-size: 62.5%; /* 1rem =10px */
}
body {
	font-size: 1.6em; /* default =16px */
	line-height: 1.6;
	color: #444;
	min-width: 320px;
}
body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.loading-hero-msg, #topCatchPhrase, .topMainTitle, .f-title, .f-title-JN, .topSecondTitle {
	font-family: 'Hiragino Mincho ProN','ヒラギノ明朝 ProN W3','ＭＳ Ｐ明朝','MS PMincho',sans-serif;
}
.loading-hero-msg-2 {
	font-family: "Sawarabi Mincho";
}
.f-subheadline {
	font-family: 'Dancing Script', cursive;
}
#container.t-container {
	width: 100%;
	margin: 0 auto;
}
img {
	width: 100%;
	height: auto;
}

/* ------------------------- */
/* ---- loadingAnime ------- */
/* ------------------------- */

#loadingAnime {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	width: 100%;
	height: 100vh;
	animation: loadingNone 1s ease-in-out 2.5s 1 normal forwards;
}
@keyframes loadingNone {
	0% { opacity: 1; }
	99% { opacity: 0; }
	100% { opacity: 0; display: none; z-index: -999;}
}
.loadingAnime-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	background: #EFEADF;
	width: 0%;
	height: 100vh;
	animation: loading-before 1s ease .5s 1 normal forwards;
}
@keyframes loading-before {
	0% { width: 0%; }
	100% { width: 100%; }
}
.loadingAnime-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fff;
	width: 0%;
	height: 100vh;
	animation: loading-after 1s ease 1.5s 1 normal forwards;
}
@keyframes loading-after {
	0% { width: 0%; }
	100% { width: 100%; }
}
.loading-hero-msg {
	font-size: 140%;
	text-align: center;
	color: #b8a799;
	margin-bottom: 4rem;
	animation: loading-scale 3.5s linear 0s 1 normal forwards;
}
@keyframes loading-scale {
	0% { transform: scale(1, 1); }
	100% { transform: scale(1.06, 1.06); }
}
.loading-hero-msg-2 {
	font-size: 120%;
	text-align: center;
	color: #b8a799;
	animation: loading-scale 3.5s linear 0s 1 normal forwards;
}
@keyframes loading-scale {
	0% { transform: scale(1, 1); }
	100% { transform: scale(1.06, 1.06); }
}
.cross {
	position: relative;
	display: inline-block;
}
.cross::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 18px;
	background-color: #b8a799;
	width: 24px;
	height: 1px;
	transform: rotate(45deg);
}
.cross::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -40px;
	background-color: #b8a799;
	width: 24px;
	height: 1px;
	transform: rotate(135deg);
}
.loading-hero-img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 80px;
	margin: 0 auto 4rem;
	animation: loading-scale 3.5s linear 0s 1 normal forwards;
}
.line {
	display: inline-block;
	background-color: #b8a799;
	width: 22px;
	height: 1px;
	margin-bottom: 7px;
}

/* ------------------- */
/* ---- Header ------- */
/* ------------------- */

/* Logo */
.t-header {
	position: fixed;
	z-index: 90;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
.t-logo {
	position: absolute;
	left: 20px;
	display: block;
	height: auto;
}
/* menuBar */
.menuBar {
	position: absolute;
	top: 28px;
	right: 5%;
	width: 26px;
	height: 20px;
	cursor: pointer;
}
.menu_line {
	position: absolute;
	display: block;
	background: #444;
	width: 100%;
	height: 2px;
	transition: transform .3s;
}
.lineCenter {
	top: 9px;
}
.lineBottom {
	bottom: 0;
}
.lineTop.active {
	transform: translateY(2px);
}
.lineBottom.active {
	transform: translateY(-2px);
}
/* contactBotton */
#contactBotton {
	position: absolute;
	right: 0;
}
#contactBotton a {
	background-color: #BAB687;
	border-radius: 24px;
	color: #fff;
}
#contactBotton a:hover {
	opacity: 0.8;
}
/* nav_pc */
.nav_pc {
	position: absolute;
	right: 0;
	bottom: 18px;
	width: 80%;
	max-width: 1160px;
	margin-right: 5%;
}
.nav_pc_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.4rem;
}
.nav_pc_menu li a {
	position: relative;
	display: inline-block;
}
.nav_pc_menu li a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	background-color: #444;
	width: 100%;
	height: 1px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.nav_pc_menu li a:hover::after {
	transform: scale(1, 1);
}
/* gNav */
.gNav {
	height: 100%;
	margin: 0 auto;
}
.gNav_menu_item {
	opacity: 0;
	margin: 24px 0;
	transform: translateY(100px);
}
.gNav a {
    color: #efefef;
    text-decoration: none;
}
.gNav a:hover {
    color: #444;
}
.full_nav.on .gNav li {
    opacity: 1;
    transform: translateY(0);
}
.gNavClose {
	position: relative;
	display: block;
	background-color: #efefef;
	border: solid 1px #444;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	margin: 0 auto;
}
.gNavClose::before {
	content: '';
	position: absolute;
	top: 15px;
	right: 5px;
	background-color: #444;
	width: 20px;
	height: 1px;
	transform: rotate(45deg);
}
.gNavClose::after {
	content: '';
	position: absolute;
	top: 15px;
	right: 5px;
	background-color: #444;
	width: 20px;
	height: 1px;
	transform: rotate(135deg);
}
/* transition & delay */
.transition10 {transition: all 0.8s cubic-bezier(0.420, 0.000, 0.580, 1.000);}
.delay01 {transition-delay: 0.1s;}
.delay02 {transition-delay: 0.15s;}
.delay03 {transition-delay: 0.2s;}
.delay04 {transition-delay: 0.25s;}
.delay05 {transition-delay: 0.3s;}
.delay06 {transition-delay: 0.35s;}
.delay07 {transition-delay: 0.4s;}
.delay08 {transition-delay: 0.45s;}
.delay09 {transition-delay: 0.5s;}
.delay10 {transition-delay: 0.55s;}
.delay11 {transition-delay: 0.6s;}
.delay12 {transition-delay: 0.65s;}
.delay12 {
	margin-top: 0;
	margin-bottom: 0;
}
/* full_nav */
.full_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 92;
	display: none;
	width: 100%;
	height: 100%;
}
.full_open {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(68,68,68,0.8);
	padding-top: 2%;
	opacity: 0;
	width: 0;
	height: 100%;
}
.full_nav.on .full_open {
    opacity: 1;
}

/* ---------------------- */
/* ---- buttonTop ------- */
/* ---------------------- */

#buttonTop {
	position: fixed;
	right: 48px;
	bottom: 56px;
	z-index: 91;
}
.pageTop {
	position: relative;
	display: block;
}
.pageTop::before,
.pageTop::after {
	content: '';
	position: absolute;
	margin: auto;
}
.circle::before {
	background-color: #fff;
	border: solid 1px #BAB687;
	border-radius: 50%;
	width: 32px;
	height: 32px;
}
.circle::after {
	top: 12px;
	left: 10px;
	border-top: solid 1px #BAB687;
	border-right: 1px solid #BAB687;
    width: 12px;
    height: 12px;
	transform: rotate(-45deg);
}

/* ----------------------- */
/* ---- Cross Fade ------- */
/* ----------------------- */

#crossFade {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 90vh;
	max-width: 1120px;
	margin: 0 auto;
}
.crossFadeImg {
	position: absolute;
	z-index: 80;
	opacity: 0;
	width: 100%;
	line-height: 0;
	animation: crossFade 12s ease 0s infinite;
}
.crossFadeImg:nth-of-type(2) {
	 animation-delay: 3s;
}
.crossFadeImg:nth-of-type(3) {
	 animation-delay: 6s;
}
.crossFadeImg:nth-of-type(4) {
	 animation-delay: 9s;
}
@keyframes crossFade {
	0% {opacity: 0;}
	33% {opacity: 1;}
	66% {opacity: 0; z-index: 9;}	
	100% {opacity: 0;}
}

/* --------------------------- */
/* ---- topCatchPhrase ------- */
/* --------------------------- */

#topCatchPhrase {
	position: absolute;
	z-index: 81;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.4em;
}

/* ------------------------ */
/* ---- topTitleBox ------- */
/* ------------------------ */

#topTitleBox {
	background-color: #BAB687;
	width: 100%;
	height: auto;
}
.topTitle-wrap {
	background-color: #fff;
	padding: 16px 16px 32px;
	width: 100%;
	height: auto;
	max-width: 1120px;
	margin: 0 auto;
}
.topMainTitle {
	text-align: center;
	color: #BAB687;
	margin: 0 auto;
}

.topSecondTitle {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #BAB687;
	margin: 0 auto 1.8rem;
}
.topTags {
	width: 80%;
	max-width: 640px;
	margin: 0 auto;
}
.topTags-item {
	border-bottom: solid 1px #BAB687;
	padding-bottom: 4px;
	margin: 0 auto 1.6rem;
}
ul.topTags li.topTags-item:nth-child(3) {
	margin: 0 auto;
}
.topTags-item a {
	position: relative;
	padding-left: 1.4rem;
	color: #BAB687;
}
.topTags-item a::before {
	content: '';
	position: absolute;
	top: 25%;
	left: 0;
	border-top: solid 1px #BAB687;
	border-right: 1px solid #BAB687;
    width: 0.7rem;
    height: 0.7rem;
	transform: rotate(45deg);
}
.topTags-item a:hover {
	opacity: 0.8;
}

/* -------------------------- */
/* ---- Top Main Content ---- */
/* -------------------------- */

/* t-content */
.t-content {
	width: 100%;
	height: auto;
}
/* h2 */
.titleAbout {
	position: relative;
	font-size: 180%;
	margin: 0 auto 1.6rem;
}
.titleAbout::before, .titleService::before,
.titleMenu::before, .titleNews::before {
	content: '';
	position: absolute;
	top: 50%;
	z-index: -1;
	background-color: rgba(186,182,135,0.5);
	border-radius: 50%;
	box-shadow: 0 0 8px #fff inset;
	width: 48px;
	height: 48px;
	transform: translate(-50%, -50%);	
}
.titleAbout::before {
	left: 8%;	
}
.titleService, .titleMenu {
	position: relative;
	width: 90%;
	max-width: 1120px;
	font-size: 180%;
	margin: 0 auto 2.4rem;
}
.titleService::before, .titleMenu::before, .titleNews::before {
	left: 4%;	
}
.titleStaff {
	text-align: center;
	margin-bottom: 4rem;
}
.titleNews {
	position: relative;
	width: 90%;
	max-width: 960px;
	font-size: 180%;
	margin: 0 auto 2.4rem;
}
/* h4 */
.topContactInfo-tit {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto 0.8rem;
}
/* Text Box */
.textBox {
	width: 90%;
	max-width: 1120px;
	font-size: 1.4rem;
	margin: 0 auto;
}
.textBox-about {
	font-size: 1.4rem;
}
/* contentAbout */
#contentAbout {
	margin: 0 auto 4rem;
}
.topAbout-wrap {
	width: 100%;
	height: auto;
}
.topAboutContent-wrap {
	width: 100%;
}
/* contentService */
#contentService {
	margin: 0 auto 4rem;
}
.topFeature-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	max-width: 1120px;
	margin: 0 auto 2rem;
}
.topFeature-img {
	width: 50%;
}
.topFeature-txt-inner {
	width: 50%;
	background-color: #EFEADF;
}
.topFeature-headline {
	padding: 16px;
	background-color: #BAB687;
}
.topFeature-tit {
	color: #fff;
	font-weight: normal;
	font-size: 140%;
	line-height: 1;
}
.f-subheadline {
	color: #fff;
	font-weight: normal;
	font-size: 180%;
	line-height: 1;
	margin-bottom: 1.2rem;
}
.topFeature-txt {
	padding: 16px;
	font-size: 1.4rem;
}
.arrow {
	width: 24px;
	height: 24px;
	border-bottom: solid 1px #444;
	border-left: solid 1px #444;
	margin: 0.8rem auto 4rem;
	transform: rotate(-45deg);
}

/* contentMenu */
#contentMenu {
	margin: 0 auto 6.4rem;
}
.priceTable {
	text-align: center;
	width: 90%;
	max-width: 1120px;
	margin: 0 auto 4rem;
}
.priceTable tr {
	border: solid 1px #BAB687;
	width: 100%;
}
.priceTable tr.trColor {
	background-color: #BAB687;
	width: 100%;
}
.priceTable tr.row {
	background-color: #BAB687;
	width: 100%;
	min-height: 60px;
}
.priceTable tr.trColor td {
	padding: 1.6rem;
	color: #fff;
	line-height: 1.2;
	min-width: 99px;
}
.priceTable tr .td-left {
	width: 20%;
	min-width: 68px;
}
.priceTable tr .td-one-column {
	width: 80%;
}
.priceTable td {
	padding: 1.6rem;
	border: solid 1px #e0d6c0;
	color: #444;
	vertical-align: middle;
}
.topBotton-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	width: 100%;
	max-width: 1120px;
	padding-top: 12px;
	margin: 0 auto;
}
.topBottonBox {
	text-align: center;
}
.topBottonBox:hover {
	opacity: 0.8;
}
/* contentStaff */
.topStaffBk {
	background-color: #EFEADF;
	width: 100%;
	height: auto;
}
.topStaff-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	max-width: 960px;
	margin: 0 auto 6rem;
}
.topStaffBox {
	max-width: 320px;
	height: auto;
}
.topStaffName {
	font-weight: bold;
	margin-bottom: 2.4rem;
}
.topStaffMessage {
	padding: 1.6rem;
	background-color: rgba(255,255,255,0.4);
	color: #666;
	font-size: 1.4rem;
	margin-bottom: 2.4rem;
}
.topStaffText {
	font-size: 1.4rem;
}
.topStaffImg {
	max-width: 320px;
	height: auto;
}
/* contentNews */
#contentNews {
	margin: 0 auto 4rem;
}
.topNews-wrap {
	width: 100%;
	height: auto;
	margin-bottom: 4rem;
}
.topNewsGrid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}
.topNewsImg {
	width: 33%;
	height: auto;
}
.topNewsImg img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: .3s ease-in-out;
}
.topNewsImg:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.toNewsPages {
	position: relative;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.4em;
	margin: 0 auto;
}
.toNewsPages::after {
	content: '';
	position: absolute;
	top: 2.8rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: #444;
	width: 40px;
	height: 1px;
}
/* ins-wrap */
#ins-wrap {
	background-color: #BAB687;
	padding: 2.4rem;
	width: 90%;
	max-width: 960px;
	margin: 0 auto 4rem;
}
.ins-wrap-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	width: 100%;
	height: inherit;
	margin: 0 auto;
}
.ins-photo {
	width: 33%;
	height: auto;
}
.toInsPages {
	position: relative;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.4em;
	margin: 0 auto 6.4rem;
}
.toInsPages::after {
	content: '';
	position: absolute;
	top: 2.8rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: #444;
	width: 40px;
	height: 1px;
}
/* Instagram */
#top-ins-title {
	display: block;
	background: #1a2a6c;
	background: -webkit-linear-gradient(to left, #fdbb2d, #b21f1f, #1a2a6c);
	background: linear-gradient(to left, #fdbb2d, #b21f1f, #1a2a6c);
	padding: 1.6rem 0;
	border-radius: 4px;
	width: 320px;
	height: auto;
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	margin: 0 auto 4rem;
}
/* Facebook */
#top-fac-title {
	display: block;
	background: #3b5998;
	padding: 1.6rem 0;
	border-radius: 4px;
	width: 320px;
	height: auto;
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	margin: 0 auto 4rem;
}
/* Botton others */
.topBottonBoxNew {
	display: block;
	background-color: #BAB687;
	padding: 1.6rem 0;
	border-radius: 4px;
	width: 320px;
	height: auto;
	text-align: center;
	color: #fff;
	margin: 0 auto 4rem;
}
#top-ins-title:hover, #top-fac-title:hover, .topBottonBoxNew:hover {
	opacity: 0.8;
}
#top-ins-title img, #top-fac-title img {
	width: 28px;
	height: auto;
	vertical-align: middle;
	margin-right: 8px;
}

/* ------------------- */
/* ---- Footer ------- */
/* ------------------- */

#footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #BAB687;
	padding-top: 8rem;
	padding-bottom: 8rem;
	width: 100%;
	height: auto;
}
.t-footer-content {
	width: 80%;
	height: auto;
	color: #fff;
	text-align: center;
}
.ins-fotter-icon {
	padding: 15px;
	margin-bottom: 2.4rem;
	
}
.ins-fotter-icon img {
	width: 30px;
	height: 30px;
}
.f-title {
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.4em;
	line-height: 2;
	margin-bottom: 2.4rem;
}
.f-title-JN {
	padding: 0.8rem;
	border-top: solid 2px #fff;
	border-bottom: solid 2px #fff;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
.f-text {
	margin-bottom: 1rem;
}
.copyright {
	font-size: 1.2rem;
	margin-top: 3rem;
}

/* ------------------------- */
/* ----- Child Content ----- */
/* ------------------------- */

.subPage-wrap {
	max-width: 960px;
	margin: 0 auto 4rem;
}
.subPage-headline {
	font-size: 140%;
	margin-bottom: 2.4rem;
}
/* Info Page */
.borderLeft {
	width: 100%;
	padding-left: 4px;
	border-left: solid 4px #BAB687;
	line-height: 1;
	font-size: 120%;
	margin: 0 auto 0.8rem;
}
.infoTable {
	width: 100%;
	margin: 0 auto 1.6rem;
}
.infoTable tr {
	border-top: solid 1px #444;
	border-bottom: solid 1px #444;
}
.infoTable td {
	padding-top: 1.6rem;
	padding-bottom: 1.6rem;
	vertical-align: top;
}
.textBox-info, .info-google {
	margin-bottom: 2.4rem;
}
/* News Page */
.newsLead-wrap {
	background-color: #EFEADF;
	padding: 1.6rem;
	width: 100%;
	max-width: 960px;
	margin: 0 auto 4rem;
}
.newsLead {
	font-size: 120%;
}
.news-item-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: solid 1px #444;
	padding: 2.4rem 0;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.news-item-inner {
	border-collapse: separate;
}
.last-news {
	margin-bottom: 4rem;
}
.news-mar-top {
	padding-top: 16rem;
	margin-top: -16rem;
}

/* ---------------------- */
/* ---- Delighter ------- */
/* ---------------------- */

/* splash */
.splash.delighter {
	transition: all .8s ease-out;
	opacity: 0;
}
.splash.delighter.started {
	opacity: 0;
}
.splash.delighter.started.ended {
	opacity: 1;
}
/* bottom */
.bottom.delighter {
	transition: all 1.2s ease-out;
	transform: translate(0%, 12%);
	opacity: 0;
}
.bottom.delighter.started {
	transform: translate(0%, 0%);
	opacity: 1;
}

/* ----------------- */
/* ---- Span ------- */
/* ----------------- */

.small {
	font-size: 1.2rem;
}
.under-line {
	font-size: 1.2rem;
	text-decoration-line: underline;
}
.bold {
	font-weight: bold;
}
.weightN {
	font-size: 1.2rem;
	font-weight: normal;
}
.alert {
	padding-left: 1.2rem;
	color: #eb261b;
	font-size: 1.2rem;
}
.bottonStyle-s {
	padding: 12px 24px;
	border-radius: 4px;
	background-color: #BAB687;
	color: #fff;
}
.red {
	color: #eb261b;
}
.sq {
	display: inline-block;
	background-color: #444;
	width: 8px;
	height: 8px;
	margin-right: 1.2rem;
	margin-left: 0.6rem;
	transform: rotate(-45deg);
}
.leadCap {
	font-weight: normal;
	font-size: 70%;
	line-height: normal;
	vertical-align: text-top;
}

/* ------------------ */
/* ---- Renew ------- */
/* ------------------ */

.txt-justify {
	text-align: justify;
	text-justify: inter-ideograph;
}


