@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@700&display=swap');

/* ━━━━━━━━━━━━━━━━━━
base
━━━━━━━━━━━━━━━━━━*/
/* footerを下固定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar{
	width: 10px;
}
::-webkit-scrollbar-track{
	background: rgba(50,50,50, 0.15);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb{
	background: rgba(0,0,0,.33);
	border-radius: 10px;
	box-shadow: inset 0 0 3px 3px rgba(255,255,255,.5);
}

html {
	width: 100%;
	height: 100%;
  position: relative;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
	width: 100%;
	height: 100%;
  font-size: 1.4rem; 
}

.body__wrapprer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333;
  min-height: 100vh;
}
 
footer {
  bottom: 0;
  height: 50px;
  margin-top: auto;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  line-height: 50px;
  font-size: 1.2rem;
  background: #738fab;
}

main {
	max-width: 1280px;
	width: 100%;
	min-height: calc(100vh - 106px);
	margin: 56px auto 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-around;
}

/* hoverでふわっと */
a,
button,
label {
  transition : all 0.5s ease 0s;
  text-decoration: none;
}

a:link {
    color: #000;
}

a.default-link {
    text-decoration: underline;
}

a.default-link:link {
    color:#1a0dab;
}

a:visited {
    color: #666;
}

a.disabled {
  pointer-events: none
}

/*list */

ul,
ol {
    margin-left: 2rem;
}

dl {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

.text--red {
    color: #de3631;
}

/* img */
img {
  border: none;
  width: 100%;
}

.img--auto {
  width:auto;
}

.img--max {
  width: 100%;
}
/* マーカー */
.marker {
	background: linear-gradient(transparent 60%, #ff9393 75%);
	font-weight: bold; 
}

/* button */
.button {
    font-size: 1.2rem;
    text-align: center;
    display: block;
    color: #333;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* アコーディオン */
.acbox {
    width: auto;
    font-size: 0px;
    margin: 0;
  }
  
  .ac_label {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    background: #ffa014;
    position: relative;
    display: block;
    padding: 10px;
    cursor: pointer;
    color: #fff;
  }
  
  .ac_label :hover{
    background: #7cbed8;
  }
  
  .ac_input {
    display: none;
  }
  
  .ac_label:after {
    font-family: FontAwesome;
    color: #fff;
    content:"\f063";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -5px;
    transform: rotate(0deg);
    transition: .3s;
  }
  
  .ac_input:checked ~ label::after {
    transform: rotate(180deg);
    transition: .3s; 
  }
  
  .acbox_under {
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: 0.15s;
  }
  
  .ac_input:checked ~ div{
    height: auto;
    padding: 10px;
    border-radius: 0px;
    background: #f5f5f5;
    opacity: 1;
  }
  
  .ac_input:checked ~ label {
    background: #ccc;
  }
  
  .acbox_under{
    font-size: 14px;
    color: #555;
  }

/* ━━━━━━━━━━━━━━━━━━
header
━━━━━━━━━━━━━━━━━━*/
/* top_header */
#top_header {
  position: fixed;
  top: -100px;
  width: 100%;
  margin: 100px auto 0;
  line-height: 1;
  z-index: 10;
  background: #738fab;
}

.top_header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 56px;
}

#top_header a ,#top_header {
  color: #333;
}

#top_header.fixed a {
    color: #333;
}

#top_header a#title {
  font-size: 2rem;
  opacity:0;
  animation-name: fadein;
  animation-duration: 3s; 
  animation-fill-mode: forwards;
	font-family: 'Josefin Slab', serif;
	color: #fff;
	padding-left: 15px;
}

#top_header.fixed a#title {
    color: #333;
}

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

#gnav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -700px;
  background: #d3dce0;
  width: 100vw;
  text-align: center;
  padding: 10px 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  margin: 0 calc(50% - 50vw);
  box-shadow: 0px 5px 3px 0px rgba(0,0,0,.3);
}

