/*--------------------------------------------------------------
## COLOR
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## MEDIA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## RATIO
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## EXTRA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## VARS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## J-WAVE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## GRID / FLEXBOX
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## FLEXBOX
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## WEBFONT LINE HEIGHT
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## J-WAVE NIHONMONO LOUNGE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## OUT
--------------------------------------------------------------*/
/* 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: "KelptSansB2";
  src: url("../font/KelptSansB2-Medium.eot");
  src: url("../font/KelptSansB2-Medium.eot?#iefix") format("embedded-opentype"), url("../font/KelptSansB2-Medium.woff") format("woff"), url("../font/KelptSansB2-Medium.ttf") format("truetype"), url("../font/KelptSansB2-Medium.svg#svgFontName") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: text-bottom;
  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: #fdde22;
  /* 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: #4d4d4d;
}
a:visited {
  color: #4d4d4d;
}
a:hover, a:focus, a:active {
  color: #32281E;
}
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: #fdde22;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", MyYuGothicM, Meiryo, sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
html body .spbr {
  display: none;
}
@media (max-width: 60em) {
  html body {
    font-size: 1.667vw;
  }
}
@media (max-width: 40em) {
  html body {
    font-size: 4vw;
  }
  html body .spbr {
    display: block;
  }
  html body .pcbr {
    display: none;
  }
}
html body.is-noscroll {
  overflow: hidden;
}
html body.thanks .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html body.thanks .container .content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/*--------------------------------------------------------------
## COMMON
--------------------------------------------------------------*/
.container {
  padding-bottom: 66px;
}
@media (max-width: 900px) {
  .container {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
## HEADER
--------------------------------------------------------------*/
.header {
  background-image: url(../img/20voices-mv.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 58.75em auto;
  position: relative;
  height: 30em;
}
.header__wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-12.5em, -5.5em);
  width: 40em;
  text-align: center;
}
.header__title {
  max-width: 40em;
  margin: 0 auto 1em;
  padding: 0;
  font-size: 1em;
  line-height: 1;
}
.header__title img {
  width: 100%;
  vertical-align: bottom;
}
.header__date {
  max-width: 29em;
  margin: 0 auto 2em;
  line-height: 1;
}
.header__date img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 40em) {
  .header {
    background-size: 125vw;
    background-position: left top;
    height: auto;
    padding-top: 64vw;
    padding-top: calc(64vw + 1.25em);
  }
  .header__wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
  }
  .header__title {
    margin: 0 auto 1em;
    padding: 0 20px;
  }
  .header__date {
    max-width: none;
    padding: 0 20px;
  }
  .header__date img {
    width: 90%;
  }
}

/*--------------------------------------------------------------
## FOOTER
--------------------------------------------------------------*/
.footer {
  position: relative;
  overflow: hidden;
}
.footer img {
  vertical-align: bottom;
}
.footer__title {
  margin: 1.875em;
  text-align: center;
}
.footer__title a img {
  max-width: 25em;
}
.footer__jwave {
  margin: auto;
  padding: 20px;
  color: #32281E;
  display: flex;
  align-items: center;
  align-items: flex-end;
  justify-content: center;
}
.footer__jwave .wrapper {
  position: relative;
  width: 100%;
  max-width: 68.75em;
}
.footer__jwave .copyright {
  float: right;
  line-height: 1em;
  text-align: right;
  font-size: 0.75em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  white-space: nowrap;
  color: #fff;
}
.footer__jwave .copyright img {
  margin-right: 4px;
  margin-bottom: 8px;
}
.footer .btn_pagetop {
  display: block;
  width: 60px;
  height: 0;
  padding-top: 70px;
  position: absolute;
  top: -80px;
  right: 0;
  overflow: hidden;
  border-style: none;
  z-index: 1;
}
.footer .btn_pagetop:before {
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
}
@media (max-width: 40em) {
  .footer__title a img {
    max-width: 60vw;
  }
}

