@charset "utf-8";

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

layout.css
-----------------------------------
1: base settings
	1-1: reset
	1-2: base
	1-3: utility parts
	1-4: for WYSIWYG
-----------------------------------
2: common parts for PC
	2-1: header
	2-2: main
	2-3: footer
	2-4: breadcrumbNav
-----------------------------------
3: common parts for Tablet
	3-1: header
	3-2: main
	3-3: footer
	3-4: breadcrumbNav
-----------------------------------
4: common parts for Smartphone
	4-1: header
	4-2: main
	4-3: footer
	4-4: breadcrumbNav
-----------------------------------
5: print for PC
-----------------------------------
ex: clearfix

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

/*=================================

	1: base settings

================================ */

/* 1-1: reset
================================ */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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;
}

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;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/**
 * custom reset
 */
main {
		display:block;
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
h1,h2,h3,h4,h5,h6,strong{font-weight:normal;}
ol,ul{list-style:none;}
a:focus{outline:thin dotted;}
a:hover,a:active{outline:0;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
mark{background:none;}
caption,th{text-align:left;}
video,audio,canvas{display:inline;zoom:1;}
svg:not(:root){overflow:hidden;}
audio:not([controls]),[hidden]{display:none;}
hr{display:none;}
img{max-width:100%;height:auto;width /***/:auto;-ms-interpolation-mode:bicubic;vertical-align:bottom;}
sub,sup{position:relative;line-height:0;font-size:12px;font-size:1.2rem;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
address {font-style: normal;}
table,caption,tbody,tfoot,thead,tr,th,td {margin:0;padding:0;outline:0;font-size:100%;vertical-align:baseline;}

/* 1-2: base
================================ */
html {
	overflow-y: scroll;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%; /* 1rem = 10px */
}
body {
	background: url(/new_common/images/com_bg01.png) repeat 0 0;
}
body#modalContent {
	background: none;
}
body > * {
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	line-height: 1.43;
}
input,select,textarea{
	font-size: 14px;
	font-size: 1.4rem;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}

/* link setting */
a:link {
	color: #0044cc;
	text-decoration: underline;
}
a:visited {
	color: #0044cc;
	text-decoration: underline;
}
a:hover {
	color: #0044cc;
	text-decoration: none;
}
a:active {
	color: #0044cc;
	text-decoration: none;
}
a[href^="tel:"] {
	color: #333333;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	cursor: pointer;
}

/* box-sizing */
body * {
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
       -o-box-sizing: border-box;
          box-sizing: border-box;
}

@media print, screen and (min-width: 721px) and (max-width: 1100px) {

body {
}
input,select,textarea{
}

}

@media only screen and (max-width: 720px) {

body {
	background-size: 75px auto;
}
body > * {
	font-size: 10.5px;
	font-size: 1.05rem;
}
a[href^="tel:"] {
	text-decoration: underline;
}
input,select,textarea{
}

}

/* 1-3: utility parts
================================ */
.mt0 {margin-top: 0 !important;} .mt5 {margin-top: 5px !important;} .mt10 {margin-top: 10px !important;} .mt15 {margin-top: 15px !important;} .mt20 {margin-top: 20px !important;} .mt25 {margin-top: 25px !important;} .mt30 {margin-top: 30px !important;} .mt35 {margin-top: 35px !important;} .mt40 {margin-top: 40px !important;} .mt45 {margin-top: 45px !important;} .mt50 {margin-top: 50px !important;} .mt55 {margin-top: 55px !important;} .mt60 {margin-top: 60px !important;} .mt65 {margin-top: 65px !important;} .mt70 {margin-top: 70px !important;} .mr0 {margin-right: 0 !important;} .mr5 {margin-right: 5px !important;} .mr10 {margin-right: 10px !important;} .mr15 {margin-right: 15px !important;} .mr20 {margin-right: 20px !important;} .mr25 {margin-right: 25px !important;} .mr30 {margin-right: 30px !important;} .mr35 {margin-right: 35px !important;} .mr40 {margin-right: 40px !important;} .mr45 {margin-right: 45px !important;} .mr50 {margin-right: 50px !important;} .mr55 {margin-right: 55px !important;} .mr60 {margin-right: 60px !important;} .mr65 {margin-right: 65px !important;} .mr70 {margin-right: 70px !important;} .mb0 {margin-bottom: 0 !important;} .mb5 {margin-bottom: 5px !important;} .mb10 {margin-bottom: 10px !important;} .mb15 {margin-bottom: 15px !important;} .mb20 {margin-bottom: 20px !important;} .mb25 {margin-bottom: 25px !important;} .mb30 {margin-bottom: 30px !important;} .mb35 {margin-bottom: 35px !important;} .mb40 {margin-bottom: 40px !important;} .mb45 {margin-bottom: 45px !important;} .mb50 {margin-bottom: 50px !important;} .mb55 {margin-bottom: 55px !important;} .mb60 {margin-bottom: 60px !important;} .mb65 {margin-bottom: 65px !important;} .mb70 {margin-bottom: 70px !important;} .ml0 {margin-left: 0 !important;} .ml5 {margin-left: 5px !important;} .ml10 {margin-left: 10px !important;} .ml15 {margin-left: 15px !important;} .ml20 {margin-left: 20px !important;} .ml25 {margin-left: 25px !important;} .ml30 {margin-left: 30px !important;} .ml35 {margin-left: 35px !important;} .ml40 {margin-left: 40px !important;} .ml45 {margin-left: 45px !important;} .ml50 {margin-left: 50px !important;} .ml55 {margin-left: 55px !important;} .ml60 {margin-left: 60px !important;} .ml65 {margin-left: 65px !important;} .ml70 {margin-left: 70px !important;} .pt0 {padding-top: 0 !important;} .pt5 {padding-top: 5px !important;} .pt10 {padding-top: 10px !important;} .pt15 {padding-top: 15px !important;} .pt20 {padding-top: 20px !important;} .pt25 {padding-top: 25px !important;} .pt30 {padding-top: 30px !important;} .pt35 {padding-top: 35px !important;} .pt40 {padding-top: 40px !important;} .pt45 {padding-top: 45px !important;} .pt50 {padding-top: 50px !important;} .pt55 {padding-top: 55px !important;} .pt60 {padding-top: 60px !important;} .pt65 {padding-top: 65px !important;} .pt70 {padding-top: 70px !important;} .pr0 {padding-right: 0 !important;} .pr5 {padding-right: 5px !important;} .pr10 {padding-right: 10px !important;} .pr15 {padding-right: 15px !important;} .pr20 {padding-right: 20px !important;} .pr25 {padding-right: 25px !important;} .pr30 {padding-right: 30px !important;} .pr35 {padding-right: 35px !important;} .pr40 {padding-right: 40px !important;} .pr45 {padding-right: 45px !important;} .pr50 {padding-right: 50px !important;} .pr55 {padding-right: 55px !important;} .pr60 {padding-right: 60px !important;} .pr65 {padding-right: 65px !important;} .pr70 {padding-right: 70px !important;} .pb0 {padding-bottom: 0 !important;} .pb5 {padding-bottom: 5px !important;} .pb10 {padding-bottom: 10px !important;} .pb15 {padding-bottom: 15px !important;} .pb20 {padding-bottom: 20px !important;} .pb25 {padding-bottom: 25px !important;} .pb30 {padding-bottom: 30px !important;} .pb35 {padding-bottom: 35px !important;} .pb40 {padding-bottom: 40px !important;} .pb45 {padding-bottom: 45px !important;} .pb50 {padding-bottom: 50px !important;} .pb55 {padding-bottom: 55px !important;} .pb60 {padding-bottom: 60px !important;} .pb65 {padding-bottom: 65px !important;} .pb70 {padding-bottom: 70px !important;} .pl0 {padding-left: 0 !important;} .pl5 {padding-left: 5px !important;} .pl10 {padding-left: 10px !important;} .pl15 {padding-left: 15px !important;} .pl20 {padding-left: 20px !important;} .pl25 {padding-left: 25px !important;} .pl30 {padding-left: 30px !important;} .pl35 {padding-left: 35px !important;} .pl40 {padding-left: 40px !important;} .pl45 {padding-left: 45px !important;} .pl50 {padding-left: 50px !important;} .pl55 {padding-left: 55px !important;} .pl60 {padding-left: 60px !important;} .pl65 {padding-left: 65px !important;} .pl70 {padding-left: 70px !important;} .w001per {width: 1% !important;} .w002per {width: 2% !important;} .w003per {width: 3% !important;} .w004per {width: 4% !important;} .w005per {width: 5% !important;} .w006per {width: 6% !important;} .w007per {width: 7% !important;} .w008per {width: 8% !important;} .w009per {width: 9% !important;} .w010per {width: 10% !important;} .w011per {width: 11% !important;} .w012per {width: 12% !important;} .w013per {width: 13% !important;} .w014per {width: 14% !important;} .w015per {width: 15% !important;} .w016per {width: 16% !important;} .w017per {width: 17% !important;} .w018per {width: 18% !important;} .w019per {width: 19% !important;} .w020per {width: 20% !important;} .w021per {width: 21% !important;} .w022per {width: 22% !important;} .w023per {width: 23% !important;} .w024per {width: 24% !important;} .w025per {width: 25% !important;} .w026per {width: 26% !important;} .w027per {width: 27% !important;} .w028per {width: 28% !important;} .w029per {width: 29% !important;} .w030per {width: 30% !important;} .w031per {width: 31% !important;} .w032per {width: 32% !important;} .w033per {width: 33% !important;} .w034per {width: 34% !important;} .w035per {width: 35% !important;} .w036per {width: 36% !important;} .w037per {width: 37% !important;} .w038per {width: 38% !important;} .w039per {width: 39% !important;} .w040per {width: 40% !important;} .w041per {width: 41% !important;} .w042per {width: 42% !important;} .w043per {width: 43% !important;} .w044per {width: 44% !important;} .w045per {width: 45% !important;} .w046per {width: 46% !important;} .w047per {width: 47% !important;} .w048per {width: 48% !important;} .w049per {width: 49% !important;} .w050per {width: 50% !important;} .w051per {width: 51% !important;} .w052per {width: 52% !important;} .w053per {width: 53% !important;} .w054per {width: 54% !important;} .w055per {width: 55% !important;} .w056per {width: 56% !important;} .w057per {width: 57% !important;} .w058per {width: 58% !important;} .w059per {width: 59% !important;} .w060per {width: 60% !important;} .w061per {width: 61% !important;} .w062per {width: 62% !important;} .w063per {width: 63% !important;} .w064per {width: 64% !important;} .w065per {width: 65% !important;} .w066per {width: 66% !important;} .w067per {width: 67% !important;} .w068per {width: 68% !important;} .w069per {width: 69% !important;} .w070per {width: 70% !important;} .w071per {width: 71% !important;} .w072per {width: 72% !important;} .w073per {width: 73% !important;} .w074per {width: 74% !important;} .w075per {width: 75% !important;} .w076per {width: 76% !important;} .w077per {width: 77% !important;} .w078per {width: 78% !important;} .w079per {width: 79% !important;} .w080per {width: 80% !important;} .w081per {width: 81% !important;} .w082per {width: 82% !important;} .w083per {width: 83% !important;} .w084per {width: 84% !important;} .w085per {width: 85% !important;} .w086per {width: 86% !important;} .w087per {width: 87% !important;} .w088per {width: 88% !important;} .w089per {width: 89% !important;} .w090per {width: 90% !important;} .w091per {width: 91% !important;} .w092per {width: 92% !important;} .w093per {width: 93% !important;} .w094per {width: 94% !important;} .w095per {width: 95% !important;} .w096per {width: 96% !important;} .w097per {width: 97% !important;} .w098per {width: 98% !important;} .w099per {width: 99% !important;} .w100per {width: 100% !important;} .aC {text-align: center !important;} .aL {text-align: left !important;} .aR {text-align: right !important;} .vT {vertical-align: top !important;} .vM {vertical-align: middle !important;} .vB {vertical-align: bottom !important;} .dB {display: block !important;} .dN {display: none !important;} .fR, .fL, .fN {margin-top: 20px;} .fR > * {float:right !important;} .fL > * {float:left !important;} .fN > * {float:none !important;} .fR > *:first-child, .fL > *:first-child, .fN > *:first-child {margin-top:0 !important;} .clearB {clear:both !important;} .clearR {clear:right !important;} .clearL {clear:left !important;} .clearN {clear:none !important;} .voiceGuide {display: block;width: 1px;height: 1px;margin: 0;padding: 0;position: absolute;top: 0;left: 0;overflow: hidden;font-size: 0;}

/* 1-4: for WYSIWYG
================================ */
.wysiwygArea address, .wysiwygArea blockquote, .wysiwygArea div, .wysiwygArea dl, .wysiwygArea dt, .wysiwygArea dd, .wysiwygArea fieldset, .wysiwygArea form, .wysiwygArea frame, .wysiwygArea frameset, .wysiwygArea h1, .wysiwygArea h2, .wysiwygArea h3, .wysiwygArea h4, .wysiwygArea h5, .wysiwygArea h6, .wysiwygArea noframes, .wysiwygArea ol, .wysiwygArea p, .wysiwygArea ul, .wysiwygArea center, .wysiwygArea dir, .wysiwygArea hr, .wysiwygArea menu, .wysiwygArea pre {display: block; unicode-bidi: embed;}
.wysiwygArea li {display: list-item;}
.wysiwygArea head {display: none;}
.wysiwygArea table {display: table;}
.wysiwygArea tr {display: table-row;}
.wysiwygArea thead {display: table-header-group;}
.wysiwygArea tbody {display: table-row-group;}
.wysiwygArea tfoot {display: table-footer-group;}
.wysiwygArea col {display: table-column;}
.wysiwygArea colgroup {display: table-column-group;}
.wysiwygArea td, .wysiwygArea th {display: table-cell;}
.wysiwygArea caption {display: table-caption;}
.wysiwygArea th {font-weight: bolder; text-align: center;}
.wysiwygArea caption {text-align: center;}
.wysiwygArea h1 {font-size: 2em; margin: .67em 0;}
.wysiwygArea h2 {font-size: 1.5em; margin: .75em 0;}
.wysiwygArea h3 {font-size: 1.17em; margin: .83em 0;}
.wysiwygArea h4, .wysiwygArea p, .wysiwygArea blockquote, .wysiwygArea ul, .wysiwygArea fieldset, .wysiwygArea form, .wysiwygArea ol, .wysiwygArea dl, .wysiwygArea dir, .wysiwygArea menu {margin: 1.12em;}
.wysiwygArea .colWrap > .colText p {margin: 0;}
.wysiwygArea .colWrap > .colText .btnType03 {width:auto;}
.wysiwygArea .colWrap > .colText p + .btnType03 {margin-top: 2.0em;}
.wysiwygArea h5 {font-size: .83em; margin: 1.5em 0;}
.wysiwygArea h6 {font-size: .75em; margin: 1.67em 0;}
.wysiwygArea h1, .wysiwygArea h2, .wysiwygArea h3, .wysiwygArea h4, .wysiwygArea h5, .wysiwygArea h6, .wysiwygArea b, .wysiwygArea strong {font-weight: bolder;}
.wysiwygArea blockquote {margin-left: 40px; margin-right: 40px;}
.wysiwygArea i, .wysiwygArea cite, .wysiwygArea em, .wysiwygArea var, .wysiwygArea address {font-style: italic;}
.wysiwygArea pre, .wysiwygArea tt, .wysiwygArea code, .wysiwygArea kbd, .wysiwygArea samp {font-family: monospace;}
.wysiwygArea pre {white-space: pre;}
.wysiwygArea button, .wysiwygArea textarea, .wysiwygArea input, .wysiwygArea select {display: inline-block;}
.wysiwygArea big {font-size: 1.17em;}
.wysiwygArea small, .wysiwygArea sub, .wysiwygArea sup {font-size: .83em;}
.wysiwygArea sub {vertical-align: sub;}
.wysiwygArea sup {vertical-align: super;}
.wysiwygArea table {border-spacing: 2px;}
.wysiwygArea thead, .wysiwygArea tbody, .wysiwygArea tfoot {vertical-align: middle;}
.wysiwygArea td, .wysiwygArea th, .wysiwygArea tr {vertical-align: inherit;}
.wysiwygArea s, .wysiwygArea strike, .wysiwygArea del {text-decoration: line-through;}
.wysiwygArea hr {border: 1px inset;}
.wysiwygArea ol, .wysiwygArea ul, .wysiwygArea dir, .wysiwygArea menu, .wysiwygArea dd {margin-left: 40px;}
.wysiwygArea ol {list-style-type: decimal;}
.wysiwygArea ol ul, .wysiwygArea ul ol, .wysiwygArea ul ul, .wysiwygArea ol ol {margin-top: 0; margin-bottom: 0;}
.wysiwygArea u, .wysiwygArea ins {text-decoration: underline;}
.wysiwygArea br:before {content: "\A"; white-space: pre-line;}
.wysiwygArea center {text-align: center;}
.wysiwygArea :link, .wysiwygArea :visited {text-decoration: underline;}
.wysiwygArea :focus {outline: thin dotted invert;}

@media only screen and (max-width: 1100px) {

.wysiwygArea img {
/*	width: 100%; */
/* レスポンシブ画像縮小対応 */
	max-width: 100%;
	height: auto;
}
.wysiwygArea table {
	width: 100% !important;
}

}


@media screen and (min-width: 1101px) {

/* 1-2: base
================================ */
a[href^="tel:"]:hover {
	cursor: inherit;
}

/*=================================

	2: common parts for PC

================================ */
.pcNone {
	display: none;
}

/* result */
body#result {
	background: #f3f3f3 none;
}

/* 2-1: header
================================ */
#headerContainer {
	position: absolute;
	top: 0;
	left: 20px;
	width: 210px;
	padding-right: 10px;
	background: #ffffff url(/new_common/images/header_bg01.png) no-repeat 100% 0;
	z-index: 9999;
}
body.hall > #headerContainer {
	background-image: url(/new_common/images/header_bg05.png);
}
body.amusement > #headerContainer {
	background-image: url(/new_common/images/header_bg06.png);
}
body.corporate > #headerContainer {
	background-image: url(/new_common/images/header_bg07.png);
}
body.csr > #headerContainer {
	background-image: url(/new_common/images/header_bg08.png);
}
body.recruit > #headerContainer {
	background-image: url(/new_common/images/header_bg09.png);
}
body.diversity > #headerContainer {
	background-image: url(/new_common/images/header_bg10.png);
}
#headerContainer.fixed {
	position: fixed;
}

