@charset "UTF-8";
/** foundation */
/* #Normalize.css
   -------------------------------------------------------------------------- */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

@import url("eventreport.css");

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* #Base
   -------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  line-height: 1.4;
}

body {
  color: #444444;
  font-size: 14px;
  line-height: 1;
  font-family: "Lato", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.4;
  color: inherit;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * ネストされたリストのマージンをリセットします。
 */
li > ul, li > ol {
  margin-bottom: 0;
}

/**
 * `dt`と`dd`の左端を揃えます。
 */
dd {
  margin-left: 0;
}

table {
  width: 100%;
}

th {
  text-align: left;
}

a {
  color: #3164BC;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #264e94;
  text-decoration: none;
}

/**
 * フルードイメージにします。
 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * IEでSVGがフルードイメージにならない不具合があります。
 * 属性値が`.svg`で終わる要素に適応します。
 */
[src$=".svg"],
[data$=".svg"] {
  width: 100%;
}

/**
 * 日本語では斜体を使用しないためリセットします。
 */
i,
cite,
em,
address,
dfn {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
hr,
table,
fieldset, figure,
pre {
  margin-top: 0;
  margin-bottom: 0;
}

/** layout */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3 !important;
}

#page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 30px;
  background-color: #3164BC;
}

#page-top a span.icon-ico-top {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 10px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#page-top a span.icon-ico-top:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: solid 2px #fff;
  border-top: solid 2px #fff;
  transform: rotate(45deg);
  margin-top: 5px;
}

#page-top a:hover {
  opacity: 0.7;
}

#nippon-foundation {
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 3 !important;
}

#nippon-foundation a {
  display: block;
}

#nippon-foundation a:hover {
  opacity: 0.7;
}

.footer-image {
  width: 100%;
  height: 110px;
  background-image: url(/assets/img/footer@2x.png);
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
  margin-top: 100px;
}

@media screen and (max-width: 960px) {
  .footer-image {
    height: 70px;
    margin-top: 70px;
  }
}

footer {
  background-color: #3164BC;
  color: #fff;
  padding-top: 30px;
}

footer .l-content {
  display: table;
  position: relative;
}

footer .l-content:after {
  content: "";
  display: block;
  position: absolute;
  top: -140px;
  right: auto;
  bottom: auto;
  left: 80px;
  background: url("../img/footer-motif.png") no-repeat;
  width: 863px;
  height: 205px;
  z-index: 1;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  footer .l-content:after {
    background: url("../img/footer-motif@2x.png") no-repeat;
    background-size: 863px 205px;
  }
}

@media screen and (max-width: 960px) {
  footer .l-content {
    display: block;
  }
  footer .l-content:after {
    content: none;
  }
}

/*
footer .left {
  display: table-cell;
  width: 760px;
}*/

footer  .l-content .left .text {
  font-size: 12px;
  line-height: 1.8;
  background-image: url("/assets/img/footer-line@2x.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

footer .l-content .left .fnav{
	width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 999;
}


footer .l-content .left .fnav li {
  display: inline-block;
  margin-right: 32px;
}

footer .l-content .left .fnav li a {
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  footer .l-content .left {
    display: block;
    width: 100%;
  }
  footer .l-content .left .fnav li{
	  width: 100%;
	  display: block;
	  text-align: center;
	  padding: 0 0 15px;
  }
}

footer .l-content .right {
  display: table-cell;
  vertical-align: bottom;
  font-size: 12px;
  font-weight: normal;
  text-align: right;
}

@media screen and (max-width: 960px) {
  footer .l-content .right {
    display: block;
    width: 100%;
    text-align: center;
  }
}


footer .zaidan-box{
	background: #fff;
	color: #000;
	padding: 10px 0 0;
	margin: 25px 0 0;
	text-align: center;
	line-height: 1.8;
}

footer .zaidan-box p{
	padding: 0 0 5px;
	margin: 10px 0 0;
	font-size: 12px;
}

footer .zaidan-box .green-footer{
	background: #00aa3b;
	padding: 10px 15px;
	margin: 15px 0 0;
	color: #fff;
	position: relative;
	text-align: left;
}

footer .zaidan-box .green-footer .right{
	position: absolute;
	bottom: 0;
	right: 20px;
}


@media screen and (max-width: 960px) {
	footer .zaidan-box p{
	padding: 0 0 10px;
	margin:0 13px 0;
	font-size: 11px;
}
	footer .zaidan-box p.text{
		text-align: left;
	}
	
	footer .zaidan-box p img{
		width: 220px;
		height: auto;
	}
	
footer .l-content .left .fnav{
	width: 100%;
}	
	
	
footer .zaidan-box .green-footer .right{
	position: absolute;
	bottom: 0;
	right: 10px;
}	
	
footer .zaidan-box .green-footer .right img{
	width: 60px;
	height: auto;
	
}

}





#header {
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 960px) {
  #header {
    border-top: none;
    margin-bottom: 8px;
  }
}

#header a:hover {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}

.header-line {
  background: #3164bc;
  color: #fff;
  font-size: 11px;
  padding: 10px 8px;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .header-line {
    font-size: 10px;
    line-height: 1.6;
  }
}

.header-line .inner {
  width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 960px) {
  .header-line .inner {
    display: block;
    width: 100%;
  }
}

.header-line .header-sns {
  font-weight: bold;
  font-size: 11px;
  position: absolute;
  top: 0px;
  right: 0;
  color: #fff;
}

.header-line .header-sns a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns {
    width: 90x;
    top: -1px;
    display: none;
  }
}

.header-line .header-sns .zenkoku a {
  background: url(../img/icon_zenkoku.png) top left no-repeat;
  padding: 0 0 3px 20px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .zenkoku a {
    background: url(../img/icon_zenkoku_sp.png) top center no-repeat;
    background-size: 15px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 23px;
    float: left;
  }
}

.header-line .header-sns .twitter a {
  background: url(../img/icon_twitter.png) top left no-repeat;
  padding: 0 0 3px 20px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .twitter a {
    background: url(../img/icon_twitter_sp.png) top center no-repeat;
    background-size: 14px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 23px;
    float: left;
  }
}

.header-line .header-sns .facebook a {
  background: url(../img/icon_facebook.png) top left no-repeat;
  padding: 0 0 3px 20px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .facebook a {
    background: url(../img/icon_facebook_sp.png) top center no-repeat;
    background-size: 14px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 23px;
    float: left;
  }
}


.header-line .header-sns .instagram a {
  background: url(../img/icon_instagram.svg) top left no-repeat;
  background-size: 14px 14px;	
  padding: 0 0 3px 20px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .facebook a {
    background: url(../img/icon_instagram.svg) top center no-repeat;
    background-size: 14px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 23px;
    float: left;
  }
}


.header-line .header-sns .youtube a {
  background: url(../img/icon_youtube.png) top left no-repeat;
  padding: 0 0 3px 23px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .youtube a {
    background: url(../img/icon_youtube_sp.png) top center no-repeat;
    background-size: 18px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 26px;
    float: left;
  }
}

.header-line .header-sns .widjet a {
  background: url(../img/icon_widjet.png) top left no-repeat;
  padding: 0 0 3px 20px;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns .widjet a {
    background: url(../img/icon_widjet_sp.png) top center no-repeat;
    background-size: 14px 14px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 26px;
    float: left;
  }
}

.header-line .header-sns a {
  color: #fff;
}

@media screen and (max-width: 960px) {
  .header-line .header-sns a {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}

.header-content {
  display: table;
  position: relative;
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.header-content:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 960px) {
  .header-content {
    display: block;
    width: 100%;
    padding: 8px 0 10px;
  }
}

.count-nav {
  position: absolute;
  top: 20px;
  right: 10px;
  bottom: auto;
  left: auto;
}

.count-nav .count-nav-block {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  padding-left: 32px;
  border-collapse: separate;
  border-spacing: 5px 0;
}

.count-nav .count-nav-block__count {
  font-size: 12px;
  font-weight: bold;
  color: #222222;
}

.count-nav .count-nav-block__count .num {
  font-size: 19px;
  color: #E50113;
  padding-left: 4px;
}

.count-nav .count-nav-block__link {
  font-size: 12px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: .5em;
}

@media screen and (max-width: 960px) {
  .count-nav {
    display: none;
    position: relative;
    width: 100%;
    height: 30px;
    line-height: 30px;
    top: 0;
    left: 0;
    background-color: #3164BC;
  }
  .count-nav .count-nav-block {
    display: block;
    text-align: center;
    padding: 0;
  }
  .count-nav .count-nav-block__count {
    font-size: 12px;
    font-weight: bold;
    color: #222222;
  }
  .count-nav .count-nav-block__count .num {
    font-size: 19px;
    color: #E50113;
    padding-left: 4px;
  }
  .count-nav .count-nav-block__count__link {
    display: none;
  }
  .count-nav .count-nav-block__count__sp-non {
    display: none;
  }
}

.count-nav a.btn-sns {
  background: #3164bd;
  color: #fff;
  width: 258px;
  padding: 5px 0;
  display: block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.count-nav a.btn-ichiran {
  background: #3164bd;
  color: #fff;
  width: 100px;
  padding: 5px 0;
  display: table-cell;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.count-nav a.btn-partner {
  background: #e20001;
  color: #fff;
  width: 150px;
  padding: 5px 0;
  display: table-cell;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.logo-area {
  width: 350px;
  /*display: table-cell;
  vertical-align: bottom;*/
  padding-top: 25px;
}

.logo-area #logo {
  display: table-cell;
  margin-bottom: 16px;
}

.logo-area .site-read {
  width: 200px;
  font-size: 12px;
  font-weight: bold;
  color: #222222;
  display: table-cell;
  vertical-align: middle;
  padding: 16px 15px 10px;
  /*padding:8px 15px 10px; toolが入ったとき*/
}

.logo-area .site-read span.umipro {
  background: url(../img/icon_umipro.png) top left no-repeat;
  padding: 0 0 4px 20px;
}

@media screen and (max-width: 960px) {
  .logo-area .site-read span.umipro {
    background: url(../img/icon_umipro_sp.png) top left no-repeat;
    background-size: 13px 13px;
    padding: 0 0 4px 15px;
    font-size: 10px;
  }
}

.logo-area .site-read span.partnertool {
  background: url(../img/icon_download.png) top left no-repeat;
  padding: 0 0 4px 20px;
}

@media screen and (max-width: 960px) {
  .logo-area .site-read span.partnertool {
    background: url(../img/icon_download_sp.png) top left no-repeat;
    background-size: 13px 13px;
    font-size: 10px;
  }
}

.logo-area .site-read a {
  padding: 0 0 8px;
  display: block;
}

@media screen and (max-width: 960px) {
  .logo-area {
    display: table;
    text-align: left;
    padding-left: 8px;
    padding-top: 0px;
  }
  .logo-area #logo {
    vertical-align: middle;
    width: 70px;
    height: auto;
    padding-top: 7px;
    margin-bottom: 0;
  }
  .logo-area #logo img {
    max-width: none;
    width: 100%;
    height: auto;
    vertical-align: top;
  }
  .logo-area .site-read {
    display: table-cell;
    vertical-align: middle;
    font-size: 11px;
    font-weight: bold;
    padding: 15px 0px 0px 10px;
  }
}

#nav-toggle {
  display: none;
}

@media screen and (max-width: 960px) {
  #nav-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 22px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
  }
  #nav-toggle div {
    position: relative;
  }
  #nav-toggle span {
    display: block;
    position: absolute;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3164BC;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -ms-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 10px;
  }
  #nav-toggle span:nth-child(3) {
    top: 20px;
  }
  #nav-toggle.active span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  #nav-toggle.active span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #nav-toggle.active span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    -ms-transform: rotate(-315deg);
    -o-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
}

.gnav {
  padding: 20px 0 0;
  /*display: table-cell;
  table-layout: fixed;
  vertical-align: bottom;*/
}

@media screen and (min-width: 961px) {
  .gnav {
    /*display: table-cell!important;*/
  }
}

@media screen and (max-width: 960px) {
  .gnav {
    display: none;
    width: 100%;
    position: absolute;
    top: 59px;
    right: auto;
    bottom: auto;
    left: 0;
    background: #3164BC;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.gnav ul {
  padding: 0 0 0;
  /*display: table;
    table-layout: fixed;*/
  width: 100%;
}

@media screen and (max-width: 960px) {
  .gnav ul {
    width: 100%;
    display: block;
  }
}

.gnav ul li {
  padding: 0 23px;
}

.gnav ul li:first-child {
  border-left: 1px solid #ddd;
}

.gnav__item {
  position: relative;
  display: table-cell;
  padding: 0;
  vertical-align: bottom;
  border-right: 1px solid #ddd;
  text-align: center;
}

.gnav__item a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  color: #222222;
  z-index: 2;
}

.gnav__item a .en {
  display: block;
  font-size: 10px;
  font-weight: normal;
  color: #3164BC;
  margin-top: 4px;
}