/*--------------------------------------------------------------
## COMMON
--------------------------------------------------------------*/
.pane__header {
  background-color: #fff;
  padding: 0.5em;
  text-align: center;
}
.pane__header .title {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1;
}
.pane__header .title img {
  width: auto;
  height: 3.5em;
}
.pane__header p {
  margin: 0;
  padding: 0.5em 0 0;
  line-height: 1.5;
}
.pane__body {
  padding: 3.75em 20px;
}
.pane.p-message .pane__header .title {
  margin-top: -2em;
}
.pane.p-message .pane__header .title img {
  width: auto;
  height: 8em;
}
.pane.p-message .pane__header p img {
  width: auto;
  height: 3em;
}
.pane.p-message .pane__body {
  padding: 3.75em 0;
}
@media (max-width: 40em) {
  .pane__header .title img {
    height: 2.5em;
  }
  .pane__body {
    padding: 1.25em;
  }
  .pane.p-message .pane__header {
    margin-top: 2em;
  }
  .pane.p-message .pane__header p {
    padding: 0.5em 1.25em 0;
  }
  .pane.p-message .pane__header p img {
    width: 100%;
    height: auto;
  }
  .pane.p-message .pane__body {
    padding: 0 0 1.875em;
  }
}

.guest-list {
  max-width: 58.75em;
  margin: 0 auto;
  padding: 0;
}
.guest-list_left ul {
  justify-content: flex-start !important;
}
.guest-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: -20px;
  margin-left: -20px;
  justify-content: center;
  margin-bottom: -2em !important;
  padding: 0;
}
.guest-list ul > * {
  margin: 0 0 20px 20px;
  width: calc((100% / 3) - 20px);
  flex: 0 0 calc((100% / 3) - 20px);
}
.guest-list li {
  padding-bottom: 1em;
}
.guest-list li figure {
  margin: 0;
  padding: 0;
}
.guest-list li .photobox {
  border-radius: 10px;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.guest-list li figcaption {
  padding: 1em 0 0;
  line-height: 1.5;
  text-align: center;
}
.guest-list li figcaption p {
  margin: 1em 0 0;
  padding: 0;
}
.guest-list li figcaption .group {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 0.8em;
}
.guest-list li figcaption .catch {
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin: 0;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
}
.guest-list li figcaption .catch::before {
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -8px);
  display: block;
  content: "";
}
.guest-list_single {
  max-width: 38.75em;
}
.guest-list_single ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: -20px;
  margin-left: -20px;
  padding: 0;
}
.guest-list_single ul > * {
  margin: 0 0 20px 20px;
  width: calc((100% / 1) - 20px);
  flex: 0 0 calc((100% / 1) - 20px);
}
.guest-list_single li .photobox {
  padding-top: 67%;
}
@media (max-width: 40em) {
  .guest-list {
    padding: 0;
  }
  .guest-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: -20px;
    margin-left: -20px;
  }
  .guest-list ul > * {
    margin: 0 0 20px 20px;
    width: calc((100% / 2) - 20px);
    flex: 0 0 calc((100% / 2) - 20px);
  }
  .guest-list li figcaption .group {
    font-size: 0.65em;
  }
  .guest-list li figcaption .catch {
    font-size: 0.65em;
  }
  .guest-list_single ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: -20px;
    margin-left: -20px;
  }
  .guest-list_single ul > * {
    margin: 0 0 20px 20px;
    width: calc((100% / 1) - 20px);
    flex: 0 0 calc((100% / 1) - 20px);
  }
}

.btn {
  background-color: #4d4d4d;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75em;
  line-height: 1.5em;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
}
.btn span {
  font-size: 1.25em;
}
.btn:hover {
  background-color: #676767;
}
.btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-large {
  background-image: url(../img/icn-link.svg);
  background-size: 3em 3em;
  background-repeat: no-repeat;
  background-position: left 0.75em center;
}

/*--------------------------------------------------------------
## LEAD
--------------------------------------------------------------*/
.p-lead {
  padding-bottom: 3em;
}
.p-lead p {
  margin: 0;
  line-height: 2;
  font-size: 1.25em;
  text-align: center;
}
.p-lead span {
  border-bottom: 1px dotted #666;
  padding-bottom: 0.125em;
}
@media (max-width: 40em) {
  .p-lead {
    padding: 1.25em 0;
  }
  .p-lead p {
    padding: 0 1.25em;
    font-size: 1em;
    text-align: left;
  }
  .p-lead p br {
    display: none;
  }
}