/* globalHeader */
#globalHeader {
	position: relative;
	padding-bottom: 60px;
}

/* globalHeader */
#globalHeader .siteLogo {
	border-bottom: 4px solid #e60012;
}
#globalHeader .siteLogo > a {
	display: block;
	width: 200px;
	height: 170px;
	background: #ffffff url(/new_common/images/header_logo01.png) no-repeat 34px 4px;
	text-indent: -9999px;
	outline: none;
}
#globalHeader .menuSwitch {
	display: none;
}

/* globalNav */
#globalNav > ul > li {
	display: table;
	width: 200px;
}
#globalNav > ul > li > a {
	display: table-cell;
	vertical-align: middle;
	color: #333333;
	text-decoration: none;
}

/* mainMenu */
#globalNav .mainMenu > li {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
}
#globalNav .mainMenu > li > a {
	position: relative;
	height: 60px;
	padding: 0 5px 0 21px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #e8e8e8;
}
#globalNav .mainMenu > li > a:before {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 5px;
	height: 49px;
	border-radius: 2px;
	content: "";
}
#globalNav .mainMenu > li:hover > a,
#globalNav .mainMenu > li.current > a {
	color: #ffffff;
}
#globalNav .mainMenu > li:hover > a:before,
#globalNav .mainMenu > li.current > a:before {
	background-color: #ffffff !important;
}
#globalNav .mainMenu > .service > a {background-color: #fef4fa;}
#globalNav .mainMenu > .service > a:before {	background-color: #f1269c;}
#globalNav .mainMenu > .service:hover > a, #globalNav .mainMenu > .service.current > a {border-top-color: #f892cd; border-bottom-color: #cd2085; background-color: #f1269c;}
#globalNav .mainMenu > .shop > a {background-color: #fef2f5;}
#globalNav .mainMenu > .shop > a:before {	background-color: #f30033;}
#globalNav .mainMenu > .shop:hover > a, #globalNav .mainMenu > .shop.current > a {border-top-color: #f97f99; border-bottom-color: #cf002b; background-color: #f30033;}
#globalNav .mainMenu > .amusement > a {background-color: #fff8f2;}
#globalNav .mainMenu > .amusement > a:before {	background-color: #fc7f07;}
#globalNav .mainMenu > .amusement:hover > a, #globalNav .mainMenu > .amusement.current > a {border-top-color: #fdbf83; border-bottom-color: #d66c06; background-color: #fc7f07;}
#globalNav .mainMenu > .company > a {background-color: #f2fafc;}
#globalNav .mainMenu > .company > a:before {	background-color: #09a5cd;}
#globalNav .mainMenu > .company:hover > a, #globalNav .mainMenu > .company.current > a {border-top-color: #84d2e6; border-bottom-color: #088cae; background-color: #09a5cd;}
#globalNav .mainMenu > .csr > a {background-color: #f9fdf5;}
#globalNav .mainMenu > .csr > a:before {	background-color: #89d83f;}
#globalNav .mainMenu > .csr:hover > a, #globalNav .mainMenu > .csr.current > a {border-top-color: #c4eb9f; border-bottom-color: #35a536; background-color: #89d83f;}
#globalNav .mainMenu > .recruit > a {background-color: #f2f2f2;}
#globalNav .mainMenu > .recruit > a:before {	background-color: #000000;}
#globalNav .mainMenu > .recruit:hover > a, #globalNav .mainMenu > .recruit.current > a {border-top-color: #848484; border-bottom-color: #0a0a0a; background-color: #666666;}
#globalNav .mainMenu > .diversity > a {background-color: #f2faf5;}
#globalNav .mainMenu > .diversity > a:before {	background-color: #009e34;}
#globalNav .mainMenu > .diversity:hover > a, #globalNav .mainMenu > .diversity.current > a {border-top-color: #7fce99; border-bottom-color: #008d2e; background-color: #009e34;}
/* social add 20200908 */
#globalNav .mainMenu > .sns {display: none;}