.gnav__lists {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 1280px;
    margin: 0 auto;
}

.gnav__group {
	margin:30px 3px;

}

.gnav__group .gnav__item {
    min-width: 180px;
    line-height: 2em;
    text-align: left;
    padding: 5px 10px;
    background: #fff;
    border-radius: 6px;
    margin: 3px 0;
}

.gnav__group .gnav__item .sub_ttl {
    font-size: 1.4rem;
    text-align: center;
	font-family: 'Josefin Slab', serif;
	border-bottom: 1px solid #eee;
}

.gnav__group .gnav__item .sub_ttl:before,
.gnav__group .gnav__item .sub_ttl:after {
	content: "―";
	padding: 3px;
}

.gnav__group .gnav__item .ac_inner_ttl {
    text-align: center;
    background: #eee;
    font-weight: normal;
    border-radius: 25px;
    margin: 5px 0;
}

.gnav__group .gnav__item .menu {
	list-style: none;
}

.gnav__lists_item a {
  padding: 0 30px;
  display: block;
}

#top_header .gnav_toggle__icon_item a,
#top_header.fixed .gnav_toggle__icon_item a {
	width: 100%;
	display: block;
	color: #fff;
	padding: 18px 0;
}

/* Fixed */
#top_header.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 56px;
  background: #fff;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}

#top_header.fixed .top_header__logo {
  font-size: 1.8rem;
  color: #333;
}

#top_header.fixed .gnav__lists_item a {
  color: #333;
  padding: 0 20px;
}
 
/* Toggle Button */
#gnav_toggle {
  display: none;
  position: absolute;
  right: 15px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 9;
}

.gnav_toggle__icon {
  position: relative;
}

.gnav_toggle__icon_item {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#top_header.fixed .gnav_toggle__icon_item {
  background: #666;
}

.gnav_toggle__icon_item:nth-child(1) {
  top: 0;
}
.gnav_toggle__icon_item:nth-child(2) {
  top: 11px;
}
.gnav_toggle__icon_item:nth-child(3) {
  top: 22px;
}

  #gnav_toggle {
    display: block;
  }

  /* #nav-toggle 切り替えアニメーション */
  .open .gnav_toggle__icon_item:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open .gnav_toggle__icon_item:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open .gnav_toggle__icon_item:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* #global-nav スライドアニメーション */
  .open #gnav {
    -moz-transform: translateY(756px);
    -webkit-transform: translateY(756px);
    transform: translateY(756px);
  }

/* ━━━━━━━━━━━━━━━━━━
sudebar
━━━━━━━━━━━━━━━━━━*/
.sidebar {
	width: 250px;
	overflow-Y: auto;
}

.side_inner {
    position: fixed;
    width: 250px;
    margin-bottom: 50px;
    padding: 25px 25px 100px;
    padding-right: 10px;
    height: calc(100% - 52px);
    overflow-Y: auto;
    z-index: 1;
}
.side_inner::-webkit-scrollbar{
	width: 3px;
}

.side_nav {
	list-style: none;
	box-shadow: 0 0 3px 3px rgba(0,0,0, .1);
	border-radius: 4px;
	margin: 15px 0;
	width: 200px;
}

.side_nav span {
    font-size: 1.1rem;
    float :right;
    background: #dc5854;
    padding: 2px 5px;
    vertical-align: middle;
    line-height: 1em;
    color: #fff;
    border-radius: 4px;
}

.side_nav li {
    clear: both;
}

.side_nav li a {
	display: block;
	padding: 5px 15px;
}

.side_inner li a:hover {
	background: #dfe7ef;
}

.side_inner li a.active {
    background: #9fb3c7;
    position: relative;
    color: #fff;
}


.side_inner li a.active:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 11px solid #9fb3c7;
}
/* ━━━━━━━━━━━━━━━━━━
main
━━━━━━━━━━━━━━━━━━*/

.main {
	width: calc(100% - 250px);
	padding: 0 50px;
}