/*--------------------------------------------------------------
## CONTENT HEADER
--------------------------------------------------------------*/
.content-header {
  position: relative;
  padding: 20px;
  text-align: center;
}
.content-header .page-title {
  position: relative;
  margin: 0 0 20px;
  padding: 0;
  font-size: 1em;
  line-height: 1;
  z-index: 1;
}
.content-header .page-title img {
  width: 16em;
  vertical-align: bottom;
}
.content-header .wrapper {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  position: relative;
  max-width: 42.5em;
  margin: 0 auto;
  padding: 1.875em 0;
}
.content-header .wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
  width: 4em;
  height: 4em;
  background-size: contain;
}
.content-header__header .title {
  margin: 1em 0;
  padding: 0;
}
.content-header__header .title img {
  height: 4.75em;
}
.content-header p {
  margin: 0;
  padding: 1em;
  color: #4d4d4d;
}
.content-header_from20 {
  background: #ff951e;
}
.content-header_from20 .wrapper {
  background-image: url(../img/bg-from20.svg);
}
.content-header_from20 .wrapper::before {
  background-image: url(../img/i-from20.svg);
}
.content-header_from20 p {
  background-color: rgba(255, 212, 120, 0.65);
}
.content-header_all {
  background: #3ca0b4;
}
.content-header_all .wrapper {
  background-image: url(../img/bg-all.svg);
}
.content-header_all .wrapper::before {
  background-image: url(../img/i-all.svg);
}
.content-header_all p {
  background-color: rgba(126, 204, 219, 0.65);
}
@media (max-width: 40em) {
  .content-header {
    margin-top: 1.875em;
  }
  .content-header p {
    text-align: left;
  }
}