.gnav__item--current:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background: radial-gradient(#dbf1fc, transparent 90%);
  -moz-background: radial-gradient(#dbf1fc, transparent 90%);
  -ms-background: radial-gradient(#dbf1fc, transparent 90%);
  -o-background: radial-gradient(#dbf1fc, transparent 90%);
  background: radial-gradient(#dbf1fc, transparent 90%);
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .gnav__item {
    display: block;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #79A4D2;
    padding-left: 0;
    font-size: 13px;
    line-height: 50px;
    color: #79A4D2;
  }
  .gnav__item a {
    display: block;
    font-size: 13px;
    line-height: 50px;
    color: #fff;
  }
  .gnav__item a .en {
    display: none;
  }
  .gnav__item a:after {
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    top: auto;
    right: 0;
    bottom: auto;
    left: auto;
    content: "";
    font-family: "icomoon",sans-serif;
  }
  .gnav__item--current:before {
    content: none;
  }
}

.gnav__item--pc {
  display: table-cell;
}

@media screen and (max-width: 960px) {
  .gnav__item--pc {
    display: none;
  }
}

.gnav__item--sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .gnav__item--sp {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .gnav__item--have-child {
    position: relative;
    font-size: 13px;
    font-weight: bold;
    line-height: 50px;
    color: #fff;
    border-bottom: 1px solid #79A4D2;
  }
  .gnav__item--have-child:after {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 50px;
    height: 50px;
    text-align: center;
    content: "";
    font-family: "icomoon",sans-serif;
    background-color: #004CA6;
  }
  .gnav__item--have-child.active:after {
    content: "ー";
    font-weight: bold;
  }
  .gnav__item--have-child ul {
    background-color: #004CA6;
  }
  .gnav__item--have-child ul li {
    padding-left: 10px !important;
  }
  .gnav__item--have-child ul li:first-child {
    border-top: 1px solid #79A4D2;
  }
  .gnav__item--have-child ul li:last-child {
    border-bottom: none;
  }
}

@media all and (max-width: 960px) {
  .gnav ul li {
    border-right: none;
    padding: 0;
  }
  .gnav ul li:first-child {
    border-left: none !important;
  }
}

.official-sns-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

.official-sns-nav:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 960px) {
  .official-sns-nav {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.official-sns-nav ul {
  width: 180px;
  display: none;
}

@media screen and (max-width: 960px) {
  .official-sns-nav ul {
    width: 100%;
    display: block;
  }
}

.official-sns-nav__item {
  float: left;
  font-size: 40px;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .official-sns-nav__item {
    float: none;
    display: inline-block;
    margin-right: 4px;
    margin-left: 4px;
  }
  .official-sns-nav__item a {
    display: block;
    width: 48px;
    height: 48px;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
  }
}

.official-sns-nav__item--twitter a {
  color: #6EA9F3;
}

@media screen and (max-width: 960px) {
  .official-sns-nav__item--twitter a {
    color: #fff;
    background-color: #6EA9F3;
  }
  .official-sns-nav__item--twitter a span:before {
    content: "\e90d" !important;
  }
}

.official-sns-nav__item--facebook a {
  color: #3B4D9A;
}

@media screen and (max-width: 960px) {
  .official-sns-nav__item--facebook a {
    color: #fff;
    background-color: #3B4D9A;
  }
  .official-sns-nav__item--facebook a span:before {
    content: "\e905" !important;
  }
}

.official-sns-nav__item--youtube a {
  color: #D43C1F;
}

@media screen and (max-width: 960px) {
  .official-sns-nav__item--youtube a {
    color: #fff;
    background-color: #D43C1F;
  }
  .official-sns-nav__item--youtube a span:before {
    content: "\e90f" !important;
  }
}

.searchHeader {
  display: none;
}

.spBox {
  display: none;
}

@media all and (max-width: 960px) {
  .spBox {
    display: block !important;
  }
}

@media all and (max-width: 960px) {
  .searchHeader {
    display: block;
    margin-bottom: 0;
    position: relative;
  }
  .searchHeader form.headerSearch {
    position: relative;
    margin: 7px 7px -5px;
  }
  .searchHeader .searchheader__input {
    width: 100% !important;
    height: 44px;
    line-height: 1;
    background: #fff;
    border: 1px solid #3164BC;
    -webkit-border-radius: 2px 0 0 2px;
    -moz-border-radius: 2px 0 0 2px;
    -ms-border-radius: 2px 0 0 2px;
    border-radius: 2px 0 0 2px;
    outline: none;
    padding-left: 7px;
  }
  .searchHeader .searchheader__button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    font-size: 16px;
    font-family: "icomoon",sans-serif;
    color: #fff;
    width: 50px;
    height: 44px;
    background: #0050a2;
    border: none;
    -webkit-border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    -ms-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    outline: none;
  }
}

#widjetBox {
  max-width: 500px;
  padding: 20px;
  background: #fff;
}

#widjetBox .widjet-ttl {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
  text-align: center;
  color: #0061a5;
  line-height: 1.6;
}

#widjetBox p {
  border: 1px solid #ddd;
  padding: 15px;
  background: #eee;
  margin: 0 0 15px;
  line-height: 1.6;
  word-break: break-all;
}

#widjetBox .btn-widjet a {
  background: #0061a5;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  overflow: hidden;
}

#wrapper {
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.l-content {
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.l-content:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 720px) and (max-width: 960px) {
  .l-content {
    width: 100%;
    max-width: 960px;
    min-width: 720px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 720px) {
  .l-content {
    width: 100%;
    max-width: 100%;
    min-width: 290px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.l-content .main {
  /*overflow: hidden;*/
  float: left;
  margin: 0 auto;
  width: 760px;
}

@media screen and (max-width: 960px) {
  .l-content .main {
    float: none;
    width: 100%;
    margin-bottom: 48px;
  }
}

.l-content .side {
  overflow: hidden;
  float: right;
  width: 270px;
}

@media screen and (max-width: 960px) {
  .l-content .side {
    float: none;
    width: 100%;
  }
}

#header {
  z-index: 3;
}

#contents {
  position: relative;
  background-color: #ebf7ff;
  background-image: url(../img/bg-pat01.png);
  background-repeat: repeat;
  background-position: left top;
  z-index: 1;
}

#contents:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url(../img/bg-pat02.png), url(../img/bg-pat03.png);
  background-repeat: repeat, repeat;
  -webkit-animation-name: anime1;
  -moz-animation-name: anime1;
  -ms-animation-name: anime1;
  -o-animation-name: anime1;
  animation-name: anime1;
  -webkit-animation-duration: 50s;
  -moz-animation-duration: 50s;
  -ms-animation-duration: 50s;
  -o-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

#contents:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url(../img/bg-pat04.png), url(../img/bg-pat05.png);
  background-repeat: repeat, repeat;
  -webkit-animation-name: anime2;
  -moz-animation-name: anime2;
  -ms-animation-name: anime2;
  -o-animation-name: anime2;
  animation-name: anime2;
  -webkit-animation-duration: 60s;
  -moz-animation-duration: 60s;
  -ms-animation-duration: 60s;
  -o-animation-duration: 60s;
  animation-duration: 60s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 960px) {
  #contents {
    padding-top: 30px;
    background-image: url(../img/bg-pat01.png), url(../img/bg-pat02.png), url(../img/bg-pat03.png), url(../img/bg-pat04.png), url(../img/bg-pat05.png);
    background-repeat: repeat, repeat, repeat, repeat, repeat;
    background-position: left top, right top, left top, right top, left top;
  }
  #contents:after, #contents:before {
    content: none;
  }
}

#contents > * {
  position: relative;
  z-index: 2;
}

#contents > .animation_layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes anime1 {
  0% {
    background-position: 500px 580px, 550px 0px;
  }
  100% {
    background-position: 0px 0px, 0px 700px;
  }
}

@keyframes anime2 {
  0% {
    background-position: 800px top, 720px 0px;
  }
  100% {
    background-position: 0px top, 0px 720px;
  }
}

.headline-side {
  font-size: 18px;
  font-weight: bold;
  color: #3164BC;
  text-align: center;
  margin-bottom: 8px;
}

.headline-side:before {
  content: "";
  font-family: "icomoon",sans-serif;
  margin-right: 16px;
}

.headline-side:after {
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 16px;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}

input[type="submit"] {
  -webkit-appearance: none;
  vertical-align: middle;
  text-align: center;
}

.search {
  margin-bottom: 20px;
}

.search form {
  position: relative;
}

.search__input {
  width: 226px;
  height: 44px;
  line-height: 1;
  background: #fff;
  border: 2px solid #3164BC;
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  -ms-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  outline: none;
  padding-left: 10px;
}

.search__button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  font-size: 18px;
  font-family: "icomoon",sans-serif;
  color: #fff;
  width: 44px;
  height: 44px;
  background: #3164BC;
  border: none;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  outline: none;
}

@media screen and (max-width: 960px) {
  .search {
    display: none;
  }
}

.side-banner a img {
  width: 100%;
}

/** object */
.parts {
  margin-bottom: 60px;
}

/* ページ説明 */
.page-description {
  margin-bottom: 24px;
  line-height: 1.8;
}

@media screen and (max-width: 720px) {
  .page-description {
    margin-bottom: 16px;
  }
}

/* リンク */
.c-text-link a {
  font-weight: bold;
}

.c-text-link a:after {
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 8px;
}

/* 改行 */
.brPc {
  display: block;
}

@media screen and (max-width: 960px) {
  .brPc {
    display: none;
  }
}

.brSp {
  display: none;
}

@media screen and (max-width: 960px) {
  .brSp {
    display: block;
  }
}

/* テキスト削除 */
.nonSp {
  display: inline-block;
}

@media screen and (max-width: 720px) {
  .nonSp {
    display: none;
  }
}

/* Alignment */
.tr {
  text-align: right;
}

#gallery-1 img {
  border: none !important;
}

/* 詳細ページ用サブタイトル・リード */
h2.sub_title {
  margin-bottom: 20px;
  font-size: 116%;
  color: #333;
}

.pankuzu {
  font-size: 0;
  padding-top: 40px;
  margin-bottom: 50px;
}

.pankuzu-item {
  display: inline-block;
  font-size: 12px;
}

.pankuzu-item a:after {
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-right: .5em;
  margin-left: .5em;
}

.pankuzu-item--home a:before {
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-right: .5em;
}