.dropDownMenu {
	position: absolute;
	top: 0;
	display: none;
	width: 370px;
	padding-right: 10px;
	background: url(/new_common/images/header_bg02.png) no-repeat 100% 0;
}
.dropDownMenu .inner {
	padding: 60px 20px;
}
.dropDownMenu .inner .links {
	border-bottom: 1px solid;
}
.dropDownMenu .inner .links > li {
	font-size: 18px;
	font-size: 1.8rem;
}
.dropDownMenu .inner .links > li a,
.dropDownMenu .inner .links > li span {
	display: block;
	color: #ffffff;
	text-decoration: none;
}
.dropDownMenu .inner .links > li a:hover {
	text-decoration: underline;
}
.dropDownMenu .inner .links > li > a {
	padding: 23px 25px 21px 0;
	border-top: 3px solid;
	background: url(/new_common/images/com_ic01.png) no-repeat 300px 50%;
}
.dropDownMenu .inner .links > li > span {
	padding: 23px 25px 21px 20px;
	border-top: 3px solid;
}
.dropDownMenu .inner .links > li > ul > li {
	font-size: 16px;
	font-size: 1.6rem;
}
.dropDownMenu .inner .links > li > ul > li > a {
	padding: 16px 20px 14px;
	border-top: 1px solid;
	background: url(/new_common/images/com_ic02.png) no-repeat 303px 50%;
}
.amusement .dropDownMenu .inner .links > li > ul > li > a {
	padding-left: 2px;
}
.dropDownMenu .inner .links > li > ul > li > span {
	padding: 13px 20px 9px;
}
.dropDownMenu .inner .links > li > ul > li > ul > li {
	font-size: 13px;
	font-size: 1.3rem;
}
.dropDownMenu .inner .links > li > ul > li > ul > li > a {
	padding: 13px 15px 11px 21px;
	border-top: 1px solid;
	background: url(/new_common/images/com_ic03.png) no-repeat 305px 50%;
}
.amusement .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	padding-left: 2px;
	border-top: none;
	border-bottom: none;
}
.company .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	border-top: none;
	border-bottom: none;
}
.amusement .dropDownMenu .inner .links > li > ul > li > ul.twoRows > li:nth-child(n+3) > a,
.company .dropDownMenu .inner .links > li > ul > li > ul.twoRows > li:nth-child(n+3) > a {
	border-top: 1px solid;
}
.dropDownMenu .inner .links > li > ul > li > ul > li:last-child > a {
	border-bottom: none;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows {
	margin-top: 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li {
	float: left;
	width: 155px;
	margin: 0 10px 0 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li:nth-child(2n) {
	margin-right: 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li > a {
	background-position: 140px 50%;
}
.dropDownMenu .inner .banner {
	margin-top: 30px;
	text-align: center;
}
.dropDownMenu .closeBtn {
	position: absolute;
	top: 0;
	right: 20px;
}
.dropDownMenu .closeBtn > a {
	display: block;
	width: 31px;
	height: 31px;
	background: url(/new_common/images/header_ic01.png) no-repeat 50% 50%;
	text-indent: -9999px;
	outline: none;
}
.service > .dropDownMenu .inner {background-color: #f1269c;}
.service > .dropDownMenu .inner * {border-color: #f892cd !important;}
.service > .dropDownMenu .closeBtn {background-color: #f892cd;}
.shop > .dropDownMenu .inner {background-color: #f30033;}
.shop > .dropDownMenu .inner * {border-color: #f97f99 !important;}
.shop > .dropDownMenu .closeBtn {background-color: #f97f99;}
.amusement > .dropDownMenu .inner {background-color: #fc7f07;}
.amusement > .dropDownMenu .inner * {border-color: #fdbf83 !important;}
.amusement > .dropDownMenu .inner .links > li > ul > li > span {background-color: #fc9f45;}
.amusement > .dropDownMenu .closeBtn {background-color: #fdbf83;}
.company > .dropDownMenu .inner {background-color: #09a5cd;}
.company > .dropDownMenu .inner * {border-color: #84d2e6 !important;}
.company > .dropDownMenu .inner .links > li > ul > li > span {background-color: #84d2e6;}
.company > .dropDownMenu .closeBtn {background-color: #84d2e6;}
.csr > .dropDownMenu .inner {background-color: #89d83f;}
.csr > .dropDownMenu .inner * {border-color: #c4eb9f !important;}
.csr > .dropDownMenu .inner .links > li > ul > li > span {padding: 13px 25px 13px 20px; border-top: 3px solid; background-color: #c4eb9f;}
.csr > .dropDownMenu .closeBtn {background-color: #c4eb9f;}
.recruit > .dropDownMenu .inner {background-color: #666666;}
.recruit > .dropDownMenu .inner * {border-color: #828282 !important;}
.recruit > .dropDownMenu .closeBtn {background-color: #888888 !important;}
.diversity > .dropDownMenu .inner {background-color: #009e34;}
.diversity > .dropDownMenu .inner * {border-color: #74ca90 !important;}
.diversity > .dropDownMenu .closeBtn {background-color: #80cf9a !important;}

/* utilityLinks */
#globalNav .utilityLinks > li {
	border-bottom: 1px solid #e8e8e8;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
#globalNav .utilityLinks > li.blog {
	display: table;
	height: 44px;
	padding: 0 5px 0 0;
	font-weight: bold;
	line-height: 1.0;
}
#globalNav .utilityLinks > li.blog > span {
	display: table-cell;
	vertical-align: middle;
}
#globalNav .utilityLinks > li > a {
	height: 44px;
	padding: 0 5px 0 20px;
	background-color: #ffffff;
}
#globalNav .utilityLinks > li > a:hover {
	text-decoration: underline;
}
#globalNav .utilityLinks .sitemap {
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 160px;
	border-bottom: none;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}
#globalNav .utilityLinks .sitemap > a {
	height: 40px;
	padding: 0;
	border-radius: 4px;
	background-color: #f2f2f2;
	-webkit-box-shadow: 4px 4px 0 0 #cccccc;
	   -moz-box-shadow: 4px 4px 0 0 #cccccc;
	        box-shadow: 4px 4px 0 0 #cccccc;
}
#globalNav .utilityLinks .sitemap.fixed {
	position: fixed;
	bottom: 37px;
	left: 40px;
}
#globalNav .utilityLinks .lang {
	float: left;
	width: 50%;
	margin-top: 1px;
	border-top: 1px solid #999999;
	border-bottom: none;
	border-left: 1px solid #999999;
	font-size: 13px;
	font-size: 1.3rem;
	text-align: center;
}
#globalNav .utilityLinks .lang > a {
	height: 29px;
	padding: 0;
	border-right: 1px solid #7f7f7f;
	border-bottom: 1px solid #7f7f7f;
	background-color: #999999;
	-webkit-transition: opacity 0.15s linear;
	   -moz-transition: opacity 0.15s linear;
	    -ms-transition: opacity 0.15s linear;
       -o-transition: opacity 0.15s linear;
	        transition: opacity 0.15s linear;
	color: #ffffff;
}
#globalNav .utilityLinks .lang > a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#globalNav .utilityLinks > li.social {
	padding: 20px 0 0 20px;
	border-bottom: none;	
}
#globalNav .utilityLinks > li.social > ul > li {
	float: left;
	width: 36px;
}
#globalNav .utilityLinks > li.social > ul > li:first-child {
	margin-right: 10px;
}

/* 2-2: main
================================ */
#mainContents {
	padding: 20px 0 0 240px;
}
#modalContent #mainContents {
	padding: 20px;
}
#mainContents > * {
	font-size: 100%;
}

/* contents */
#contents {
	width: 100%;
	max-width: 1260px;
	padding: 0 20px 20px;
	border-radius: 10px;
	background-color: #ffffff;
	-webkit-box-shadow: 1px 1px 0 0 #e5e5e5;
	   -moz-box-shadow: 1px 1px 0 0 #e5e5e5;
	        box-shadow: 1px 1px 0 0 #e5e5e5;
}
#modalContent #contents {
	max-width: 100%;
	padding: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
#mainContents > aside {
	width: 100%;
	max-width: 1260px;
	margin-top: 28px;
}
#mainContents > aside > *:first-child {
	margin-top: 0 !important;
}
#mainContents > #contents > .contentsDetailWrap {
	padding: 0 20px;
}
#mainContents > #contents > .contentsDetailWrap.box {
	margin-top: 20px;
	padding: 20px 19px;
	border: 1px solid #e5e5e5;
}
.contentsNav.amusement + .contentsDetailWrap.box {
	padding: 40px 19px 35px !important;	
}
#mainContents > #contents > .contentsDetailWrap.box > *:first-child,
#mainContents > #contents > .contentsDetailWrap.box > section:first-child > *:first-child {
	margin-top: 0;
}
#mainContents > #contents > .contentsDetailWrap.box > section {
	padding-left: 15px;
}
#mainContents > #contents > .contentsDetailWrap.box > section > .headline02 {
	margin-left: -15px;
}

/* result */
body#result #mainContents > aside,
body#result #mainContents > .return {
	position: relative;
	background-color: #f3f3f3;
	z-index: 10;
}
body#result #mainContents {
	padding-left: 230px;
}
body#result #mainContents > #contents {
	max-width: none;
	padding-bottom: 0;
	border-bottom: 1px solid #e5e5e5;
	border-radius: 0;
	border-top-right-radius: 10px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
body#result #mainContents > aside {
	max-width: none;
	margin-top: 0;
	padding: 28px 0 20px 10px;
}
body#result #mainContents > aside > * {
	max-width: 1260px;
}
body#result #mainContents > .return {
	margin-top: 0;
	padding-bottom: 45px;
}