/*--------------------------------------------------------------
## MESSAGE
--------------------------------------------------------------*/
.p-message .msg-select {
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.p-message .msg-select__item {
  flex: 0 0 calc(50% - 10px);
  min-width: calc(50% - 10px);
  padding: 20px;
  display: flex;
}
.p-message .msg-select__item header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 4em;
  height: 4em;
  background-size: contain;
}
.p-message .msg-select__item .wrapper {
  background-repeat: no-repeat;
  background-size: 125% 125%;
  background-position: center center;
}
.p-message .msg-select__item:nth-child(1) {
  background: #ff951e;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-right: 10px;
  flex-direction: row-reverse;
}
.p-message .msg-select__item:nth-child(1) header::before {
  background-image: url(../img/i-from20.svg);
}
.p-message .msg-select__item:nth-child(1) .wrapper {
  background-image: url(../img/bg-from20.svg);
  float: right;
}
.p-message .msg-select__item:nth-child(1) p {
  background-color: rgba(255, 212, 120, 0.65);
}
.p-message .msg-select__item:nth-child(1) .btn {
  background-color: #ea7c00;
}
.p-message .msg-select__item:nth-child(1) .btn:hover {
  background-color: #ff8905;
}
.p-message .msg-select__item:nth-child(2) {
  background: #3ca0b4;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-left: 10px;
}
.p-message .msg-select__item:nth-child(2) header::before {
  background-image: url(../img/i-all.svg);
}
.p-message .msg-select__item:nth-child(2) .wrapper {
  background-image: url(../img/bg-all.svg);
}
.p-message .msg-select__item:nth-child(2) p {
  background-color: rgba(126, 204, 219, 0.65);
}
.p-message .msg-select__item:nth-child(2) .btn {
  background-color: #2f7e8e;
}
.p-message .msg-select__item:nth-child(2) .btn:hover {
  background-color: #368fa1;
}
.p-message .msg-select__item .wrapper {
  background-color: #fff;
  border-radius: 5px;
  max-width: 27.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-message .msg-select__item__header {
  position: relative;
  text-align: center;
  height: 10em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-message .msg-select__item__header .title {
  margin: 1em 0 0;
  padding: 0;
  font-size: 1em;
}
.p-message .msg-select__item__header .title img {
  vertical-align: bottom;
  width: auto;
  height: 4.75em;
}
.p-message .msg-select__item__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-message .msg-select__item__body p {
  margin: 0;
  padding: 1em;
  color: #4d4d4d;
}
.p-message .msg-select__item__body .btn {
  margin: 1.875em 20px 20px;
}
@media (max-width: 40em) {
  .p-message .msg-select {
    flex-direction: column;
  }
  .p-message .msg-select__item {
    flex: 0 0 100%;
    padding: 1.25em;
    margin-top: 1.875em;
  }
  .p-message .msg-select__item:nth-child(1) {
    border-radius: 0;
    margin-right: 0;
  }
  .p-message .msg-select__item:nth-child(2) {
    border-radius: 0;
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
## Twitter
--------------------------------------------------------------*/
.p-twitter .twitter-wrapper {
  max-width: 38.75em;
  margin: auto;
}
.p-twitter .twitter-timeline {
  height: 38.75em !important;
  vertical-align: bottom;
}
@media (max-width: 40em) {
  .p-twitter .twitter-timeline {
    height: 487px !important;
  }
}

/*--------------------------------------------------------------
## THANKS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##  FORM
--------------------------------------------------------------*/
#formarea {
  padding: 2.5em 0;
}
#formarea hr {
  display: none;
}
#formarea .formbox {
  content: "";
  display: table;
  table-layout: fixed;
  max-width: 680px;
  margin: auto;
  padding: 0 0 1em;
}
#formarea .formbox strong {
  font-weight: normal;
}
#formarea .formbox h3 {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  text-align: center;
  font-size: 1.25em;
  line-height: 1.5;
  margin: 2em 0;
  padding: 0.25em;
}
#formarea .formbox p + h3 {
  margin: 2em 0;
}
#formarea label, #formarea input {
  margin-bottom: 10px;
}
#formarea label {
  display: block;
  float: left;
  width: 180px;
  margin: 0 20px 10px 0;
  padding: 4px 0;
  /*text-align: right;*/
  font-weight: bold;
}
#formarea label.radio-label {
  background: rgba(50, 40, 30, 0.125);
  border-radius: 0.5em;
  display: inline;
  float: none;
  width: auto;
  margin: auto;
  padding: 0.6em;
}
#formarea input[type=text], #formarea input[type=password], #formarea textarea, #formarea .radioset {
  display: block;
  float: left;
  width: 480px;
  margin: 0 0 10px;
  padding: 2px;
  overflow: hidden;
  height: 100%;
}
#formarea .radioset {
  padding-bottom: 10px;
}
#formarea .radioset label {
  margin-right: 20px;
  line-height: 2em;
}
#formarea input[type=text], #formarea input[type=password], #formarea textarea {
  box-sizing: border-box;
}
#formarea textarea {
  padding: 2px;
  height: 140px;
}
#formarea input[type=radio] {
  margin-right: 5px;
  font-size: 1.14em;
}
#formarea select {
  background: #e5e5e5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 480px;
  height: 2em;
  padding: 0 0.5em;
}
#formarea select[multiple] {
  height: auto;
}
#formarea button, #formarea input[type=submit], #formarea input[type=button], #formarea input[type=reset] {
  background: #e5e5e5;
  font-size: 1.14em;
  height: 2em;
}
#formarea p {
  clear: left;
  margin: 10px 0;
  content: "";
  display: table;
  table-layout: fixed;
}
#formarea .notice2 {
  margin-left: 170px;
  font-size: 0.86em;
}
#formarea .center-buttons {
  width: 100%;
  padding: 30px 0 0;
  text-align: center;
}
#formarea .center-buttons input {
  /*@include inline-block;*/
  /*@include flat-button;*/
  display: inline-block;
}
#formarea .member-link a {
  /*@include inline-block;*/
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
}
#formarea .notice {
  background: rgba(50, 40, 30, 0.125);
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 1em;
  font-size: 0.9em;
  text-align: center;
}
#formarea .notice svg {
  fill: #666;
}
.formbox #formarea .notice {
  margin-top: 40px;
}
#formarea .notice_center {
  text-align: center;
}
#formarea .notice strong {
  font-weight: normal;
}
#formarea p.small {
  font-size: 0.86em;
  line-height: 1.4em;
  margin-bottom: 6px;
}
#formarea #alertBox {
  margin: 0 0 0 0;
}
#formarea .notice3 {
  border-top: 3px solid #32281E;
  border-bottom: 3px solid #32281E;
  margin: 20px 0;
  padding: 1em 0;
  font-size: 1em;
  font-weight: bold;
  color: #32281E;
}
#formarea p + .notice3, #formarea div + .notice3 {
  margin: 30px 0 20px;
}
#formarea .checkbox-group {
  border-top: 1px solid #d9d9d9;
  display: block;
  float: left;
  width: 440px;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9em;
}
#formarea .checkbox-group input[type=checkbox] {
  margin-right: 0.5em;
  font-size: 1.25em;
}
#formarea .checkbox-label {
  border-bottom: 1px solid #d9d9d9;
  float: none;
  width: auto;
  margin: auto;
  padding: auto;
  padding: 0.5em;
  /*text-align: right;*/
  font-weight: bold;
  flex: 1 1 50%;
}
@media (max-width: 60em) {
  #formarea .checkbox-group {
    width: 100%;
    font-size: 1em;
  }
}
@media (max-width: 40em) {
  #formarea .checkbox-label {
    flex: 0 0 100%;
  }
  #formarea .notice {
    text-align: left;
  }
}

