@charset "UTF-8";

/*
Theme Name: ビジネスホテル日新館
Description: 鹿児島県南さつま市にある「ビジネスホテル日新館」さまのWebサイトです。
*/

/**********************************************************************************


	reset

	
***********************************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body { line-height: 1; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
/*nav ul { list-style: none; }*/
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del { text-decoration: line-through; }
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th { text-align: left; }
hr {
    display: block;
    height: 1px;
    border: 0;  
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input, select { vertical-align:middle; }
input, textarea {
	margin: 0;
	padding: 0;
}
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    max-width: 100%;
	height: auto;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
img {
	-webkit-transition: 0.6s;
	transition: 0.6s; 
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*** cleafix
*********************************************************************************/
.clearfix, div, ul, dl, ol { zoom: 1; }
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/*** 初期設定
*********************************************************************************/
html { font-size: 62.5%;/*10px*/ }
body {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 1.6rem;
	-webkit-text-size-adjust: none;
	line-height: 1.6;
	letter-spacing: .05em;
	color: #333;
	/*min-width: 1200px;*/
}

/*** link
***********************************************************************************/
a:link,
a:visited,
a:hover,
a:active {
	color: #cc0000;
}


/**********************************************************************************


	header (mobile first)

	
***********************************************************************************/
.header {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
}
.header .logo img { 
	width: 55%; 
	margin-top: 5px;
}
nav{
	width: 100%;
	height: 80px;
	position: relative;
	background: #f6f6f6;
}
.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0 1em;
}

/*** ナビゲーション部分 ***/
.menu ul li a {
	display: block;
	font-weight: bold;
	padding: 1.15em;
	border-bottom: 1px dotted #666;
	color: #333;
	text-decoration: none;
}
.menu ul li a:hover { 
	background-color:rgba(0,0,0,0.7);
	color: #fff;
}
.menu a span { 
	font-size: 1.4rem;
	display: block;
	text-shadow: 0 2px 4px rgba(0,0,0,.5);
}
.menu {
	text-align: center;
	background-color: rgba(255,255,255,.8);
	transition: .5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}

/*** OPEN時の動き ***/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
}

/*** トグルボタンのスタイルを指定 ***/
.Toggle {
    display: block;
    position: absolute;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
	right: 20px;
}
.Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #333;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
	border-radius: 4px;
}
.Toggle span:nth-child(1) { top: 5px; } 
.Toggle span:nth-child(2) { top: 18px; }
.Toggle span:nth-child(3) { top: 32px; }
 