/* 2-3: footer
================================ */
#footerContainer {
	padding-left: 240px;
	background-color: #222222;
}

/* globalFooter */
#globalFooter {
	position: relative;
	width: 100%;
	max-width: 1260px;
	padding: 10px 0 21px;
}
#globalFooter .pageTop {
	position: absolute;
	top: 10px;
	right: 0;
	-webkit-transition: top 0.1s linear;
	   -moz-transition: top 0.1s linear;
	    -ms-transition: top 0.1s linear;
       -o-transition: top 0.1s linear;
	        transition: top 0.1s linear;
}
#globalFooter .pageTop a {
	outline: none;
}
#globalFooter .pageTop:hover {
	top: 5px;
}

/* siteIdentity */
#siteIdentity {
	padding: 0 21px;
}
#siteIdentity ul li {
	float: left;
	margin: 13px 0 0 18px;
	padding-left: 18px;
	border-left: 1px solid #eaeaea;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.1;
}
#siteIdentity ul li:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}
#siteIdentity ul li a {
	color: #ffffff;
}
#siteIdentity #copyright {
	padding-top: 35px;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック","MS PGothic";
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}
#siteIdentity_sns {
	padding: 0 21px;
}

#siteIdentity_sns ul li {
	float: left;
	margin: 13px 0 0 18px;
	padding-left: 18px;
	border-left: 1px solid #eaeaea;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.1;
}