@media (max-width: 60em) {
  .formcontent h2 {
    padding: 0 10px;
    margin: -2px auto 0;
  }
  .formcontent h2 img {
    width: 100%;
    height: auto;
  }

  #formarea .formbox {
    max-width: 46em;
    padding: 0 20px;
  }
  #formarea .formbox h3 {
    margin: 0 0 10px;
    padding: 5px 0;
  }
  #formarea label {
    display: block;
    /*float: left;*/
    width: 100%;
    margin: 0 0 0;
    font-size: 1em;
  }
  #formarea label.radio-label2 {
    margin-bottom: 5px;
  }
  #formarea label.radio-label {
    display: inline;
    margin: 1em auto;
    /*text-align:left;*/
  }
  #formarea label br {
    display: none;
  }
  #formarea p {
    width: 100%;
  }
  #formarea input[type=text], #formarea input[type=password], #formarea textarea, #formarea .radioset, #formarea select {
    float: none;
    width: 100%;
    margin: 0 0 10px;
    font-size: 16px;
  }
  #formarea textarea {
    height: 200px;
  }
  #formarea .notice {
    margin: 10px 0;
  }
}
@media (max-width: 40em) {
  .formbox {
    padding: 0 1.25em;
  }
  .formbox h3 {
    margin: 30px 0 20px !important;
  }
  .formbox p + h3 {
    margin: 30px 0 20px !important;
  }
}
/*////////////////////     THANKS     ////////////////////*/
body.thanks {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.thanks .container {
  padding-bottom: 0;
}
@media (max-width: 900px) {
  body.thanks .container .footer {
    flex-shrink: 0;
  }
}
body.thanks .content {
  position: relative;
  max-width: 40em;
  height: calc(100vh - 60px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body.thanks .content img {
  vertical-align: bottom;
}
body.thanks .content .thanks-content {
  position: relative;
  padding: 1.875em 0;
  text-align: center;
}
body.thanks .content .thanks-header .title {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
  font-size: 1em;
  line-height: 1;
}
body.thanks .content .thanks-header .date {
  width: 75%;
  margin: auto;
  line-height: 1;
}
body.thanks .content .thanks {
  width: 100%;
  margin: 2em 0;
}
body.thanks .content .thanks img {
  width: 100%;
  display: block;
}
body.thanks .content p {
  margin: 1.25em 0 1.75em;
  font-size: 1.25em;
}
body.thanks .content a.btn_back {
  width: 15em;
  margin: auto;
  font-size: 0.8em;
  line-height: 1em;
}
@media (max-width: 40em) {
  body.thanks .content {
    padding: 0 1.25em;
  }
}

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