/* OP */
.op {
	text-align: center;
}
.op img {
	width: 100%;
	margin-top: 40px;
}

/* content area */
.content_area {
    padding-bottom: 50px;
}

.content_area .content_ttl {
	font-weight: bold;
	font-size: 2rem;
	font-family: 'Josefin Slab', serif;
	border-bottom: 1px solid #ccc;
	margin: 30px 0 1em;
	padding: 0 15px 0 30px;
	position: relative;
}

.content_area .content_ttl:before {
    content: "";
    background: url(./../images/icon_ttl.png) no-repeat center / cover;
    width: 20px;
    height: 20px;
    bottom: 0;
    left: 0;
    position: absolute;
}

.content_area .sub_ttl {
    font-size: 1.8rem;
    text-align: center;
	font-family: 'Josefin Slab', serif;
}

.content_area .sub_ttl:before,
.content_area .sub_ttl:after {
	content: "―";
	padding: 3px;
}

.content_block p {
	margin-bottom: 1em;
}

/* sitemap area */
.site-map_block {
    display: flex;
    flex-flow: wrap;
}

.site-map_block .item {
    margin: 3px;
    min-width: 190px;
}

.site-map_block .item a {
    font-size: 1.2rem;
    text-align: center;
    display: block;
    color: #333;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.site-map_block .item a:hover {
    border: 1px solid #4d6379;
    background: #4d6379;
    color: #fff;
}

