@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* 

- 基本指定
- フォント
-全体のレイアウト
- ヘッダー
- フッター

  
 */

/* !------------------------------ 基本指定 -- */
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  position: relative;
  font: 300 13px/1.4em 'noto sans japanese';
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow: hidden;
  width: 100vw;
}
.body_inner {
}

/* !------------------------------ フォント -- */

/* !------------------------------ 全体のレイアウト -- */
.main_wrap {
  background: #f5f5f5;
  height: 100vh;
  padding-top: 64px; /* ヘッダー分 */
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
}
main {
/*   max-width: 1080px; */
  width: 100%;
  margin: 0 auto;
  overflow-y:scroll;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  position: relative;
}
main > *:not(footer):not(.main_date) {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (max-width: 480px){
  .main_wrap {
    padding-top: 80px; /* ヘッダー+ナビ */
    flex-direction: column;
  }
  main {
    padding: 5px;
/*     overflow-y:visible; */
  }
}

/* !------------------------------ サイドバー開閉ボタン -- */
.button_menu_aside {
  cursor: pointer;
  width: 24px !important;
  height: 24px !important;
  border-radius: 0 50% 50% 0;
  background: #1e5799;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  position: absolute;
  top: 0;
  right: 3px;
  z-index: 1;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.button_menu_aside:before{
  content: "\f104";
  color: #fff;
  font: normal 16px/1em 'fontawesome';
}
.button_menu_aside.off:before {
  content: "\f105";
}
aside.off {
  width: 0 !important;
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);
  -webkit-flex: 0 0 0; flex: 0 0 0;
}
aside.off > *:not(.button_menu_aside) {
  display: none;
}
@media screen and (max-width: 560px){
  .button_menu_aside {
    display: none;
  }
}

/* !------------------------------ サイドバー -- */
aside {
  background: rgb(30,87,153);
  background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(14,158,165,1) 50%);
  background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(14,158,165,1) 50%);
  background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(14,158,165,1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0e9ea5',GradientType=0 );
  -webkit-flex: 0 0 200px; flex: 0 0 200px;
  opacity: 1;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px){
  aside {
    -webkit-flex: 0 0 160px; flex: 0 0 160px;
  }
}
@media screen and (max-width: 560px){
  aside {
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    -webkit-flex: 0 0 100px; flex: 0 0 100px;
    background: rgb(34,68,119);
    background: -moz-linear-gradient(top, rgba(34,68,119,1) 0%, rgba(14,158,165,1) 100%);
    background: -webkit-linear-gradient(top, rgba(34,68,119,1) 0%,rgba(14,158,165,1) 100%);
    background: linear-gradient(to bottom, rgba(34,68,119,1) 0%,rgba(14,158,165,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#224477', endColorstr='#0e9ea5',GradientType=0 );
    z-index: 9;
  }
}

/* !------------------------------ サイドバー ユーザー -- */
.aside_user {
  padding: 20px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  position: relative;
}
.aside_user > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aside_user > a:hover {
  background: rgba(255,255,255,.3);
}
.aside_user_img {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #fff;
  background-size: cover !important;
  border-radius: 50%;
  margin: 0 15px 0 0;
  -webkit-flex: 0 0 36px; flex: 0 0 36px;
}
.aside_user_text {
  color: #fff;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: flex-start; align-items: flex-start;
  -webkit-justify-content: center; justify-content: center;
}
.aside_user .user {
  font: 600 13px/1em 'noto sans japanese';
  letter-spacing: .1em;
}
.aside_user .plan {
  font: 400 11px/1em 'noto sans japanese';
  margin: 4px 0 0;
}
@media screen and (max-width: 560px){
  .aside_user {
  /*     padding: 8px 15px; */
  display: none;
  }
}

/* !------------------------------ サイドバー ナビゲーション -- */
aside .nav_aside li + li {
  margin: 5px 0 0;
}
aside .nav_aside a {
  color: #fff;
  font: 500 11px/1em 'noto sans japanese';
  letter-spacing: .1em;
  border-right: 4px solid transparent;
  display: block;
  padding: 15px 20px;
}
aside .nav_aside a:hover {
  background: rgba(255,255,255,.3);
}
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .rp-effect {/*エフェクト*/
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;/*波紋の濃さ*/
  transform: scale(0);
  background: #FFF;/*波紋色*/
  animation: ripple 300ms;
  pointer-events: none; 
}
@-webkit-keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2.0);
  }
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2.0);
  }
}
aside .nav_aside .current a {
  border-color: #f5f5f5;
}