#siteIdentity_sns ul li:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}


/* result */
body#result #footerContainer {
	position: relative;
	z-index: 10;
}

/* 2-4: breadcrumbNav
================================ */
#breadcrumbNav {
	margin: 45px 0 0 230px;
	border-top: 1px solid #e5e5e5;
	background-color: #ffffff;
}
#breadcrumbNav ul li {
	float: left;
	line-height: 49px;
}
#breadcrumbNav ul li a {
	overflow: hidden;
	display: block;
	max-width: 15em;
	padding: 0 36px 0 10px;
	background: url(/new_common/images/breadcrumb_bg01.png) no-repeat 100% 50%;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#breadcrumbNav ul li:first-child {
	background: url(/new_common/images/breadcrumb_ic01.png) no-repeat 30px 50%;
}
#breadcrumbNav ul li:first-child a {
	width: 83px;
	text-indent: -9999px;
	outline: none;
}
#breadcrumbNav ul li:nth-child(2) a {
	max-width: none;
}

/* result */
body#result #breadcrumbNav {
	position: relative;
	margin-top: 0;
	z-index: 10;
}

}


@media print, screen and (min-width: 721px) and (max-width: 1100px) {

/*=================================

	3: common parts for Tablet

================================ */
.tbNone {
	display: none;
}

/* result */
body#result {
	background: #f3f3f3 none;
}

/* 3-1: header
================================ */
#headerContainer {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: auto !important;
	border-bottom: 5px solid #dfdfdf;
	background-color: #ffffff;
}
#headerContainer:before,
#headerContainer:after {
	position: absolute;
	bottom: -5px;
	width: 5px;
	height: 5px;
	background: url(/new_common/images/header_bg03.png) no-repeat;
	content: "";
}
#headerContainer:before {
	left: 0;
	background-position: 0 0;
}
#headerContainer:after {
	right: 0;
	background-position: -5px 0;
}

