@charset "UTF-8";
/*--------------------------------------------------------------
## COLOR
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## MEDIA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## RATIO
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## EXTRA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## VARS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## J-WAVE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## WEBFONT LINE HEIGHT
--------------------------------------------------------------*/
/* Usage Examples .my-level-1-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 48px; margin: 0 0 0 16px; } .my-level-2-heading-class { @include text-crop; // Will use default line height of 1.3 font-size: 32px; // Don't need to change any settings, will work with any font size automatically margin: 0 0 0 16px; } .my-body-copy-class { @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin font-size: 16px; } // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output.  // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings  .slight-adjustment-needed { @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px); font-size: 17px; } .dont-do-this { @include text-crop; font-size: 16px; line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly } */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. */
html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ }

/* Sections ========================================================================== */
/** Remove the margin in all browsers. */
body { margin: 0; }

/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 { font-size: 2em; margin: 0.67em 0; }

/* Grouping content ========================================================================== */
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }

/* Text-level semantics ========================================================================== */
/** Remove the gray background on active links in IE 10. */
a { background-color: transparent; }

/** 1. Remove the bottom border in Chrome 57- 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }

/** Add the correct font weight in Chrome, Edge, and Safari. */
b, strong { font-weight: bolder; }

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }

/** Add the correct font size in all browsers. */
small { font-size: 80%; }

/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }

sub { bottom: -0.25em; }

sup { top: -0.5em; }

/* Embedded content ========================================================================== */
/** Remove the border on images inside links in IE 10. */
img { border-style: none; }

/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers. 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }

/** Show the overflow in IE. 1. Show the overflow in Edge. */
button, input { /* 1 */ overflow: visible; }

/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button, select { /* 1 */ text-transform: none; }

/** Correct the inability to style clickable types in iOS and Safari. */
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }

/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }

/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }

/** Correct the padding in Firefox. */
fieldset { padding: 0.35em 0.75em 0.625em; }

/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }

/** Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress { vertical-align: baseline; }

/** Remove the default vertical scrollbar in IE 10+. */
textarea { overflow: auto; }

/** 1. Add the correct box sizing in IE 10. 2. Remove the padding in IE 10. */
[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }

/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }

/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }

/** Remove the inner padding in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }

/* Interactive ========================================================================== */
/* Add the correct display in Edge, IE 10+, and Firefox. */
details { display: block; }

/* Add the correct display in all browsers. */
summary { display: list-item; }

/* Misc ========================================================================== */
/** Add the correct display in IE 10+. */
template { display: none; }

/** Add the correct display in IE 10. */
[hidden] { display: none; }

/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## WEB FONTS
--------------------------------------------------------------*/
@font-face { font-family: 'Marsden Compressed'; src: url("../font/Marsden-Cm-Medium.eot"); src: url("../font/Marsden-Cm-Medium.eot?#iefix") format("embedded-opentype"), url("../font/Marsden-Cm-Medium.woff") format("woff"), url("../font/Marsden-Cm-Medium.ttf") format("truetype"), url("../font/Marsden-Cm-Medium.svg#svgFontName") format("svg"); font-weight: normal; font-style: normal; }

@font-face { font-family: 'Marsden Compressed'; src: url("../font/Marsden-Cm-SemiBold.eot"); src: url("../font/Marsden-Cm-SemiBold.eot?#iefix") format("embedded-opentype"), url("../font/Marsden-Cm-SemiBold.woff") format("woff"), url("../font/Marsden-Cm-SemiBold.ttf") format("truetype"), url("../font/Marsden-Cm-SemiBold.svg#svgFontName") format("svg"); font-weight: bold; font-style: normal; }

.icon { display: inline-block; width: 1em; height: 1em; stroke-width: 0; stroke: currentColor; fill: currentColor; }

html { box-sizing: border-box; }

*, *:before, *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ box-sizing: inherit; }

