@charset "UTF-8";

/* ------------------------------------------------------------
01. #RESET
------------------------------------------------------------ */



/* CSS Document */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
span,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

ul {
  list-style: none;
}

div,
main {}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

main img {
  vertical-align: bottom;
}

a:link {
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
  text-decoration: underline;
}

a:hover {
  color: #900;
  text-decoration: underline;
}

h3,
p {}

li.list-style-dot {
  list-style-type: disc;
}

#addressBookWidgetDiv {
  width: 400px;
  height: 228px;
}

#walletWidgetDiv {
  width: 400px;
  height: 228px;
}

main p,
main dd,
main dt,
main li {
  font-weight: 300;
}

.ai1ec-field-label,
.ai1ec-actions,
.ai1ec-field-value span,
.ai1ec-categories {
  display: none;
}

.ai1ec-event-details {
  width: 100%;
  text-align: center;
}

.ai1ec-time,
.ai1ec-field-value,
.ai1ec-col-sm-9 {
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto 30px !important;
}


/* ------------------------------------------------------------
02. #FONT
------------------------------------------------------------ */

.red {
  color: #ff0000;
}

.text-green {
  color: #008000;
  font-weight: bold;
}

.calendar-non {
  font-size: 16px;
  font-weight: 700;
  color: #007BFF;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  /* iOS でのフォントレンダリングを調整 */
}

/* ------------------------------------------------------------
03. #LAYOUT
------------------------------------------------------------ */
body {
  width: 100%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  overflow: visible;
}

header,
main,
footer {
  width: 100%;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #FFFFFF;
}

main {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 100px;
}

table tr {
  border: solid 1px white;
}

table td:first-child {
  text-align: center;
  vertical-align: middle;
  width: 20%;
  background-color: #DEDEDE;
  padding: 10px 10px;
  border: solid 1px white;
  color: #444444;
}

table td:nth-last-child(1) {
  text-align: center;
  width: 80%;
  background-color: #DEDEDE;
  padding: 10px 10px;
  border: solid 1px white;
  color: #444444;
}

/* ------------------------------------------------------------
04. Hamburger menu
------------------------------------------------------------ */
.nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
.nav-drawer__close {
  display: none;
  /*はじめは隠しておく*/
  position: -webkit-sticky;
  position: sticky;
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
.nav-drawer__content {
  overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*最前面に*/
  width: 90%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #fff;
  /*背景色*/
  transition: .3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  /*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked~.nav-drawer__close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}

#nav-input:checked~.nav-drawer__content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

main #main-view {
  width: 100%;
  text-align: center;
  margin: 0;
}

.nav-drawer__content h3 {
  text-align: left;
  margin: 0 0 20px 12px;
  padding: 0;
  width: 100%;
}

.nav-drawer__content ul {
  margin-bottom: 30px;
}

.nav-drawer__content li::before {
  content: '▶︎';
  padding-right: 10px;
  /*    color: #D65A24;
    font-size: 4vw;*/
}

.nav-drawer__content li {
  border-bottom: 1px solid #ADADAD;
  padding: 12px
}

/* ------------------------------------------------------------
05. HEADER
------------------------------------------------------------ */
header {}

header .header__inner {
  display: inline-block;
}

.header__left {
  display: inline-block;
  text-align: left;
  width: 53%;
}

.header__right {
  display: inline-block;
  text-align: right;
  width: 45%;
}

.header__sns {
  display: inline-block;
}

.header__menu {
  display: inline-block;
}

/* #btton */
.btn-bg-green {
  width: 80%;
  background-image: url("../img/common/btn_bg_green.png");
  background-size: 100%;
  background-repeat: no-repeat;
  font-size: 5vw;
  padding: 5px 0px;
  border-radius: 5px;
  text-decoration: underline;
}

/* #btton */
/* #MAIN*/
/*

/* .MAIN*/
/* #BANNER */
#banner-support {
  width: 100%;
}

#banner-support img {
  width: 90%;
  margin-bottom: 15px;
}

/* #BANNER */
/* #FONT SIZE */
.font5vw {
  font-size: 5vw;
}

.text-shuei-600 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 2.5em;
}

.text-shuei-400 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* #LAYOUT */
.text-right {
  text-align: right;
}

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

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

/* .LAYOUT */
/* #COLOR */
.color-cyan {
  background-color: #2989c0;
}

.color-org {
  background-color: #F78758;
}

.color-org2 {
  background-color: #D45A24;
}

.color-pink {
  background-color: #F7858F;
}

.color-gren {
  background-color: #7ab802;
}

.color-gren2 {
  background-color: #39984A;
}

.color-brown {
  background-color: #42210b;
}

.font-brown {
  color: #42210B;
}

.text-red {
  color: #C60003;
}

/* .COLOR */
/* #SIZE */
.width-100 {
  width: 100%;
}

.width-90 {
  width: 90%;
}

.width-80 {
  width: 80%;
}

.width-60 {
  width: 60%;
}

/* .SIZE */
.margin-bottom-mid {
  margin-bottom: 40px;
}

.margin-bottom-low {
  margin-bottom: 20px;
}

/* .MARGIN */
/* ------------------------------------------------------------
 PLAYCAR
------------------------------------------------------------ */
.schedule-playcar table td:nth-child(2) {
  color: #ff9900;
}

.schedule-playcar table td:nth-child(3) {
  color: #996666;
}

.schedule-playcar table td:nth-child(4) {
  color: #ff6699;
}

.footer__sitemap-btn a {
  color: #FFFFFF;
}



.sns-link {
  width: 60%;
  height: 24px;
  margin: 0 auto;
  text-align: left;
  display: flex;
}

.sns-link__twitter {
  width: 88px !important;
  height: 24px !important;
  margin: 0 !important;
  padding-right: 10px;
}

.sns-link__facebook {
  width: 83px !important;
  height: 24px !important;
  margin: 0 !important;
  padding-right: 10px;

}

.sns-link__line {
  width: 102px !important;
  height: 24px !important;
  margin: 0 !important;
}