/* globalHeader */
#globalHeader .siteLogo {
	position: relative;
	width: 212px;
	padding: 16px 20px 15px;
	z-index: 10;
}
#globalHeader .siteLogo > a {
	display: block;
	width: 172px;
	height: 54px;
	background: #ffffff url(/new_common/images/header_logo02.png) no-repeat 0 0;
	text-indent: -9999px;
	outline: none;
}
#globalHeader .menuSwitch {
	display: none;
}

/* mainMenu */
#globalNav > .mainMenu > li {
	display: table;
	float: left;
	width: 20% !important;
	font-weight: bold;
	line-height: 1.29;
}
#globalNav > .mainMenu > li:nth-child(2n),
#globalNav > .mainMenu > li:nth-child(4n) {
	width: 16.66%;
}
#globalNav > .mainMenu > li > a {
	display: table-cell;
	height: 60px;
	padding: 0 12.5%;
	border-top: 5px solid;
	vertical-align: middle;
	color: #333333;
	text-decoration: none;
}
#globalNav > .mainMenu > li > a:hover,
#globalNav > .mainMenu > li.on > a,
#globalNav > .mainMenu > li.current > a {
	border-top: none;
	color: #ffffff;
}
#globalNav > .mainMenu > .service > a {border-color: #f1269c; background-color: #fef4fa;}
#globalNav > .mainMenu > .service > a:hover,#globalNav > .mainMenu > .service.on > a,#globalNav > .mainMenu > .service.current > a {background-color: #f1269c;}
#globalNav > .mainMenu > .shop > a {border-color: #f30033; background-color: #fef2f5;}
#globalNav > .mainMenu > .shop > a:hover,#globalNav > .mainMenu > .shop.on > a,#globalNav > .mainMenu > .shop.current > a {background-color: #f30033;}
#globalNav > .mainMenu > .amusement > a {border-color: #fc7f07; background-color: #fff8f2;}
#globalNav > .mainMenu > .amusement > a:hover,#globalNav > .mainMenu > .amusement.on > a,#globalNav > .mainMenu > .amusement.current > a {background-color: #fc7f07;}
#globalNav > .mainMenu > .company > a {border-color: #09a5cd; background-color: #f2fafc;}
#globalNav > .mainMenu > .company > a:hover,#globalNav > .mainMenu > .company.on > a,#globalNav > .mainMenu > .company.current > a {background-color: #09a5cd;}
#globalNav > .mainMenu > .csr > a {border-color: #89d83f; background-color: #f9fdf5;}
#globalNav > .mainMenu > .csr > a:hover,#globalNav > .mainMenu > .csr.on > a,#globalNav > .mainMenu > .csr.current > a {background-color: #89d83f;}
#globalNav > .mainMenu > .recruit > a {border-color: #000000; background-color: #f2f2f2;}
#globalNav > .mainMenu > .recruit > a:hover,#globalNav > .mainMenu > .recruit.on > a,#globalNav > .mainMenu > .recruit.current > a {background-color: #666666;}
#globalNav > .mainMenu > .diversity > a {border-color: #009e34; background-color: #f2faf5;}
#globalNav > .mainMenu > .diversity > a:hover,#globalNav > .mainMenu > .diversity.on > a,#globalNav > .mainMenu > .diversity.current > a {background-color: #009e34;}
.dropDownMenu {
	display: none;
	position: absolute;
	top: 145px;
	left: 0;
	width: 100%;
	z-index: 9999;
	padding-bottom: 5px;
	background: url(/new_common/images/header_bg04.png) 0 100% no-repeat;
	background-size: 100% 5px;
}
.mainMenu > li:nth-of-type(n+6) > .dropDownMenu {
	top: 205px;
}
.dropDownMenu .inner {
	min-height: 300px !important;
	height: auto !important;
	padding: 30px 40px 65px;
}
.dropDownMenu .closeBtn {
	float: right;
	margin: -55px 20px 0 0;
}
.dropDownMenu .closeBtn a {
	display: block;
	height: 35px;
	width: 35px;
	background: url(/new_common/images/com_ic24.png);
	text-indent: -9999px;
}
.service > .dropDownMenu .inner {background-color: #f1269c;}
.service > .dropDownMenu .inner * {border-color: #f892cd !important;}
.service > .dropDownMenu .closeBtn {background-color: #f1269c !important;}
.shop > .dropDownMenu .inner {background-color: #f30033;}
.shop > .dropDownMenu .inner * {border-color: #f97f99 !important;}
.shop > .dropDownMenu .closeBtn {background-color: #f30033 !important;}
.amusement > .dropDownMenu .inner {background-color: #fc7f07;}
.amusement > .dropDownMenu .inner * {border-color: #fdbf83 !important;}
.amusement > .dropDownMenu .inner .links > li > ul > li > span {background-color: #fc9f45;}
.amusement > .dropDownMenu .closeBtn {background-color: #fc7f07;}
.company > .dropDownMenu .inner {background-color: #09a5cd;}
.company > .dropDownMenu .inner * {border-color: #84d2e6 !important;}
.company > .dropDownMenu .inner .links > li > ul > li > span {background-color: #84d2e6;}
.company > .dropDownMenu .closeBtn {background-color: #09a5cd !important;}
.csr > .dropDownMenu .inner {background-color: #89d83f;}
.csr > .dropDownMenu .inner * {border-color: #c4eb9f !important;}
.csr > .dropDownMenu .inner .links > li > ul > li > span {padding: 9px 20px; border-top: 3px solid; background-color: #c4eb9f;}
.csr > .dropDownMenu .closeBtn {background-color: #89d83f !important;}
.recruit > .dropDownMenu .inner {background-color: #666666;}
.recruit > .dropDownMenu .inner * {border-color: #828282 !important;}
.recruit > .dropDownMenu .closeBtn {background-color: #000000 !important;}
.diversity > .dropDownMenu .inner {background-color: #009e34;}
.diversity > .dropDownMenu .inner * {border-color: #74ca90 !important;}
.diversity > .dropDownMenu .closeBtn {background-color: #80cf9a !important;}
.dropDownMenu .inner .links {
	border-bottom: none;
}
.dropDownMenu .inner .links > li {
	font-size: 18px;
	font-size: 1.8rem;
}
.dropDownMenu .inner .links > li a,
.dropDownMenu .inner .links > li span {
	display: block;
	color: #ffffff;
	text-decoration: none;
}
.dropDownMenu .inner .links > li a:hover {
	text-decoration: underline;
}
.dropDownMenu .inner .links > li > a {
	width: 47%;
	padding: 23px 25px 21px 0;
	border-top: 3px solid;
	background: url(/new_common/images/com_ic01.png) no-repeat 98% 50%;
}
.dropDownMenu .inner .links > li > span {
	padding: 23px 25px 21px 20px;
	border-top: 3px solid;
}
.dropDownMenu .inner .links > li > ul > li {
	float: left;
	width: 47%;
	margin-right: 6%;
	font-size: 16px;
	font-size: 1.6rem;
}
.dropDownMenu .inner .links > li > ul > li:nth-child(2n) {
	margin-right: 0;
}
.dropDownMenu .inner .links > li > ul > li > a {
	padding: 16px 20px 14px;
	border-top: 1px solid;
	background: url(/new_common/images/com_ic02.png) no-repeat 303px 50%;
}
.amusement .dropDownMenu .inner .links > li > ul > li > a {
	padding-left: 2px;
}
.dropDownMenu .inner .links > li > ul > li > span {
	padding: 13px 20px 9px;
}
.dropDownMenu .inner .links > li > ul > li > ul > li {
	font-size: 13px;
	font-size: 1.3rem;
}
.csr .dropDownMenu .inner .links > li > ul > li > ul > li {
	float: left;
	margin: 0 10% 0 0;
	width: 45%;
}
.csr .dropDownMenu .inner .links > li > ul > li > ul > li:nth-child(2n) {
	margin-right: 0;
}
.dropDownMenu .inner .links > li > ul > li > ul > li > a {
	padding: 13px 15px 11px 21px;
	border-top: 1px solid;
	background: url(/new_common/images/com_ic03.png) no-repeat 305px 50%;
}
.csr .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	background-position: 90% 50%;
}
.amusement .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	border-top: none;
}
.amusement .dropDownMenu .inner .links > li > ul > li > ul > li:nth-child(n+3) > a {
	border-top: 1px solid;
}
.company .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	border-top: none;
}
.company .dropDownMenu .inner .links > li > ul > li > ul > li:nth-child(n+3) > a {
	border-top: 1px solid;
}
.csr .dropDownMenu .inner .links > li > ul > li > ul > li > a {
	border-top: none;
}
.csr .dropDownMenu .inner .links > li > ul > li > ul > li:nth-child(n+3) > a {
	border-top: 1px solid;
}
.dropDownMenu .inner .links > li > ul > li > ul > li:last-child > a {
	border-bottom: none;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows {
	margin-top: 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li {
	float: left;
	width: 45%;
	margin: 0 10% 0 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li:nth-child(2n) {
	margin-right: 0;
}
.dropDownMenu .inner .links > li > ul > li > .twoRows > li > a {
	background-position: 95% 50%;
}

/* utilityLinks */
#globalNav .utilityLinks {
	position: absolute;
	top: 18px;
	right: 0;
	padding-bottom: 45px;
	z-index: 1;
}
#globalNav .utilityLinks > li {
	float: left;
	margin: 8px 0 0 19px;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
#globalNav .utilityLinks > li:first-child {
	margin-left: 0;
}
#globalNav .utilityLinks > li.blog {
	width: 160px;
	height: 29px;
	margin-top: 6px;
	padding: 0 5px;
	font-weight: bold;
	line-height: 1.0;
}
#globalNav .utilityLinks > li.blog > a {
	display: block;
	padding-top: 8px;
	text-align: center;
	background-color: #999999;
	border-bottom: 1px solid #7f7f7f;
	color: #ffffff;
	height: 30px;
}
#globalNav .utilityLinks > li.blog > span {
	display: table-cell;
	padding: 0 5px;
	text-align: center;
	vertical-align: middle;
}
#globalNav .utilityLinks > li > a {
	color: #333333;
	text-decoration: none;
}
#globalNav .utilityLinks > li > a:hover {
	text-decoration: underline;
}
#globalNav .utilityLinks > .sitemap {
	margin-right: 19px;
}
#globalNav .utilityLinks > .lang {
	position: absolute;
	right: 99px;
	bottom: 12px;
	float: right;
	width: 80px;
	margin: 0;
	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
	font-size: 13px;
	font-size: 1.3rem;
	text-align: center;
}
#globalNav .utilityLinks > .lang + .lang {
	right: 19px;
}
#globalNav .utilityLinks > .lang > a {
	display: block;
	height: 29px;
	padding-top: 5px;
	border-right: 1px solid #7f7f7f;
	border-bottom: 1px solid #7f7f7f;
	background-color: #999999;
	vertical-align: middle;
	color: #ffffff;
	text-decoration: none;
}
#globalNav .utilityLinks > .blog {
	position: absolute;
	right: 190px;
	bottom: 13px;
}
#globalNav .utilityLinks > .social {
	display: none;
}

/* 3-2: main
================================ */
#mainContents > * {
	font-size: 100.0%;
}

/* contents */
#contents {
	width: 100%;
	max-width: 1100px;
	margin: 20px auto 0;
	padding: 0 20px 20px;
	border-radius: 10px;
	background-color: #ffffff;
	-webkit-box-shadow: 1px 1px 0 0 #e5e5e5;
	   -moz-box-shadow: 1px 1px 0 0 #e5e5e5;
	        box-shadow: 1px 1px 0 0 #e5e5e5;
}
#mainContents > aside {
	width: 100%;
	max-width: 1100px;
	margin: 28px auto 0;
}
#mainContents > aside > *:first-child {
	margin-top: 0 !important;
}

/* result */
body#result #mainContents > aside,
body#result #mainContents > .return {
	position: relative;
	background-color: #f3f3f3;
	z-index: 10;
}
body#result #mainContents > #contents {
	padding-bottom: 0;
	border-bottom: 1px solid #e5e5e5;
	border-radius: 0;
	border-top-right-radius: 10px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
body#result #mainContents > aside {
	max-width: none;
	margin-top: 0;
	padding: 28px 0 20px;
}
body#result #mainContents > .return {
	margin: 0;
	padding: 0 52px 45px;
	background-position: 20px 0;
}

/* 3-3: footer
================================ */
#footerContainer {
	background-color: #222222;
}

/* globalFooter */
#globalFooter {
	position: relative;
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 20px 21px 21px;
}
#globalFooter .pageTop {
	position: absolute;
	top: 10px;
	right: 0;
}
#globalFooter .pageTop a {
	outline: none;
}