body { background: #1d1d1f; /* Fallback for when there is no custom background color defined. */ }

blockquote, q { quotes: "" ""; }

blockquote:before, blockquote:after, q:before, q:after { content: ""; }

hr { background-color: #ccc; border: 0; height: 1px; margin-bottom: 1.5em; }

img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; /* Adhere to container width. */ }

figure { margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */ }

/*--------------------------------------------------------------
## lists
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## lists STYLE OFF
--------------------------------------------------------------*/
ul, li { list-style: none; margin: 0; padding: 0; }

/*--------------------------------------------------------------
## tables
--------------------------------------------------------------*/
table { margin: 0 0 1.5em; width: 100%; }

/*--------------------------------------------------------------
## links
--------------------------------------------------------------*/
a { color: #29292c; }

a:visited { color: #29292c; }

a:hover, a:focus, a:active { color: #1d1d1f; }

a:focus { outline: thin dotted; }

a:hover, a:active { outline: 0; }

/*--------------------------------------------------------------
## typography
--------------------------------------------------------------*/
p { margin-bottom: 1.5em; }

dfn, cite, em, i { font-style: italic; }

blockquote { margin: 0 1.5em; }

address { margin: 0 0 1.5em; }

pre { background: #eee; font-family: "Courier 10 Pitch", Courier, monospace; font-size: 15px; font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; overflow: auto; padding: 1.6em; }

code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; font-size: 15px; font-size: 0.9375rem; }

abbr, acronym { border-bottom: 1px dotted #666; cursor: help; }

mark, ins { background: #fff9c0; text-decoration: none; }

big { font-size: 125%; }

h1, h2, h3, h4, h5, h6 { clear: both; }

/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
button { background-color: transparent; border: none; border-style: none; cursor: pointer; outline: none; padding: 0; appearance: none; }

.center-text { text-align: center; }

.small { font-size: 0.8em; }

html, body { height: 100%; }

html body { background-color: #1d1d1f; position: relative; font: 16px/1.75 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", 'メイリオ', Meiryo, "ＭＳＰゴシック", sans-serif; font-weight: 500; color: #29292c; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-feature-settings: "pkna"; }

@media (max-width: 60em) { html body { font-size: 1.667vw; } }

@media (max-width: 40em) { html body { font-size: 4vw; } }

html body.is-noscroll { overflow: hidden; }

html body img { vertical-align: bottom; }

a:focus, *:focus { outline: none; }

.container { background: #fff; max-width: 1440px; margin: auto; overflow: hidden; }

.container_modal { background: none; max-width: none; }

@keyframes fadeIn { 0% { opacity: 0; }
  100% { opacity: 1; } }

@keyframes highlight { 0% { opacity: 0.75; }
  100% { opacity: 0.25; } }

/*--------------------------------------------------------------
## COMMON
--------------------------------------------------------------*/
.btn_border { background: url(../img/icn-arrow-r.svg) no-repeat left 1em center; background-size: 14px 14px; border: 1px solid #29292c; display: block; margin: 1em auto; padding: 0.75em 1.5em 0.75em 2.5em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; letter-spacing: 0.125em; line-height: 1.25em; font-weight: bold; text-align: center; text-decoration: none; color: #29292c; }

.is-ie .btn_border { padding: 1em 1.5em 0.75em 2.4em; }

.is-edge .btn_border { padding: 0.85em 1.5em 0.75em 2.4em; }

.btn_border:hover { background: #EDD3A1 url(../img/icn-arrow-r.svg) no-repeat left 1em center; background-size: 14px 14px; border: 1px solid #EDD3A1; color: #29292c; }

.btn_border_w { background: url(../img/icn-arrow-rw.svg) no-repeat left 1em center; background-size: 14px 14px; border: 1px solid #fff; }

.btn_border_w:hover { background: #EDD3A1 url(../img/icn-arrow-r.svg) no-repeat left 1em center; background-size: 14px 14px; color: #29292c !important; }

.btn-large { background: #29292c; display: inline-block; width: 240px; width: 100%; padding: 0.875em 1.5em 1em 2.5em; line-height: 1.25em; font-weight: bold; text-decoration: none; text-align: center; color: #fff; }

.btn-large:visited { color: #fff; }

.btn-large:hover { background: #ba3a41; color: #fff; }

.smallhead { margin: 0 0 0.5em; padding: 0; font-weight: bold; }

br.spbr { display: none; }

@media (max-width: 40em) { br.spbr { display: block; } }

/*--------------------------------------------------------------
## FOOTER
--------------------------------------------------------------*/
.footer { position: relative; overflow: hidden; }

.footer img { vertical-align: bottom; }

.footer__title { background: #fff; position: relative; max-width: 1016px; margin: auto; padding: 0; padding: 2.5em 0; }

.footer__title a { display: block; position: relative; max-width: 17.5em; margin: auto; text-decoration: none; color: #29292c; }

.footer__jwave { background: #29292c; height: 11.25em; margin: auto; padding: 0 40px; color: #fff; display: flex; align-items: center; justify-content: center; }

.footer__jwave .wrapper { width: 100%; max-width: 1016px; }

.footer__jwave .copyright { float: right; line-height: 1em; text-align: right; font-size: 0.75em; font-family: Helvetica, Arial, sans-serif; white-space: nowrap; }

.footer__jwave .copyright img { margin-right: 4px; margin-bottom: 8px; }

.footer .btn_pagetop { display: block; width: 60px; height: 0; padding-top: 60px; position: absolute; bottom: 0; right: 0; overflow: hidden; border-style: none; z-index: 1; }

.footer .btn_pagetop:before { border-color: transparent transparent #29292c transparent; border-style: solid; border-width: 0 8px 8px 8px; height: 0; width: 0; position: absolute; bottom: 0; left: 50%; transform: translate(-50%, 0); display: block; content: ""; }

@media (max-width: 60em) { .footer__jwave { padding: 0 40px; } }

@media (max-width: 40em) { .footer__jwave { padding: 20px 20px; height: auto; } .footer__title { position: relative; } .footer__title a { max-width: 60vw; } }

/*--------------------------------------------------------------
## HEADER
--------------------------------------------------------------*/
.header { position: relative; padding: 0 0 40px; margin: auto; text-align: center; overflow: hidden; }

.header__photo, .header__cloud, .header__obj { height: 36em; }

.header__photo { background-image: url(../img/tgf-photo.jpg); background-size: cover; background-position: center center; position: absolute; left: 0; top: 0; width: 100%; z-index: 0; }

.header__cloud { position: relative; z-index: 0; }

.header__cloud .cloud1 { background: url(../img/obj-cloud1.svg) no-repeat; background-size: contain; position: absolute; right: 50%; bottom: 0; transform: translate(3.75em, 1em); width: 75em; height: 20em; }

.header__cloud .cloud2 { background: url(../img/obj-cloud2.svg) no-repeat; background-size: contain; position: absolute; left: 50%; top: 0; transform: translate(6em, -3em); width: 75em; height: 11em; }

.header__cloud .cloud3 { background: url(../img/obj-cloud3.svg) no-repeat; background-size: contain; position: absolute; left: 50%; bottom: 0; transform: translate(7em, 3em); width: 75em; height: 11em; }

.header__title { position: relative; max-width: 52.5em; margin: -3em auto 40px; z-index: 1; }

.header__title .tgf-title { margin: 0 0 2px; }

.header__obj { position: absolute; top: 0; left: 50%; transform: translate(-50%, 0); width: 52.5em; line-height: 1em; overflow: hidden; }

.header__obj .jwave-logo { position: absolute; right: 0; top: 0; transform: translate(0, 4.5em); width: 8em; }

.header__obj .stationtext { position: absolute; left: 0; bottom: 6em; width: 10em; }

.header .btn_content { display: none; position: absolute; width: 60px; height: 60px; bottom: 25px; left: 50%; transform: translate(-50%, 0); overflow: hidden; }

.header .btn_content:before { border-color: #29292c transparent transparent transparent; border-style: solid; border-width: 8px 8px 0 8px; height: 0; width: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -33.33%); display: block; content: ""; }

@media (max-width: 40em) { .header .btn_content { bottom: 0; } }

.header #jme { position: relative; z-index: 2; }

@media (max-width: 64em) { .header__title { margin: -3em 40px 40px; } .header__obj { width: calc(100% - 80px); } }

@media (max-width: 40em) { .header { height: 100vh; } .header__photo, .header__cloud, .header__obj { height: calc(100vh - 12em); } .header__cloud .cloud1 { transform: translate(5em, 0em); width: 60em; height: 16em; } .header__cloud .cloud2 { transform: translate(-6em, -3.5em); width: 60em; height: 8.8em; } .header__cloud .cloud3 { transform: translate(6em, 0em); width: 60em; height: 8.8em; width: 45em; height: 6.6em; } .header__title { margin: -3em 20px 20px; } .header__obj { width: calc(100% - 40px); } .header__obj .jwave-logo { transform: translate(0, 2.4em); width: 8em; } .header__obj .stationtext { bottom: 4em; } }

/*--------------------------------------------------------------
## CONTENT
--------------------------------------------------------------*/
.content p { margin: 0 0 1em; }

.pane { margin-bottom: 40px; }

@media (max-width: 64em) { .pane { width: calc(100vw - 80px); } }

@media (max-width: 40em) { .pane { width: calc(100vw - 40px); } }

/*--------------------------------------------------------------
## LEAD
--------------------------------------------------------------*/
.p-lead { max-width: 52.5em; margin: auto; margin-bottom: 20px; display: flex; }

.p-lead__text { flex: 1 1 560px; }

.p-lead__tgf-logo { flex: 1 1 280px; padding: 0 20px 0 40px; }

.p-lead__tgf-logo .btn_border { width: 14em; margin: 2em auto; }

@media (max-width: 40em) { .p-lead { flex-direction: column; } .p-lead__text { margin-bottom: -1.5em; } .p-lead__tgf-logo { margin-top: -1em; padding: 0; text-align: center; } .p-lead__tgf-logo img { width: 75vw; } .p-lead__tgf-logo .btn_border { width: 75vw; } }

/*--------------------------------------------------------------
## TOPICS
--------------------------------------------------------------*/
.p-topics { border-bottom: 1px solid #29292c; max-width: 52.5em; margin: auto; margin-bottom: 40px; padding-bottom: 0.5em; }

.p-topics__head { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; color: #29292c; margin-bottom: -0.05em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.25em; letter-spacing: 0.5em; line-height: 1em; }

.p-topics__head:before, .p-topics__head:after { content: ""; flex-grow: 1; height: 1px; background: #29292c; display: block; }

.p-topics__head:before { margin-right: 0.5em; }

.p-topics__head:after { margin-left: 0.5em; }

.p-topics__head span { padding-left: 0.5em; }

.p-topics__list { margin: 0; padding: 0; font-size: 0.8em; line-height: 1.5em; }

.p-topics__list li { margin: 0.75em 0; display: flex; }

.p-topics__list .date { padding-right: 1em; }

.p-topics .btn_more { background: #fff; display: block; width: 100%; height: 24px; flex: 0 0 100%; display: flex; align-items: center; justify-content: center; color: #29292c; }

.p-topics .btn_more:before, .p-topics .btn_more:after { content: ""; flex-grow: 1; height: 1px; background: #29292c; display: block; }

.p-topics .btn_more:before { margin-right: 0.5em; }

.p-topics .btn_more:after { margin-left: 0.5em; }

/*--------------------------------------------------------------
## CATEGORY
--------------------------------------------------------------*/
.p-category { position: relative; max-width: 1016px; margin: auto; padding-bottom: 40px; text-align: center; }

.p-category a { text-decoration: none; display: block; }

.p-category__wrapper { display: flex; margin: 0 -20px; }

.p-category__item { flex: 1 1 33.3333%; padding: 0 20px; }

.p-category__header { padding: 20px; padding: 1em 0; }

.p-category__header .title { height: 1em; margin: 0; padding: 0; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 2.25em; font-weight: bold; letter-spacing: 0.05em; line-height: 1em; }

.p-category__header .sub { margin: 0.25em 0 0; padding: 0; height: 1.25em; line-height: 1.25em; font-weight: bold; }

.p-category__photo { position: relative; margin: 0; padding: 0; overflow: hidden; }

.p-category__photo .photobox { width: 100%; height: 0; padding-top: 75%; z-index: 0; }

.p-category__photo .icon { position: absolute; right: 0; bottom: 0; transform: translate(50%, 50%); width: 5em; height: 5em; z-index: 2; }

a:hover .p-category__photo:before { background: #EDD3A1; opacity: 0.25; display: block; content: " "; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 1; animation: highlight 0.75s linear 0s 1 normal none; }

.comingsoon .p-category__photo .photobox { opacity: 0.75; }

.comingsoon .p-category__photo:before { display: flex; align-items: center; justify-content: center; content: "Coming Soon."; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 1; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.75em; font-size: 1.5em; line-height: 1em; color: #fff; }

.p-category__text .event-name { margin: 0; padding: 0.5em 0; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.5em; line-height: 1em; }

@media (max-width: 64em) { .p-category { width: 100vw; } }

@media (max-width: 40em) { .p-category { width: calc(100vw - 40px); margin-top: -20px; } .p-category__item { margin: 0 20px; padding: 20px 0; } .p-category__item:not(:last-child) { border-bottom: 1px solid #29292c; } .p-category__wrapper { flex-direction: column; } .p-category__header .title { font-size: 3em; } .p-category__header .sub { font-size: 1.25em; } .p-category__photo { width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; } .p-category__photo .photobox { padding-top: 67%; } .p-category__photo .icon { transform: translate(40%, 50%); } .p-category__text .event-name { font-size: 2em; } }

/*--------------------------------------------------------------
## WANTED
--------------------------------------------------------------*/
.p-wanted { background: #EDD3A1; position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; margin-bottom: 0; padding: 20px 0; }

.p-wanted .bnr_wanted { background: #fff url(../img/bnr-wanted-bg.svg) no-repeat; background-size: contain; display: block; max-width: 52.5em; height: 11.25em; margin: auto; display: flex; align-items: center; justify-content: center; }

.p-wanted .bnr_wanted img { width: 27.5em; }

@media (max-width: 40em) { .p-wanted { padding: 20px; } .p-wanted .bnr_wanted { background-repeat: repeat-y; background-size: 100% 50%; } .p-wanted .bnr_wanted img { width: 27.5em; width: 80vw; } }

/* autoprefixer grid: autoplace */
/*--------------------------------------------------------------
## HEADER
--------------------------------------------------------------*/
.nl-header { position: relative; height: 25em; overflow: hidden; display: flex; align-items: center; justify-content: center; }

.nl-header_v2 { height: 30em; }

.nl-header__photo { background-image: url(../img/nl-photo.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 0; }

.nl-header__wrapper { position: relative; width: 100%; max-width: 52.5em; z-index: 1; }

.nl-header__wrapper .nl-logo { position: relative; width: 16em; display: block; margin: -4em auto 1.5em; }

.nl-header__wrapper .nl-title { position: relative; margin: 0 auto 20px; padding: 0; z-index: 1; }

.nl-header__wrapper .nl-title img { display: block; }

.nl-header__wrapper .nl-subtitle { position: relative; z-index: 1; }

.nl-header__wrapper .nl-titlebox { position: relative; }

.nl-header__wrapper .nl-titlebox:before { background: rgba(255, 255, 255, 0.65); position: absolute; width: 100vw; height: calc(100% - 1.5em); top: 50%; left: 50%; margin-left: -50vw; margin-right: -50vw; transform: translate(0, -50%); display: block; content: ""; z-index: 0; }

.nl-header #jme { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, -50%); }

@media (max-width: 40em) { .nl-header { height: 50vh; } .nl-header__wrapper { width: calc(100vw - 40px); transform: translate(0, -64%); } .nl-header_v2 .nl-header__wrapper { transform: translate(0, 0%); } .nl-header_v2 .nl-header__wrapper .nl-logo { width: 50vw; margin: -4em auto 1em; } .nl-header_v2 .nl-header__wrapper .nl-titlebox:before { height: calc(100% - 1em); } }

/*--------------------------------------------------------------
## CONTENT
--------------------------------------------------------------*/
.content p { margin: 0 0 1em; }

.nl-pane { margin-bottom: 40px; }

@media (max-width: 60em) { .nl-pane { width: calc(100vw - 80px); } }

@media (max-width: 40em) { .nl-pane { width: calc(100vw - 40px); } }

.nl-detail { position: relative; background: #6B818E; color: #fff; }

.nl-detail .grid-container div { background: #627783; }

.grid-container { position: absolute; width: 1016px; height: 100%; left: 50%; top: 0; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); z-index: 0; display: -ms-grid; display: grid; grid-template-areas: "div"; -ms-grid-columns: 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr 2.5em 1fr; grid-template-columns: repeat(12, 1fr); -ms-grid-rows: auto auto; grid-template-rows: auto auto; grid-column-gap: 2.5em; overflow: hidden; }

.grid-container div { background: #faf4e7; height: 1000px; -ms-grid-row: 1; }

.grid-container div:nth-child(1) { -ms-grid-column: 1; }

.grid-container div:nth-child(2) { -ms-grid-column: 3; }

.grid-container div:nth-child(3) { -ms-grid-column: 5; }

.grid-container div:nth-child(4) { -ms-grid-column: 7; }

.grid-container div:nth-child(5) { -ms-grid-column: 9; }

.grid-container div:nth-child(6) { -ms-grid-column: 11; }

.grid-container div:nth-child(7) { -ms-grid-column: 13; }

.grid-container div:nth-child(8) { -ms-grid-column: 15; }

.grid-container div:nth-child(9) { -ms-grid-column: 17; }

.grid-container div:nth-child(10) { -ms-grid-column: 19; }

.grid-container div:nth-child(11) { -ms-grid-column: 21; }

.grid-container div:nth-child(12) { -ms-grid-column: 23; }

@media (max-width: 60em) { .grid-container { width: 52.5em; grid-column-gap: 2.5em; grid-template-columns: repeat(10, 1fr); } }

@media (max-width: 40em) { .grid-container { width: calc(100vw - 40px); grid-column-gap: 20px; grid-template-columns: repeat(6, 1fr); } }

.def-list { margin: 0; padding: 0 0 1em; }

.def-list dt { border-bottom: 1px solid #fff; margin-bottom: 0.5em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.5em; font-weight: bold; letter-spacing: 0.1em; }

.def-list dd { margin: 0 0 0.5em 5.5em; }

@media (max-width: 40em) { .def-list dd { margin: 0 0 0.5em 0; } }

/*--------------------------------------------------------------
## LEAD
--------------------------------------------------------------*/
.nl-lead { position: relative; max-width: 52.5em; margin: auto; padding: 40px 0; }

.nl-lead h1 { background: #29292c; position: relative; width: 100vw; margin: 0.25em 0; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; padding: 0 0 0.125em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 2.5em; line-height: 1em; letter-spacing: 0.05em; font-weight: normal; color: #fff; text-align: center; }

.is-ie .nl-lead h1 { padding: 0.25em 0 0; }

.is-edge .nl-lead h1 { padding: 0.1em 0 0; }

.nl-lead h2 { border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; position: relative; margin: 30px 0 20px; font-size: 1.5em; text-align: center; }

.nl-lead__copy { position: relative; margin-bottom: 20px; line-height: 1.5em; font-size: 1.5em; font-weight: bold; text-align: center; }

.nl-lead__copy .tagline { background: #29292c; display: block; margin: 0.25em 0; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.25em; line-height: 1.25em; color: #fff; letter-spacing: .1em; font-weight: normal; }

.nl-lead__copy .tagline::before { content: ''; display: block; height: 0; width: 0; margin-top: calc((0.6 - 1) * 0.5em); }

.nl-lead__copy .tagline .tag { display: inline-block; margin: 0 0.25em; }

.nl-lead__text { position: relative; max-width: 41.5em; margin: auto; }

@media (max-width: 40em) { .nl-lead { padding: 20px 0; } .nl-lead__copy { font-size: 1.25em; } .nl-lead__copy br { display: none; } .nl-lead__copy .tagline { width: 100vw; margin: 0.25em -20px; padding: 0.5em; } }

/*--------------------------------------------------------------
## DESCRIIPTION
--------------------------------------------------------------*/
.nl-desc { padding: 30px 0; text-align: center; position: relative; width: 100vw; margin: 0; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

.nl-desc__wrapper { position: relative; }

.nl-desc .grid-container div { background: #e5e5e5; height: 500px; }

.nl-desc_type1 { background: #f2f2f2; }

.nl-desc__logo { width: 21em; margin: 0 auto 20px; }

.nl-desc__title-en { line-height: 1em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 2.5em; letter-spacing: 0.05em; }

.nl-desc__title-ja { font-size: 0.9em; letter-spacing: 0.4em; font-weight: bold; }

.nl-desc p { margin: 1em 0 0; font-size: 1.125em; letter-spacing: 0.05em; font-weight: bold; }

@media (max-width: 40em) { .nl-desc__logo { width: 18em; margin: 0 auto 20px; } .nl-desc__title-en { font-size: 2em; } .nl-desc__title-ja { font-size: 0.8em; } .nl-desc p { font-size: 1em; } }

/*--------------------------------------------------------------
## SHORTCUT
--------------------------------------------------------------*/
.nl-shortcut { position: relative; text-align: center; margin: 0; padding: 20px 0; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; letter-spacing: 0.05em; }

.nl-shortcut a { color: #fff; text-decoration: none; padding: 0.5em; }

.nl-shortcut a:hover { color: #EDD3A1; }

/*--------------------------------------------------------------
## CATEGORY
--------------------------------------------------------------*/
.nl-cate { max-width: 1016px; position: relative; margin: 0 auto 2.5em; margin: 0 auto 4em; padding: 0 0 0 3em; }

.nl-cate a { color: #fff; }

.nl-cate a:hover { color: #EDD3A1; }

.nl-cate__header { height: 22.5em; overflow: hidden; display: flex; align-items: center; justify-content: left; }

.nl-cate__header h2 { font-size: 1em; z-index: 1; }

.nl-cate__header_sake { background: url(../img/ph2_sake.jpg) no-repeat; background-size: cover; background-position: left 25% top 25%; }

.nl-cate__header_sake h2 { width: 20em; margin-left: 8em; }

.nl-cate__header_food { background: url(../img/ph2_food.jpg) no-repeat; background-size: cover; background-position: left 50% top 0; }

.nl-cate__header_food h2 { width: 25em; margin-left: 29.5em; }

.nl-cate__header_music { background: url(../img/ph2_music.jpg) no-repeat; background-size: cover; background-position: left 50% top 25%; }

.nl-cate__header_music h2 { width: 30em; margin-left: 2.5em; }

.nl-cate__header_beer { background: url(../img/ph2_beer.jpg) no-repeat; background-size: cover; background-position: left 25% top 25%; }

.nl-cate__header_beer h2 { width: 20em; margin-left: 8em; }

.nl-cate__header_art { background: url(../img/ph2_art.jpg) no-repeat; background-size: cover; background-position: left 25% top 25%; }

.nl-cate__header_art h2 { width: 27em; margin-left: 2.5em; }

.nl-cate__footer { background: #fff; position: absolute; top: 0; left: 0; width: 3em; height: 100%; color: #6B818E; }

.nl-cate__footer span { display: block; position: absolute; left: 50%; bottom: 0; transform-origin: left bottom; transform: rotate(-90deg) translate(1em, 50%); line-height: 1em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.25em; letter-spacing: 0.1em; white-space: nowrap; }

.is-ie .nl-cate__footer span { padding: 0.25em 0 0; }

.nl-cate__main { position: relative; margin-bottom: 2.5em; padding: 2em 0 1em 13.5em; }

.nl-cate__main:before { background: url(../img/bg-slant_dot2.png); position: absolute; left: 0; top: 0; width: 11em; height: 100%; content: ""; z-index: 0; }

.nl-cate__main .btn_border { width: 25em; width: 19.5em; margin: 0; }

.nl-cate__extra { padding: 0 0 0 2.5em; }

.nl-cate__extra__head { border: 1px solid #fff; margin: 0; padding: 0.5em 1em; font-size: 1.25em; line-height: 1.25em; }

.nl-cate__extra__entry_type1 { display: flex; margin: 2em 0 0; }

.nl-cate__extra__photo { flex: 0 0 19.5em; }

.nl-cate__extra__text { padding: 0 0 0 2.5em; padding: 0 0 0 3.125em; font-size: 0.8em; font-size: 0.85em; }

@media (max-width: 60em) { .nl-cate { width: 52.5em; } .nl-cate__header_food h2 { margin-left: 24em; } .nl-cate__main { padding: 2em 0 1em 8em; } .nl-cate__main:before { width: 5.5em; } }

@media (max-width: 40em) { .nl-cate { padding: 0 0 0 calc((100vw - 140px)/6); width: calc(100% - 40px); } .nl-cate__header { height: 0; position: relative; padding-top: 67%; } .nl-cate__header h2 { position: absolute; left: 0; top: 50%; transform: translate(20px, -50%); margin: 0 0 0; padding: 0; width: calc(100% - 40px); } .nl-cate__footer { width: calc((100vw - 140px)/6); } .nl-cate__main { padding: 1em 0 1em 20px; font-size: 0.9em; } .nl-cate__main:before { display: none; } .nl-cate__main .btn_border { width: auto; } .nl-cate__extra { padding: 0 0 0 20px; font-size: 0.9em; } .nl-cate__extra__head { margin-bottom: 1em; } .nl-cate__extra__entry_type1 { flex-direction: column; margin: 1em 0 0; } .nl-cate__extra__photo { flex: none; margin-bottom: 1em; } .nl-cate__extra__text { padding: 0; } }

/*--------------------------------------------------------------
## RESERVE
--------------------------------------------------------------*/
.nl-reserve { background: #29292c; position: relative; width: 100vw; margin: 0; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

.nl-reserve__photo { margin: auto; text-align: center; }

.nl-reserve__header { padding: 0 0 40px; text-align: center; }

.nl-reserve__header h2 { margin: 1em 0 0; padding: 0; }

.nl-reserve__header p.comingsoon { padding: 0 0 0 1em; }

.nl-reserve__header p.contact { margin: 1em 0 0; font-size: 0.8em; }

.nl-reserve__header p.contact a { color: #fff; }

.nl-reserve__header p.contact a:hover { color: #EDD3A1; }

/*--------------------------------------------------------------
## MAP
--------------------------------------------------------------*/
.nl-map { position: relative; width: 100vw; margin: 0; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

.nl-map iframe { vertical-align: bottom; }

/*--------------------------------------------------------------
## WANTED
--------------------------------------------------------------*/
.nl-wanted { background: #EDD3A1; position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; margin-bottom: 0; padding: 40px 0; }

.nl-wanted .grid-container div { background: #e3c599; height: 500px; }

.nl-wanted .bnr_wanted { background: #fff url(../img/bnr-wanted-bg.svg) no-repeat; background-size: contain; position: relative; display: block; max-width: 52.5em; height: 11.25em; margin: auto; display: flex; align-items: center; justify-content: center; transition: all  0.5s ease; }

.nl-wanted .bnr_wanted img { width: 27.5em; }

.nl-wanted a.bnr_wanted:hover { background-color: #ba3a41; }

@media (max-width: 40em) { .nl-wanted { padding: 20px; } .nl-wanted .bnr_wanted { background-repeat: repeat-y; background-size: 100% 50%; } .nl-wanted .bnr_wanted img { width: 27.5em; width: 80vw; } }

/*--------------------------------------------------------------
## FOOT NOTE
--------------------------------------------------------------*/
.nl-footnote { background: #49494c; position: relative; margin: auto; margin-bottom: 0; width: 100vw; }

.nl-footnote .grid-container div { background: #3d3d3f; height: 1000px; }

.nl-footnote .nl-pane__wrapper { position: relative; max-width: 52.5em; margin: auto; padding: 40px 0; }

.nl-footnote .u-company { display: flex; flex-wrap: wrap; color: #fff; }

.nl-footnote .u-company .nihonmono-logo { flex: 0 0 calc(15em + 12.5em); width: 27.5em; display: flex; align-items: center; justify-content: center; padding-left: 5.5em; }

.nl-footnote .u-company .nihonmono-logo img { width: 100%; display: block; margin: 0; padding: 0; }

.nl-footnote .u-company .company-list { flex: 0 0 calc(12em + 10em); display: flex; align-items: center; margin: 1em 0; margin: 1em 0 1em 3em; }

.nl-footnote .u-company .company-list ul { margin: 0; padding: 0; }

.nl-footnote .u-company .company-list li { margin: 0; padding: 0; font-size: 0.8em; }

.nl-footnote .u-company .spthanks-list { flex: 1 1 100%; margin: 0 11em 1em; text-align: center; }

.nl-footnote .u-company .spthanks-list h4 { margin: 1em 0 0; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1em; font-weight: normal; letter-spacing: .1em; }

.nl-footnote .u-company .spthanks-list ul { display: flex; }

.nl-footnote .u-company .spthanks-list li { flex: 1 1 50%; }

.nl-footnote .u-company .spthanks-list li + li { margin-left: 2.5em; }

.nl-footnote .u-company .spthanks-list figure img { background: #fff; }

.nl-footnote .u-company .spthanks-list figcaption { height: 3em; line-height: 3em; font-size: 0.8em; letter-spacing: .1em; }

.nl-footnote .u-contact { text-align: center; }

.nl-footnote .u-contact h3 { border-top: 1px solid #fff; border-bottom: 1px solid #fff; margin-bottom: 1.5em; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.25em; font-weight: normal; letter-spacing: .1em; color: #fff; }

.nl-footnote .u-contact p { margin: 1em 0; font-size: 0.8em; }

.nl-footnote .u-contact p a { color: #fff; }

.nl-footnote .u-contact p a:hover { color: #EDD3A1; }

@media (max-width: 40em) { .nl-footnote { width: 100vw; padding: 20px; } .nl-footnote .nl-pane__wrapper { padding: 20px 0; } .nl-footnote .u-company .nihonmono-logo { max-width: 18em; margin: 0 auto 20px; padding-left: 0; } .nl-footnote .u-company .company-list { flex: auto; margin: 0; } .nl-footnote .u-company .company-list li { font-size: 1em; } .nl-footnote .u-company .spthanks-list { margin: 0 0 1em; } .nl-footnote .u-company .spthanks-list h4 { font-size: 1.25em; } .nl-footnote .u-company .spthanks-list li { flex: 1 1 33.33%; font-size: 1em; } .nl-footnote .u-company .spthanks-list li + li { margin-left: 20px; } .nl-footnote .u-company .spthanks-list figure img { padding: 0; } }

/*--------------------------------------------------------------
## BEER
--------------------------------------------------------------*/
.nl-lead_beer .nl-lead__text { text-align: center; line-height: 1.5; }

.nl-lead_beer .nl-lead__text_1 { font-size: 1.25em; font-weight: bold; }

.nl-lead_beer .nl-lead__text_2 { margin-top: 2em; font-weight: bold; }

.nl-lead_beer .grid-container div { height: 1200px; }

@media (max-width: 40em) { .nl-lead { padding-bottom: 30px; } .nl-lead_beer .nl-lead__text_1 { font-size: 1.125em; text-align: left; } .nl-lead_beer .nl-lead__text_1 br { display: none; } }

.premiumcounter { position: relative; }

.premiumcounter figure { border-top: 20px solid #fff; border-bottom: 14em solid #fff; max-width: calc(24em + 17.5em); height: 0; margin: 20px auto -12em; padding-top: 42.5%; }

.premiumcounter__tumblers { display: flex; margin: 0 -1.25em; }

.premiumcounter__tumblers li { flex: 1 1 20%; padding: 0 1.25em; text-align: center; }

.premiumcounter__tumblers li img { width: 7em; }

.premiumcounter__tumblers li p { height: 3em; display: flex; align-items: center; justify-content: center; margin: 1em 0 0; line-height: 1.5em; font-size: 0.75em; }

@media (max-width: 40em) { .premiumcounter figure { border-bottom: 20px solid #fff; margin: 20px auto; padding: 0; padding-top: 67%; } .premiumcounter__tumblers { margin: 0; } .premiumcounter__tumblers li { padding: 0; } .premiumcounter__tumblers li img { width: auto; } .premiumcounter__tumblers li p { font-size: 0.45em; } }

.btn_beer { background: url(../img/icn-arrow-r.svg), linear-gradient(90deg, #cfb367 0%, #fcefca 50%, #cfb367 100%); background-repeat: no-repeat, no-repeat; background-size: 14px 14px, 100% 100%; background-position: left 1em center, left top; display: block; width: 19.5em; margin: auto; margin: 1em auto; padding: 0.75em 1.5em 0.75em 2.5em; line-height: 1.25em; font-weight: bold; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-weight: bold; letter-spacing: 0.125em; text-align: center; text-decoration: none; color: #29292c; }

.is-ie .btn_beer { padding: 1em 1.5em 0.75em 2.4em; }

.is-edge .btn_beer { padding: 0.85em 1.5em 0.75em 2.4em; }

.btn_beer:hover { background: url(../img/icn-arrow-r.svg), linear-gradient(90deg, #c3a040 0%, #f9e09a 50%, #c3a040 100%); background-repeat: no-repeat, no-repeat; background-size: 14px 14px, 100% 100%; background-position: left 1em center, left top; color: #29292c; }

@media (max-width: 40em) { .btn_beer { width: 100%; } }

/*--------------------------------------------------------------
## 130th
--------------------------------------------------------------*/
.nl-130th { background: #29292c; position: relative; width: 100vw; left: 50%; right: 50%; margin: 0 -50vw; padding: 40px 0; color: #fff; }

.nl-130th__wrapper { max-width: 52.5em; position: relative; margin: auto; }

.nl-130th__wrapper:before, .nl-130th__wrapper:after { background: linear-gradient(90deg, #cfb367 0%, #fcefca 50%, #cfb367 100%); display: block; position: absolute; left: 50%; transform: translate(-50%, 0); content: ""; width: calc(100% + 5em); height: 4px; z-index: 100; }

.nl-130th__wrapper:before { top: 0; }

.nl-130th__wrapper:after { bottom: 0; }

.nl-130th .grid-container div { background: #212124; }

.nl-130th__header { padding: 40px 0 2em; display: flex; }

.nl-130th__header__logo { flex: 0 0 14em; display: flex; align-items: center; justify-content: center; }

.nl-130th__header__logo img { width: 100%; }

.nl-130th__header__text { padding: 0 0 0 2.5em; }

.nl-130th__header h2 { margin: 0.25em 0; font-size: 1.5em; line-height: 1.5em; letter-spacing: 0.1em; }

.nl-130th__lead { background: url(../img/beer_star.svg) no-repeat center top; background-size: 2em 2em; padding: 3em 0 1em; font-size: 1.25em; text-align: center; }

.nl-130th__item { padding: 0 0 20px; }

.nl-130th__item h3 { border-top: 1px solid #fff; border-bottom: 1px solid #fff; margin: 0; padding: 0.25em; text-align: center; font-size: 1.25em; line-height: 1.5; }

.nl-130th__item__text { padding: 20px 5.5em 2em; }

.nl-130th__item__photo { display: flex; justify-content: center; flex-wrap: wrap; margin: 0 -1.25em; }

.nl-130th__item__photo figure { flex: 0 1 50%; margin: 0 0 1em; }

.nl-130th__item__photo figure img { padding: 0 1.25em; }

.nl-130th__item__photo figure figcaption { margin: 0; padding: 1em 0; font-size: 0.875em; text-align: center; }

.nl-130th__item__photo figure.is-large { flex: 0 0 30.5em; padding: 0; }

.nl-130th__item__photo figure.is-large img { padding: 0; }

.nl-130th__item__photo figure.is-small { flex: 0 0 19.5em; padding: 0; }

.nl-130th__item__photo figure.is-small img { padding: 0; }

.nl-130th__item__note { padding: 0 5.5em 20px; text-align: center; }

.nl-130th__item__note a { font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-weight: bold; letter-spacing: 0.125em; color: #fff; text-decoration: none; }

.nl-130th__item__note a:hover { text-decoration: underline; }

@media (max-width: 60em) { .nl-130th__wrapper { width: calc(100vw - 80px); } .nl-130th__wrapper:before, .nl-130th__wrapper:after { width: 100%; } }

@media (max-width: 40em) { .nl-130th__wrapper { width: calc(100vw - 40px); } .nl-130th__header { flex-direction: column; } .nl-130th__header__logo { flex: none; text-align: center; } .nl-130th__header__logo img { width: 80vw; } .nl-130th__header__text { padding: 0; } .nl-130th__header__text h2 { text-align: center; margin: 20px 0; } .nl-130th__header__text p br { display: none; } .nl-130th__lead { font-size: 1.125em; text-align: left; } .nl-130th__lead br { display: none; } .nl-130th__item__text { padding: 20px 0; } .nl-130th__item__photo { flex-direction: column; display: block; width: 100%; margin: 0; } .nl-130th__item__photo figure { height: auto; margin-bottom: 20px; padding: 0; } .nl-130th__item__photo figure img { padding: 0; } .nl-130th__item__note { padding: 0 0 20px; } }

/*--------------------------------------------------------------
## SECRET
--------------------------------------------------------------*/
.nl-secret { position: relative; max-width: 1016px; margin: auto; padding: 40px 0; }

.nl-secret__item { background: #fff; position: relative; margin: 0 3em 40px; padding: 0 0 30px; }

.nl-secret__item:before { background: linear-gradient(90deg, #cfb367 0%, #fcefca 50%, #cfb367 100%); display: block; position: absolute; left: 50%; top: 0; transform: translate(-50%, 0); content: ""; width: 100%; height: 3em; }

.nl-secret__item:nth-of-type(2) { margin-bottom: 0; }

.nl-secret__item:nth-of-type(2) .nl-secret__header { flex-direction: row-reverse; }

.nl-secret__item:nth-of-type(2) .nl-secret__header__text { padding: 3em 2.5em 0 0; }

.nl-secret__header { position: relative; padding: 0 2.5em; display: flex; }

.nl-secret__header__photo { position: relative; flex: 0 0 19.5em; height: 15em; overflow: hidden; }

.nl-secret__header__photo figure { border-radius: 50%; overflow: hidden; position: absolute; left: 0; bottom: 0; margin: 0; width: 19.5em; height: 19.5em; }

.nl-secret__header__photo figure img { vertical-align: bottom; }

.nl-secret__header__text { flex: 1 1 80%; padding: 3em 0 0 2.5em; }

.nl-secret__header__text h3 { border-top: 1px solid #29292c; border-bottom: 1px solid #29292c; margin: 30px 0 0; padding: 0.25em; font-size: 1.25em; line-height: 1.5; }

.nl-secret__header__text p { margin: 1em 0; }

.nl-secret__body { border-bottom: 1px solid #29292c; margin: 0 2.5em; padding: 1em 0; }

@media (max-width: 60em) { .nl-secret { max-width: 52.5em; } .nl-secret__item { margin: 0 0 40px; } .nl-secret__header { padding: 0; } .nl-secret__body { margin: 0; } }

@media (max-width: 40em) { .nl-secret__item { margin: 0 0 30px; } .nl-secret__item:nth-of-type(2) .nl-secret__header { flex-direction: column; } .nl-secret__item:nth-of-type(2) .nl-secret__header__text { padding: 0; } .nl-secret__item:before { width: 100vw; } .nl-secret__header { flex-direction: column; } .nl-secret__header__photo { flex: 1 1 100%; height: 64vw; overflow: auto; margin-top: 1em; } .nl-secret__header__photo figure { position: relative; left: auto; bottom: auto; margin: auto; padding: 0; width: 64vw; height: 64vw; } .nl-secret__header__text { flex: none; padding: 0; } .nl-secret__header__text h3 { text-align: center; } .nl-secret__header__text br { display: none; } }

/*--------------------------------------------------------------
## TASTE
--------------------------------------------------------------*/
.taste-secret { display: flex; margin: 2em -1.25em 1em; }

.taste-secret__item { flex: 0 0 20%; }

.taste-secret__item figure { margin: 0; padding: 0 1.25em; }

.taste-secret__item p { margin: 1em 0; font-size: 0.875em; line-height: 1.5; text-align: center; }

@media (max-width: 40em) { .taste-secret { margin: 0; margin: 0 -10px; flex-wrap: wrap; justify-content: center; } .taste-secret__item { flex: 0 0 50%; } .taste-secret__item figure { padding: 0 10px; } }

/*--------------------------------------------------------------
## TUMBLER
--------------------------------------------------------------*/
.tumbler-secret { display: flex; }

.tumbler-secret__photo { flex: 0 0 19.5em; }

.tumbler-secret__photo figure { width: 14em; margin: 1em auto; }

.tumbler-secret__text { flex: 1 1 100%; display: flex; align-items: center; }

.tumbler-secret__text ol { margin: 0; padding: 0; width: 100%; display: flex; flex-wrap: wrap; }

.tumbler-secret__text li { flex: 0 0 50%; max-width: 50%; margin: 1em 0; padding: 0 0 0 2.5em; }

.tumbler-secret__text li h4 { background-repeat: no-repeat; background-position: left -0.5em center; background-size: 3em; border: 1px solid #d1b46b; margin: 0 0 0.5em; padding-left: 3em; line-height: 2em; font-size: 0.875em; }

.tumbler-secret__text li:nth-child(1) h4 { background-image: url(../img/beer_num1.svg); }

.tumbler-secret__text li:nth-child(2) h4 { background-image: url(../img/beer_num2.svg); }

.tumbler-secret__text li:nth-child(3) h4 { background-image: url(../img/beer_num3.svg); }

.tumbler-secret__text li:nth-child(4) h4 { background-image: url(../img/beer_num4.svg); }

.tumbler-secret__text li:nth-child(5) h4 { background-image: url(../img/beer_num5.svg); }

.tumbler-secret__text p { margin: 0; font-size: 0.875em; line-height: 1.5; }

@media (max-width: 40em) { .tumbler-secret { flex-direction: column; } .tumbler-secret__photo figure { width: 80vw; } .tumbler-secret__text ol { margin: 0 -10px; width: auto; } .tumbler-secret__text li { padding: 0 10px; } }

/*--------------------------------------------------------------
## SAPPORO
--------------------------------------------------------------*/
.nl-sapporo { background: #1a1a1a; position: relative; width: 100vw; left: 50%; right: 50%; margin: 0 -50vw; padding: 3em; padding: 2em 0 2.5em; text-align: center; }

.nl-sapporo img { width: 7.5em; }

/*--------------------------------------------------------------
## CONTENT FOOTER
--------------------------------------------------------------*/
.nl-content-footer { padding: 2em 0; text-align: center; position: relative; width: 100vw; margin: 0; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

.nl-content-footer__logo { position: relative; width: 18em; margin: 0 auto; }

.nl-content-footer img { vertical-align: bottom; }

/*--------------------------------------------------------------
## FOOD
--------------------------------------------------------------*/
.nl-lead_food { padding-bottom: 0; }

.nl-lead_food .nl-lead__text { margin: 30px 0 0; text-align: center; font-size: 1.25em; font-weight: bold; line-height: 1.5; }

.nl-lead_food .grid-container div { height: 1200px; }

.nl-lead__heroimage { position: relative; }

.nl-lead__heroimage figure { border-top: 20px solid #fff; border-bottom: 20px solid #fff; max-width: calc(24em + 17.5em); height: 0; margin: 20px auto 0; padding-top: 42.5%; }

@media (max-width: 40em) { .nl-lead_food .nl-lead__text { font-size: 1.125em; text-align: left; } .nl-lead_food .nl-lead__text br { display: none; } .nl-lead__heroimage figure { border-bottom: 20px solid #fff; padding-top: 67%; } }

/*--------------------------------------------------------------
## FOOD CONTENT
--------------------------------------------------------------*/
.nl-food { position: relative; max-width: 1016px; margin: 0 auto; content: ""; display: table; table-layout: fixed; }

.nl-food__header { position: relative; width: 52.5em; margin: 0 auto; padding: 40px 0 30px; text-align: center; }

.nl-food__header h2 { border-top: 1px solid #29292c; border-bottom: 1px solid #29292c; margin: 0 0 1em; padding: 0.25em; font-size: 1.25em; line-height: 1.5; }

.nl-food__header p { margin: 0; }

.nl-food .shoplist { position: relative; max-width: 52.5em; margin: auto; }

.nl-food .shoplist__item { margin: 0 0 10px; padding: 5px 0; }

.nl-food .shoplist__item:nth-child(odd) { background: rgba(198, 180, 148, 0.255); }

.nl-food .shoplist__item:nth-child(even) { background: rgba(133, 155, 168, 0.25); }

.nl-food .shoplist__item__header { display: flex; }

.nl-food .shoplist__item__logo { background: #fff; flex: 0 0 calc(9em + 5em); max-width: 14em; margin: 0; padding: 0; display: flex; align-items: center; }

.nl-food .shoplist__item__logo img { width: 100%; vertical-align: bottom; }

.nl-food .shoplist__item__text { flex: 1 1 100%; display: flex; align-items: center; line-height: 1.5; }

.nl-food .shoplist__item__text__wrapper { margin: 1em 1em 1em 2.5em; }

.nl-food .shoplist__item__text h3 { margin: 0; padding: 0; font-size: 1.125em; font-size: 1em; }

.nl-food .shoplist__item__text p { margin: 1em 0 0; padding: 0; font-size: 0.875em; }

.nl-food .shoplist__item__text p a { background: url(../img/icn-arrow-r.svg) no-repeat left center; background-size: 8px 8px; padding-left: .8em; display: inline-block; color: #6B818E; }

.nl-food .shoplist__item__text p a:hover { color: #29292c; }

.nl-food .shoplist__item__text p.about { font-size: 0.8em; line-height: 1.75; }

.nl-food .shoplist__item__photos { margin: 0 -1.25em 0; padding: 0; display: flex; }

.nl-food .shoplist__item__photos li { flex: 0 0 20%; max-width: 20%; margin: 20px 0 0; padding: 0 1.25em; }

@media (max-width: 40em) { .nl-food__header { width: auto; padding: 30px 0 30px; } .nl-food .shoplist { width: auto; } .nl-food .shoplist__item { margin: 0 0 20px; padding: 0; } .nl-food .shoplist__item__header { display: block; } .nl-food .shoplist__item__logo { flex: none; width: calc((100vw - 140px)/6*4 + 60px); max-width: none; margin: 0 auto 20px; } .nl-food .shoplist__item__text { width: 100%; padding: 0 10px; } .nl-food .shoplist__item__text__wrapper { width: 100%; margin: 0 0 1em; text-align: center; } .nl-food .shoplist__item__text p.about { text-align: left; } .nl-food .shoplist__item__photos { margin: 0 -10px 0; flex-wrap: wrap; } .nl-food .shoplist__item__photos li { flex: 0 0 33.33%; max-width: 33.33%; padding: 0 10px; } }

/*--------------------------------------------------------------
## LIVE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## LIVE CONTENT
--------------------------------------------------------------*/
.nl-live { position: relative; max-width: 1016px; margin: 0 auto; content: ""; display: table; table-layout: fixed; }

.nl-live__header { position: relative; width: 52.5em; margin: 0 auto; padding: 40px 0 30px; text-align: center; }

.nl-live__header h2 { border-top: 1px solid #29292c; border-bottom: 1px solid #29292c; margin: 0 0 1em; padding: 0.25em; font-size: 1.25em; line-height: 1.5; }

.nl-live__header p { margin: 0; }

.nl-live .livelist { position: relative; max-width: 52.5em; margin: auto; }

.nl-live .livelist__item { margin: 0 0 10px; padding: 5px 0; }

.nl-live .livelist__item:nth-child(odd) { background: rgba(198, 180, 148, 0.255); }

.nl-live .livelist__item:nth-child(even) { background: rgba(133, 155, 168, 0.25); }

.nl-live .livelist__item__header { display: flex; }

.nl-live .livelist__item__photo { flex: 0 0 calc(12em + 7.5em); max-width: 19.5em; margin: 0; padding: 0; display: flex; align-items: center; }

.nl-live .livelist__item__photo img { width: 100%; vertical-align: bottom; }

.nl-live .livelist__item__text { flex: 1 1 100%; display: flex; align-items: center; line-height: 1.5; }

.nl-live .livelist__item__text__wrapper { margin: 1em 1em 1em 2.5em; }

.nl-live .livelist__item__text h3 { margin: 0; padding: 0; font-size: 1.125em; font-size: 1em; }

.nl-live .livelist__item__text p { margin: 1em 0 0; padding: 0; font-size: 0.875em; }

.nl-live .livelist__item__text p a { background: url(../img/icn-arrow-r.svg) no-repeat left center; background-size: 8px 8px; padding-left: .8em; display: inline-block; color: #6B818E; }

.nl-live .livelist__item__text p a:hover { color: #29292c; }

.nl-live .livelist__item__text p.about { font-size: 0.8em; line-height: 1.75; }

.nl-live .livelist__item__photos { margin: 0 -1.25em 0; padding: 0; display: flex; }

.nl-live .livelist__item__photos li { flex: 0 0 20%; max-width: 20%; margin: 20px 0 0; padding: 0 1.25em; }

@media (max-width: 40em) { .nl-live__header { width: auto; padding: 30px 0 30px; } .nl-live .livelist { width: auto; } .nl-live .livelist__item { margin: 0 0 20px; padding: 0; } .nl-live .livelist__item__header { display: block; } .nl-live .livelist__item__photo { flex: none; width: 100%; max-width: none; margin: 0 auto 20px; } .nl-live .livelist__item__text { flex: none; width: 100%; padding: 0 10px; } .nl-live .livelist__item__text__wrapper { width: 100%; margin: 0 0 1em; text-align: center; } .nl-live .livelist__item__text p.about { text-align: left; } .nl-live .livelist__item__photos { margin: 0 -10px 0; flex-wrap: wrap; } .nl-live .livelist__item__photos li { flex: 0 0 33.33%; max-width: 33.33%; padding: 0 10px; } }

#modal { display: none; position: absolute; top: 0; left: 0; z-index: 200; }

.modal-back { background: rgba(26, 26, 26, 0.9); position: fixed; left: 0; top: 0; height: 100%; width: 100%; opacity: 0.8; filter: alpha(opacity=80); -moz-opacity: 0.80; z-index: 999; }

.btn-close { background: rgba(0, 0, 0, 0.125); border-radius: 0; position: fixed; top: 0px; right: 0px; width: 40px; height: 0; padding: 0; padding-top: 40px; overflow: hidden; z-index: 1001; }

.btn-close .icon { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 23px; height: 23px; line-height: 0; }

.btn-close .icon:before, .btn-close .icon:after { display: block; content: ""; position: absolute; left: 0; width: 100%; height: 2px; background-color: #fff; }

.btn-close .icon:before { top: 0; -webkit-transform: translateY(10px) rotate(-45deg); transform: translateY(10px) rotate(-45deg); }

.btn-close .icon:after { bottom: 0; -webkit-transform: translateY(-11px) rotate(45deg); transform: translateY(-11px) rotate(45deg); }

@media (max-width: 40em) { .modal-content { width: calc(100vw - 20px); } .btn-close { top: 5px; right: 2px; top: 0px; right: 0px; } }

#loader { position: fixed; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 50px; height: 50px; z-index: 1000; opacity: 1; transition: opacity 0.3s linear; }

#loader.is-hide { opacity: 0; }

.modal-import { display: none; }

/*--------------------------------------------------------------
## INFORMATION
--------------------------------------------------------------*/
.information { background: #fff; position: fixed; width: 100vw; height: 100vh; max-width: 640px; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); overflow-y: scroll; overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */ -webkit-overflow-scrolling: touch; z-index: 1000; }

.information { padding: 40px 0; }

.information__header .photobox { width: 100%; height: 0; padding-top: 67%; }

.information__header h1 { margin: 20px 0; padding: 0 20px; font-family: "Marsden Compressed", Helvetica, Arial, sans-serif; font-size: 1.75em; letter-spacing: 0.05em; line-height: 1em; }

.information__content { font-size: 0.9em; padding: 20px 0 20px 0; }

.information__content div { margin: 0 20px 20px; }

.information__content p { margin: 0; padding: 0; }

.information .event-info { background: #e5e5e5; border-radius: 5px; padding: 1.5em; font-size: 0.9em; }

.information .event-info h2 { margin: 0 0 1em 0; padding: 0; line-height: 1.5; font-size: 1.125em; }

.information .note { border-top: 1px solid #1a1a1a; padding: 1em 0 0; font-size: 0.9em; }

/*--------------------------------------------------------------
## ALERT
--------------------------------------------------------------*/
.alert { background: #fff; border-radius: 15px; position: fixed; width: calc(100vw - 60px); max-width: 360px; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); overflow-y: scroll; overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */ -webkit-overflow-scrolling: touch; z-index: 10000; padding: 20px; }

.alert p { margin: 0 0 20px; line-height: 1.5em; font-size: 0.875em; }

@media (max-width: 40em) { .alert { max-width: none; } }

/*--------------------------------------------------------------
## POSTPONE
--------------------------------------------------------------*/
.postpone { background: #fff; border-radius: 15px; position: fixed; width: calc(100vw - 60px); max-width: 540px; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); overflow-y: scroll; overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */ -webkit-overflow-scrolling: touch; z-index: 10000; padding: 20px; }

.postpone h1 { font-size: 1em; line-height: 1.5; margin: 0 0 1em; padding: 0; }

.postpone p { margin: 0; padding: 0; line-height: 1.25em; font-size: .875em; }

.postpone ul { margin: 1em 0 0; }

.postpone li { list-style: disc; list-style-position: outside; margin-left: 1.25em; line-height: 1.25em; padding: .25em 0; font-size: .875em; }

.postpone .main-text { border-top: 1px solid #1a1a1a; padding: 1em 0; }

.postpone .btn-large { padding: 0.75em; }

/*////////////////////     J-me     ////////////////////*/
#jme { max-width: 540px; height: 30px; overflow: hidden; margin: auto; z-index: 0; content: ""; display: table; table-layout: fixed; }

#jme #gigyaShare { display: inline-block; width: 342px; margin: 5px 0 0; }

#jme #gigyaShare img { display: block; float: left; margin: 0; padding-right: 5px; }

#jme #gigyaShare .gig-bar-container { height: 20px; margin: 5px 0 0 5px; }

#jme #gigyaShare .gig-button-container-google-plusone { width: 64px; overflow: hidden; }

@media (max-width: 40em) { #jme { margin: 0 auto 0; } }

@media (min-width: calc(900px + 1px)) { .container { margin-bottom: -4px; padding-bottom: 66px; } }