.bbs_area iframe {
  border:none;
  width:100%;
  min-height:100%;
}
/* アコーディオン */
.menu_area_wrap {
    display: flex;
}
.menu_area {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.ac_block {
    min-width: 190px;
    margin: 3px;
}

.ac_box {
    width: 100%;
    text-align: center;
}

.ac_btn {
    position: relative;
    padding: 5px 20px;
    margin: 3px 0;
    border: 1px solid #4d6379;
    background: #4d6379;
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.ac_btn i {
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 1s;
}

.ac_nav {
    display:none;
    text-align:left;
    color:#333;
}

.ac_btn.open,
.ac_active {
    display: block;
    transition: 1s;
}

.ac_btn.open i {
    transform: rotate(180deg);
}

.ac_nav .menu {
    list-style: none;
    margin: -3px 0 3px;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
}

.ac_nav .menu li:last-child {
    border-bottom: none;
}

.ac_nav .menu li {
    border-bottom: 1px solid #ccc;
}

.ac_nav .menu a {
    display: block;
    padding: 5px 20px;
    color: #333;
}

.ac_nav .ac_inner_ttl {
    padding: 5px 20px;
    color: #fff;
    margin: 3px 0;
    border-radius: 4px 4px 0 0;
    background: #98a2a9;
    font-weight: normal;
    text-align: center;
}

.ac_nav .menu a:hover {
    background: #9db6d0;
    color: #fff;
}

/* uploader */
.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pagination li {
    display: inline;
    position: relative;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #738fab;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
}

.pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
}

.pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pagination li a.all {
    background: #ff8174;
    border-radius: 4px;
}

.pagination li a:hover,
.pagination li a.active{
  color: #000;
  background: #bbc9d8;
  border-radius: 4px;
}

.uploader_flex,
.uploader_del dl,
.uploader_del_footer dl {
	display: flex;
}

.uploader_del input[type="text"] {
	padding: 5px 10px;
	border:1px solid #ccc;
	border-radius: 4px;
	margin: 0 5px;
	width: 100px;
}

.uploader_coment input[type="text"] {
	padding: 5px 10px;
	border:1px solid #ccc;
	border-radius: 4px;
	margin: 0 5px;
	width: calc(100% - 150px);
}

input[type="reset"] {
    background: #666;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #666;
    color: #fff;
}

input[type="submit"] {
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
}

.upload_pager {
    margin: 30px 0;
    padding: 15px 0 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table_uploader {
    width: 100%;
}

.table_uploader td {
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.table_uploader th {
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.table_uploader th {
    border: 1px solid #738fab;
    background: #738fab;
    padding: 5px 10px;
    color: #fff;
}
.uploader_del_footer {
	display: flex;
}

.uploader_del_footer input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
    width: 100px;
}

.checkbox_input:checked + .checkbox_parts{
  color: #d01137;
}
.checkbox_input:checked + .checkbox_parts {
    color: #1189d0;
}

textarea {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
    width: 100%;
    height: 10em;
}
/*━━━━━━━━━━━━━━━━━━
mons
━━━━━━━━━━━━━━━━━━━*/
.indices_area {
	width: 100%;
	overflow: hidden;
}
.indices_list {
	display: flex;
	list-style: none;
	flex-wrap: nowrap;
	overflow-x: auto;
	justify-content: center;
}
.indices_list a {
    width: 30px;
    height: 30px;
    display: block;
    margin: 3px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.mons_form_tbl_wrap {
    padding-top: 15px;
}

.mons_form_tbl {
    width: 100%;
    padding-top: 30px;
    border-collapse: collapse;
}

.mons_form_tbl th,
.mons_form_tbl td {
    border: 1px solid #eee;
    padding: 10px;
}

.mons_form_tbl th {
    width: 180px;
    text-align: right;
    background: #eee;
    font-weight: normal;
}

.mons_form_tbl td {
    width: calc(100% - 180px);
}

.mons_form_tbl input[type="text"],
.mons_form_tbl input[type="number"],
.mons_form_tbl select {
    padding: 3px 10px;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.mons_form_tbl input[type="number"] {
	width: 110px;
}

.mons_form_tbl p {
    margin-top: 1em;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.mons_form_tbl .input_box {
    display: flex;
}

.mons_form_tbl .input_box_item {
    margin: 0 3px;
}

.mons_form_tbl .checkbox_label {
    display: inline-block;
    margin: 5px;
}

.mons_top_tbl_wrap .form_btn_wrap a,
.mons_form_tbl_wrap input[type="submit"],
.mons_form_tbl_wrap button[type="submit"] {
    padding: 5px 10px;
    margin: 20px;
    float: right;
    background: #ff8d43;
    border: 1px solid #ff7d28;
    color: #fff;
    border-radius: 6px;
    font-size: 1.6rem;
    box-shadow: inset 0 2px 0 rgb(255 255 255 / 20%), inset 0 -2px 0 rgb(0 0 0 / 5%);
}

.mons_top_tbl_wrap input[type="submit"] {
    width: 120px;
}

.mons_top_tbl_wrap input[type="submit"]:hover {
    opacity: .8;
}

.mons_top_tbl a:hover {
    color: red;
}

.mons_top_tbl_wrap {
    padding-top: 30px;
    margin-top: 15px;
    border-top: 1px solid #ccc;
}

.mons_top_tbl {
    border-collapse: collapse;
    width: 100%;
}

.mons_top_tbl th,
.mons_top_tbl td {
    border: 1px solid #ccc;
    border-collapse:collapse;
    padding: 3px 5px;
    text-align: center;
}

.mons_top_tbl th {
    background: #eee;
}

.mons_top_tbl .mons_top_th1 {
    width: 30px;
}

.mons_top_tbl .mons_top_th2 {
    width: 180px;
}

.mons_top_tbl .mons_top_th3 {
    width: 60px;
}

.mons_top_tbl .mons_top_th4 {
    width: 40px
}

.mons_top_tbl .mons_top_th5 {
    width: 50px;
}

.mons_top_tbl .mons_top_th6 {
    width: 50px;
}

.mons_top_tbl .mons_top_th7 {
    width: 50px;
}


.mons_top_tbl td:nth-child(2),
.mons_top_tbl td:nth-child(7) {
    text-align: left;
}

.mons_top_tbl td a {
    display: block;
    position: relative;
}

.mons_top_tbl td a i {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 10px;
}

.mons_item h3 {
    background: #eee;
    padding: 3px 10px;
    position: relative;
}

.mons_item h3 span {
    font-weight: normal;
    position: absolute;
    right: 10px;
    bottom: 3px;
    font-size: 80%;
}

.mons_deta_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.mons_deta_wrap dl {
    display: flex;
    border: 1px solid #ccc;
    width: 120px;
    font-size: 1.2rem;
    margin: 1px;
    flex-direction: column;
}

.mons_deta_wrap dt, .mons_deta_wrap dd {
    width: 100%;
    display: block;
    text-align: center;
}

.mons_deta_wrap dt {
    background: #eee;
}

.mons_item {
    margin-top: 15px;
    padding: 30px 0;
    border-top: 1px solid #ccc;
}

.mons_item_wrap {
    display: flex;
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.mons_item_inner {
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}
.mons_item_inner h4 {
    background: #eee;
    text-align: center;
    font-weight: normal;
    font-size: 1.2rem;
}
.mons_item_wrap ol {
    margin: 10px;
    margin-left: 2em;
    font-size: 1.4rem;
}

.mons_item_box span {
    display: inline-block;
}

.mons_item_box .item_name {
    width: 100px;
}
.mons_item_box .item_rare {
    width: 50px;
} 
.mons_item_box .item_rare_ster {
    width: 70px;
}

.mons_item_box .item_rare_ster {
    width: 70px;
}

.date_text {
    padding: 20px;
}
.item_inner {
    display: flex;
    flex-wrap: wrap;
}

.yakata_room_num {
    width: 80px;
}

.yakata_room_in_time {
    width: 160px;
}

.yakata_in_name {
    width: calc(100% - 380px);
}

.item_inner {
    display: table;
    width: 100%;
    border: 1px solid #ccc;
    margin: 3px;
    padding: 5px;
}

.item_inner span {
    padding: 5px 10px;
    display: table-cell;
    font-size: 1.2rem;
    text-align: center;
}
.item_inner span:nth-child(1) {
    width: 80px;
}
.item_inner span:nth-child(2) {
    width: 80px;
}
.item_inner span:nth-child(4) {
    width: 150px;
}
.item_inner span:nth-child(5) {
    width: 150px;
}

.yadocho_your_name {
    text-align: left;
}

.yadocho_ttl_inner {
    background: #8a99a9;
    color: #fff;
}

.yakata_room_edit {
    width: 140px;
    text-align: center;
}

.yakata_room_edit a {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.check_in {
    color: #fff;
    background: #676a6d;
}

.check_out {
    color: #003c86;
    border: 1px solid #003c86;
}

a.btn_cancel {
    border: 1px solid #333;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}
.yadocho_edit a {
    border: 1px solid #333;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/*━━━━━━━━━━━━━━━━━━
bbs
━━━━━━━━━━━━━━━━━━━*/
.bbs_content_area {
  padding: 50px 0;
}
/*━━━━━━━━━━━━━━━━━━
chat
━━━━━━━━━━━━━━━━━━━*/
.chat_info_area {
    display: flex;
    justify-content: space-around;
    font-size: 1.2rem;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    width: 100%;
    align-items: center;
    border-radius: 4px;
    margin-top: 10px;
}

.moon span {
    padding: 3px;
    vertical-align: middle;
    display: inline-block;
}

.chat_top_history {
    height: 100px;
    overflow-y: auto;
    font-size: 1.2rem;
}

input[type="text"] {
    border: 1px solid #999;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 1.4rem;
}

span.view_name {
    width: 100px;
}

input.message {
    width: calc(100% - 250px);
    max-width: 400px;
}

.chat_top_info_item {
    overflow: hidden;
}

.chat_top_info_item .msg {
    font-size: 1.3rem;
    color: #333;
    display: inline-block;
}

.chat_top_info_item .name {
    color: #999;
    font-size: 1.2rem;
}

time {
    font-size: 1.2rem;
    float: right;
    color: #999;
}

.chat_top_info {
    max-height: 100px;
    overflow-y: auto;
    padding: 10px 0;
}

input.pl_message {
    width: calc(100% - 350px);
    max-width: 360px;
    border: 1px solid #999;
    padding: 3px 10px;
    font-size: 1.6rem;
    border-radius: 4px;
}

input#view_name {
    width: 120px;
}

.chat_area section {
    padding-top: 50px;
    padding: 20px 20px 50px;
}

.chat_area .sub_ttl {
    margin-bottom: 50px;
    background: linear-gradient(25deg, #0c2c4e, #cae7f3);
    color: #fff;
}

section table {
    width: 100%;
}

.chat_area th, .chat_area td {
    padding: 3px 10px;
}
.t_title th {
    background: #ccc;
    font-weight: normal;
    text-align: left;
}

.t_title th:nth-child(1) {
    width: 130px;
}

.t_title th:nth-child(2) {
    width: 180px;
}

.tab_box li {
    width: 50%;
}

.tab_box ul {
    list-style: none;
    display: flex;
    /* justify-content: space-around; */
    justify-content: center;
}

.tab_box a {
    display: block;
    padding: 10px 20px;
    border-bottom: none;
    margin: 20px 1.5px 0;
    border-radius: 4px 4px 0 0;
    text-align: center;
    background: #f5f5f5;
    color: #999;
}


.tab_box a.active {
    position: relative;
    background: #636a71;
    color: #fff;
    font-weight: bold;
}

.tab_box a.active:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #636a71;
}
/* ▼ testの為のcss */

/* ▲ testの為のcss */















/*━━━━━━━━━━━━━━━━━━
media Query（ここは共通）
━━━━━━━━━━━━━━━━━━━*/
/*====== max768px ======*/
@media (max-width: 767px) {
/* ハンバーガー */
  #top_header,
  .top_header__inner {
    width: 100%;
    padding: 0;
  }

  #top_header {
    top: 0;
    position: fixed;
    margin-top: 0;
  }

  /* Fixed reset */
  #top_header.fixed {
    padding-top: 0;
    background: transparent;
    background: #fff;
  }

  .mobile_header {
    background: #fff;
    width: 100%;
    height: 56px;
    z-index: 10;
    position: relative;
  }

  #top_header.fixed .top_header__logo,
  #top_header__logo {
    position: absolute;
    left: 13px;
    top: 0;
    color: #333;
    font-size: 2.6rem;
  }

  #gnav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -510px;
    background: #333;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  } 

  .gnav__lists {
    list-style: none;
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    left: 0;
    bottom: 0;
    font-size: 1.4rem;
    margin: 0 20px;
  }

  .gnav__lists_item {
    float: none;
    position: static;
  }

  #top_header .gnav_toggle__icon_item a,
  #top_header.fixed .gnav_toggle__icon_item a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0;
  }

  #gnav_toggle {
    display: block;
  }

  #top_header.fixed .gnav__lists_item a {
    color: #fff;
  }

  /* #nav-toggle 切り替えアニメーション */
  .open .gnav_toggle__icon_item:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open .gnav_toggle__icon_item:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open .gnav_toggle__icon_item:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* #global-nav スライドアニメーション */
  .open #gnav {
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
  
  /* sidebar */
  main {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .sidebar {
    display: none;
  }
  .main {
    width: 100%;
    padding: 15px;
  }
  .table_uploader {
    width: 80%;
  }
  .table_uploader .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 td {
    display: block;
    text-align: right;
    width: 100%;
  }
  .tbl-r05 td:first-child {
    background: #e9727e;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .site-map_block .item {
    margin: 3px;
    min-width: 100%;
  }
  
  .chat_info_area {
    flex-wrap: wrap;
  }
  .chat_info_area div.day {
    width: 100%;
    text-align: center;
  }

}