/* siteIdentity */
#siteIdentity ul li {
	float: left;
	margin: 13px 0 0 18px;
	padding-left: 18px;
	border-left: 1px solid #eaeaea;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.1;
}
#siteIdentity ul li:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}
#siteIdentity ul li a {
	color: #ffffff;
}
#siteIdentity #copyright {
	padding-top: 35px;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック","MS PGothic";
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}

/* result */
body#result #footerContainer {
	position: relative;
	z-index: 10;
}

/* 3-4: breadcrumbNav
================================ */
#breadcrumbNav {
	margin-top: 45px;
	border-top: 1px solid #e5e5e5;
	background-color: #ffffff;
}
#breadcrumbNav ul li {
	float: left;
	line-height: 49px;
}
#breadcrumbNav ul li a {
	overflow: hidden;
	display: block;
	width: 15em;
	padding: 0 36px 0 10px;
	background: url(/new_common/images/breadcrumb_bg01.png) no-repeat 100% 50%;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#breadcrumbNav ul li:first-child {
	background: url(/new_common/images/breadcrumb_ic01.png) no-repeat 30px 50%;
}
#breadcrumbNav ul li:first-child a {
	width: 83px;
	text-indent: -9999px;
	outline: none;
}
#breadcrumbNav ul li:nth-child(2) a {
	width: auto;
}

/* result */
body#result #breadcrumbNav {
	position: relative;
	margin-top: 0;
	z-index: 10;
}

}