.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/*** 2番目と3番目のspanを45度に ***/
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/** media Queries
===================================================================================*/
@media only screen and (min-width: 1025px) {
  
header::after{
	display:none;
} 
.header__inner { 
	width: 1200px; 
	padding: 10px 0 0 0;
	margin: 0 auto; 
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo img { 
	width: 70%; 
} 
nav { 
	display: flex; 
	background-color: transparent;  
}
.menu {
	width: 100%;
	background-color: transparent;
	margin-top:0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.menu a {
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
	border-bottom: none;
}
.menu ul {
	height: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.menu ul li a {
	padding: 0 10px;
	border-bottom: none;
}  
.menu ul li a:hover {
	background-color:transparent;
}
.nav-fb img,
.nav-insta img,
.nav-jkk img {
	margin-top: -12px;
}
.Toggle{ display: none; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 415px) {

.header .logo img { 
	width: 40%;
	margin-top: -5px;
}
nav{ height: 65px; }
.drawer{
	height: 65px;
}
}


/**********************************************************************************


	movie / mainVisual

	
***********************************************************************************/
.movie {
	position: relative;
	width: 100%;
	min-width: 1400px;
	height: auto;
	background:url(../movie/top.jpg) no-repeat center;
	background-size: cover;
}
.movie::before {
	content: "";
	display: block;
	padding-top: 52%; 
}
.movie__inner {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}
.movie video {
	width: 100%;
	height: auto !important;
	margin-left: auto;
	margin-right: auto;
}
.main-visual {
	position: relative;
	height: 480px;
	max-height: 480px;
	min-width: 1400px;
}
.cat .main-visual {
    background: url("cat/bg_main-visual.jpg") no-repeat center center;
	background-size: cover;
}
.meal .main-visual {
    background: url("meal/bg_main-visual.jpg") no-repeat center center;
	background-size: cover;
}
.room .main-visual {
    background: url("room/bg_main-visual.jpg") no-repeat center center;
	background-size: cover;
}
.activity .main-visual {
    background: url("activity/bg_main-visual.jpg") no-repeat center center;
	background-size: cover;
}
.access .main-visual {
    background: url("access/bg_main-visual.jpg") no-repeat center center;
	background-size: cover;
}

.header-sub {
	width: 100%;
	position: absolute;
    z-index: 2;
    bottom: 120px;
    left: 0;
}
.header-sub__inner { 
	width: 1120px; 
	margin: 0 auto; 
}
.header-sub__item {
	display: flex;
	justify-content: flex-end;
	margin-right: 150px;
}
.header-sub__item img { width: 200px; }


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) {

.main-visual {
	position: relative;
	height: 480px;
	max-height: 480px;
	min-width: 100%;
}
.movie {
	width: 100%;
	min-width: 100%;
}
.movie::before {
	content: "";
	display: block;
	padding-top: 55.3333333%; 
}
.header-sub__inner {
	width: 100%;
	min-width: 100%;
}
.header-sub__item {
	margin-right: 230px;
}
.header-sub__item img { width: 130px; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 768px) {

.header-sub {
    bottom: 90px;
}
.header-sub__item {
	margin-right: 180px;
}
.header-sub__item img { width: 100px; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 415px) {

.header-sub {
    bottom: 50px;
}
.header-sub__item {
	margin-right: 95px;
}
.header-sub__item img { width: 50px; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 376px) {

.header-sub {
    bottom: 45px;
}
.header-sub__item {
	margin-right: 90px;
}
}


/**********************************************************************************


	contents

	
***********************************************************************************/
.cat-ear { 
	width: 100%;
	min-width: 100%;
    height: 0;
    padding-top: calc(150 / 1920 * 100%) ;	
    position: absolute; 
	bottom: 0; 
	z-index: 2; 
	background: url(common/bg_cat-ear.png) center top no-repeat;
	background-size: cover;
}
.page-title {
	text-align: center;
	margin-top: 1%;
}
.page-title h2 {
	font-size: 5.6rem;
}
.page-title span {
	font-size: 3.2rem;
	display: block;
}
main { display: block; /* IE対策 */ }
.main { 
	width: 100%;
	min-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
.contents__inner {
	width: 1280px;
	padding: 64px 0;
	margin: 0 auto;
}
.section-title.room {
	width: 100%;
	min-width: 1400px;
	height: 200px;
	position: relative;
	background: url(room/bg_section-title--room.jpg) center center no-repeat;
	background-size: cover;
	margin-top: 64px;
}
.section-title.other-facility {
	width: 100%;
	min-width: 1400px;
	height: 200px;
	position: relative;
	background: url(room/bg_section-title--other-facilities.jpg) center center no-repeat;
	background-size: cover;
}
.section__title {
	position: absolute;
	z-index: 1;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 3.2rem;
	color: #fff;
}
.overlay::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.sec-title__xl {
	font-size: 4.8rem;
	margin-bottom: 4.8rem;
}
.sec-title__xl span {
	font-size: 2.4rem;
	display: block;
	color: #666;
}
.sec-title__l {
	font-size: 3.2rem;
	margin-bottom: 3.2rem;
}
.sec-title__m {
	font-size: 2.4rem;
	margin-bottom: 2.4rem;
}
.sec-title__s {
	font-size: 2.0rem;
	margin-bottom: 2.0rem;
}
.title-paws { 
	position: relative;
	margin-top: 64px;
}
.title-paws::after {
	position: absolute;
	left: 48%;
	top: -64px;
	content: url(common/bg_title-paws.png);
}
.black .title-paws::after {
	position: absolute;
	left: 48%;
	top: -64px;
	content: url(common/bg_title-paws-white.png);
}
.black { background: #000; }
.bg-gray { background: #eee; }
.paws {
	background: url(common/paws.png) right top no-repeat;
	
}
.pc { display: block; }
.sp { display: none; }

/***----- animation -----***/
/* Float */
.hvr-float {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Skew Forward */
.hvr-skew-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
	-webkit-transform: skew(-10deg);
	transform: skew(-10deg);
}
/* Skew Backward */
.hvr-skew-backward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
	-webkit-transform: skew(10deg);
	transform: skew(10deg);
}
.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
.keyframe2 { animation-name: anim_h; }

@keyframes anim_h {
    0% { transform: translate(0px, 0); }
    100% { transform: translate(15px, 0); }
}

/***----- animate.cssにおいてアニメ―ションする要素を非表示にする ---***/
/*.invisible {
    visibility: hidden;
}*/
.delay-1 { animation-delay: .25s; }
.delay-2 { animation-delay: .5s; }
.delay-3 { animation-delay: .75s; }
.delay-4 { animation-delay: 1s; }

/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.main { 
	width: 100%;
	min-width: 100%;
}
.contents__inner {
	width: 100%;
	min-width: 100%;
	padding: 0 20px;
	
}
.page-title {
	text-align: center;
	margin-top: 5%;
}
.section-title.room,
.section-title.other-facility {
	width: 100%;
	min-width: 100%;
	margin-bottom: 64px;
}
.pc { display: none; }
.sp { display: block; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 415px) { 

.page-title {
	margin-top: 7%;
}
.page-title h2 {
	font-size: 4.8rem;
}
}

/** media Queries
===================================================================================*/
@media only screen and (max-width: 376px) { 

.page-title h2 {
	font-size: 3.6rem;
}
.page-title span {
	font-size: 2.0rem;
	display: block;
}
.sec-title__xl {
	font-size: 2.4rem;
	margin-bottom: 4.8rem;
}
.sec-title__xl span {
	font-size: 2rem;
	display: block;
	color: #666;
}
.title-paws::after {
	left: 43%;
}
.black .title-paws::after {
	left: 43%;
}
}


/**********************************************************************************


	1. home / トップページ

	
***********************************************************************************/
.greeting { 
	background: #efefef;
	background: url(images/bg_greeting.png) top center no-repeat;
	background-size: contain;
}
.greeting__inner {
	width: 960px;
	padding: 64px 0 64px;
	margin: 0 auto;
}
.greeting h2 {
	background: url(common/cat-face.png) left top 7px no-repeat;
	background-size: 4%;
	padding-left: 55px;
}
.greeting-name { 
	text-align: right;
	margin-top: 24px; 
}
.greeting-name span { 
	font-size: 2rem;
	margin-left: 1em;
}
.top__appeal {
	background: #eee;
}
.top__appeal h2 { 
	text-align: center;
	margin-bottom: 64px;;
}
.appeal__item {
	display: flex;
	justify-content: space-between;

}
.appeal__item li { 
	width: calc( (100% - 40px) / 3 ); 
	height: 410px;
	position: relative;
}
.appeal-cat-01 {
	position: absolute;
	left: -50px;
	bottom: -20px;
}
.appeal-cat-01.animated:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.appeal-cat-02 {
	position: absolute;
   	top: -70px;
    left: 65px;
}
.appeal-cat-02.animated:hover {
    animation-name: bounce;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.appeal-cat-03 {
	position: absolute;
	right: -60px;
	bottom: -30px;
}
.appeal-cat-03.animated:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.appeal__item li:nth-of-type(2) { margin-top: 100px; }
.appeal-image { position: relative; }
.appeal-name {
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 3.6rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
   	text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}
.appeal-name span {
	display: block;
	font-size: 2rem;
	letter-spacing: 0;
}

/***----- hoverの色 -----***/
.appeal__item li:first-of-type.effect-color {
	background: #F2D230;
}
.appeal__item li:nth-of-type(2).effect-color {
	background: #49F2EF;
}
.appeal__item li:nth-of-type(3).effect-color {
	background: #F2493D;
}
.effect-color img {
	opacity: 1;
 	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.effect-color img:hover { opacity: .65; }

.recommended-plan {}
.recommended-plan h2 { text-align: center; }
.plan-body { margin-bottom: 40px; }
.plan-body ul {
	display: flex;
	justify-content: space-between;
}
.plan-body li { width: calc( (100% - 40px) / 3 ); }
#searchWrapper { 
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 64px;
}
#searchWrapper h2 { margin-right: 1.5em; }
#searchWrapper h2 img { width: 180px; }
#search { display: flex; }

.plan__bnr { text-align: center; }
.footer-utility { background: #eee; }

/***----- プランRSS -----***/
.plan_rss {
	display: flex; 
	flex-wrap: wrap; 
	justify-content: space-between;
	margin-bottom: 96px;
}
.plan_rss .mini {
	width: calc( (100% - 48px) / 3 ); 
	padding: 0; 
	display: flex; 
	flex-wrap: wrap;
}
.plan_rss .mini .plan_img,
.plan_rss .mini .plan_img img,
.plan_rss .mini .plan_text {
	width:100%; 
}
.plan_rss .mini .plan_img { order:1; }
.plan_rss .mini .plan_img img {
	display: block; 
	height: auto;
	border-radius: 3px;
}
.plan_rss .mini .plan_text {
	text-align: left; 
	order: 2;
}
.plan_rss .mini .plan_text a {
	font-size: 14px; 
	text-decoration: none;
}
.plan_rss .mini .plan_text h4 {
	font-size: 14px; 
	margin: 18px 0;
}
.plan_rss .mini .plan_text p { font-size: 14px; }

/***----- sns -----***/
.sns {
	width: 1000px;
	margin: 0 auto 48px;
}
.sns__item {
	display: flex;
}
.sns-instagram,
.sns-facebook {
	width: min(100%,500px);
}
.sns-facebook > .fb-page{
     display:grid;
    width:100%;
}
.sns-instagram { margin-right: 20px; }


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.greeting { 
	background: url(images/bg_greeting.png) center center no-repeat;
	background-size: contain;
}
.greeting__inner {
	width: 100%;
	min-width: 100%;
	padding: 64px 40px 64px;
}
.top__lead .contents__inner { flex-direction: column; }
.top__lead__photo {	
	width: 100%;
	text-align: center;
	margin-bottom: 40px; 
}
.top__lead__txt { 
	width: 100%;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	background: url(common/kamon.jpg) center bottom no-repeat;
	background-size: 27%;
}
.top__lead__txt h2 { 
	text-align: center;
	margin: 0 0 64px 0;
}
.top__lead__txt p { margin-left: 0; }

.top__appeal .contents__inner { padding: 64px 20px 64px; }
.appeal__item {
	flex-direction: column;
	text-align: center;
}
.appeal__item li { 
	width: 80%; 
	height: auto; 
	margin: 0 auto;
min-height:1px; /*IE対策*/
min-width:1px; /*IE対策*/
}
.appeal__item li:nth-of-type(2),
.appeal__item li:nth-of-type(3) { 
	margin-top: 0; 
}
.appeal__item li:not(:last-of-type) { margin-bottom: 96px; }

.recommended-plan .contents__inner { padding: 64px 20px 64px; }

.plan-body ul {
	flex-direction: column;
	text-align: center;
}
.plan-body li { width: 100%; }
.plan-body li:not(:last-of-type) { margin-bottom: 40px; }
.plan-notice { padding: 1.5em; }

.info-area .contents__inner { flex-direction: column; }
.info-area__news { width: 100%; }
.info-area__search {
	width: 300px;
	margin: 0 auto 64px;
}
#searchWrapper { flex-direction: column; }
#searchWrapper h2 { margin: 0 0 24px 0;  }
#searchWrapper h2 img { 
	width: 100%;
	text-align: center;
}
/***----- sns -----***/
.sns {
	width: 100%;
	margin-bottom: 64px;
}
.sns__item {
	display: flex;
	flex-direction: column;
}
.sns-instagram { 
	width: 100%;
	margin: 0 auto 48px !important;
	text-align: center !important;
}
.sns-facebook {
/*	width: 100%;*/
	text-align: center !important;
	margin: 0 auto !important;
}
.fb-page {
	text-align: center !important;
	margin: 0 auto !important;
}
    .fb-page > *{
        width:min(100%,500px)!important;
/*        aspect-ratio: 490 / 500;*/
        max-width:500px;
        width:100%!important;
    }
    .fb-page > * > iframe{
        width:100%!important;
        height:100%!important;
        max-width:500px!important;
    }

.footer-utility .contents__inner { padding: 64px 20px 64px; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 768px){

.greeting h2 {
	background-size: 6%;
}
.plan_rss { width:100%; }
.plan_rss .mini { width: auto; }
.plan_rss .mini:not(:last-of-type) { margin-bottom: 64px; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 376px) { 

.greeting h2 {
	background-size: 10%;
	padding-left: 45px;
}
.appeal__item li { 
	width: 70%; 
	height: auto; 
	margin: 0 auto;
	background: #000;
min-height:1px; /*IE対策*/
min-width:1px; /*IE対策*/
}
.appeal-name { font-size: 2.4rem; } 
.appeal-name span { font-size: 1.6rem; }

}


/**********************************************************************************


	2. お部屋・施設 / room

	
***********************************************************************************/
.room__lead {
	font-size: 1.8rem;
	text-align: center;
	margin: 32px 0 64px;
}
.room__item {
	display: flex;
	position: relative;
	margin-bottom: 144px;
}
.room__item:nth-of-type(2n)  {
	display: flex;
	flex-direction: row-reverse;
}
.room__item::before {
    content: '';
    width: 70%;
    height: 100%;
    background: url(common/paws.png) right bottom no-repeat #eee;
    position: absolute;
    right: 0;
    top: 10%;
    z-index: -1;
}
.room__item:nth-of-type(2n)::before {
    content: '';
    width: 70%;
    height: 100%;
    background: url(common/paws.png) left bottom no-repeat #eee;
    position: absolute;
    left: 0;
    top: 10%;
    z-index: -1;
}
.room__photo {
	width: calc(692 / 1120 * 100%);
}
.room__desc {
	width: calc(428 / 1120 * 100%);
	padding: 5em 2em;
}
.room__type { 
	font-size: 2rem;
	margin-bottom: 24px;
}
.room__type span { 
	display: block;
	font-size: 1.6rem;
	margin-left: 1.5em;
}
.room__type i { margin-right: .5em; }
.other-facilities__item {
	display: flex;
	margin-bottom: 80px;
}
.other-facilities__item:nth-of-type(2n) {
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 80px;
}
.other-facilities__photo {
	width: calc(747 / 1120 * 100%);
}
.other-facilities__desc {
	width: calc(373 / 1120 * 100%);
	padding: 3% 2%;
}
.other-facilities__title { 
	font-size: 2rem;
	margin-bottom: 24px;
}
.other-facilities__title i { margin-right: .5em; }
.other-facilities__title span { 
	display: block;
	font-size: 1.6rem;
	margin-left: 1.5em;
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.room__item,
.room__item:nth-of-type(2n) {
	flex-direction: column;
	position: relative;
	height: 0;
    padding-bottom: 80%;
}
.room__item::before {
    content: '';
    width: 90%;
    height: 0;
    padding-bottom: calc(633 / 1024 * 100%);
    background-color: #eee;
    position: absolute;
    right: 0;
    top: 2.5%;
    z-index: -1;
}
.room__item:nth-of-type(2n)::before {
    content: '';
    width: 90%;
    height: 0;
    padding-bottom: calc(633 / 1024 * 100%);
    background: url(common/paws.png) right bottom no-repeat #eee;
    position: absolute;
    right: 0;
    top: 2.5%;
    z-index: -1;
}
.room__photo {
	width: 95%;
}
.room__item:nth-of-type(2n) .room__photo {
	width: 95%;
	margin-left: 5%;
}
.room__desc {
	width: 90%;
	margin-left: 5%;
	margin-top: 24px;
	padding: 5%;
	position: static;
}
.room__item:nth-of-type(2n) .room__desc {
	width: 90%;
	margin-top: 24px;
	margin-left: 0;
	margin-right: 5%;
	padding: 5%;
	position: static;
}
.other-facilities__item,
.other-facilities__item:nth-of-type(2n) {
	flex-direction: column;
}

.other-facilities__photo,
.other-facilities__desc {
	width: 100%;
}
.other-facilities__photo { margin-bottom: 24px; }
.other-facilities__desc { padding: 0; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 415px) { 

.room__lead {
	margin: 32px 30px 64px;
}
.room__item,
.room__item:nth-of-type(2n) {
    padding-bottom: 120%;
}
.room__item:first-of-type {
    padding-bottom: 100%;

}
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 376px) { 

.room__item,
.room__item:nth-of-type(2n) {
    padding-bottom: 130%;
}
.room__item:first-of-type {
    padding-bottom: 115%;

}
}


/**********************************************************************************


	3. お食事 / meal

	
***********************************************************************************/
.meal__list { margin-top: 64px; }
.meal__list .contents__inner { padding: 128px 0 64px; }
.meal__item {
	position: relative;
	height: 620px;
	margin-bottom: 204px;
}
.meal-dinner .meal__title {
	height: 140px;
	position: absolute;
	top: -60px;
	left: 50px;
	z-index: 2;
	padding: 1em .5em;
	background: #fff;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
.meal-dinner .cat-face {
	position: absolute;
	top:0;
}
.meal-breakfast .meal__title {
	height: 140px;
	position: absolute;
	top: -60px;
	right: 50px;
	z-index: 2;
	padding: 1em .5em;
	background: #fff;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE11にのみ適用したいスタイルシート */
.meal-dinner .meal__title {
	height: 140px;
	position: absolute;
	top: -60px;
	left: 50px;
	z-index: 2;
	padding: 1em 1em 1em .5em;
	background: #fff;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
.meal-breakfast .meal__title {
    height: 140px;
	position: absolute;
	top: -60px;
	right: 50px;
	z-index: 2;
	padding: 1em 1em 1em .5em;
	background: #fff;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
}
.meal-dinner .meal__photo {
    width: calc(1000 / 1120 * 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.meal-breakfast .meal__photo {
    width: calc(1000 / 1120 * 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.meal-dinner .meal__desc {
    width: calc(400 / 1120 * 100%);
    height: 200px;
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: 2;
    padding: 2em;
    background: url(common/paws.png) right bottom no-repeat #fff;
}
.meal-breakfast .meal__desc {
    width: calc(400 / 1120 * 100%);
    height: 200px;
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: 2;
    padding: 2em;
    background: url(common/paws.png) right bottom no-repeat #fff;
}	


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.meal__list .contents__inner { padding: 128px 20px 64px; }
.meal__item {
	height: calc( 620 / 1000 * 100%);
	margin-bottom: 144px;
}
.meal-dinner .meal__title {
	height: 100px;
	position: absolute;
	top: -60px;
	left: 50px;
	z-index: 2;
	padding: 1em .5em;
	background: #fff;
	font-size: 2.4rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
.meal-breakfast .meal__title {
	height: 100px;
	position: absolute;
	top: -60px;
	right: 50px;
	z-index: 2;
	padding: 1em .5em;
	background: #fff;
	font-size: 2.4rem;
	-ms-writing-mode: tb-rl; /* IE対応 */
	writing-mode: vertical-rl;
}
.meal-dinner .meal__photo {
    width: 100%;
    position: static;
}
.meal-breakfast .meal__photo {
    width: 100%;
    position: static;

}
.meal-dinner .meal__desc {
    width: 100%;
    height: auto;
    position: static;
    padding: 2em;
}
.meal-breakfast .meal__desc {
    width: 100%;
    height: auto;
    position: static;
    padding: 2em;
}
}


/**********************************************************************************


	4. 看板ネコ“ぽぽ” / Mascot Cat 'PoPo'

	
***********************************************************************************/
.cat__popo {}
.cat__item {
	display: flex;
	position: relative;
}
.cat__item:nth-of-type(2) {
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 152px;
}
.cat__movie {
    width: 630px;
	height: 470px;
	max-height: 470px;
    position: relative;
	overflow: hidden;
	z-index: 2;
}
.cat__movie::before {
	content: "";
	display: block;
	padding-top: 74.6031746%; 
}
.cat-movie__inner {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}
.cat__movie video {
	width: 100%;
	height: auto !important;
	z-index: 3;
}
.cat-ear-reverse { 
	width: 100%;
	min-width: 100%;
    height: 0;
    padding-top: calc(1200 / 1600 * 100%);	
    position: absolute; 
	top: 0;
	left: 0;
	z-index: 3; 
	background: url(common/bg_cat-face-reverse.png) no-repeat;
	background-size: cover;
}
.cat__desc {
    width: calc(428 / 1120 * 100%);
    padding: 7em 3em;
    line-height: 1.8;
}
.cat__item:first-of-type .cat__desc {
	background: url(cat/bg_cat-item02.png) right bottom 50px no-repeat;
	background-size: contain;	
}
.cat__item:nth-of-type(2) .cat__desc {
	background: url(cat/bg_cat-item01.png) left bottom 50px no-repeat;
	background-size: contain;	
}
.cat__list {
	width: 960px;
	margin: 64px auto 64px;
	display: flex;
	justify-content: space-between;
}
.cat__list li { width: calc( (100% - 64px) / 3 ); }
.cat__list img { border-radius: 3px; }
.cat-list02 { margin-top: 50px; }
.cat-list03 { margin-top: 100px; }
.hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.popochan {
	width: 960px;
	margin: 0 auto;
	display: flex;
}
.popochan__desc { 
	width: 420px;
	padding: 5em 5em 5em 0;
	background: url(common/paws.png) left bottom no-repeat;
}
.popochan__photo { 
	width: 540px;
	position: relative;
}
.popochan__photo img { border-radius: 3px; }

.cat-deco-left {
	position: absolute;
	left: -100px;
	bottom: 0;
	z-index: 1;
}
.cat-deco-right {
	position: absolute;
	right: 0;
	top: -195px;
	z-index: 1;
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.cat__item,
.cat__item:nth-of-type(2) {
	flex-direction: column;
}
.cat__movie {
    width: 100%;
	height: 0;
	min-height: 0;
	padding-bottom: calc(1200 / 1600 * 100%);
}
.cat__desc {
    width: 100%;
    height: auto;
    padding: 2em 1em 8em 1em;
}
.cat__item:first-of-type .cat__desc {
	background: url(cat/bg_cat-item02.png) center bottom 0 no-repeat;
	background-size: 50%;
	margin-top: 48px;	
}
.cat__item:nth-of-type(2) .cat__desc {
	background: url(cat/bg_cat-item01.png) right bottom 0 no-repeat;
	background-size: 50%;
	margin-bottom: 48px;	
}
.cat__list {
	width: 100%;
	flex-direction: column;
}
.cat__list li { 
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.cat__list li:not(:last-of-type) { margin-bottom: 48px; }
.cat__list img { border-radius: 3px; }
.cat-list02,
.cat-list03 { 
	margin-top: 0; 
}
.popochan {
	width: 100%;
	flex-direction: column;
	margin-bottom: 64px;
}
.popochan__desc,
.popochan__photo { 
	width: 100%;
}
.popochan__desc { 
	padding: 0em 1em 10em 1em;
}
.cat-deco-left {
	width: 20%;
	position: absolute;
	left: -50px;
	bottom: 0;
	z-index: 1;
}
.cat-deco-right {
	width: 30%;
	position: absolute;
	right: 0;
	top: -100px;
	z-index: 1;
}

}

/**********************************************************************************


	5. アクティビティ / activity

	
***********************************************************************************/
.activity__lead {
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 64px;
}
.activity__list li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 96px;
}
.activity__photo {
    width: calc(486 / 1120 * 100%);
}
.activity__photo img { width: 100%; }
.activity__img { position: relative; }
.activity__name {
	width: 100%;
	position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    padding: 5px 0;
    background: rgba(0,0,0,.5);
}
.activity__desc {
    width: calc(629 / 1120 * 100%);
}
.activity__desc h3 {
	font-size: 1.8rem;
	margin: 0 0 .2em -.5em;
}
.activity__detail {
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	border-top: none;
	width: 100%;
}
.activity__detail:not(:last-of-type) { margin-bottom: 48px; }
.activity__detail dt {
	width: 11em;
	padding: .7em;
	border-top: 1px solid #ccc;
	float: left;
	margin: 0;
	border-left:0 !important;
}
.activity__detail dd {
	background-color: #fff;
	margin: 0 0 0 11em;
	padding: .7em;
	border-top: 1px solid #ccc;
	border-left: 2px solid #666;
}
.activity-notice {
	padding: 2em;
	background: url(common/paws.png) right bottom no-repeat #eee;
}
.activity-notice p:not(:last-of-type) { margin-bottom: .5em; }
.activity-notice p:not(:first-of-type) { margin-left: -.5em; }
ul.polaroids { 
	display: flex;
	flex-wrap: wrap;
}
ul.polaroids li { width: calc(373 / 1120 * 100%); }
ul.polaroids li a {
	position: relative;
	float: left;
	padding: 10px;
	background-color: white;
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.3);
	box-shadow: 0 2px 4px rgba(0,0,0,.3);
	-webkit-transform: rotate(5deg);
 	-moz-transform: rotate(5deg);
	transform: rotate(5deg);
}
ul.polaroids li:nth-child(2n+1) a {
	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
	transform: rotate(-10deg);
	position: relative;
	top: -5px;
}
ul.polaroids li:nth-child(3) a {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	transform: rotate(30deg);
	position: relative;
	top: -10px;
}
ul.polaroids li:nth-child(4) a {
	position: relative;
	top: -50px;
	left: 30px;
}
ul.polaroids li:nth-child(5) a,
ul.polaroids li:nth-child(6) a,
ul.polaroids li:nth-child(7) a,
ul.polaroids li:nth-child(8) a,
ul.polaroids li:nth-child(9) a {
	position: relative;
	top: -50px;
}
ul.polaroids li a:hover {
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	transform: scale(1.25);
	-webkit-transition: 0.3s;
	transition: 0.3s; 
	z-index: 6;
}
.polaroids li.not-ie11,
.polaroids li.not-ie11 img { 
	width: 100%;
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.activity__item { margin-top: 64px; }
.activity__list li {
	width: 100%;
	flex-direction: column;
}
.activity__photo,
.activity__photo img,
.activity__desc {
    width: 100%;
    min-width: 100%;
}
.activity__photo {
	text-align: center;
	height: 0;
	padding-bottom: calc(683 / 1024 * 100%);
	margin-bottom: 24px;
}
.activity__detail dt {
	width: 100%;
	background-color: #f9f9f9;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 0 0 1em;
}
.activity__detail dd {
	margin: 0 0 0 ;
	border-left: 0px;
}
ul.polaroids { 
	width: 95%; 
	min-width: 95%; 
	margin-left: 2.5%;
	margin-top: 144px;
	padding-bototm: 64px;
}
}


/**********************************************************************************


	6. アクセス / access

	
***********************************************************************************/
.gmap {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
	margin-bottom: 16px;
}
.gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.gmap__address { margin-bottom: 48px; }
.gmap__address h3 { 
	font-size: 1.8rem;
	margin-bottom: 8px;
}
.gmap__route {
	display: flex;
	justify-content: space-between;
}
.gmap__item {
	width: calc( (100% - 48px) / 2 ); 
}
.gmap__box {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.gmap__box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.route-title {
	font-size: 2.4rem;
	margin-bottom: 16px;
}
.route-title i { margin-right: .5em; }
.rental-car__title {
	font-size: 2.4rem;
	margin-bottom: 16px;
}
.rental-car__title i { margin-right: .5em; }
.tab-wrap {
	display: flex;
	flex-wrap: wrap;
}
.tab-wrap:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #000;
	display: block;
	order: -1;
}
.tab-label {
	background: #eee;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
}
.tab-label:not(:last-of-type) {
	margin-right: 5px;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.tab-content__inner { padding: 2em; }
.tab-switch:checked+.tab-label {
	background: #000;
    color: #fff;
}
.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.tab-switch { display: none; }
.tab-switch:checked+.tab-label:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #000;
    border-width: 14px;
    margin-left: -14px;
}
.tab-switch:checked+.tab-label {
    background: #000;
    position: relative;
}
.rental-car__list {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
}
.rental-car__item {
	width: calc( 100% / 2 );
	border-right: 1px solid #ccc;
}
.rental-car__item:nth-of-type(2n) { border-right: none; }
.kagoshima01 .rental-car__item:last-of-type,
.satsuma .rental-car__item:last-of-type { 
	border-top: 1px solid #ccc;
}
.rental-car__name {
	font-size: 1.8rem;
	padding: .75em;
	background: #eee;
}
.rental-car__detail div {
	display: flex;
	flex-wrap: wrap;
	padding: .75em;
}
.rental-car__detail div:first-of-type{ padding-bottom: 0; }
.rental-car__detail dt,
.rental-car__detail dd { 
	width: 50%;
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.gmap {
	margin-top: 64px;
}
.gmap__route {
	flex-direction: column;
	margin-bottom: 64px;
}
.gmap__item {
	width: 100%; 
}
.gmap__item:first-of-type { margin-bottom: 48px; }
.tab-content__inner { padding: 2em 1em; }
.rental-car__list {
	flex-direction: column;
}
.rental-car__item { 
	width: 100%;
	border-right: none;
}
.rental-car__detail div {
	flex-direction: column;
}
.rental-car__detail dt,
.rental-car__detail dd { 
	width: 100%;
}
}


/**********************************************************************************


	button


***********************************************************************************/
/***----- 基本 -----***/
.button {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-transition: all .3s;
	transition: all .3s;
}


/***----- 詳細を見るボタン -----***/
.go-detail {
	width: 250px;
	height: 44px;
	display: flex;
	justify-content: space-between;
	justify-content: center;
	align-items: center;
	margin: 1.5em auto 0;
	border-radius: 3px;
}
.button.go-detail {
	background-color: #fff;
	border: 1px solid #202020;
	color: #202020;
}
.button.go-detail:hover {
	background-color: #202020;
	color: #fff;
}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

.button { width: 100%; }

}


/** media Queries
===================================================================================*/
@media only screen and (max-width: 768px) { 

.button_submit {
	width: 100%;
}
}


/**********************************************************************************


	pagetop

	
***********************************************************************************/
#page-top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 86%;
	z-index: 99999;
}
#page-top a {
	width: 85px;
	height: 71px;
    display: block;
    white-space: nowrap;
  	text-indent: 100%;	
    overflow: hidden;
    background: url(common/btn_pagetop.png);
}


/**********************************************************************************


	bxslider

	
***********************************************************************************/
body .bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: transparent;
	margin-bottom: 0;
}
.bx-wrapper .bx-controls-direction a {
	text-indent: 0px;
}
 
/**********************************************************************************


	footer

	
***********************************************************************************/
footer { 
	width: 100%;
	min-width: 1400px;
	background: #000;
}
.footer__menu { 
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}
.footer__menu li { 
	margin-top: 6px;
	margin-right: 24px; 
}
.footer__menu li a { 
	color: #fff;
	text-decoration: none;
	font-size: 1.4rem;
}
.footer__menu li a:hover { text-decoration: underline; }
.footer-cat { 
	width: 250px;
	text-align: center;
	margin: 0 auto 32px;
}
.footer__address {
	display: flex;
	justify-content: center;
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 56px;
}
.hotel-name { 
	width: 150px;
	margin-right: 32px;
}
.hotel-address { margin-top: 5px; }
.copy {
	text-align: center;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-size: 1.2rem;
}
.liberty img { margin-right: 5px; vertical-align: middle; }


/** media Queries
===================================================================================*/
@media only screen and (max-width: 1024px) { 

footer { 
	width: 100%;
	min-width: 100%;
}
footer .contents__inner { padding: 32px 0; }
.footer__menu { 
	display: none;
}
.footer__address {
	flex-direction: column;
	text-align: center;
}
.hotel-name { 
	margin: 0 auto 32px;
}
}


/**********************************************************************************


	各ブラウザ別ハック

	
***********************************************************************************/
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE11にのみ適用したいスタイルシート */
    .ie11 { display: none; }
}
/* Edge(EdgeHTML) */
_:-ms-lang(x)::backdrop, .not-ie11 { display: none; }

/* Edge(Chromium) */
_:lang(x)::-ms-, .not-ie11 { display: none; }

/* Chrome */
_:lang(x)::-internal-media-controls-overlay-cast-button, .not-ie11 { display: none; }

/* Safari */
_:lang(x)+_:-webkit-full-screen-document, .not-ie11 { display: none; }

/* Firefox */
_:lang(x)::-moz-placeholder, .not-ie11 { display: none; }


/*** attachment
***********************************************************************************/
.indent {
	padding-left: 1em;
	text-indent: -1em;
}
.bold { font-weight: bold; }
.underline { text-decoration: underline; }
.shadow { box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.moji14 { font-size: 1.4rem; }
.moji20 { font-size: 2rem; }
.moji26 {
	font-size: 2.6rem;
	font-weight: bold;
}
.mt05 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }
.mt35 { margin-top: 35px; }
.mt40 { margin-top: 40px; }
.mt45 { margin-top: 45px; }
.mt50 { margin-top: 50px; }
.mt55 { margin-top: 55px; }
.mt60 { margin-top: 60px; }
.mt65 { margin-top: 65px; }
.mt70 { margin-top: 70px; }
.mt75 { margin-top: 75px; }
.mt80 { margin-top: 80px; }
.mt85 { margin-top: 85px; }
.mt90 { margin-top: 90px; }
.mt95 { margin-top: 95px; }
.mt100 { margin-top: 100px; }
.mb05 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb25 { margin-bottom: 25px; }
.mb30 { margin-bottom: 30px; }
.mb35 { margin-bottom: 35px; }
.mb40 { margin-bottom: 40px; }
.mb45 { margin-bottom: 45px; }
.mb50 { margin-bottom: 50px; }
.mb55 { margin-bottom: 55px; }
.mb60 { margin-bottom: 60px; }
.mb65 { margin-bottom: 65px; }
.mb70 { margin-bottom: 70px; }
.mb100 { margin-bottom: 100px; }

.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