@media screen and (max-width: 960px) {
  .pankuzu {
    padding-top: 0;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 720px) {
  .pankuzu {
    display: none;
  }
}

.btn a {
  display: block;
  color: #fff;
  text-align: center;
  background-color: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.btn a:hover {
  background-color: #2c59a8;
}

.btn-link {
  width: 340px;
  margin-right: auto;
  margin-left: auto;
}

.btn-link a {
  position: relative;
  font-size: 18px;
  line-height: 48px;
  border: 3px solid #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.btn-link a:after {
  position: absolute;
  top: 50%;
  right: 24px;
  font-size: 12px;
  content: "";
  font-family: "icomoon",sans-serif;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-link a:hover {
  background-color: #2c59a8;
}

@media screen and (max-width: 720px) {
  .btn-link {
    width: 100%;
  }
  .btn-link a {
    font-size: 16px;
    border: 2px solid #fff;
  }
  .btn-link a:after {
    font-size: 12px;
  }
}

.btn-pdf {
  padding: 0 25%;
}

.btn-pdf a {
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: #3164BC;
  color: #fff;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.btn-pdf a:after {
  font-size: 11px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 16px;
}

.btn-pdf a:hover {
  background-color: #2c59a8;
}

@media screen and (max-width: 720px) {
  .btn-pdf {
    padding: 0 16%;
  }
  .btn-pdf a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.contents-headline {
  font-size: 26px;
  font-weight: bold;
  color: #3164BC;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .contents-headline {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.contents-headline02 {
  font-size: 22px;
  font-weight: bold;
  color: #3164BC;
  margin-bottom: 24px;
}

@media screen and (max-width: 960px) {
  .contents-headline02 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.white-contents {
  width: 100%;
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 40px;
}

.white-contents.non-description {
  margin-top: 48px;
}

.white-contents.slim-contents, .white-contents.entry-contents {
  padding-right: 60px;
  padding-left: 60px;
}

@media screen and (max-width: 960px) {
  .white-contents.non-description {
    margin-top: 0;
  }
  .white-contents.slim-contents, .white-contents.entry-contents {
    padding: 40px;
  }
}

@media screen and (max-width: 720px) {
  .white-contents {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    padding: 15px;
  }
  .white-contents.slim-contents, .white-contents.entry-contents {
    padding: 30px 15px;
  }
}

.white-contents-headline01 {
  font-size: 22px;
  color: #222222;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 32px;
  background-color: #F6F6F6;
}

@media screen and (max-width: 720px) {
  .white-contents-headline01 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.wp-pagenavi {
  text-align: center;
  margin-top: 20px;	
  /*margin-top: 70px;*/
}

.wp-pagenavi .page {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  margin-right: 8px;
  background-color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
}

.wp-pagenavi .page a {
  display: block;
}

.wp-pagenavi span {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  margin-right: 8px;
}

.wp-pagenavi .current {
  background-color: #3164BC;
  color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.wp-pagenavi .extend:after {
  display: block;
  content: "…";
  background-color: transparent;
}

@media screen and (max-width: 720px) {
  .wp-pagenavi {
    margin-top: 30px;
  }
  .wp-pagenavi .page {
    margin-bottom: 8px;
  }
  .wp-pagenavi span {
    margin-bottom: 8px;
  }
}

.c-post-archive {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: -30px;
}

.c-post-archive .schedule,
.c-post-archive .grid {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.c-post-archive .post-item {
  width: 47.63%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 30px;
}

@media screen and (max-width: 720px) {
  .c-post-archive .post-item {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
  }
}

.c-post-archive .post-item__thumbnail {
  width: 100%;
  position: relative;
}

.c-post-archive .post-item__thumbnail img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}

.c-post-archive .post-item__thumbnail div {
  width:120px; 
  height:32px; 
  background:#3164BC;
  position:absolute;
  top:0;
  right:0;
  z-index:1;
  padding-top:10px;
  text-align:center;
  color:#fff;
  font-size:12px;
  font-weight: bold;
  -webkit-border-radius: 0px 8px 0 0;
  -moz-border-radius: 0px 8px 0 0;
  -ms-border-radius: 0px 8px 0 0;
  border-radius: 0px 8px 0 0;
}

.c-post-archive .post-item__thumbnail:after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 5.24%;
  background-image: url(/assets/img/wave01@2x.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 720px) {
  .c-post-archive .post-item__thumbnail img {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
}

.c-post-archive .post-item__content {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
}

.c-post-archive .post-item__content--info {
  font-size: 12px;
  line-height: 1;
  color: #888888;
  margin-bottom: 16px;
}

.c-post-archive .post-item__content--info .time {
  margin-right: .5em;
}

.c-post-archive .post-item__content--title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 16px;
}

.c-post-archive .post-item__content--summary {
  font-size: 13px;
  line-height: 1.6;
  color: #444444;
}

@media screen and (max-width: 720px) {
  .c-post-archive .post-item__content {
    padding: 8px;
  }
  .c-post-archive .post-item__content--info {
    margin-bottom: 8px;
  }
  .c-post-archive .post-item__content--title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .c-post-archive .post-item__content--summary {
    display: none;
  }
}

.c-post-archive .post-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-post-area {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.c-post-area:before {
  content: "";
  display: block;
  width: 24.21%;
  order: 1;
}

.c-post-area:after {
  content: "";
  display: block;
  width: 24.21%;
}

.c-post-area .post-item {
  width: 24.21%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  padding: 8px;
}

.c-post-area .post-item__thumbnail {
  width: 100%;
  height: 112px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  padding-top: 66%;
}

.c-post-area .post-item__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-post-area .post-item__content--title {
  font-size: 13px;
}

.c-post-area .post-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media screen and (max-width: 720px) {
  .c-post-area {
    margin-bottom: -15px;
  }
  .c-post-area:before, .c-post-area:after {
    content: none;
  }
  .c-post-area .post-item {
    width: 47.63%;
    margin-bottom: 15px;
  }
  .c-post-area .post-item__thumbnail {
    height: 100px;
  }
  .c-post-area .post-item__content_title {
    font-size: 12px;
  }
}

.tab-nav {
  width: calc(100% + 16px);
  display: table;
  table-layout: fixed;
  border-spacing: 8px 0;
  margin-bottom: 32px;
  margin-left: -8px;
}

.tab-nav-item {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.tab-nav-item a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #3164BC;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.tab-nav-item:hover a {
  color: #21447f;
}

.tab-nav-current {
  background: #3164BC;
}

.tab-nav-current a {
  color: #fff !important;
}

.tab-nav-current:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #3164BC;
  border-width: 8px;
  margin-left: -8px;
}

@media screen and (max-width: 720px) {
  .tab-nav {
    margin-bottom: 16px;
  }
  .tab-nav-item a {
    font-size: 14px;
  }
  .tab-nav-current:after {
    content: none;
  }
}

.area-tab {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 32px;
}

.area-tab__item {
  position: relative;
  width: 11.625%;
  text-align: center;
}

.area-tab__item a {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #3164BC;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.area-tab__item--current {
  position: relative;
  width: 11.625%;
  text-align: center;
}

.area-tab__item--current a {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  background-color: #3164BC;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.area-tab__item--current a:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: " ";
  height: 0;
  width: 0;
  border: solid transparent;
  border-top-color: #3164BC;
  border-width: 8px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 720px) {
  .area-tab {
    margin-bottom: 8px;
  }
  .area-tab__item {
    width: 23.43%;
    margin-bottom: 8px;
  }
	
  .area-tab__item--current {
    width: 23.43%;
    margin-bottom: 8px;
  }	
}

.area-tab--japaneseSyllabary .area-tab__item {
  width: 9.05%;
}

@media screen and (max-width: 720px) {
  .area-tab--japaneseSyllabary .area-tab__item {
    width: 18.14%;
    margin-bottom: 8px;
  }
}

.wellknown-nav {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wellknown-nav__item {
  position: relative;
  width: 32.21%;
  text-align: center;
}

.wellknown-nav__item a {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #3164BC;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.wellknown-nav__item--current a {
  background: #3164BC;
  color: #fff;
}

.wellknown-nav__item--current a:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: " ";
  height: 0;
  width: 0;
  border: solid transparent;
  border-top-color: #3164BC;
  border-width: 8px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 720px) {
  .wellknown-nav__item {
    width: 48.95%;
    margin-bottom: 16px;
  }
}

.itemText__header {
  font-size: 12px;
  color: #888888;
  margin-bottom: 16px;
}

.itemText__header .date {
  margin-right: .5em;
}

.itemText__header .new {
  color: #e50114;
}

@media screen and (max-width: 720px) {
  .itemText__header {
    margin-bottom: 8px;
  }
}

.itemText__title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (max-width: 720px) {
  .itemText__title {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.itemText__summary {
  font-size: 13px;
  line-height: 1.6;
  color: #444444;
}

@media screen and (max-width: 720px) {
  .itemText__summary {
    display: none;
  }
}

.governor-lists {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: -40px;
}

.governor-lists .governor__item {
  width: 47.05%;
  line-height: 1.8;
  margin-bottom: 40px;
}

.governor-lists .governor__item__box {
  width: 100%;
  margin-bottom: 16px;
}

.governor-lists .governor__item__box:after {
  content: "";
  display: table;
  clear: both;
}

.governor-lists .governor__item__box .thumbnail {
  float: left;
  width: 120px;
  margin-right: 8px;
}

.governor-lists .governor__item__box .thumbnail img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #E5E5E5;
}

.governor-lists .governor__item__box .info {
  overflow: hidden;
  padding-top: 8px;
}

.governor-lists .governor__item__box .info__area {
  font-size: 12px;
  margin-bottom: 4px;
  color: #444444;
}

.governor-lists .governor__item__box .info__name {
  font-size: 16px;
  color: #222222;
  margin-bottom: 32px;
}

.governor-lists .governor__item__box .info__btn {
  width: 100%;
}

.governor-lists .governor__item__box .info__btn a {
  font-size: 12px;
  line-height: 1.5;
  padding: .3em 1.5em .3em 1em;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: none;
}

.governor-lists .governor__item__box .info__btn a:after {
  right: 1em;
  font-size: 10px;
}

@media screen and (max-width: 720px) {
  .governor-lists {
    display: block;
    margin-bottom: 0;
  }
  .governor-lists .governor__item {
    width: 100%;
    background-image: url(../img/wave04.png);
    background-repeat: repeat-x;
    background-size: auto 6px;
    background-position: 0 bottom;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .governor-lists .governor__item:last-child {
    background: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.video-lists {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.video-lists-item {
  width: 47.64%;
  margin-bottom: 32px;
}

.video-lists-item a:hover {
  opacity: .8;
}

.video-lists-item__thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
  margin-bottom: 8px;
}

.video-lists-item__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.video-lists-item__thumbnail:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background-image: url(../img/dance/icon_play.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
  transition: .8s ease-out;
}

.video-lists-item .title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 8px;
}

.video-lists-item__tags li {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  color: #888;
  margin-right: .5em;
}

.video-lists-item__tags li a {
  color: #888;
}

@media screen and (max-width: 720px) {
  .video-lists-item {
    width: 100%;
    margin-bottom: 24px;
  }
}

.related-project-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E6;
}

.related-project-list li:first-child {
  border-top: 1px solid #E5E5E6;
}

.related-project-list li a {
  width: 100%;
  display: table;
}

.related-project-list li .title {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.4;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-right: auto;
}

.related-project-list li .image {
  display: table-cell;
  vertical-align: middle;
  width: 120px;
  height: auto;
  padding-left: 20px;
}

.related-project-list li .image img {
  width: 100%;
  height: auto;
  border: 1px solid #E5E5E6;
}

.partner-list {
  margin-top: 24px;
  padding-bottom: 40px;
  overflow: hidden;
}

.partner-list li {
  line-height: 1.4;
  margin-bottom: 16px;
}

.partner-list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 720px) {
  .partner-list {
    padding-bottom: 30px;
  }
  .partner-list li {
    margin-bottom: 20px;
  }
}

.youtube-list {
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.youtube-list:after {
  content: "";
  display: table;
  clear: both;
}

.youtube-list::after {
  content: "";
  display: block;
  width: 31.9146%;
}

.youtube-list .item {
  width: 31.9146%;
  margin-bottom: 30px;
  transition: opacity .2s ease-out;
}

.youtube-list .item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.youtube-list .item .thumbnail img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.youtube-list .item .data {
  padding: 10px;
}

.youtube-list .item .data .sub {
  line-height: 1;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.youtube-list .item .data .sub .time {
  font-size: 12px;
  color: #fff;
  padding: 4px 16px;
  background-color: #3164BC;
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.youtube-list .item .data .sub .area {
  color: #3164BC;
  font-weight: bold;
  display: inline-block;
}

.youtube-list .item .data .title {
  color: #444444;
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  .youtube-list .item {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    background-color: #fff;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
  }
  .youtube-list .item .thumbnail img {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: auto;
  }
  .youtube-list .item .data {
    padding: 15px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .youtube-list .item .data .sub {
    display: block;
    margin-bottom: 0;
  }
  .youtube-list .item .data .sub .time {
    padding: 4px 8px;
  }
  .youtube-list .item .data .sub .area {
    font-size: 12px;
    vertical-align: middle;
    padding-left: 10px;
  }
  .youtube-list .item .data .title {
    font-size: 12px;
  }
}

.youtube-taglist {
  overflow: hidden;
  margin: 0 0 35px;
}

.youtube-taglist a {
  background: #3e60ba;
  padding: 5px 15px;
  margin: 0 5px 5px 0;
  color: #fff;
  text-align: center;
  float: left;
  display: block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .youtube-taglist a {
    font-size: 12px;
  }
}

.youtube-taglist a:hover {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}

.youtube-tagttl {
  display: table;
  margin-bottom: 35px;
}

.youtube-tagttl .leftBox {
  display: table-cell;
  color: #3e60ba;
  font-size: 22px;
  font-weight: bold;
  vertical-align: middle;
  border-right: 1px solid #3e60ba;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 960px) {
  .youtube-tagttl .leftBox {
    font-size: 18px;
    border-bottom: 2px solid #3e60ba;
    display: block;
    border-right: none;
    padding: 0 0 10px;
  }
}

.youtube-tagttl .rightBox {
  display: table-cell;
  color: #3e60ba;
  line-height: 1.4;
  font-weight: bold;
  vertical-align: middle;
  padding-left: 30px;
}

@media screen and (max-width: 960px) {
  .youtube-tagttl .rightBox {
    display: block;
    padding: 15px 0 0;
  }
}

.youtube-list-area {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.youtube-list-area:after {
  content: "";
  display: table;
  clear: both;
}

.youtube-list-area::before {
  content: "";
  display: block;
  width: 24.25%;
  order: 1;
}

.youtube-list-area::after {
  content: "";
  display: block;
  width: 24.25%;
}

.youtube-list-area .item {
  width: 24.25%;
  margin-bottom: 20px;
  transition: opacity .2s ease-out;
}

.youtube-list-area .item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.youtube-list-area .item .thumbnail img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.youtube-list-area .item .thumbnail:after {
  background-size: 30px;
  background-position: bottom 10px right 10px;
}

.youtube-list-area .item .data {
  font-size: 14px;
  padding: 10px 4px;
}

.youtube-list-area .item .data .sub {
  color: #3164BC;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.youtube-list-area .item .data .time .new {
  color: #fff;
  font-size: 13px;
  background-color: #e50114;
  padding: .2em .5em;
  margin-right: .5em;
  display: inline-block;
}

.youtube-list-area .item .data .title {
  color: #444444;
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  .youtube-list-area {
    margin-bottom: -15px;
  }
  .youtube-list-area .item {
    width: 47.5%;
    background-color: #fff;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 15px;
  }
  .youtube-list-area .item .thumbnail img {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: auto;
  }
  .youtube-list-area .item .data {
    padding: 10px;
  }
  .youtube-list-area .item .data .sub {
    font-size: 10px;
  }
  .youtube-list-area .item .data .title {
    font-size: 12px;
  }
}

.horizonThumbnailLists__item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.horizonThumbnailLists__item:after {
  content: "";
  display: table;
  clear: both;
}

.horizonThumbnailLists__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 720px) {
  .horizonThumbnailLists__item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.horizonThumbnailLists__thumbnail {
  float: left;
  position: relative;
  width: 200px;
  height: auto;
}

.horizonThumbnailLists__thumbnail img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}

.horizonThumbnailLists__thumbnail:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 5.24%;
  background-image: url(/assets/img/wave01@2x.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 720px) {
  .horizonThumbnailLists__thumbnail {
    width: 100px;
  }
  .horizonThumbnailLists__thumbnail img {
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -ms-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
  }
}

.horizonThumbnailLists__text {
  float: right;
  width: calc(100% - 200px);
  padding-left: 24px;
}

@media screen and (max-width: 720px) {
  .horizonThumbnailLists__text {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
}

.character-contents {
  padding: 40px;
}

.character-contents .preparation {
  text-align: center;
  margin-bottom: 40px;
}

.character-contents .characterList {
  font-size: 0;
  word-wrap: break-word;
  margin-bottom: 40px;
}

.character-contents .characterList:after {
  content: "";
  display: table;
  clear: both;
}

.character-contents .characterList:last-child {
  margin-bottom: 0;
}

.character-contents .characterList li.characterBox {
  width: 33.3%;
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  padding: 0 20px 24px;
}

.character-contents .characterList li.characterBox figure {
  width: 120px;
  vertical-align: top;
  margin: 0 auto 15px;
}

.character-contents .characterList li.characterBox figure img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #E5E5E5;
}

.character-contents .characterList li.characterBox .withCopy {
  margin-bottom: 5px;
}

.character-contents .characterList li.characterBox .withCopy img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
}

.character-contents .characterList li.characterBox .characterName .caption {
  font-size: 12px;
  color: #444444;
  margin-bottom: 3px;
}

.character-contents .characterList li.characterBox .characterName .name {
  color: #222222;
  font-weight: bold;
}

.character-contents .characterList li.characterComment {
  position: relative;
  float: left;
  display: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.7;
  padding: 24px;
  background: #E4F6FF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.character-contents .characterList li.characterComment:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #E4F6FF transparent;
}

.character-contents .characterList li.characterComment .btn {
  width: 80px;
  margin-top: 16px;
  color: #fff;
  text-align: center;
  line-height: 32px;
  border: none;
  cursor: pointer;
  background-color: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.character-contents .characterList li.characterComment .btn:after {
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 6px;
}

.character-contents .characterList li.characterComment:nth-child(6n+2):before {
  position: absolute;
  top: -10px;
  right: auto;
  bottom: auto;
  left: 15%;
}

.character-contents .characterList li.characterComment:nth-child(6n+4):before {
  position: absolute;
  top: -10px;
  right: 50%;
  bottom: auto;
  left: 50%;
}

.character-contents .characterList li.characterComment:nth-child(6n+6):before {
  position: absolute;
  top: -10px;
  right: 15%;
  bottom: auto;
  left: auto;
}

@media screen and (max-width: 720px) {
  .character-contents {
    padding: 15px;
    margin-bottom: -40px;
  }
  .character-contents .preparation {
    margin-bottom: 30px;
  }
  .character-contents .characterList {
    margin-bottom: 0;
  }
  .character-contents .characterList li.characterBox {
    width: 50%;
    margin-top: 0;
    padding: 0 8px 24px;
  }
  .character-contents .characterList li.characterComment {
    padding: 20px 16px;
  }
  .character-contents .characterList li.characterComment:nth-child(4n+2):before {
    position: absolute;
    top: -10px;
    right: auto;
    bottom: auto;
    left: 22%;
  }
  .character-contents .characterList li.characterComment:nth-child(4n+4):before {
    position: absolute;
    top: -10px;
    right: 22%;
    bottom: auto;
    left: auto;
  }
}

.news_area-headline {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 24px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background: #3164BC;
}

.news_areaBlock {
  margin-bottom: 56px;
}

.news_areaBlock:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 720px) {
  .news_areaBlock {
    margin-bottom: 40px;
  }
  .news_areaBlock:last-child {
    margin-bottom: 0;
  }
}

.areaDetail {
  display: table;
  margin-bottom: 20px;
}

.areaDetail__map {
  display: table-cell;
  vertical-align: middle;
  width: 128px;
}

.areaDetail__text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 32px;
}

.areaDetail__name {
  font-weight: bold;
  font-size: 22px;
  color: #3164BC;
  margin-bottom: 16px;
}

.areaDetail__description {
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 16px;
}

.areaDetail__site {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 1em;
  background-color: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.areaDetail__site:after {
  font-size: 12px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 1em;
}

.areaDetail__site:hover {
  color: #fff;
  background-color: #2c59a8;
}

@media screen and (max-width: 720px) {
  .areaDetail {
    display: block;
    margin-bottom: 15px;
  }
  .areaDetail__map {
    display: block;
    width: 100%;
    height: 140px;
    text-align: center;
    margin-bottom: 15px;
  }
  .areaDetail__map img {
    height: 100%;
    width: auto;
  }
  .areaDetail__text {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .areaDetail__name {
    margin-bottom: 8px;
  }
  .areaDetail__description {
    margin-bottom: 15px;
  }
  .areaDetail__site {
    font-size: 14px;
  }
}

.areaPost {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.areaPost:before {
  content: "";
  display: block;
  width: 24.21%;
  order: 1;
}

.areaPost:after {
  content: "";
  display: block;
  width: 24.21%;
}

.areaPost__item {
  width: 24.21%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  padding: 8px;
}

.areaPost__thumbnail {
  width: 100%;
  height: 112px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
  padding-top: 66%;
}

.areaPost__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.areaPost__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 720px) {
  .areaPost {
    margin-bottom: -15px;
  }
  .areaPost :before, .areaPost:after {
    content: none;
  }
  .areaPost__item {
    width: 47.63%;
    margin-bottom: 15px;
  }
  .areaPost__thumbnail {
    height: 100px;
  }
  .areaPost_title {
    font-size: 12px;
  }
}

.entry-contents {
  padding-bottom: 16px;
  margin-bottom: 70px;
}

.entry-contents .entry-title {
  font-size: 26px;
  font-weight: bold;
  color: #3164BC;
  margin-bottom: 16px;
}

.entry-contents .date {
  color: #888888;
  margin-bottom: 32px;
}

@media screen and (max-width: 720px) {
  .entry-contents {
    margin-bottom: 30px;
  }
  .entry-contents .entry-title {
    font-size: 22px;
  }
  .entry-contents .date {
    margin-bottom: 16px;
  }
}

.entry-area {
  border-top: 1px solid #e5e5e5;
  padding-top: 32px;
}

.entry-area .entry-headline {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.entry-area img {
  margin-bottom: 24px;
  max-width: 100%;
  height: auto;
}

.entry-area p {
  line-height: 1.8;
  margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
  .entry-area {
    padding-top: 16px;
  }
  .entry-area .entry-headline {
    margin-bottom: 16px;
  }
  .entry-area img {
    margin-bottom: 16px;
  }
  .entry-area p {
    margin-bottom: 16px;
  }
}

.entry-event-detail dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.entry-event-detail dd {
  line-height: 1.8;
  margin-bottom: 48px;
}

@media screen and (max-width: 720px) {
  .entry-event-detail dd {
    margin-bottom: 32px;
  }
}

.entry-col02:after {
  content: "";
  display: table;
  clear: both;
}

.entry-col02__item {
  float: left;
  width: 47%;
  margin-bottom: 32px;
  padding: 8px 8px 16px;
  line-height: 1.6;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  background-color: #F6F6F6;
}

.entry-col02__item:nth-child(odd) {
  margin-right: 6%;
}

.entry-col02__item a {
  color: #444444;
}

.entry-col02__item p {
  margin-bottom: 0;
}

.entry-col02__item__thumbnail {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-bottom: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.entry-col02__item__thumbnail img {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 720px) {
  .entry-col02__item {
    width: 100%;
    margin-bottom: 16px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
  }
  .entry-col02__item__thumbnail {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
  }
}

.entry-nippon-foundation {
  width: 100%;
  display: table;
  border: 1px solid #00A040;
  padding: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.entry-nippon-foundation__logo {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: 0;
}

.entry-nippon-foundation__logo img {
  margin-bottom: 0;
}

.entry-nippon-foundation__text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 40px;
  margin-bottom: 0;
}

.entry-nippon-foundation__text a {
  color: #00A040;
}

@media screen and (max-width: 720px) {
  .entry-nippon-foundation__logo {
    width: 60px;
    height: auto;
  }
  .entry-nippon-foundation__text {
    padding-left: 24px;
  }
}

.entry-share-btn {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #E5E5E5;
}

.entry-share-btn li {
  width: 30.83%;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.entry-share-btn li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.entry-share-btn li a span {
  margin-right: .5em;
}

.entry-share-btn--twitter {
  background: #6EA9F3;
}

.entry-share-btn--facebook {
  background: #3B4D9A;
}

.entry-share-btn--google {
  background: #DD4B39;
}

.entry-share-btn-current {
  background: #3164BC;
}

.entry-share-btn-current a {
  color: #fff;
}

@media screen and (max-width: 720px) {
  .entry-share-btn {
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .entry-share-btn li {
    width: 30.159%;
  }
  .entry-share-btn li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.paging {
  margin-bottom: 24px;
  width: 100%;
}

.paging:after {
  content: "";
  display: table;
  clear: both;
}

.paging__item {
  display: inline-block;
  position: relative;
  background-color: #3164BC;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding-left: 1em;
  padding-right: 1em;
}

.paging__item a {
  font-size: 12px;
  line-height: 2;
  color: #fff;
}

.paging__item--prev {
  float: left;
  padding-left: 1.5em;
}

.paging__item--prev:before {
  position: absolute;
  left: 1em;
  top: 50%;
  content: "";
  color: #fff;
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.paging__item--next {
  float: right;
  padding-right: 1.5em;
}

.paging__item--next:after {
  position: absolute;
  right: 1em;
  top: 50%;
  content: "";
  color: #fff;
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.relation-site#relation01 {
  margin-top: 60px;
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .relation-site#relation01 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.relation-site-item {
  padding: 8px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.relation-site-item__thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6%;
  overflow: hidden;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  background-color: #f4f4f4;
}

.relation-site-item__thumbnail img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.relation-site-item .area {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: #3164BC;
}

.relation-site-item .title {
  overflow: hidden;
  min-height: 41.6px;
  font-size: 13px;
  line-height: 1.6;
  color: #444444;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 8px;
}

.relation-site-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media screen and (max-width: 960px) {
  .relation-site-item {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
  }
  .relation-site-item__thumbnail {
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -ms-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    height: 100px;
  }
  .relation-site-item .area {
    font-size: 14px;
  }
  .relation-site-item .title {
    font-size: 12px;
    min-height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 57.6px;
  }
}

.relation-site .c-text-link {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.relation-site#relation02 {
  margin-top: 60px;
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .relation-site#relation02 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.relation-site-item p.text {
  font-size: 10px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  outline: none;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 40px;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  margin-right: 18px;
  margin-left: 18px;
  outline: none;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

@media screen and (max-width: 960px) {
  .slick-slide {
    margin-left: 4px;
    margin-right: 4px;
  }
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  display: block;
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  font-size: 14px;
  color: #3164BC;
}

.slick-prev {
  left: -25px;
}

.slick-prev:before {
  content: "";
  font-family: "icomoon",sans-serif;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.slick-next {
  right: -25px;
}

.slick-next:before {
  content: "";
  font-family: "icomoon",sans-serif;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -25px;
  left: auto;
  width: 100%;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background-color: #E2E2E2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

.slick-dots li.slick-active button {
  background-color: #3164BC;
}

.top-nav {
  position: relative;
  height: 180px;
}

.top-nav:after {
  content: "";
  display: table;
  clear: both;
}

.top-nav ul {
  position: absolute;
  top: -35px;
}

.top-nav-item {
  position: relative;
  width: 183px;
  height: 180px;
  float: left;
  display: table;
  line-height: 1.4;
  vertical-align: top;
  text-align: center;
  margin-right: 0px;
}

.top-nav-item:last-child {
  margin-right: 0;
}

.top-nav-item:after {
  content: "";
  display: block;
  z-index: 2;
}

.top-nav-item__partner:after {
  position: absolute;
  top: 30px;
  right: auto;
  bottom: auto;
  left: 44px;
  background: url("../img/nav-motif01.png") no-repeat;
  width: 27px;
  height: 27px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__partner:after {
    background: url("../img/nav-motif01@2x.png") no-repeat;
    background-size: 27px 27px;
  }
}

.top-nav-item__supporter:after {
  position: absolute;
  top: 120px;
  right: auto;
  bottom: auto;
  left: 40px;
  background: url("../img/nav-motif02.png") no-repeat;
  width: 38px;
  height: 24px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__supporter:after {
    background: url("../img/nav-motif02@2x.png") no-repeat;
    background-size: 38px 24px;
  }
}

.top-nav-item__hashtag:after {
  position: absolute;
  top: 120px;
  right: auto;
  bottom: auto;
  left: 80px;
  background: url("../img/nav-motif03.png") no-repeat;
  width: 45px;
  height: 30px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__hashtag:after {
    background: url("../img/nav-motif03@2x.png") no-repeat;
    background-size: 45px 30px;
  }
}

.top-nav-item__eventmap:after {
  position: absolute;
  top: 120px;
  right: auto;
  bottom: auto;
  left: 53px;
  background: url("../img/nav-motif04.png") no-repeat;
  width: 63px;
  height: 26px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__eventmap:after {
    background: url("../img/nav-motif04@2x.png") no-repeat;
    background-size: 63px 26px;
  }
}

.top-nav-item__relation01:after {
  position: absolute;
  top: 36px;
  right: auto;
  bottom: auto;
  left: 95px;
  background: url("../img/nav-motif05.png") no-repeat;
  width: 37px;
  height: 31px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__relation01:after {
    background: url("../img/nav-motif05@2x.png") no-repeat;
    background-size: 37px 31px;
  }
}

.top-nav-item__relation02:after {
  position: absolute;
  top: 110px;
  right: auto;
  bottom: auto;
  left: 108px;
  background: url("../img/nav-motif06.png") no-repeat;
  width: 29px;
  height: 30px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav-item__relation02:after {
    background: url("../img/nav-motif06@2x.png") no-repeat;
    background-size: 29px 30px;
  }
}

.top-nav-item a {
  position: relative;
  z-index: 3;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}

.top-nav:after {
  content: "";
  display: block;
  position: absolute;
  top: 63px;
  right: auto;
  bottom: auto;
  left: -68px;
  background: url("../img/top-motif.png") no-repeat;
  width: 1234px;
  height: 158px;
  margin-left: auto;
  margin-right: auto;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .top-nav:after {
    background: url("../img/top-motif@2x.png") no-repeat;
    background-size: 1234px 158px;
  }
}

@media screen and (max-width: 960px) {
  .top-nav {
    display: none;
  }
}

.sea-surface {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 2;
}

#main-visual {
  position: relative;
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  z-index: 2;
}

#main-visual:before {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  right: -280px;
  bottom: auto;
  left: auto;
  background: url("../img/main-visual-motif01.png") no-repeat;
  width: 325px;
  height: 181px;
  z-index: 1;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  #main-visual:before {
    background: url("../img/main-visual-motif01@2x.png") no-repeat;
    background-size: 325px 181px;
  }
}

#main-visual:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: -100px;
  background: url("../img/main-visual-motif02.png") no-repeat;
  width: 124px;
  height: 141px;
  z-index: 1;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  #main-visual:after {
    background: url("../img/main-visual-motif02@2x.png") no-repeat;
    background-size: 124px 141px;
  }
}

@media screen and (max-width: 960px) {
  #main-visual {
    width: 100%;
    max-width: 100%;
    min-width: 290px;
    padding-top: 4px;
    margin-bottom: 60px;
  }
  #main-visual:before, #main-visual:after {
    content: none;
  }
}

.slider__item {
  position: relative;
  overflow: hidden;
  font-size: 0;
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.165, 0.84, 0.44, 1) 500ms;
}

.slider__item.visible {
  opacity: 1;
}

.slider__item a > img,
.slider__item a > iframe {
  margin: 1px;
}

.slider__item a > img.youtube_thumbnail {
  display: none;
}

.slider__item-title {
  width: 100%;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0 136px 0 114px;
  background-color: #3164BC;
  background: url("../img/top_banner_bg.png") no-repeat;
  width: 100%;
  height: 66px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .slider__item-title {
    background: url("../img/top_banner_bg@2x.png") no-repeat;
    background-size: 100% 66px;
  }
}

.slider__item-title span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 46px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slider__item a {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 50px;
}

.slider__itemiframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .slider__item-title {
    padding: 0 22% 0 22%;
    background: url("../img/top_banner_bg.png") no-repeat;
    width: 100%;
    height: 52px;
  }
}

@media screen and (max-width: 960px) and (min--moz-device-pixel-ratio: 1.3), screen and (max-width: 960px) and (-o-min-device-pixel-ratio: 2.6 / 2), screen and (max-width: 960px) and (-webkit-min-device-pixel-ratio: 1.3), screen and (max-width: 960px) and (min-resolution: 1.3), screen and (max-width: 960px) and (min-resolution: 1.3dppx) {
  .slider__item-title {
    background: url("../img/top_banner_bg@2x.png") no-repeat;
    background-size: 100% 52px;
  }
}

@media screen and (max-width: 960px) {
  .slider__item-title span {
    font-size: 12px;
    line-height: 36px;
  }
  .slider__item a {
    padding-bottom: 32px;
  }
  .slider__item a > iframe {
    display: none;
  }
  .slider__item a > img.youtube_thumbnail {
    display: block;
  }
}

@media screen and (max-width: 720px) {
  .slider__item-title {
    padding: 0 20% 0 20%;
    background: url("../img/top_banner_bg.png") no-repeat;
    width: 100%;
    height: 54px;
  }
}

@media screen and (max-width: 720px) and (min--moz-device-pixel-ratio: 1.3), screen and (max-width: 720px) and (-o-min-device-pixel-ratio: 2.6 / 2), screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio: 1.3), screen and (max-width: 720px) and (min-resolution: 1.3), screen and (max-width: 720px) and (min-resolution: 1.3dppx) {
  .slider__item-title {
    background: url("../img/top_banner_bg@2x.png") no-repeat;
    background-size: 100% 54px;
  }
}

@media screen and (max-width: 720px) {
  .slider__item-title span {
    font-size: 12px;
    line-height: 40px;
  }
  .slider__item a {
    padding-bottom: 40px;
  }
  .slider__item a > iframe {
    display: none;
  }
  .slider__item a > img.youtube_thumbnail {
    display: block;
  }
}

#main-topTxt {
  width: 1100px;
  margin: 0 auto;
  padding: 0 0 70px;
  display: table;
}

#main-topTxt a:hover {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}

#main-topTxt .mainTxtbox {
  display: table-cell;
  color: #3164bd;
  padding: 0 20px 0 0;
  font-weight: bold;
  line-height: 1.6;
  width: 60%;
  vertical-align: top;
}

#main-topTxt .mainBtnbox {
  display: table-cell;
  border-collapse: separate;
  border-spacing: 10px 0;
}

#main-topTxt .mainBtnbox a {
  background: #3164bd;
  color: #fff;
  display: table-cell;
  padding: 15px 10px;
  text-align: center;
  width: 20%;
  vertical-align: middle;
  line-height: 1.4;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}

@media all and (min-width: 961px) {
  .count-navB {
    display: none;
  }
}

@media all and (max-width: 960px) {
  #main-topTxt {
    width: 100%;
    max-width: 600px;
    font-size: 12px;
    padding: 0 0 100px;
  }
  #main-topTxt .mainTxtbox {
    display: block;
    width: 100%;
    padding: 18px;
  }
  #main-topTxt .mainBtnbox {
    display: block;
    padding: 0 5px;
  }
  #main-topTxt .mainBtnbox a {
    font-size: 11px;
  }
  .count-navB .count-nav-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 15px;
    border-collapse: separate;
    border-spacing: 5px 0;
  }
  .count-navB .count-nav-block__count {
    font-size: 12px;
    font-weight: bold;
    color: #222222;
  }
  .count-navB .count-nav-block__count .num {
    font-size: 19px;
    color: #E50113;
    padding-left: 4px;
  }
  .count-navB .count-nav-block__link {
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    margin-top: .5em;
  }
  a.btn-sns {
    background: #3164bd;
    color: #fff;
    padding: 10px 0;
    display: block;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
  a.btn-ichiran {
    background: #3164bd;
    color: #fff;
    width: 40%;
    padding: 10px 0;
    display: block;
    float: left;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
  a.btn-partner {
    background: #e20001;
    color: #fff;
    width: 58%;
    padding: 10px 0;
    display: block;
    float: right;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
}

.bubble {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.wobbly-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.wobbly-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.side-attention {
  margin-bottom: 60px;
}

.side-attention-item {
  width: 100%;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 8px;
  margin-bottom: 10px;
}

.side-attention-item:last-child {
  margin-bottom: 0;
}

.side-attention-item a {
  display: table;
  width: 100%;
}

.side-attention-item__thumbnail {
  display: table-cell;
  vertical-align: top;
  width: 100px;
}

.side-attention-item__thumbnail img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.side-attention-item__info {
  display: table-cell;
  vertical-align: top;
  padding-left: 8px;
}

.side-attention-item__info .title {
  font-size: 14px;
  font-weight: bold;
  color: #222222;
  line-height: 1.4;
  margin-bottom: 8px;
}

.side-attention-item__info .text {
  font-size: 12px;
  line-height: 1.6;
  color: #444444;
}

.side-attention-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media screen and (max-width: 960px) {
  .side-attention {
    margin-bottom: 48px;
  }
  .side-attention-item .title {
    color: #3164BC;
  }
}

.side-pickup {
  margin-bottom: 60px;
}

.side-pickup-item {
  width: 100%;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 8px;
  margin-bottom: 10px;
}

.side-pickup-item:last-child {
  margin-bottom: 0;
}

.side-pickup-item__thumbnail {
  width: 100%;
  height: auto;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  margin-bottom: 8px;
}

.side-pickup-item__thumbnail img {
  width: 100%;
  height: auto;
}

.side-pickup-item__info .title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 8px;
}

.side-pickup-item__info .text {
  font-size: 12px;
  line-height: 1.6;
  color: #444444;
}

.side-pickup-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media screen and (max-width: 960px) {
  .side-pickup {
    margin-bottom: 48px;
  }
  .side-pickup-item {
    width: 100%;
  }
  .side-pickup-item a {
    display: table;
    width: 100%;
  }
  .side-pickup-item__thumbnail {
    display: table-cell;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 66px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
  }
  .side-pickup-item__thumbnail img {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .side-pickup-item__info {
    display: table-cell;
    vertical-align: top;
    padding-left: 8px;
  }
  .side-pickup-item__info .title {
    color: #3164BC;
  }
}

.side-ranking {
  margin-bottom: 60px;
}

.side-ranking-item {
  width: 100%;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 8px;
  margin-bottom: 10px;
}

.side-ranking-item:last-child {
  margin-bottom: 0;
}

.side-ranking-item a {
  display: table;
  width: 100%;
}

.side-ranking-item__thumbnail {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 66px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.side-ranking-item__thumbnail img {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.side-ranking-item__info {
  float: right;
  width: calc(100% - 100px);
  padding-left: 8px;
}

.side-ranking-item__info .title {
  font-size: 14px;
  font-weight: bold;
  color: #222222;
  line-height: 1.4;
}

.side-ranking-item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media screen and (max-width: 960px) {
  .side-ranking {
    margin-bottom: 48px;
  }
}

.side-sns {
  margin-bottom: 60px;
}

.side-sns__item {
  width: 100%;
  background-color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 8px;
  margin-bottom: 10px;
}

.side-sns__item:after {
  content: "";
  display: table;
  clear: both;
}

.side-sns__item:last-child {
  margin-bottom: 0px;
}

.side-sns__icon {
  float: left;
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 42px;
  text-align: center;
  margin-right: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.side-sns__icon--facebook {
  background-color: #3B4D9A;
}

.side-sns__icon--twitter {
  background-color: #6EA9F3;
}

.side-sns__icon--instagram {
  background-color: #d80056;
}

.side-sns__icon--youtube {
  background-color: #D43C1F;
}

.side-sns__name {
  margin-bottom: 4px;
}

.side-sns__id {
  font-size: 12px;
  color: #888888;
  margin-top: .5em;
}

@media screen and (max-width: 960px) {
  .side-sns {
    margin-bottom: 48px;
  }
  .side-sns__item {
    margin-bottom: 8px;
  }
}

.side-tag {
  margin-bottom: 60px;
}

.side-tag .tag-list {
  background: #fff;
  font-size: 0;
  padding: 16px 12px 12px 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.side-tag .tag-list li {
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 4px;
}

.side-tag .tag-list li a {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  padding-left: 4px;
  padding-right: 4px;
  background-color: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.side-tag .tag-list li a:hover {
  background-color: #2c59a8;
}

@media screen and (max-width: 960px) {
  .side-tag {
    margin-bottom: 48px;
  }
}



.category-tag-list div.cat-detail {
  padding:0px 0px 16px 0px; 
}

.category-tag-list div.cat-list {
  border-top:1px solid #E5E5E5; 
  padding:16px 0px 0px 0px; 
  margin-top:16px;
}

.category-tag-list li {
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 4px;
}

.category-tag-list li a {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  padding-left: 4px;
  padding-right: 4px;
  background-color: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.category-tag-list li a:hover {
  background-color: #2c59a8;
}


/** page */
.about-block {
  margin-bottom: 36px;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.about-block p {
  line-height: 1.8;
}

.about-block ol {
  margin-top: 24px;
  margin-left: 32px;
}

.about-block ol li {
  list-style-type: decimal;
  margin-bottom: 16px;
}

.about-block ul.disc {
  margin-top: 24px;
  margin-left: 32px;
}

.about-block ul.disc li {
  list-style-type: disc;
  margin-bottom: 16px;
}

.about-block strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.about-block dl {
  padding-left: 24px;
  margin-bottom: 32px;
}

.about-block dl dt {
  font-weight: bold;
  margin-bottom: 8px;
}

.about-block dl dd {
  padding-left: 24px;
  margin-bottom: 16px;
}

@media screen and (max-width: 960px) {
  .about-block {
    margin-bottom: 48px;
  }
}

.nippon-foundation-block__logo {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}

.nippon-foundation-block__link {
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 720px) {
  .nippon-foundation-block__logo {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}

.sns-official {
  /*-webkit-width: calc(100% + 60px);
  -moz-width: calc(100% + 60px);
  -ms-width: calc(100% + 60px);
  -o-width: calc(100% + 60px);
  width: calc(100% + 60px);*/
  width:100%;
  display: flex;
  /*	
  display: table;
  table-layout: fixed;
  border-spacing: 30px 0;
  margin-left: -30px;*/
  margin-bottom: 24px;
  justify-content: space-between;
}





.sns-official__item {
  width: 24%;
  position: relative;
  /*display: table-cell;*/
  vertical-align: top;
  border: 1px solid #E3E3E3;
  padding: 16px;
  
}

.sns-official__item .account {
  margin-bottom: 16px;
}

.sns-official__item .account:after {
  content: "";
  display: table;
  clear: both;
}

.sns-official__item .account_icon {
  float: left;
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 42px;
  text-align: center;
  margin-right: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.sns-official__item .account_icon--facebook {
  background-color: #3B4D9A;
}

.sns-official__item .account_icon--twitter {
  background-color: #6EA9F3;
}

.sns-official__item .account_icon--instagram {
  background-color: #D80056;
}

.sns-official__item .account_icon--youtube {
  background-color: #D43C1F;
}

.sns-official__item .account_name {
  line-height: 1.2;
  padding-top:10px; 
  padding-bottom: 10px;
}

.sns-official__item .account_id {
  font-size: 12px;
  line-height: 1;
  color: #888888;
}

.sns-official__item .text {
  line-height: 1.4;
  margin-bottom: 16px;
}

@media screen and (max-width: 720px) {
  .sns-official {
    width: 100%;
    display: block;
    border-spacing: 0;
    margin-left: 0;
    margin-bottom: 0;
  }
  .sns-official__item {
    width: 100%;
    display: block;
    margin-bottom: 24px;
    padding: 15px;
  }
  .sns-official__item:last-child {
    margin-bottom: 0;
  }
}

.container-dance {
  font-size: 16px;
  /* read */
  /* button */
  /* area-block */
  /* white-contents */
  /* thumbnail-play */
}

@media screen and (max-width: 960px) {
  .container-dance {
    font-size: 14px;
  }
}

.container-dance a:focus, .container-dance *:focus {
  outline: none;
}

.container-dance .read {
  color: #3164BC;
  font-weight: bold;
  text-align: center;
}

.container-dance .read p {
  position: relative;
  display: inline-block;
  line-height: 2;
  margin-left: 20px;
  margin-right: 20px;
  vertical-align: middle;
}

.container-dance .read p:before, .container-dance .read p:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 41px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  vertical-align: middle;
}

.container-dance .read p:before {
  background-image: url(../img/dance/vector_kirakira.png);
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
}

.container-dance .read p:after {
  background-image: url(../img/dance/vector_kirakira_invert.png);
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%) translateX(100%);
  -moz-transform: translateY(-50%) translateX(100%);
  -ms-transform: translateY(-50%) translateX(100%);
  -o-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
}

@media screen and (max-width: 960px) {
  .container-dance .read p {
    margin-left: 10px;
    margin-right: 10px;
  }
  .container-dance .read p:before {
    left: -15px;
  }
  .container-dance .read p:after {
    right: -15px;
  }
}

.container-dance .button {
  width: 100%;
  height: 100px;
  line-height: 100px;
  background-image: url(../img/dance/button-bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  -ms-border-radius: 17px;
  border-radius: 17px;
  transition: .2s ease-out;
  font-size: 24px;
}

.container-dance .button a {
  width: 100%;
  height: auro;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.container-dance .button a:after {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background-image: url(../img/dance/icon_circle-chevron.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  vertical-align: -4px;
  margin-left: 16px;
}

.container-dance .button:hover {
  opacity: 0.95;
  filter: alpha(opacity=95);
  background-size: 110% auto;
}

@media screen and (max-width: 960px) {
  .container-dance .button {
    position: relative;
    height: 48px;
    font-size: 14px;
    line-height: 48px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
  }
  .container-dance .button a:after {
    position: absolute;
    top: 0;
    right: 24px;
    width: 20px;
    height: 48px;
    background-position: center;
  }
  .container-dance .button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    background-size: 100% auto;
  }
}

.container-dance .area-block {
  background-color: #3164BC;
  color: #fff;
  text-align: center;
  line-height: 33px;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .container-dance .area-block {
    font-size: 12px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.container-dance .white-contents {
  padding: 80px 80px 10px;
}

@media screen and (max-width: 960px) {
  .container-dance .white-contents {
    padding: 0;
    background-color: transparent;
  }
}

.container-dance .thumbnail-play {
  position: relative;
}

.container-dance .thumbnail-play:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background-image: url(../img/dance/icon_play.png);
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: center;
  transition: .8s ease-out;
}

.container-dance .main-visual {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 70.9%;
  background-image: url(../img/dance/main-visual.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual {
    padding-top: 101.09375%;
    background-image: url(../img/dance/main-visual_sp.png);
  }
}

.container-dance .main-visual .title {
  position: absolute;
  top: 5.897435%;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .title {
    display: none;
  }
}

.container-dance .main-visual .kamishibai {
  position: absolute;
  right: 110px;
  bottom: 140px;
  width: 363px;
  height: 388px;
  background-image: url(../img/dance/main_kamishibai-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  padding-top: 86px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .kamishibai {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    background-image: none;
    background-color: #3164BC;
    padding: 24px 15px;
    text-align: left;
  }
  .container-dance .main-visual .kamishibai:after {
    content: "";
    display: table;
    clear: both;
  }
}

.container-dance .main-visual .kamishibai .image a {
  display: block;
}

.container-dance .main-visual .kamishibai .thumbnail {
  position: absolute;
  width: 100%;
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .kamishibai .thumbnail {
    position: relative;
    float: left;
    width: 35%;
    margin-top: 0;
  }
  .container-dance .main-visual .kamishibai .thumbnail:after {
    background-size: 30%;
  }
}

.container-dance .main-visual .kamishibai .read {
  color: #fff;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .kamishibai .read {
    position: relative;
    float: right;
    overflow: hidden;
    width: 63%;
  }
  .container-dance .main-visual .kamishibai .read span {
    font-size: 18px;
    font-weight: bold;
    display: block;
  }
}

.container-dance .main-visual .kamishibai .buttons {
  position: absolute;
  bottom: 22px;
  width: 100%;
}

.container-dance .main-visual .kamishibai .buttons > p {
  display: inline-block;
}

.container-dance .main-visual .kamishibai .buttons > p a {
  color: #fff;
  line-height: 20px;
}

.container-dance .main-visual .kamishibai .buttons > p a:hover {
  font-weight: bold;
}

.container-dance .main-visual .kamishibai .buttons > p a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  margin-right: 7px;
  vertical-align: -4px;
}

.container-dance .main-visual .kamishibai .buttons .button-video a:before {
  background-image: url(../img/dance/icon_circle-arrow.png);
}

.container-dance .main-visual .kamishibai .buttons .button-pdf a:before {
  background-image: url(../img/dance/icon_pdf.png);
}

.container-dance .main-visual .kamishibai .buttons .button-video:after {
  content: "|";
  display: inline-block;
  margin-left: 30px;
  margin-right: 30px;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .kamishibai .buttons {
    position: relative;
    bottom: auto;
    float: right;
    overflow: hidden;
    width: 63%;
    margin-top: 10px;
  }
  .container-dance .main-visual .kamishibai .buttons:after {
    content: "";
    display: table;
    clear: both;
  }
  .container-dance .main-visual .kamishibai .buttons > p {
    border: 1px solid #fff;
    width: 50%;
    float: left;
    text-align: center;
  }
  .container-dance .main-visual .kamishibai .buttons > p a {
    font-size: 10px;
  }
  .container-dance .main-visual .kamishibai .buttons > p a:before {
    width: 10px;
    height: 10px;
    margin-right: 3px;
    vertical-align: -1px;
  }
  .container-dance .main-visual .kamishibai .buttons .button-video {
    border-right: none;
  }
  .container-dance .main-visual .kamishibai .buttons .button-video:after {
    content: none;
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.container-dance .main-visual .motif {
  position: absolute;
  animation: fuwafuwa .8s ease-in-out infinite alternate;
}

.container-dance .main-visual .motif.motif01 {
  left: 36.363636%;
  bottom: 10.89743%;
  animation-duration: 1.1s;
}

.container-dance .main-visual .motif.motif02 {
  left: -1.1818181%;
  bottom: 33.333333%;
  animation-duration: 1.3s;
}

.container-dance .main-visual .motif.motif03 {
  right: 3.6363636%;
  top: 27.5641%;
  animation-duration: 1.5s;
}

.container-dance .main-visual .motif.deme {
  right: 2.727%;
  bottom: -0.51%;
  animation-duration: .1s;
}

@media screen and (max-width: 960px) {
  .container-dance .main-visual .motif {
    display: none;
  }
  .container-dance .main-visual .motif.deme {
    display: block;
    right: 0;
    bottom: 20%;
    width: 72px;
    animation: none;
  }
}

.container-dance .page-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 50px;
}

.container-dance .page-nav .button {
  width: 49%;
}

@media screen and (max-width: 960px) {
  .container-dance .page-nav {
    display: block;
    margin-bottom: 30px;
  }
  .container-dance .page-nav .button {
    width: 100%;
    margin-top: 12px;
  }
}

.container-dance .omnibus-area {
  margin-top: 50px;
  margin-bottom: 50px;
}

.container-dance .omnibus-area .item {
  position: relative;
  transition: opacity .2s ease-out;
}

.container-dance .omnibus-area .item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.container-dance .omnibus-area .item .thumbnail img {
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}

.container-dance .omnibus-area .item .title-area {
  position: relative;
  font-size: 22px;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 24px;
  background-color: #3164BC;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
}

.container-dance .omnibus-area .item .title-area:before {
  position: absolute;
  top: -15px;
  content: "";
  width: 100%;
  height: auto;
  padding-top: 3%;
  display: block;
  background-image: url(../img/dance/item-wave_large.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  z-index: 10;
}

.container-dance .omnibus-area .item .title-area p {
  color: #fff;
  font-weight: bold;
}

.container-dance .omnibus-area .item .motif {
  position: absolute;
  animation: fuwafuwa .8s ease-in-out infinite alternate;
  z-index: 15;
}

.container-dance .omnibus-area .item .motif.motif04 {
  left: -3.82978%;
  bottom: 7.933%;
  animation-duration: 1.1s;
}

.container-dance .omnibus-area .item .motif.motif05 {
  right: -5.851%;
  bottom: -4.9586%;
  animation-duration: 1.3s;
}

.container-dance .omnibus-area .item .balloon {
  position: absolute;
  left: -9%;
  top: -17%;
}

@media screen and (max-width: 960px) {
  .container-dance .omnibus-area {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .container-dance .omnibus-area .item .title-area {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 16px;
  }
  .container-dance .omnibus-area .item .title-area:before {
    top: -10px;
    background-image: url(../img/dance/item-wave.png);
  }
  .container-dance .omnibus-area .item .motif {
    width: 80px;
  }
  .container-dance .omnibus-area .item .motif.motif04 {
    left: -10px;
    bottom: 0;
    animation-duration: 1.1s;
  }
  .container-dance .omnibus-area .item .motif.motif05 {
    right: -10px;
    bottom: 0;
    animation-duration: 1.1s;
  }
  .container-dance .omnibus-area .item .balloon {
    width: 110px;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-75%) translateX(-20%);
    -moz-transform: translateY(-75%) translateX(-20%);
    -ms-transform: translateY(-75%) translateX(-20%);
    -o-transform: translateY(-75%) translateX(-20%);
    transform: translateY(-75%) translateX(-20%);
  }
}

.container-dance .popup-area {
  margin-top: 50px;
  margin-bottom: 50px;
}

.container-dance .popup-area:after {
  content: "";
  display: table;
  clear: both;
}

.container-dance .popup-area .item {
  float: left;
  position: relative;
  width: 48%;
  transition: opacity .2s ease-out;
}

.container-dance .popup-area .item:last-child {
  float: right;
}

.container-dance .popup-area .item:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.container-dance .popup-area .item .thumbnail img {
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}

.container-dance .popup-area .item .title-area {
  position: relative;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 16px;
  background-color: #3164BC;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
}

.container-dance .popup-area .item .title-area:before {
  position: absolute;
  top: -10px;
  content: "";
  width: 100%;
  height: auto;
  padding-top: 3%;
  display: block;
  background-image: url(../img/dance/item-wave.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  z-index: 10;
}

.container-dance .popup-area .item .title-area p {
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .container-dance .popup-area {
    margin-top: 30px;
    margin-bottom: 5px;
  }
  .container-dance .popup-area .item {
    float: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .container-dance .popup-area .item .thumbnail img {
    width: 100%;
    height: auto;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
  .container-dance .popup-area .item .title-area {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
  }
  .container-dance .popup-area .item .title-area:before {
    top: -6px;
  }
}

.container-dance section.top-block {
  padding-bottom: 70px;
}

.container-dance section.top-block .dl-area {
  text-align: center;
  color: #3164BC;
  font-weight: bold;
}

.container-dance section.top-block .dl-area .dl-button {
  width: 245px;
  height: 45px;
  font-size: 12px;
  line-height: 45px;
  margin: 16px auto 0;
  background-color: #3164BC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  transition: opacity .4s ease;
}

.container-dance section.top-block .dl-area .dl-button:hover {
  background-color: #2c59a8;
}

.container-dance section.top-block .dl-area .dl-button a {
  display: block;
  color: #fff;
}

.container-dance section.top-block .dl-area .dl-button a:before {
  content: "";
  width: 14px;
  height: 12px;
  display: inline-block;
  background-image: url(../img/dance/icon_download.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  margin-right: 12px;
}

@media screen and (max-width: 960px) {
  .container-dance section.top-block {
    padding-bottom: 40px;
  }
  .container-dance section.top-block .dl-area .dl-button {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
  }
}

.container-dance section.block {
  border-top: 1px solid #9ac5e7;
  padding-top: 70px;
  padding-bottom: 70px;
}

.container-dance section.block--omnibus {
  padding-bottom: 0;
}

@media screen and (max-width: 960px) {
  .container-dance section.block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .container-dance section.block--omnibus {
    padding-bottom: 0;
  }
}

.container-dance section.block h2.headline {
  font-size: 36px;
  color: #3164BC;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.container-dance section.block h2.headline:before {
  content: "";
  width: 43px;
  height: 38px;
  display: inline-block;
  background-image: url(../img/dance/vecor_note1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  margin-right: 10px;
}

.container-dance section.block h2.headline:after {
  content: "";
  width: 25px;
  height: 30px;
  display: inline-block;
  background-image: url(../img/dance/vecor_note2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  margin-left: 4px;
}

@media screen and (max-width: 960px) {
  .container-dance section.block h2.headline {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .container-dance section.block h2.headline:before, .container-dance section.block h2.headline:after {
    content: none;
  }
}

.container-dance section.block .read {
  text-align: center;
  line-height: 2;
}

.container-dance section.block .button {
  width: 500px;
  height: 86px;
  line-height: 86px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .container-dance section.block .button {
    width: 100%;
    height: 48px;
    line-height: 48px;
  }
}

.container-dance-under .white-contents {
  padding-top: 30px;
}

@media screen and (max-width: 960px) {
  .container-dance-under .white-contents {
    padding-top: 0;
  }
}

.container-dance-under .main-visual {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 31.9090%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
}

@media screen and (max-width: 960px) {
  .container-dance-under .main-visual {
    padding-top: 37.34375%;
  }
}

.container-dance-under .main-visual.main-visual-dance {
  background-image: url(../img/dance/main-visual-dance.png);
}

@media screen and (max-width: 960px) {
  .container-dance-under .main-visual.main-visual-dance {
    background-image: url(../img/dance/main-visual-dance_sp.png);
  }
}

.container-dance-under .main-visual.main-visual-kamishibai {
  background-image: url(../img/dance/main-visual-kamishibai.png);
}

@media screen and (max-width: 960px) {
  .container-dance-under .main-visual.main-visual-kamishibai {
    background-image: url(../img/dance/main-visual-kamishibai_sp.png);
  }
}

.container-dance-under .main-visual .title {
  position: absolute;
  top: 64.38746%;
  left: 0;
  display: inline-block;
  width: auto;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  padding: 16px 20px 16px 40px;
  line-height: 1;
  background-color: #3164BC;
  -webkit-box-shadow: 4px 5px 0px 3px #0f3473;
  -moz-box-shadow: 4px 5px 0px 3px #0f3473;
  -ms-box-shadow: 4px 5px 0px 3px #0f3473;
  -o-box-shadow: 4px 5px 0px 3px #0f3473;
  box-shadow: 4px 5px 0px 3px #0f3473;
}

@media screen and (max-width: 960px) {
  .container-dance-under .main-visual .title {
    display: block;
    top: 64.4%;
    font-size: 10px;
    padding: 6px;
    -webkit-box-shadow: 2px 2px 0px 1px #0f3473;
    -moz-box-shadow: 2px 2px 0px 1px #0f3473;
    -ms-box-shadow: 2px 2px 0px 1px #0f3473;
    -o-box-shadow: 2px 2px 0px 1px #0f3473;
    box-shadow: 2px 2px 0px 1px #0f3473;
  }
}

.container-dance-under .white-contents {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 70px;
}

@media screen and (max-width: 960px) {
  .container-dance-under .white-contents {
    background: none;
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

.container-dance-under .white-contents .link {
  text-align: right;
  margin-right: 20px;
  margin-bottom: 70px;
}

@media screen and (max-width: 960px) {
  .container-dance-under .white-contents .link {
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.container-dance-under .white-contents .omnibus-area {
  margin-bottom: 0;
}

.container-dance-under .nav-area {
  background-color: #f3f3f3;
  padding: 30px 80px;
}

@media screen and (max-width: 960px) {
  .container-dance-under .nav-area {
    padding: 0;
    background-color: transparent;
  }
}

.container-dance-under .area-nav {
  width: 100%;
  border-collapse: collapse;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background-color: #fff;
}

.container-dance-under .area-nav .item {
  width: 12.5%;
  text-align: center;
  font-weight: bold;
  border: 3px solid #3164BC;
  border-left: none;
  padding-top: 30px;
  padding-bottom: 24px;
}

.container-dance-under .area-nav .item:first-child {
  border-left: 3px solid #3164BC;
}

.container-dance-under .area-nav .item a {
  display: block;
}

.container-dance-under .area-nav .item a:after {
  content: "";
  font-family: "icomoon",sans-serif;
  display: block;
  transform: rotate(90deg);
  font-size: 10px;
  margin-top: 4px;
}

@media screen and (max-width: 960px) {
  .container-dance-under .area-nav {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .container-dance-under .area-nav .item {
    width: 25%;
    border: 1.5px solid #3164BC;
    border-left: none;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .container-dance-under .area-nav .item:first-child, .container-dance-under .area-nav .item:nth-child(5) {
    border: 1.5px solid #3164BC;
  }
  .container-dance-under .area-nav .item.sec-stg {
    border-top: none;
  }
}

.c-post-archive.event-archive-top {
  margin-bottom: 18px;
}

.event-info {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.event-info dl {
  display: table;
  font-size: 13px;
  line-height: 1.4;
  color: #444444;
  margin-bottom: 4px;
}

.event-info dl:last-child {
  margin-bottom: 0;
}

.event-info dl dt {
  display: table-cell;
  vertical-align: top;
  width: 5em;
}

.event-info dl dd {
  vertical-align: top;
  display: table-cell;
}

@media screen and (max-width: 960px) {
  .event-info {
    padding-bottom: 0px;
    margin-top: 8px;
    margin-bottom: 0;
    border-bottom: none;
  }
  .event-info dl {
    display: block;
  }
  .event-info dl dt,
  .event-info dl dd {
    width: auto;
    display: block;
  }
}

.event-category {
  width: 100%;
}

.event-category li {
  display: inline-block;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
  padding-left: .5em;
  margin-left: 16px;
  margin-right: 1em;
}

.event-category li:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-position: 0 0;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
}

.event-category--study:before {
  background-image: url(../img/event-action01@2x.png);
}

.event-category--beauty:before {
  background-image: url(../img/event-action02@2x.png);
}

.event-category--eat:before {
  background-image: url(../img/event-action03@2x.png);
}

.event-category--enjoy:before {
  background-image: url(../img/event-action04@2x.png);
}

.event-category--describe:before {
  background-image: url(../img/event-action05@2x.png);
}

@media screen and (max-width: 960px) {
  .event-category {
    display: none;
  }
}

h3.ttl-areaSearch {
  text-align: center;
  font-size: 18px;
  color: #3164bd;
  cursor: pointer;
}

h3.ttl-areaSearch span.open {
  background: url(../img/icon_ttl_open.png) right center no-repeat;
}

@media screen and (max-width: 960px) {
  h3.ttl-areaSearch span.open {
    background: url(../img/icon_ttl_open_sp.png) right center no-repeat;
    background-size: 17px 17px;
  }
}

h3.ttl-areaSearch span {
  padding: 0 30px;
  background: url(../img/icon_ttl_close.png) right center no-repeat;
}

@media screen and (max-width: 960px) {
  h3.ttl-areaSearch span {
    background: url(../img/icon_ttl_close_sp.png) right center no-repeat;
    background-size: 17px 17px;
  }
}

.areaLsit-contents {
  padding-top: 20px;
  padding-bottom: 20px;
}

.areaListBox {
  display: none;
}

.areaListBox a:hover {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}

dl.areaList {
  margin: 20px 0 0;
}

dl.areaList dt {
  float: left;
  line-height: 1.6;
  padding: 0 0 15px;
  font-weight: bold;
  font-size: 13px;
}

@media screen and (max-width: 960px) {
  dl.areaList dt {
    float: none;
    color: #3164bd;
    padding: 5px 0 5px;
    margin: 0 0 10px;
    border-bottom: 2px solid #3164bd;
    font-size: 15px;
  }
}

dl.areaList dd {
  margin-left: 65px;
  padding: 0 0 15px;
  line-height: 1.6;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  dl.areaList dd {
    margin-left: 0;
  }
}

dl.areaList dd a {
  color: #555;
  font-size: 13px;
  display: block;
  float: left;
  padding: 0 13px;
  margin: 0 0 5px;
  border-right: 1px solid #ddd;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  dl.areaList dd a {
    border-right: none;
    padding: 0 13px 0 0;
  }
}

.btn-zenkoku a {
  display: block;
  width: 300px;
  margin: 30px auto 0;
  background: #1866c3;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  clear: both;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

@media screen and (max-width: 960px) {
  .btn-zenkoku a {
    width: 200px;
    margin: 0px auto 0;
  }
}

article.post-item.event-item {
  position: relative;
}

.post-icon-fin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.post-icon-fin img {
  width: 106px;
  height: 106px;
}

@media screen and (max-width: 960px) {
  .post-icon-fin img {
    width: 60px;
    height: auto;
  }
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {
  color: #444444;
  font-size: 14px;
  line-height: 1;
  font-family: "Lato", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  overflow: visible;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-titlebar {
  padding: 0;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-titlebar:before, .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-titlebar:after {
  content: none;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-titlebar .ui-dialog-title {
  display: block;
  float: none;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-titlebar .ui-dialog-titlebar-close {
  top: 10px;
  right: 8px;
  border: none;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  outline: none;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-content {
  padding: 20px;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-content div {
  text-align: left;
  margin: 0;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-content .event {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-content .report {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable .ui-dialog-content .project a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  padding: 8px 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.hashtag-tab-nav {
  text-align: center;
}

.hashtag-tab-nav:after {
  content: "";
  display: table;
  clear: both;
}

.hashtag-tab-nav__item {
  width: 30%;
  float: left;
  background-color: #E4F6FF;
  color: #3164BC;
  font-weight: bold;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-right: 1%;
}

.hashtag-tab-nav__item:last-child {
  margin-right: 0;
}

.hashtag-tab-nav__item.select {
  background-color: #3164BC;
  color: #fff;
}

.hashtag-tab-content {
  border-top: 4px solid #3164BC;
}

.hashtag-tab-content__block {
  padding-top: 20px;
}

.hashtag-tab-content__block.hide {
  display: none;
}

/* kaiyougomi */
@media screen and (min-width: 769px) {
  .spBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .container-kaiyougomi h2 {
    font-size: 34px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 30px;
  }
  .container-kaiyougomi p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 30px 25px;
    text-align: left;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    width: 940px;
    margin: 0 auto;
    padding: 90px 0;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01.png) top center no-repeat;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 18px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 40px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg02.png) top center no-repeat;
    height: 370px;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 37px;
  }
  .kaiyougomi-boxB .txtBox {
    position: absolute;
    top: 80px;
    right: 35px;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03.png) bottom center no-repeat;
    height: 345px;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -142px;
    right: -100px;
  }
  .kaiyougomi-boxD .txtBox {
    position: absolute;
    top: 40px;
    left: 35px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04.png) top center no-repeat;
    height: 345px;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -80px;
    left: 0;
  }
  .kaiyougomi-boxE .txtBox {
    position: absolute;
    top: 50px;
    right: 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 0;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
  }
  .action-box-l {
    width: 49.2%;
    float: left;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .action-box-r {
    width: 49.2%;
    float: right;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox {
    display: table-cell;
    width: 160px;
  }
  .kaiyougomi-boxF .txtBox {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 20px;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 16px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 12px;
    line-height: 1.6 !important;
  }
  .kaiyougomi-boxF a p {
    color: #000 !important;
  }
}

@media all and (min-width: 0px) and (max-width: 768px) {
  #kaiyougomi-container .l-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .pcBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 100%;
    background: #fff;
  }
  .container-kaiyougomi h2 {
    font-size: 18px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 15px;
  }
  .container-kaiyougomi p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 60px;
    text-align: center;
  }
  .container-kaiyougomi .txt01 img {
    width: 15px !important;
    height: auto !important;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    padding: 45px 0;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 14px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 20px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg02_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 200px;
    margin: 0 0 0 -100px;
  }
  .kaiyougomi-boxB .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxB .txtBox {
    padding: 200px 0 0;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  .kaiyougomi-boxC .spBox img {
    width: 90%;
    height: auto;
    margin: 0 5%;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -76px;
    left: 50%;
    width: 300px;
    margin: 0 0 0 -150px;
  }
  .kaiyougomi-boxD .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxD .txtBox {
    padding: 130px 0 50px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 200px;
    margin: 0 0 0 -100px;
  }
  .kaiyougomi-boxE .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxE .txtBox {
    padding: 100px 0 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 5%;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
    font-size: 14px;
  }
  .action-box-l {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
    margin: 0 0 15px;
  }
  .action-box-r {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxF .txtBox {
    padding: 10px 0 0;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 14px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 12px;
    line-height: 1.6 !important;
  }
  .kaiyougomi-boxF a p {
    color: #000 !important;
  }
}

@media all and (min-width: 600px) and (max-width: 768px) {
  #kaiyougomi-container .l-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .pcBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 100%;
    background: #fff;
  }
  .container-kaiyougomi h2 {
    font-size: 34px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 15px;
  }
  .container-kaiyougomi p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 150px;
    text-align: center;
  }
  .container-kaiyougomi .txt01 img {
    width: 15px !important;
    height: auto !important;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    padding: 45px 0;
    width: 500px;
    margin: 0 auto;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 18px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 40px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg02_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 250px;
    margin: 0 0 0 -125px;
  }
  .kaiyougomi-boxB .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxB .txtBox {
    padding: 260px 0 0;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  .kaiyougomi-boxC .spBox img {
    width: 90%;
    height: auto;
    margin: 0 5%;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -114px;
    left: 50%;
    width: 450px;
    margin: 0 0 0 -225px;
  }
  .kaiyougomi-boxD .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxD .txtBox {
    padding: 130px 0 50px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 250px;
    margin: 0 0 0 -125px;
  }
  .kaiyougomi-boxE .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxE .txtBox {
    padding: 150px 0 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 0;
    width: 500px;
    margin: 0 auto;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
    font-size: 20px;
  }
  .action-box-l {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
    margin: 0 0 15px;
  }
  .action-box-r {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxF .txtBox {
    padding: 10px 0 0;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 16px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 14px;
    line-height: 1.6 !important;
  }
}

.area-tab-table:after {
  content: "";
  display: table;
  clear: both;
}

.area-tab-table--tr {
  width: 50%;
  float: left;
  padding-right: 8px;
}

.area-tab-table--tr:last-child {
  padding-right: 0;
}

@media screen and (max-width: 720px) {
  .area-tab-table {
    margin-bottom: 8px;
  }
  .area-tab-table--tr {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  .area-tab-table--tr .area-nav {
    margin-bottom: 8px;
  }
}

.area-headline {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  text-align: center;
  background: #3164BC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.area-block {
  margin-bottom: 56px;
}

.area-block:last-child {
  margin-bottom: 0;
}

.area-block-head {
  overflow: hidden;
  margin-bottom: 24px;
}

.area-block-head:after {
  content: "";
  display: table;
  clear: both;
}

.area-block-head .area-name {
  float: left;
  font-size: 22px;
  font-weight: bold;
  color: #3164BC;
}

.area-block-head .area-site {
  float: right;
}

@media screen and (max-width: 720px) {
  .area-block {
    margin-bottom: 48px;
  }
  .area-block-head {
    margin-bottom: 16px;
  }
  .area-block-head .area-name {
    font-size: 18px;
  }
}

.event-areabtnBox {
  display: table;
  padding: 20px 0 0;
  width: 100%;
}

.event-areabtnBox .btn-kanren-event {
  float: left;
  width: 49.4%;
}

.event-areabtnBox .btn-kanren-event a {
  width: 100%;
  display: block;
  text-align: center;
  background: #fff;
  padding: 20px 0;
  font-weight: bold;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.event-areabtnBox .btn-fin-event {
  float: right;
  width: 49.4%;
}

.event-areabtnBox .btn-fin-event a {
  width: 100%;
  display: block;
  text-align: center;
  background: #fff;
  padding: 20px 0;
  font-weight: bold;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.partner-block {
  margin-bottom: 36px;
}

.partner-block:last-child {
  margin-bottom: 0;
}

.partner-block .text {
  line-height: 1.8;
  margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
  .partner-block {
    margin-bottom: 48px;
  }
  .partner-block .text {
    margin-bottom: 16px;
  }
  .partner-block--third {
    margin-bottom: 0;
  }
}

.partner-step {
  -webkit-width: calc(100% + 80px);
  -moz-width: calc(100% + 80px);
  -ms-width: calc(100% + 80px);
  -o-width: calc(100% + 80px);
  width: calc(100% + 80px);
  display: table;
  table-layout: fixed;
  border-spacing: 40px 0;
  margin-left: -40px;
  margin-bottom: 24px;
}

.partner-step__item {
  position: relative;
  display: table-cell;
  vertical-align: top;
  background-color: #E4F6FF;
  padding: 16px;
}

.partner-step__item .step-num {
  text-align: center;
  margin-bottom: 16px;
}

.partner-step__item .text {
  margin-bottom: 0;
}

.partner-step__item:after {
  content: "";
  width: 19px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: -28px;
  bottom: auto;
  left: auto;
  margin: auto;
  background-image: url(/assets/img/step.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.partner-step__item:last-child:after {
  content: none;
}

@media screen and (max-width: 720px) {
  .partner-step {
    width: 100%;
    display: block;
    border-spacing: 0;
    margin-left: 0;
  }
  .partner-step__item {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    padding: 15px;
  }
  .partner-step__item:after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -18px;
    left: 50%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.partner-tool {
  margin-top: 32px;
  margin-bottom: 32px;
}

.partner-tool__image--pc {
  display: block;
}

@media screen and (max-width: 720px) {
  .partner-tool__image--pc {
    display: none;
  }
}

.partner-tool__image--sp {
  display: none;
}

@media screen and (max-width: 720px) {
  .partner-tool__image--sp {
    display: block;
  }
}

.partner-scroll-area {
  width: 100%;
  height: 290px;
  line-height: 1.8;
  border: 1px solid #E3E3E3;
  padding-top: 50px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 26px;
  overflow: scroll;
}

.partner-scroll-area strong {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.partner-scroll-area dt {
  font-weight: bold;
  margin-bottom: 8px;
}

.partner-scroll-area dd {
  margin-bottom: 24px;
}

.partner-scroll-area .num {
  margin-top: 8px;
  margin-left: 32px;
  margin-bottom: 24px;
}

.partner-scroll-area .num li {
  list-style-type: decimal-leading-zero;
  margin-bottom: 8px;
}

.partner-scroll-area .num li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 720px) {
  .partner-scroll-area {
    padding-top: 32px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 4px;
  }
  .partner-scroll-area strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .partner-scroll-area dd {
    margin-bottom: 16px;
  }
}

.terms {
  text-align: center;
  padding: 6px;
  margin-top: 32px;
}

.terms .terms01 {
  margin-bottom: 32px;
}

.terms input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

.terms input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
}

.terms input[type=checkbox] {
  display: none;
  margin: 0;
}

.terms input[type=checkbox] + label {
  padding: 0 0 0 24px;
}

.terms input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
  border: 1px solid #C4C4C4;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.terms input[type=checkbox]:checked + label::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: auto;
}

.terms input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #3164BC;
  border-bottom: 3px solid #3164BC;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.terms input[type=button] {
  width: 380px;
  display: block;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  background-color: #3164BC;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  border: none;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 720px) {
  .terms input[type=button] {
    width: 100%;
  }
}

.project-block {
  line-height: 1.8;
}

.project-block--top {
  text-align: center;
  margin-bottom: 60px;
}

.project-block--top .project-logo {
  margin-top: 32px;
}

.project-block--second {
  margin-bottom: 26px;
}

@media screen and (max-width: 960px) {
  .project-block--top {
    text-align: left;
    margin-bottom: 48px;
  }
  .project-block--top .project-logo {
    text-align: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.project-action {
  margin-bottom: 100px;
}

.project-action:last-child {
  margin-bottom: 0;
}

.project-action .project-action-box {
  display: table;
  width: 100%;
}

.project-action .project-action-box__image {
  display: table-cell;
  vertical-align: middle;
  width: 126px;
}

.project-action .project-action-box__text-area {
  display: table-cell;
  vertical-align: middle;
  -webkit-width: calc(100% - 126px);
  -moz-width: calc(100% - 126px);
  -ms-width: calc(100% - 126px);
  -o-width: calc(100% - 126px);
  width: calc(100% - 126px);
  padding-left: 48px;
}

.project-action .project-action-box__text-area .title {
  font-size: 20px;
  font-weight: bold;
  color: #3164BC;
  margin-bottom: 8px;
}

@media screen and (max-width: 720px) {
  .project-action {
    margin-bottom: 72px;
  }
  .project-action:last-child {
    margin-bottom: 41px;
  }
  .project-action .project-action-box {
    display: block;
  }
  .project-action .project-action-box__image {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
  .project-action .project-action-box__text-area {
    width: 100%;
    display: block;
    padding-left: 0;
  }
  .project-action .project-action-box__text-area .title {
    font-size: 18px;
    text-align: center;
  }
}

.subAction {
  position: relative;
  margin-top: 32px;
  padding-top: 26px;
}

@media screen and (max-width: 720px) {
  .subAction {
    margin-top: 24px;
  }
}

.btn-trigger {
  width: 610px;
  height: 52px;
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  left: 50px;
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 52px;
  text-align: center;
  background-color: #3164BC;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.btn-trigger:after {
  display: inline-block;
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 24px;
}

.btn-trigger--active:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media screen and (max-width: 720px) {
  .btn-trigger {
    width: 100%;
    left: 0;
    right: 0;
    font-size: 14px;
  }
}

.btn-trigger:hover {
  background-color: #2c59a8;
}

.btn-trigger-close {
  width: 80px;
  text-align: center;
  color: #fff;
  background-color: #3164BC;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.btn-trigger-close:after {
  font-size: 10px;
  content: "";
  font-family: "icomoon",sans-serif;
  padding-left: 8px;
}

.sub-action-body {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  background-color: #E4F6FF;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 64px;
  padding-bottom: 40px;
}

.sub-action-body li {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background-image: url(../img/wave03.png);
  background-repeat: repeat-x;
  background-size: auto 6px;
  background-position: 0 bottom;
}

.sub-action-body li:before {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: auto;
  display: inline-block;
  width: 38px;
  height: 38px;
  font-size: 20px;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #3164BC;
}

.sub-action-body li:nth-child(1):before {
  content: "1";
}

.sub-action-body li:nth-child(2):before {
  content: "2";
}

.sub-action-body li:nth-child(3):before {
  content: "3";
}

.sub-action-body li:nth-child(4):before {
  content: "4";
}

.sub-action-body li:nth-child(5):before {
  content: "5";
}

.sub-action-body li:nth-child(6):before {
  content: "6";
}

.sub-action-body li:nth-child(7):before {
  content: "7";
}

.sub-action-body li:nth-child(8):before {
  content: "8";
}

.sub-action-body li:nth-child(9):before {
  content: "9";
}

.sub-action-body li:nth-child(10):before {
  content: "10";
}

.sub-action-body li .title {
  font-size: 20px;
  font-weight: bold;
  color: #3164BC;
  padding-left: 60px;
}

.sub-action-body li .description {
  padding-left: 60px;
}

@media screen and (max-width: 720px) {
  .sub-action-body {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .sub-action-body li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .sub-action-body li .title {
    font-size: 18px;
    padding-left: 53px;
  }
  .sub-action-body li .description {
    padding-left: 53px;
  }
}

.supporter-block {
  margin-bottom: 60px;
  line-height: 1.8;
}

.supporter-block--top {
  margin-bottom: 40px;
}

.supporter-block--last {
  margin-bottom: 0;
}

.supporter-block .supporter-headline01 {
  color: #fff;
  background-color: #3164BC;
  background-image: url(/assets/img/supporter-motif@2x.png);
  background-repeat: no-repeat;
  background-size: 98% auto;
  background-position: center;
}

.supporter-block .message {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.supporter-block .count-title {
  width: 260px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #3164BC;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

.supporter-block .count {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #E50113;
}

.supporter-block .count span {
  font-size: 20px;
  color: #000000;
}

@media screen and (max-width: 720px) {
  .supporter-block {
    margin-bottom: 32px;
  }
  .supporter-block--top {
    margin-bottom: 24px;
  }
  .supporter-block--last {
    margin-bottom: 0;
  }
  .supporter-block .supporter-headline01 {
    background-image: none;
  }
  .supporter-block .message {
    font-size: 16px;
  }
  .supporter-block .count-title {
    width: 82%;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .supporter-block .count {
    font-size: 30px;
  }
  .supporter-block .count span {
    font-size: 16px;
  }
}

.supporter-btn a {
  display: block;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.supporter-btn--sns span {
  margin-right: 16px;
}

.supporter-btn--sns__tw a {
  background-color: #6EA9F3;
}

.supporter-btn--sns__tw a:hover {
  background-color: #569bf1;
}

.supporter-btn--sns__fb a {
  background-color: #3B4D9A;
}

.supporter-btn--sns__fb a:hover {
  background-color: #344488;
}

.supporter-btn--sns__settled a {
  background-color: #CFCFCF !important;
}

.supporter-btn--download span {
  margin-left: 16px;
}

@media screen and (max-width: 720px) {
  .supporter-btn a {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .supporter-btn--sns span {
    margin-right: 8px;
  }
}

.supporter-btn-area {
  margin-top: 32px;
}

.supporter-btn-area ul {
  margin-bottom: 48px;
}

.supporter-btn-area ul:after {
  content: "";
  display: table;
  clear: both;
}

.supporter-btn-area ul .supporter-btn--sns__tw {
  width: 302px;
  float: left;
}

.supporter-btn-area ul .supporter-btn--sns__fb {
  width: 302px;
  float: right;
}

@media screen and (max-width: 720px) {
  .supporter-btn-area {
    margin-top: 24px;
  }
  .supporter-btn-area ul {
    margin-bottom: 16px;
  }
  .supporter-btn-area ul .supporter-btn--sns__tw,
  .supporter-btn-area ul .supporter-btn--sns__fb {
    width: 100%;
    float: none;
    margin-bottom: 16px;
  }
}

.supporter-sample {
  background-color: #E4F6FF;
  padding: 40px 70px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.supporter-sample .sample {
  margin-top: 16px;
  margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
  .supporter-sample {
    padding: 15px;
  }
  .supporter-sample .text {
    text-align: left;
  }
}

.supporter-creat-block {
  background-color: #E4F6FF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 40px 30px;
  text-align: center;
}

.supporter-creat-block .get-image {
  width: 280px;
  height: 280px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.supporter-creat-block .supporter-btn--download {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
  .supporter-creat-block {
    padding: 15px;
  }
  .supporter-creat-block .get-image {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  .supporter-creat-block .supporter-btn--download {
    margin-bottom: 16px;
  }
}

.share-btns:after {
  content: "";
  display: table;
  clear: both;
}

.share-btns li {
  float: left;
}

.share-btns li a {
  color: #fff;
  font-size: 13px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.share-btns li a span {
  margin-right: 8px;
}

.share-btns--twitter .tw01 {
  width: 345px;
  margin-right: 10px;
}

.share-btns--twitter .tw02 {
  width: 225px;
}

.share-btns--twitter a {
  background-color: #6EA9F3;
}

.share-btns--twitter a:hover {
  background-color: #569bf1;
}

.share-btns--facebook .fb {
  width: 100%;
}

.share-btns--facebook a {
  background-color: #3B4D9A;
}

.share-btns--facebook a:hover {
  background-color: #344488;
}

@media screen and (max-width: 960px) {
  .share-btns li {
    float: none;
    width: 100% !important;
    margin-bottom: 8px;
  }
  .share-btns li:last-child {
    margin-bottom: 0;
  }
}

/* 見出し */
.headline-top {
  font-size: 20px;
  font-weight: bold;
  color: #3164BC;
  text-align: center;
  margin-bottom: 20px;
}

.headline-top:before {
  font-size: 30px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-right: 16px;
}

.headline-top:after {
  font-size: 30px;
  content: "";
  font-family: "icomoon",sans-serif;
  margin-left: 16px;
}

@media screen and (max-width: 960px) {
  .headline-top {
    font-size: 18px;
  }
  .headline-top:before {
    font-size: 18px;
    content: "";
    font-family: "icomoon",sans-serif;
    margin-right: 16px;
  }
  .headline-top:after {
    font-size: 18px;
    content: "";
    font-family: "icomoon",sans-serif;
    margin-left: 16px;
  }
}

.about-top {
  position: relative;
  width: 100%;
  display: table;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  background-color: #fff;
  padding-top: 16px;
  padding-right: 60px;
  padding-left: 80px;
  padding-bottom: 16px;
  margin-bottom: 42px;
}

.about-top:before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -21px;
  left: 0px;
  background: url("../img/top-about-wave--pc.png") no-repeat;
  width: 218px;
  height: 22px;
  width: 100% !important;
  background-repeat: repeat-x !important;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .about-top:before {
    background: url("../img/top-about-wave--pc@2x.png") no-repeat;
    background-size: 218px 22px;
  }
}

.about-top:after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -16px;
  left: 10px;
  background: url("../img/top-about-motif--pc.png") no-repeat;
  width: 218px;
  height: 104px;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 1.3), (min-resolution: 1.3dppx) {
  .about-top:after {
    background: url("../img/top-about-motif--pc@2x.png") no-repeat;
    background-size: 218px 104px;
  }
}

.about-top-logo {
  width: 108px;
  display: table-cell;
}

.about-top-text {
  display: table-cell;
  vertical-align: top;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  color: #3164BC;
  padding-left: 60px;
}

@media screen and (min-width: 720px) and (max-width: 960px) {
  .about-top {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-top-text {
    padding-left: 40px;
  }
}

@media screen and (max-width: 720px) {
  .about-top {
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -ms-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    display: block;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 32px;
    margin-bottom: 54px;
  }
  .about-top:before {
    background-position: right 0;
  }
  .about-top:after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    right: 10px;
    bottom: -16px;
    left: auto;
    background: url("../img/top-about-motif--sp.png") no-repeat;
    width: 110px;
    height: 43px;
  }
}

@media screen and (max-width: 720px) and (min--moz-device-pixel-ratio: 1.3), screen and (max-width: 720px) and (-o-min-device-pixel-ratio: 2.6 / 2), screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio: 1.3), screen and (max-width: 720px) and (min-resolution: 1.3), screen and (max-width: 720px) and (min-resolution: 1.3dppx) {
  .about-top:after {
    background: url("../img/top-about-motif--sp@2x.png") no-repeat;
    background-size: 110px 43px;
  }
}

@media screen and (max-width: 720px) {
  .about-top-logo {
    display: block;
    margin-bottom: 16px;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .about-top-text {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}

.top-content {
  padding-top: 50px;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .top-content {
    padding-top: 0;
  }
}

.wellknown-contents .white-contents {
  margin-bottom: 40px;
}

.wellknown-contents .white-contents:last-child {
  margin-bottom: 0;
}

.wellknown-contents .white-contents .area-headline {
  margin-top: 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 720px) {
  .wellknown-contents .white-contents .area-headline {
    margin-bottom: 30px;
  }
}

.wellknown-contents .article-body .presidentBox {
  text-align: center;
  margin-bottom: 32px;
}

.wellknown-contents .article-body p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.wellknown-contents .article-body p.signature {
  text-align: right;
  margin-top: 48px;
}

.wellknown-contents .article-body p.reference {
  text-align: right;
}

/* kaiyougomi */
@media screen and (min-width: 769px) {
  .spBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .container-kaiyougomi h2 {
    font-size: 34px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 30px;
  }
  .container-kaiyougomi p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 30px 25px;
    text-align: left;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    width: 940px;
    margin: 0 auto;
    padding: 90px 0;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01.png) top center no-repeat;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 18px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 40px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg02.png) top center no-repeat;
    height: 370px;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 37px;
  }
  .kaiyougomi-boxB .txtBox {
    position: absolute;
    top: 80px;
    right: 35px;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03.png) bottom center no-repeat;
    height: 345px;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -142px;
    right: -100px;
  }
  .kaiyougomi-boxD .txtBox {
    position: absolute;
    top: 40px;
    left: 35px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04.png) top center no-repeat;
    height: 345px;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -80px;
    left: 0;
  }
  .kaiyougomi-boxE .txtBox {
    position: absolute;
    top: 50px;
    right: 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 0;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
  }
  .action-box-l {
    width: 49.2%;
    float: left;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .action-box-r {
    width: 49.2%;
    float: right;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox {
    display: table-cell;
    width: 160px;
  }
  .kaiyougomi-boxF .txtBox {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 20px;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 16px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 12px;
    line-height: 1.6 !important;
  }
  .kaiyougomi-boxF a p {
    color: #000 !important;
  }
}

@media all and (min-width: 0px) and (max-width: 768px) {
  #kaiyougomi-container .l-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .pcBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 100%;
    background: #fff;
  }
  .container-kaiyougomi h2 {
    font-size: 18px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 15px;
  }
  .container-kaiyougomi p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 60px;
    text-align: center;
  }
  .container-kaiyougomi .txt01 img {
    width: 15px !important;
    height: auto !important;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    padding: 45px 0;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 14px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 20px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg02_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 200px;
    margin: 0 0 0 -100px;
  }
  .kaiyougomi-boxB .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxB .txtBox {
    padding: 200px 0 0;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  .kaiyougomi-boxC .spBox img {
    width: 90%;
    height: auto;
    margin: 0 5%;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -76px;
    left: 50%;
    width: 300px;
    margin: 0 0 0 -150px;
  }
  .kaiyougomi-boxD .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxD .txtBox {
    padding: 130px 0 50px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 200px;
    margin: 0 0 0 -100px;
  }
  .kaiyougomi-boxE .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxE .txtBox {
    padding: 100px 0 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 5%;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
    font-size: 14px;
  }
  .action-box-l {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
    margin: 0 0 15px;
  }
  .action-box-r {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxF .txtBox {
    padding: 10px 0 0;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 14px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 12px;
    line-height: 1.6 !important;
  }
  .kaiyougomi-boxF a p {
    color: #000 !important;
  }
}

@media all and (min-width: 600px) and (max-width: 768px) {
  #kaiyougomi-container .l-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .pcBox {
    display: none;
  }
  .container-kaiyougomi {
    width: 100%;
    background: #fff;
  }
  .container-kaiyougomi h2 {
    font-size: 34px;
    font-weight: bold;
    color: #3164bc;
    padding: 0 0 15px;
  }
  .container-kaiyougomi p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
  }
  .container-kaiyougomi .txt01 {
    font-size: 12px;
    padding: 10px 0 150px;
    text-align: center;
  }
  .container-kaiyougomi .txt01 img {
    width: 15px !important;
    height: auto !important;
  }
  .container-kaiyougomi .txt01 a {
    text-decoration: underline;
  }
  .container-kaiyougomi .innerBox {
    padding: 45px 0;
    width: 500px;
    margin: 0 auto;
    position: relative;
  }
  /* boxA */
  .kaiyougomi-boxA {
    background: url(/assets/img/kaiyougomi/kaiyougomi_bg01_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxA p {
    font-size: 18px;
  }
  .kaiyougomi-boxA h1 {
    font-size: 40px;
    color: #3164bc;
    padding: 0 0 20px;
  }
  .kaiyougomi-boxA h1 span {
    background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  .kaiyougomi-boxA p {
    color: #3164bc;
  }
  /* boxB */
  .kaiyougomi-boxB {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg02_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxB .imgBox {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 250px;
    margin: 0 0 0 -125px;
  }
  .kaiyougomi-boxB .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxB .txtBox {
    padding: 260px 0 0;
  }
  .kaiyougomi-boxB p {
    color: #fff;
  }
  /* boxC */
  .kaiyougomi-boxC {
    background: #e2f5fc;
    text-align: center;
  }
  .kaiyougomi-boxC p {
    color: #3164bc;
    padding: 0 0 40px;
  }
  .kaiyougomi-boxC .spBox img {
    width: 90%;
    height: auto;
    margin: 0 5%;
  }
  /* boxD */
  .kaiyougomi-boxD {
    background: #74d1f0 url(/assets/img/kaiyougomi/kaiyougomi_bg03_sp.png) bottom center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxD p {
    color: #fff;
  }
  .kaiyougomi-boxD .imgBox {
    position: absolute;
    top: -114px;
    left: 50%;
    width: 450px;
    margin: 0 0 0 -225px;
  }
  .kaiyougomi-boxD .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxD .txtBox {
    padding: 130px 0 50px;
  }
  /* boxE */
  .kaiyougomi-boxE {
    background: #30bbe9 url(/assets/img/kaiyougomi/kaiyougomi_bg04_sp.png) top center no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .kaiyougomi-boxE .imgBox {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 250px;
    margin: 0 0 0 -125px;
  }
  .kaiyougomi-boxE .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxE .txtBox {
    padding: 150px 0 0;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  .kaiyougomi-boxE p {
    color: #fff;
  }
  /* boxF */
  .kaiyougomi-boxF {
    overflow: hidden;
    padding: 30px 0;
    width: 500px;
    margin: 0 auto;
  }
  .kaiyougomi-boxF h2 {
    text-align: center;
    padding: 0 0 20px;
    color: #3164bc;
    font-size: 20px;
  }
  .action-box-l {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
    margin: 0 0 15px;
  }
  .action-box-r {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  .kaiyougomi-boxF .imgBox img {
    width: 100%;
    height: auto;
  }
  .kaiyougomi-boxF .txtBox {
    padding: 10px 0 0;
  }
  .kaiyougomi-boxF .txtBox .day {
    font-size: 12px;
    color: #666;
    padding: 0 0 10px;
  }
  .kaiyougomi-boxF .txtBox h3 {
    font-size: 16px;
    color: #3164bc;
    padding: 0 0 10px;
    line-height: 1.6;
  }
  .kaiyougomi-boxF .txtBox p {
    font-size: 14px;
    line-height: 1.6 !important;
  }
}



/**
 * カスタム検索デザイン調整
 */
.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
  width: 48px !important;
  height: 48px !important;
  background-color: #3164BC !important;
  border-radius: 0 2px 2px 0 !important;
  outline: none !important;
  border: none !important;
}

.gsc-search-button-v2 {
  padding: 0 !important;
}

.gsc-search-button {
  margin: 0 !important;
}

.gsc-input {
  padding-right: 0 !important;
}

.gsc-input-box {
  border: 2px solid #3164BC !important;
  height: 44px !important;
  line-height: 44px !important;
  border-radius: 2px 0 0 2px !important;
}

input.gsc-input{
   border: none !important;
}

.gsib_a {
  padding: 0 10px !important;
}

.gsc-search-button-v2 svg {
  width:  20px !important;
  height: 20px !important;
}

.gsc-control-wrapper-cse{
  font-family: "Lato", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
}

.gs-webResult .gs-snippet, .gs-imageResult .gs-snippet, .gs-fileFormatType {
  color: #444444!important;
  line-height: 1.5 !important;
}

.gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl {
  color: #3164BC !important;
}

.gscb_a {
    line-height: 44px !important;
}

.gsc-url-top{ margin: 8px 0 6px !important; }

.gcsc-find-more-on-google{color: #3164BC !important;}

.gcsc-find-more-on-google-magnifier {
    fill: #3164BC !important;}

.gs-result .gs-title, .gs-result .gs-title * {
    text-decoration: none !important;
    color: #3164BC !important;
}


/**
 * 特集記事用のCSS
 */

 .s-block {
  line-height: 1.6;
  margin-bottom: 60px;
}
.s-block__title {
  font-size: 16px;
  padding: 12px;
  margin-bottom: 24px;
  border-left: 6px solid #3164BC;
  background-color: #F6F6F6;
}
.s-block img {
  margin-top:24px;
}


/**
 * 見出しの色分け
 */


h1.contents-headline{
	position: relative;
	padding: 0 0 0 20px;
}

h1.contents-headline:before{
	content:"◆";
	color: #3164bc;
	font-size: 12px !important;
	position: absolute;
	top: 50%;
	left: 0px;
	margin: -7px 0px 0;
	
}



.ttl-icon-news{
	position: relative;
	padding: 0 0 0 20px;
}
.ttl-icon-eventinfo{
	position: relative;
	padding: 0 0 0 20px;
}
.ttl-icon-grant{
	position: relative;
	padding: 0 0 0 20px;
}
.ttl-icon-special{
	position: relative;
	padding: 0 0 0 20px;
}
.ttl-icon-eventsearch{
	position: relative;
	padding: 0 0 0 20px;
}


.ttl-icon-news:before{
	color: #3164bc !important;
}
.ttl-icon-eventinfo:before{
	color: #ed7070 !important;
}
.ttl-icon-grant:before{
	color: #00b3da !important;
}
.ttl-icon-special:before{
	color: #f49600 !important;
}
.ttl-icon-eventsearch:before{
	color: #00aa4a !important;
}




.ttl-icon-news span{
	color: #3164bc;
	padding: 0 5px 0 0;
	display: none;
}

.ttl-icon-eventinfo span{
	color: #ed7070;
	padding: 0 5px 0 0;
	display: none;
}

.ttl-icon-grant span{
	color: #00b3da;
	padding: 0 5px 0 0;
	display: none;
}

.ttl-icon-special span{
	color: #f49600;
	padding: 0 5px 0 0;
	display: none;
}

.ttl-icon-eventsearch span{
	color: #00aa4a;
	padding: 0 5px 0 0;
	display: none;
}


div.thumbnail-icon-news{
  background:#3164bc !important;
}
div.thumbnail-icon-eventinfo{
  background:#ed7070 !important;
}
div.thumbnail-icon-grant{
  background:#00b3da !important;
}
div.thumbnail-icon-special{
  background:#f49600 !important;
}
div.thumbnail-icon-eventsearch{
  background:#00aa4a !important;
}

.top-banner-event{
	margin: 0 0 30px;
}

.top-main-stayhome{
	width: 100%;
	background: url(/assets/img/top_main_stayhome_bg.jpg) top center repeat-x;
	margin: 0 0 50px;
	text-align: center;
}

@media all and (min-width: 0px) and (max-width: 768px) {
	
.top-main-stayhome{
	width: 100%;
	margin: 0 0 10px;
	text-align: center;
}
	
	
	
}