@media screen and (max-width: 560px){
  aside .nav_aside {
    margin: 0;
    padding: 0;
  }
  .nav_aside {      
    width: 100%;
    overflow-x:scroll;
    -webkit-overflow-scrolling: touch;
  }
  .nav_aside::-webkit-scrollbar{
    display:none;
  }
  .nav_aside ul {
    width: 900px;
    overflow: hidden;
    margin: 0 auto;
  }
  .nav_aside li {
    float: left;
    width: 150px;
  }
  aside .nav_aside li + li {
    margin: 0;
  }
  aside .nav_aside a{
    font: 500 12px/1em 'noto sans japanese';
    text-align: center;
    padding: 1em 0;
    border: none;
  }
  .nav_aside .current a {
    color: #fff;
    background: #224477;
  }
}


/* !------------------------------ ヘッダーメニュー -- */
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
.button_menu {
  cursor: pointer;
  border: none;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.button_menu_inner {
  color: #fff;
  width: 24px;
  height: 24px;
  background: #224477;
  border-radius: 50%;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.button_menu_inner:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(34,68,119);
  background: -moz-linear-gradient(top, rgba(34,68,119,1) 0%, rgba(14,158,165,1) 100%);
  background: -webkit-linear-gradient(top, rgba(34,68,119,1) 0%,rgba(14,158,165,1) 100%);
  background: linear-gradient(to bottom, rgba(34,68,119,1) 0%,rgba(14,158,165,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#224477', endColorstr='#0e9ea5',GradientType=0 );
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50% , -50%);
  -ms-transform: translate(-50% , -50%);
  transform: translate(-50% , -50%);
  -webkit-transform: translate3d(-50%,-50%,0);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.button_menu_inner.on{
  -webkit-transform : rotate(90deg) ;
  -ms-transform : rotate(90deg) ;
  transform : rotate(90deg) ;
  -webkit-transform-origin : 50% 50% ;
  -ms-transform-origin : 50% 50% ;
  transform-origin : 50% 50% ;
}
.button_menu_inner.on i:before{
  content: "\f00d";
}
.button_menu_inner.on:before {
  width: 350vw;
  height: 350vw;
  opacity: .9;
}
@media screen and (max-width: 960px){
  .button_menu {
    display: block;
  }
}
@media screen and (max-width: 768px){  
  .button_menu_inner.on:before {
    width: 250vh;
    height: 250vh;
  }
}
@media screen and (max-width: 560px){
  .button_menu {
    right: 10px;
  }
}

/* メニューの中身 */
.nav_header {
  width: 240px;
  height: 50vh;
  position: fixed;
  top: 50%;
  left: 150%;
  opacity: 0;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  z-index: 11;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.nav_header.on {
  opacity: 1;
  left: 50%;
}
.list_nav_header {
  width: 100%;
/*
  -webkit-transform: translate3d(0,-10%,0);
  transform: translate3d(0,-10%,0);
*/
}
.list_nav_header li {
  padding: 5px;
}
.list_nav_header li:nth-of-type(1) {
  -webkit-transform: translate3d(3em,0,0);
  transform: translate3d(3em,0,0);
}
.list_nav_header li:nth-of-type(2) {
  -webkit-transform: translate3d(5em,0,0);
  transform: translate3d(5em,0,0);
}
.list_nav_header li:nth-of-type(3) {
  -webkit-transform: translate3d(7em,0,0);
  transform: translate3d(7em,0,0);
}
.list_nav_header li:nth-of-type(4) {
  -webkit-transform: translate3d(9em,0,0);
  transform: translate3d(9em,0,0);
}
.list_nav_header li:nth-of-type(5) {
  -webkit-transform: translate3d(11em,0,0);
  transform: translate3d(11em,0,0);
}
.list_nav_header li:nth-of-type(6) {
  -webkit-transform: translate3d(13em,0,0);
  transform: translate3d(13em,0,0);
}
.list_nav_header li:nth-of-type(7) {
  -webkit-transform: translate3d(15em,0,0);
  transform: translate3d(15em,0,0);
}
.nav_header.on .list_nav_header li:nth-of-type(1),
.nav_header.on .list_nav_header li:nth-of-type(2),
.nav_header.on .list_nav_header li:nth-of-type(3),
.nav_header.on .list_nav_header li:nth-of-type(4),
.nav_header.on .list_nav_header li:nth-of-type(5),
.nav_header.on .list_nav_header li:nth-of-type(6),
.nav_header.on .list_nav_header li:nth-of-type(7) {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.list_nav_header a {
  color: #fff;
  font: 600 12px/1em 'noto sans japanese';
  display: block;
  padding: 15px 15px 15px 40px;
  position: relative;
}
.list_nav_header a:before {
  content: "";
  width: 17px;
  height: 17px;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate3d(0,-50%,0);
}
.list_nav_header .logout a:before {
  background: url(../img/ico_logout.svg)no-repeat center center;
}
.list_nav_header .favorite a:before {
  background: url(../img/ico_favorite.svg)no-repeat center center;
}
.list_nav_header .history a:before {
  background: url(../img/ico_history.svg)no-repeat center center;
}
.list_nav_header .contact a:before {
  background: url(../img/ico_contact.svg)no-repeat center center;
}
/* 日付 */
.list_nav_header .date {
  padding-top: 10px;
  padding-bottom: 10px;
}
.list_nav_header .main_date {
  color: #fff;
  font-size: 10px;
  position: relative;
  top: auto;
  right: auto;
}
.list_nav_header .main_date img {
  width: 12px;
  height: 12px;
}
/* 検索 */
.nav_header .header_form .select_wrap{
  width: 100%;
  margin: 0 0 5px;
}
.list_nav_header .search {
  padding-bottom: 10px;
}
.list_nav_header .search input {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.list_nav_header .search input:focus {
  color: #242424;
  background: #fff;
}
/* 翻訳 */
.list_nav_header .translate {
  padding-top: 40px;
}
.list_nav_header li .switch-btn {
  margin: 0;
}

/* !------------------------------ ヘッダーナビ　ユーザー -- */
.list_nav_user {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  position: relative;
}
.list_nav_user:before {
  content: "\f105";
  color: #fff;
  font: normal 17px/1em 'fontawesome';
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list_nav_user:hover:before {
  right:0;
}
.list_nav_user > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.list_nav_user_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: contain !important;
  -webkit-flex: 0 0 50px; flex: 0 0 50px;
  margin: 0 15px 0 0;
  position: relative;
}
.list_nav_user_img:before {
  content: "";
  display: block;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.list_nav_user:hover .list_nav_user_img:before {
  animation: scale 1s ease 1;
}
@keyframes scale {
  0% {opacity: 1;}
  50% {opacity: 1;}
  100% {opacity: 0;
    -webkit-transform:scale(1.5);
    transform:scale(1.5);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

.list_nav_user_text {
  color: #fff; 
}
.list_nav_user_text .user {
  font: 600 13px/1em 'noto sans japanese';
  letter-spacing: .1em;
}
.list_nav_user_text .plan {
  font: 400 11px/1em 'noto sans japanese';
  margin: 4px 0 0;
}

/* !------------------------------ ヘッダー -- */
header {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  background: #fff;
  border-bottom: 3px solid #224477;
  position: fixed;
  z-index: 10;
  text-align: center;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: flex-start; justify-content: flex-start;
}
.header_logo {
  display: block;
  -webkit-flex: 0 0 200px; flex: 0 0 200px;
}
.header_logo a {
  width:  160px;
  display: block;
}
@media screen and (max-width: 960px){
  .header_logo {
    -webkit-flex: 0 0 160px; flex: 0 0 160px;
  }
  .header_logo a {
    width: 140px;
  }
}
@media screen and (max-width: 560px){
  header {
    height: 44px;
    padding: 0 15px;
  }
  .header_logo {
    width: 140px;
  }
  .header_logo a {
    margin: 0;
  }
}

/* !------------------------------ ヘッダーメイン -- */
.header_form  {
  display: -webkit-flex; display: flex; 
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
}
.header_form .select_wrap {
  margin: 0 5px 0 0;
}
.header_form .input_combi input[type="text"] {
  padding-right: 80px;
}
.header_form button {
  font: 600 16px/1em 'noto sans japanese';
  padding: .4em 2em;
}
form.header_form > a{
  color: #333;
  font: 500 11px/1em 'noto sans japanese';  
  margin: 0 0 0 8px;
}
form.header_form > a:hover{
  color: #0e9ea5;
  text-decoration: none;
}
@media screen and (max-width: 640px){
  header .header_form {
    display: none;
  }
}

/* !------------------------------ ヘッダーインナー -- */
.header_inner {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: flex-end; justify-content: flex-end;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
}
.header_inner > a {
  font: 500 11px/1em 'noto sans japanese';
}
.header_inner > a + a {
  margin: 0 0 0 20px;
}
.header_inner > a:hover {
  color: #247;
}
.header_inner .switch-wrap {
  margin: 0 0 0 30px;
}
.header_inner .switch-wrap label {
  margin-right: 0;
}
@media screen and (max-width: 900px){
  .header_inner .switch-wrap { 
    display: none;
  }
  .header_inner {
    margin-right: 40px;
  }
}
@media screen and (max-width: 800px){
  .header_inner > a {
    display: none;
  }
}
@media screen and (max-width: 640px){
  .header_inner {
    display: none;
  }
}

/* ユーザー */
.header_user {
  margin: 0 10px 0 20px;
}
.header_user_img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: black;
  background-size: cover !important;
}
.header_user_img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
}
.header_user_img:hover:before {
  border-color: #224477;
}
@media screen and (max-width: 960px){
  .header_user {
    margin: 0 30px 0 20px;
  }
}
@media screen and (max-width: 900px){
  .header_user {
    display: none;
  }
}

/* ヘッダーメニュー */
.header_menu a {
  font: 600 10px/1em 'noto sans japanese';
}
.header_menu a:hover {
  color: #224477;
}
@media screen and (max-width: 960px){
  .header_menu {
    display: none;
  }
}

/* !------------------------------ フッター -- */
footer {
  margin: -20px;
  margin-top: 50px;
  background: transparent;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
  position: relative;
}
.footer_main {
  color: #fff;
  text-align: center;
  width: 100%;
  background: #224477;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 6px;
}
.footer_main small {
  color: #fff;
  font: 300 10px/1em 'gotham';
}
@media screen and (max-width: 480px){
  footer {
    margin: -5px;
    margin-top: 45px;
  }
}
/* !------------------------------ メインのコンテンツ - 日付 -- */
.main_date {
  color: #224477;
  font: 600 12px/1em 'gotham';
  letter-spacing: .05em;
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
}
.main_date img {
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
.main_date .day {
  margin: 0 0 0 10px;
}
@media screen and (max-width: 480px){
  main .main_date {
    font: 300 10px/1em 'gotham';
    -webkit-flex: 0 0 auto; flex: 0 0 auto;
    top: 10px;
    right: 10px;
    margin: 3px 0 0;
  }
  .main_date img {
    width: 12px;
    height: 12px;
  }
}

/* !------------------------------ メインのコンテンツ - パンくず -- */
.bread {
  font: 300 10px/1em 'noto sans japanese';
  margin: 0 0 20px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-flex-shrink:0;flex-shrink:0;
}
.bread li + li {
  margin-left: 30px;
  position: relative;
}
.bread li:before {
  content: "\f105";
  color: #555;
  font: normal 10px/1em 'fontawesome';
  position: absolute;
  top: 60%;
  left: -15px;
  -webkit-transform: translate(-50% , -50%);
  -ms-transform: translate(-50% , -50%);
  transform: translate(-50% , -50%);
}
.bread a {
  font: 300 10px/1em 'noto sans japanese';
  display: block;
}
.bread a:hover {
  color: #0e9ea5;
}
.bread img {
  width: 12px;
}
/* パンくず直下の見出し */
.bread + [class*="list_main_"] > li > h2 {
  margin-top: 0;
  position: relative;
}
.bread + [class*="list_main_"] > li > h2 .ico {
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* !------------------------------ メインのコンテンツ - ページ遷移ボタンエリア -- */
.page_transition {
  margin: 0 0 15px;
}


/* !------------------------------ メインのコンテンツ - タイトル -- */

main > ul:not(.bread) + h2 {
  margin-top: 20px;
}
main > h2 * {
  float: right;
}

/* リスト外にタイトル */
main > h2 {
  color: #224477;
  font: 600 17px/1.3em 'noto sans japanese';
  margin: 0 0 15px;
}
/* リスト内にタイトル */
main li > h2 {
  color: #224477;
  font: 600 17px/1.3em 'noto sans japanese';
  margin:  15px 0 10px;
}

/* !------------------------------ メインのコンテンツ - リスト -- */
main > [class*="list_main_"] {
  margin: 0 -5px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  clear: both;
  -webkit-flex: 0 0 auto; flex: 0 0 auto;
}
main > [class*="list_main_"] > li {
  padding: 5px;
}
main > [class*="list_main_"] > li > article {
  background: #fff;
  border: 1px solid #eee;
}

/* !------------------------------ メインのコンテンツ - アーティクル -- */
/* アーティクルタイトル */
.article_ttl {
  color: #224477;
  font: 600 15px/1.3em 'noto sans japanese';
  padding: 10px;
  border-bottom: 1px dotted #eee;
  position: relative;
}
.article_ttl [class*="btn_"] {
  float: right;
}
.article_ttl [class*="btn_"] + [class*="btn_"] {
  margin-right: 5px;
}
.article_cnt {
  padding: 10px;
  overflow: hidden;
}

/* !------------------------------ テーブルのレスポンシブ -- */

@media screen and (max-width: 1080px){
  [class*="table_wrap"][class*="1080"] {
    overflow: auto;
  }
  [class*="table_wrap_inner"][class*="1080"] {
    width: 1000px !important;
    border: 2px solid #224477;
  }
}
@media screen and (max-width: 960px){
  [class*="table_wrap"][class*="960"] {
    overflow: auto;
  }
  [class*="table_wrap_inner"][class*="960"] {
    width: 900px !important;
    border: 2px solid #224477;
  }
}
@media screen and (max-width: 640px){
  [class*="table_wrap"] {
    overflow: auto;
  }
  [class*="table_wrap_inner"] {
    width: 600px !important;
    border: 2px solid #224477;
  }
}
/* !------------------------------ メインのコンテンツ - アーティクル - テーブル -- */
.table_article_normal {
  font: 300 13px/1.3em 'noto sans japanese';
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
}
.table_article_normal:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd; 
}
.table_article_normal tr + tr {
  border-top: 1px solid #f5f5f5 ;
}
.table_article_normal th,
.table_article_normal td {
  padding: .6em;
}
.table_article_normal thead tr{background: rgb(48,96,168);
background: -moz-linear-gradient(top, rgba(48,96,168,1) 0%, rgba(34,68,119,1) 100%);
background: -webkit-linear-gradient(top, rgba(48,96,168,1) 0%,rgba(34,68,119,1) 100%);
background: linear-gradient(to bottom, rgba(48,96,168,1) 0%,rgba(34,68,119,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3060a8', endColorstr='#224477',GradientType=0 );
}
.table_article_normal thead th {
  color: #fff;
  font: 700 12px/1.3em 'noto sans japanese';
}

/* !------------------------------ メインのコンテンツ - アーティクル - リスト -- */
.list_article_hotel li {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
}
.list_article_hotel li.hotel_img {
  display: block;
}
.hotel_img div {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover !important;
}
.list_article_hotel li:not(.hotel_img) + li {
  border-top: 1px solid #f5f5f5;
}
.list_article_hotel li:not(.hotel_img) > div {
  padding: .6em;
}
.hotel_ttl {
  font: 500 12px/1em 'noto sans japanese';
  -webkit-flex: 0 0 160px; flex: 0 0 160px;
}
.hotel_cnt {
  font: 300 12px/1em 'noto sans japanese';
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
}

/* !------------------------------ メインのコンテンツ - アーティクル - メンバーリスト -- */
.list_article_review_wrap,
.list_news_wrap {
  max-height: 400px;
  overflow: auto;
}
.list_article_review > li{
  border: 1px solid transparent;
  padding: 15px;
  position: relative;
}
.list_article_review > li + li {
  border-top: 1px dotted #eee;
}
.list_article_review > li article {
  padding: 0 0 0 50px;
  position: relative;
}
.list_article_review_img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #224477;
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 0;
}
.list_article_review > li a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.list_article_review > li a:hover {
  border-color: #0e9ea5;
}
.review_ttl {
  font: 500 14px/1.4em 'noto sans japanese';
  margin: 0 0 8px;
}
.review_ttl .site,
.review_ttl .date {
  color: #bbb;
  font: 300 11px/1em 'gotham';
  padding: 3px 5px;
  letter-spacing: .05em;
  float: right;
}
.review_ttl .site {
  color: #fff;
  background: #0e9ea5;
}
.review_title {
  font: 700 14px/1.4em 'noto sans japanese';
  margin: 0 0 5px;
}
.review_cnt {
  font: 300 12px/1.5em 'noto sans japanese';
}
@media screen and (max-width: 560px){
  .list_article_review > li article {
    padding: 50px 0 0;
  }
}

/* !------------------------------ メインのコンテンツ - アーティクル - ニュース -- */
.list_news li {
  border-top: 1px dotted #eee;
}
.list_news a {
  padding: 15px;
  display: block;
  position: relative;
}
.list_news .data {
  color: #bbb;
  font: 300 11px/1em 'gotham';
  letter-spacing: .05em;
  position: absolute;
  top: 15px;
  right: 15px;
}
.list_news p {
  font: 400 11px/1.5em 'noto sans japanese';
  padding: 0 70px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list_news a:hover {
  background: #f5f5f5;
}

/* !------------------------------ メインのコンテンツ - アーティクル - スターのリスト -- */
.list_star {
  color: #0e9ea5;
  font: normal 12px/1em 'fontawesome';
  margin: 0 0 10px;
}
.list_star.caution {
  color: #ff3b7b;
}



/* 共通ホテルリスト */
[class*="list_main_"].list_hotel {
  margin-top: -5px;
}
.list_hotel article{
  position: relative;
}
.list_hotel .article_ttl {
  padding-right: 32px; /* お気に入りボタンがつくため */
  border-bottom: none;
}
.list_hotel article .link {
  display: block;
  border: 1px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.list_hotel article .link:hover {
  border-color: #0e9ea5;
}
.list_hotel .article_ttl {
  font-size: 11px;
}
.ico {
  color: #ddd;
  font: normal 12px/1em 'fontawesome';
  position: absolute;
  top: 1em;
  right: 10px;
  z-index: 3;
}
.ico.on i:before {
  content: "\f004";
  color: #f17d93;
}
.ico:hover {
  color: #f17d93;
}
.ico.chart {
  display: block;
  width: 12px;
}
.ico.chart:hover {
  opacity: .5;
}
/* !--------------------------------------- 共通 -- */
/* !-------------------- カレンダー -- */
.list_calendar_normal {
  font: 500 11px/1em 'noto sans japanese';
  margin-right: -7px !important;
}
.list_calendar_normal > li {
  border: 1px solid #224477;
  margin-top: -1px;
  margin-left: -1px;
}
.list_calendar_normal .none {
  background: #bbb;
}
.list_calendar_normal .head {
  color: #fff;
  background: #224477;
  text-align: center;
}
.list_calendar_normal .day {
  padding: 5px;
}
.list_calendar_normal .price {
  padding: 5px 0;
}
.list_calendar_normal .day {
  color: #247;
  font: 900 10px/1em 'gotham';
  text-align: left;
  margin: 0 0 -5px;
}
.list_calendar_normal .price {
  font: 600 10px/1em 'gotham';
  text-align: center;
}