@media print, screen and (min-width: 721px) and (max-width: 900px) {

#globalNav > .mainMenu > li {
	letter-spacing: -0.05em;
}
#globalNav > .mainMenu > li > a {
	padding: 0 6%;
}
#globalNav > .mainMenu > .shop > a,
#globalNav > .mainMenu > .amusement > a {
	padding-right: 0;
}
#globalNav .utilityLinks {
	top: 12px;
}
#globalNav .utilityLinks > .sitemap {
	margin-right: 0;
}
#globalNav .utilityLinks > .lang {
	position: absolute;
	top: 30px;
	right: 80px;
}
#globalNav .utilityLinks > .lang + .lang {
	right: 0;
}
#globalNav .utilityLinks > .blog {
	right: 171px;
}

}


@media only screen and (max-width: 720px) {

/*=================================

	4: common parts for Smartphone

================================ */
.spNone {
	display: none;
}
.contentsDetailWrap p {
	margin-top: 10px;
}

/* 4-1: header
================================ */
#headerContainer {
	height: auto !important;
	background-color: #ffffff;
}

/* globalHeader */
#globalHeader .siteLogo {
	position: relative;
	padding: 13px 15px 10px;
	border-bottom: 2px solid #d7d7d7;
}
#globalHeader .siteLogo:before,
#globalHeader .siteLogo:after {
	position: absolute;
	bottom: -2px;
	width: 5px;
	height: 2px;
	background: url(/new_common/images/header_bg03.png) no-repeat;
	background-size: 10px auto;
	content: "";
}
#globalHeader .siteLogo:before {
	left: 0;
	background-position: 0 -3px;
}
#globalHeader .siteLogo:after {
	right: 0;
	background-position: -10px -3px;
}
#globalHeader .siteLogo > a {
	display: block;
	width: 119px;
	height: 37px;
	background: #ffffff url(/new_common/images/header_logo02.png) no-repeat 0 0;
	background-size: 119px auto;
	text-indent: -9999px;
	outline: none;
}
#globalHeader .menuSwitch {
	position: absolute;
	top: 0;
	right: 0;
}
#globalHeader .menuSwitch a {
	display: block;
	width: 66px;
	height: 60px;
	background: url(/new_common/images/header_ic02.png) no-repeat 0 0;
	background-size: 132px 60px;
	text-indent: -9999px;
	outline: none;
}
#globalHeader .menuSwitch.active a {
	background-position: -66px 0;
}

/* globalNav */
#globalNav {
	position: relative;
	top: -2px;
	display: none;
	background-color: #888888;
}

/* mainMenu */
#globalNav > .mainMenu {
	width: 65.63%;
	margin: 0 auto;
}
#globalNav > .mainMenu > li {
	display: table;
	width: 100%;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}
#globalNav > .mainMenu > li > a {
	display: table-cell;
	height: 55px;
	border-top: 1px solid #aaaaaa;
	vertical-align: middle;
	color: #ffffff;
	text-decoration: none;
}
#globalNav > .mainMenu > li:first-child > a {
	border-top: none;
}

.dropDownMenu {
	display: none !important;
}

/* utilityLinks */
#globalNav .utilityLinks {
	border-bottom: 1px solid #aaaaaa;
}
#globalNav .utilityLinks > li {
	display: table;
	float: left;
	width: 50%;
/*	width: 33.33%; */
	border-top: 1px solid #aaaaaa;
	border-right: 1px solid #aaaaaa;
	font-size: 13px;
	font-size: 1.3rem;
	text-align: center;
}
#globalNav .utilityLinks > li.blog {
	height: 55px;
	color: #666666;
	line-height: 1.0;
	vertical-align: middle;
}
#globalNav .utilityLinks > li.blog > span {
	display: table-cell;
	width: 50%;
	height: 100%;
	vertical-align: middle;
}
#globalNav .utilityLinks > li:nth-child(n+4) {
/*	width: 25%; */
	width: 50%;
}
#globalNav .utilityLinks > li:nth-child(3),
#globalNav .utilityLinks > li:nth-child(7) {
/*	border-right: none; */
}
#globalNav .utilityLinks > li > a {
	display: table-cell;
	height: 54px;
	vertical-align: middle;
	color: #ffffff;
	text-decoration: none;
}
#globalNav .utilityLinks > .sitemap > a,
#globalNav .utilityLinks > .lang > a {
	height: 54px;
}
#globalNav .utilityLinks > .lang > a {
	background-color: #999999;
}
#globalNav .utilityLinks > li.social {
	display: none;
}

/* 4-2: main
================================ */
#contents {
	width: 100%;
	margin: 0 auto;
	padding: 0 10px 15px;
	background-color: #ffffff;
}
#mainContents > aside {
	width: 100%;
	padding: 0 10px;
	margin: 15px auto 0;
}
#mainContents > aside > *:first-child {
	margin-top: 0 !important;
}
#mainContents > #contents > .contentsDetailWrap {
	overflow: hidden;
	margin: 0 -10px;
	padding: 0 10px;
}
#mainContents > #contents > .contentsDetailWrap.box {
	margin-top: 10px;
	padding: 10px;
}
/* 20210629 ADD */
#mainContents .block-video {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}
 
#mainContents .block-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#mainContents .block-map {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}

#mainContents .block-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 4-3: footer
================================ */
#footerContainer {
	margin-top: 20px;
	background-color: #222222;
}

/* globalFooter */
#globalFooter {
	position: relative;
	width: 100%;
	padding: 11px 10px 16px;
}
#globalFooter .pageTop {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
}
#globalFooter .pageTop a {
	outline: none;
}

/* siteIdentity */
#siteIdentity ul li {
	float: left;
	margin: 13px 0 0 18px;
	padding-left: 18px;
	border-left: 1px solid #eaeaea;
	font-size: 9px;
	font-size: 0.9rem;
	line-height: 1.1;
}
#siteIdentity ul li:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}
#siteIdentity ul li a {
	color: #ffffff;
}
#siteIdentity #copyright {
	padding-top: 18px;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック","MS PGothic";
	font-size: 8.5px;
	font-size: 0.85rem;
	font-weight: bold;
	text-align: center;
}

/* 4-4: breadcrumbNav
================================ */
#breadcrumbNav {
	display: none;
}

}


@media print {

/*=================================

	5: print for PC

================================ */
.wysiwygArea h1 {page-break-before: always;}
.wysiwygArea h1, .wysiwygArea h2, .wysiwygArea h3, .wysiwygArea h4, .wysiwygArea h5, .wysiwygArea h6 {page-break-after: avoid;}
.wysiwygArea ul, .wysiwygArea ol, .wysiwygArea dl {page-break-before: avoid;}

body {
	min-width: 990px;
}
#headerContainer,
#footerContainer {
	display: none;
}

}


/*=================================

	clearfix

=================================*/
#globalNav ul:after,
#globalNav .utilityLinks > li.social > ul:after,
#siteIdentity ul:after,
#breadcrumbNav ul:after,
.fR:after,
.fL:after{
	clear: both;
	display: block;
	content: "";
}
#globalNav ul,
#globalNav .utilityLinks > li.social > ul,
#siteIdentity ul,
#breadcrumbNav ul,
.fR,
.fL {
	zoom: 1;
}