@charset "utf-8";

    :root {
      --blk: #182527;
      --wt: #efefef;
      --bg: #1a3236;
      --bg-2: #203b40;
      --gold: #d4af37;
      --gold-bold: #af7a0f;
      --text: #f5f5f5;
      --muted: #c7c7c7;
      --paper: #f3ecdf; /* beige content background */
      --paper-2: #ece3d2;
      --ink: #202020;
      --ink-muted: #555;
      --line: #d8ccb6;
    }

    html, body {
/*
      background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 20%), linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent 20%), url('../img/dp26_bg.svg');
*/
      background: var(--bg);
      background-image: url('../img/dp26_bg.svg');
      background-size: 80%;
      background-repeat: repeat;
      background-attachment: fixed;
      color: var(--text);
      scroll-behavior: smooth;
    }

    .deco-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .9;
    }

    .deco-frame {
      border: 1px solid rgba(212,175,55,.65);
      box-shadow: inset 0 0 0 1px rgba(212,175,55,.25);
    }

    .brand-title, .page-title, .content-h1 {
      font-family: "Roboto Condensed", sans-serif;
      letter-spacing: .05em;
    }

    .btn-gold {
      color: var(--gold);
      border: 1px solid var(--gold);
      background: transparent;
      border-radius: 0;
      padding: .7rem 1.4rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .btn-gold:hover {
      background: var(--gold);
      color: #0f1f22;
    }

    /* Sections */
    .content-section {
      padding: 72px 0;
      border-top: 1px solid rgba(212,175,55,.25);
    }

    .content-section.alt {
      background: var(--bg-2);
    }

    .section-title {
      color: var(--gold);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      margin-bottom: .25rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      -webkit-text-stroke: 8px var(--bg-2);
      text-stroke: 8px var(--bg-2);
      paint-order: stroke;
    }

    .section-subtitle {
      font-size: 1.25rem;
      margin-bottom: .75rem;
      font-weight: 600;
    }

    .section-copy {
      color: var(--muted);
      max-width: 700px;
      margin-bottom: 1.25rem;
    }

    .deco-panel {
      padding: 24px;
      position: relative;
      background: rgba(0,0,0,.08);
    }

    .deco-panel:before,
    .deco-panel:after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      border: 1px solid var(--gold);
      opacity: .7;
    }

    .deco-panel:before {
      top: 10px; left: 10px;
      border-right: none; border-bottom: none;
    }

    .deco-panel:after {
      right: 10px; bottom: 10px;
      border-left: none; border-top: none;
    }

    .mini-label {
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--gold);
      margin-bottom: .35rem;
    }

    /* Page wrapper */
    .page-wrap {
      padding: 28px 0 56px;
    }

    .content-shell {
      background: var(--paper);
      color: var(--ink);
      border: 4px double rgba(212,175,55,.45);
      box-shadow: 0 8px 24px rgba(0,0,0,.22);
    }

    .content-inner {
      padding: 28px 22px 40px;
    }

    /* Page title */
    .page-title {
      color: #1e2f33;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      margin-bottom: .6rem;
      text-transform: uppercase;
    }

    .page-lead {
      color: var(--ink-muted);
      margin-bottom: 1rem;
    }

    /* Category tabs */
    .nav-tabs {
      border-bottom: 2px solid var(--line);
    }

    .nav-tabs .nav-link {
      color: #2c3f43;
      border: 1px solid transparent;
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem;
      margin-right: .25rem;
      font-weight: 600;
    }

    .nav-tabs .nav-link:hover {
      border-color: var(--line);
      background: var(--paper-2);
    }

    .nav-tabs .nav-link.active {
      color: #13272b;
      background: #fffdf7 !important;
      border-color: var(--line) var(--line) #fffdf7 !important;
    }

    .tab-content {
      border: 1px solid var(--line);
      border-top: none;
      background: #fffdf7;
      padding: 20px 16px 24px;
    }

    .page-content {
      border: 1px solid var(--line);
      background: #fffdf7;
      padding: 28px 28px 34px;
    }

    /* Subcategory links */
    .subcat-links {
      background: var(--paper-2);
      border: 1px solid var(--line);
      padding: 10px 12px;
      margin-bottom: 18px;
      font-size: .95rem;
    }

    .subcat-links a {
      color: #274a50;
      margin-right: 14px;
      text-decoration: none;
      border-bottom: 1px dotted #274a50;
    }

    .subcat-links a:hover {
      color: #000;
      border-bottom-style: solid;
    }

    /* Headings hierarchy */
    .content-h1 {
      font-size: 1.8rem;
      color: #1d3135;
      margin: 10px 0 14px;
      border-bottom: 4px double var(--line);
    }

    .content-h2 {
      font-size: 1.3rem;
      margin-top: 28px;
      margin-bottom: 10px;
      padding-left: 10px;
      border-left: 4px solid var(--gold);
      color: #1e2f33;
      font-weight: 700;
    }

    .content-h3 {
      font-size: 1.05rem;
      margin-top: 18px;
      margin-bottom: 8px;
      color: #1e2f33;
      font-weight: 700;
    }

    .muted {
      color: var(--ink-muted);
    }

    /* Image placeholders */
    .photo-box {
      border: 1px solid #cdbfa7;
      background: #f7f1e6;
      color: #6a5f52;
      padding: 18px;
      text-align: center;
      margin: 12px 0 18px;
      font-size: .95rem;
    }

    /* button */
    .btn-gold {
      color: #1d3135;
      border: 1px solid var(--gold);
      background: var(--gold);
      border-radius: 0;
      padding: .65rem 1.2rem;
      font-weight: 700;
      letter-spacing: .04em;
    }

    .btn-gold:hover {
      background: #c49f2e;
      border-color: #c49f2e;
      color: #0f1f22;
      text-decoration: none;
    }

    .btn-gold.disabled {
      background: #e3cc7e;
      border-color: #e3cc7e;
      color: #999;
      cursor: default;
    }

    /* Table */
    .table-wrap {
      border: 1px solid #ccbfa8;
      background: #fff;
      overflow-x: auto;
      margin-top: 10px;
    }

    .table {
      margin-bottom: 0;
      color: var(--ink);
      background: #fff;
    }

    .table thead th {
      background: #f1e7d5;
      border-bottom: 2px solid #ccbfa8;
      white-space: nowrap;
    }

    /* table hover for readability */
    .table tbody tr {
      transition: background-color .15s ease;
    }

    .table tbody tr:hover {
      background: #f9f2e4;
    }

    @media (min-width: 768px) {
      .content-inner {
        padding: 40px 46px 56px;
      }
    }
    @media (min-width: 768px) {
      .tab-content { padding: 28px 28px 34px; }
    }
    /* Small tweaks */
    @media (max-width: 767.98px) {
      .hero {
        min-height: 62vh;
      }
      .hero-sub {
        font-size: .95rem;
      }
      .deco-panel {
        margin-top: 14px;
      }
    }


a { color: #b26b00;}
a:hover { color: #ff8f45; }
a.lighten { color: #ffc547;}
a.lighten:hover { color: #ffde96; }

.no-gutter > [class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}

.bg-light {
	background-color: #192d31 !important;
}
.bg-white {
	background-color: #ede7cd !important;
	color: #333;
}
.btn-outline-info {
    background-color: #fff;
}

.shadow {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
}

.card {
	border: 1px solid var(--line);
}
.card-header {
    background-color: #f2dfc1;
}

hr.full {
    width: calc(100% + 56px);
    margin: 0 -28px;
    border: none;
    border-bottom: 1px solid var(--line);
}

/* header */

#header {
	background: var(--blk);
}
.header-box {
	height: 70px;
}
.header-logo img {
	overflow: visible;
	z-index: 10;
}
.header-logo h1 {
	font-size: 18px;
	color: #f3d36a;
	margin: 8px 0 0 0;
	padding: 0;
}
.header-logo p {
	color: #f6f2dd;
	margin: 0;
	padding: 0;
}
.header-logo a:hover {
	text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: ">"
}

.main {
	background-image: url('../img/dp26_bg.svg');
	background-size: 80%;
	background-repeat: repeat;
	background-attachment: fixed;
}

/* title */

h1, h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.heading {
  width: 100%;
  font-size: 1.6em;
  background: #1a3236;
  color: #fdffe9;
  padding: 6px 14px;
  border: 1px solid #bd8e3c;
  border-left: 4px solid #bd8e3c;
  border-right: 4px solid #bd8e3c;
}

.double_line {
  background: #002b32;
  display: inline-block;
  padding: 5px 3em;
  box-shadow: 0 0 0 1px var(--gold), 6px 6px 0 0 #002b32, 6px 6px 0 1px var(--gold);
  color: #f3d36a;
}
.double_line h1 {
  font-size: 2.2em;
  padding: 0;
  margin: 0;
}

.page_title {
  color: #50541f;
  font-size: 2.2em;
  padding: 0;
  margin: 0;
}
.page_title::after {
      display: block;
      content: ' ';
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .9;
	margin-bottom: 1em;
}

h3.dot {
	padding: 5px 10px;
	margin: 5px 15px 15px 5px;
	width: 98%;
	display: inline-block;
	background: var(--gold-bold);
	vertical-align: middle;
	/*border-radius: 20px;*/
	font-size: 17px;
	font-weight: 600;
	line-height: 20px;
	color: #fff;
}
h3.dot:before {
	content: '■';
	color: white;
	margin-right: 6px;
	font-size: 14px;
}

h3.lined {
    padding: 2px 0;
    margin: 5px 3px 20px 3px;
    width: 98%;
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 24px;
    color: #445550;
    border-bottom: 1px solid #d4e4e2;
}
h3.lined:before {
    content: '■';
    color: #89d7cc;
    margin-right: 6px;
    font-size: 22px;
}

h4.dot {
	padding: 3px 6px;
	margin: 4px 12px 12px 4px;
	width: 98%;
	display: inline-block;
	background: #fddc9d;
	vertical-align: middle;
	border-radius: 16px;
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
	color: #444;
}
h4.dot:before {
	content: '■';
	color: white;
	margin-right: 5px;
	font-size: 16px;
}
h4.lined {
    padding: 2px 0;
    margin: 5px 3px 20px 3px;
    width: 98%;
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 20px;
    border-bottom: 1px solid #cdc29e;
}
h4.lined:before {
    content: '◆';
    color: var(--gold);
    margin-right: 6px;
    font-size: 21px;
}

h5.lined {
    padding: 2px 0;
    margin: 5px 3px 20px 3px;
    width: 98%;
    display: inline-block;
    line-height: 20px;
    border-bottom: 1px solid #cdc29e;
}

.text-info {
    color: #af0000 !important;
}

/* list */
ul.asterisk li {
    list-style-type: none;
    text-indent: -0.6em;
}
ul.asterisk li:before {
    display: inline;
    content: "* ";
}
.uline > li {
	border-bottom: 2px dotted #ddd;
	margin-bottom: 15px;
}
.ulines > li {
	border-bottom: 2px dotted #ddd;
	margin-bottom: 15px;
}
.uline_sml > li {
	border-bottom: 1px solid #eee;
	margin-bottom: 4px;
}
.wide_list > li {
    padding: 10px 10px 20px 10px;
    line-height: 1.5;
}
.wide_list_m > li {
    padding: 0px 10px 8px 10px;
}

/* ヘッダー部メニュー ここから　*/
.list_menu {
    margin-right: 20px;
}
.list_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}
.list_menu ul li {
	padding: .2em;
}
.list_menu ul li:not(:first-child) {
	/*border-left: 1px solid #AAA;*/
}
.list_menu ul li a {
	padding: .2em .8em;
	text-decoration: none;
	background: #245969;
	color: #fff;
	margin: .2em 0;
	/*border-radius: 3px;*/
}
.list_menu ul li a:hover {
	background: #297a7f;
}
/* ヘッダー部メニュー ここまで */

/* footer */
footer {
	background: var(--blk);
	font-size: .9rem;
}
.footer-copyright {
    padding: 30px 0px 12px 0px;
	color: #ccc !important;
}
.footer-sub {
	background-color: #1d3e4e;
	color: #fff;
}
.text-footer {
	color: #ccc;
	font-weight: normal;
}
footer a { color: #caecf3;}
footer a:hover { color: #9cccdc; }

ul.footer-banners {
	list-style: none;
	margin: 20px auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul.footer-banners li {
	padding: .4em;
}

/* ドロップダウン追加分 ここから */

.navbar-box {
      background: var(--bg);
      color: #fff;
      border-top: 1px solid rgba(212,175,55,.35);
      border-bottom: 1px solid rgba(212,175,55,.35);
}

#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  margin: 0 30px;
}

#menu-btn {
  display: none;
}

#menu-content {
  margin: 0;
  list-style-type: none;
}

#menu-content > li {
  position: relative;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#menu-content > li > a {
  display: block;
  padding: 0 15px;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
}
#menu-content > li > a:hover {
  color: var(--gold);
}

#menu-content > li > a > .blogicon-chevron-down {
  margin-right: 5px;
}

#menu-content > li > ul.second-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  list-style-type: none;
  border: 1px solid #5b5e36;
}

#menu-content > li:hover > ul.second-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
}

#menu-content > li > ul.second-content > li {
  text-align: left;
  width: 200px;
}

#menu-content > li > ul.second-content > li > a {
  display: block;
  line-height: 40px;
  background: var(--bg);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 0 15px;
}

#menu-content > li > ul.second-content > li > a:hover {
  background: #2c3a2f;
  color: #e8c656;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 960px) {
  nav {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 60%;
    background: var(--bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  nav .inner ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }


  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
    
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  #menu-content > li {
    width: 100%;
    margin-bottom: 15px;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 0px;
    font-size: 100%;
    border-bottom: 1px solid #5b5e36;
  }
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
  }
  #menu-content > li > ul.second-content > li > a {
    padding-left: 15px;
  }
  #menu-content > li > ul.second-content > li > a:hover {
    background: bar(--gold);
  }


  .header-box {
    height: 100px;
  }
  .list_menu ul {
    padding-right: 30px;
    flex-direction: column;
  }
  .list_menu ul li {
    border: none !important;
  }
}
/*# sourceMappingURL=style.css.map */
/* ドロップダウン追加分　ここまで */

/* ページトップに戻る */
.pagetop {
    height: 46px;
    width: 46px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #3b5057;
    border: solid 2px #eeefef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #eeefef;
    border-right: 3px solid #eeefef;
    transform: translateY(20%) rotate(-45deg);
}

/* ------------------------- */
/* Homepage */

.news {
    height: 110px;
    overflow-x: hidden;
    overflow-y: scroll;
	background: #fff;
	padding: 10px 15px;
}
.news-date {
	background: var(--blk);
}

#hotel p, #guide p {
	color: var(--wt);
}
#hotel a, #guide a {
	color: #d0993d;
}
#guide .text-muted {
	color: #aaa !important;
}
#hotel .btn {
	color: var(--ink);
}

#headingOne button:hover, #headingOne button:active {
	color: var(--blk);
	text-decoration: none;
}

/* Registration */

.icon_title {
    padding-left: 38px;
    line-height: 30px;
    background: url(../img/icon_title2.png) no-repeat;
}

#regist .title_badge {
    position: absolute;
    top: -10px;
    right: 20px;
}
#regist .title_badge img {
    width: 160px;
}
#regist .badge-box {
	width: 180px;
	padding: 6px;
	border: 4px double rgba(212, 175, 55, .65);
	background: var(--bg);
	color: #dec160;
	text-align: center;
	font-size: 1.2em;
    line-height: 1.5em;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 500;
}

.regist_step {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.regist_step > li {
	position: relative;
	margin: 0px !important;
	padding: 0;
	width: 25%;
	text-align: center;
}
.regist_step > li:nth-child(n + 2):before {
	position: absolute;
	margin: 0 auto;
	top: 50%;
	left: 0px;
	font-size: 20px;
	color: #AAA;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	transform: scale(1, 1.3);
	content: "\f105";
}
.regist_step > li > div {
	display: block;
	padding: 0.5em;
	margin: 0px auto;
	width: 80%;
	height: 240px;
	background-color: #fffdf7;
	border: 2px solid var(--line);
	border-radius: 3px;
}
.regist_step h5 {
	color: var(--ink-muted);
	font-size: 1.2em;
	line-height: 1.5em;
}
.regist_step p {
	display: block;
	position: absolute;
	top: 55%;
	left: 0;
	margin: 0px auto;
	padding: 0 40px;
	width: 100%;
	text-align: center;
}
.badge-gold {
	background: var(--gold-bold);
	color: #fff;
}

/* Shop - Auction */
table.auction tr {
	border-bottom: 1px solid #e8e0d3;
}
table.auction th, table.auction td {
	padding: 5px 0;
	vertical-align: top;
}

/* Tea Party - One-Off Models */

#oneoff_lineup .badge {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 500;
}

ul.oneoff_dtl {
    border: 3px double var(--line);
    margin: 0 auto;
}
ul.oneoff_dtl li {
    border-bottom: 1px dotted var(--line);
}
ul.oneoff_dtl li:last-child {
    border: none;
    line-height: 18px;
}
ul.oneoff_dtl li {
    vertical-align: top;
    padding: 3px 5px;
    font-size: 94%;
}
ul.oneoff_dtl li span.h5 {
    color: #4d3a2f;
    font-size: 1.25rem;
    line-height: 150%;
}
ul.oneoff_dtl li span.title {
    color: var(--ink-muted);
    font-size: 94%;
}
ul.oneoff_dtl li span.maker {
    white-space: nowrap;
}

ul.oneoff_dtl li img {
    width: 18px;
    margin: 0 3px;
}

/* Schedule */
/*
table.event_map {
	border: 1px solid #bbb;
	background: #FFF;
	width: 100%;
}
table.event_map tr {
	border: 1px solid #bbb;
}
table.event_map th {
	background-color: #f2f8fd;
}
*/
table.event_map th {
	background-color: #f1e7d5;
}
table.event_map td, table.event_map th {
	padding: 0.5em 1em;
}
table.event_map td.mid {
	padding: 2px 0;
}
.notes {
	color: #f46d2a;
}

/* Tea Party */

.tea_theme {
    width: 800px;
	height: 200px;
    padding: 0;
	margin: 0 auto;
    background: #1d232b url('../img/bg_theme.png') no-repeat;
	color: #eee;
}
.tea_theme h2 {
    font-size: 2.6rem;
    color: var(--gold);
    margin: 10px 0;
}
.tea_theme div {
    padding: 40px;
    margin: 0;
}

.tea_theme p {
    padding: 0;
    margin: 0;
}

/* Beauty Salon */
table.salon_price {
	border: 1px solid #bbb;
	background: #FFF;
	width: 100%;
}
table.salon_price td, table.salon_price th {
	border: 1px solid #bbb;
}
table.salon_price th {
	background-color: #f2f8fd;
}
table.salon_price th:not(:nth-child(-n+2)) {
	width: 65px;
}

table.salon_price th, table.salon_price td {
	min-width: 50px;
}

/*
table.head_price {
	background: #FFF;
	width: 100%;
}
table.head_price th {
	background-color: #f2f8fd;
}
table.head_price td {
	color: #6c1414 !important;
}
table.head_price th, table.head_price td {
	font-size: 13px;
	padding: 2px;
}
table.head_price tr.boy td {
	color: #393a6b !important;
}
*/
table.salon_info, table.exchange_info {
	background: #FFF;
	width: 100%;
}
table.salon_info th, table.exchange_info th {
	background-color: #f2f8fd;
}
table.salon_info th, table.salon_info td {
	padding: 2px 8px;
}

table .text_sml {
	font-weight: normal !important;
}

table.exchange_info .headtype-girl {
    color: #cf1d5c;
}
table.exchange_info .headtype-boy {
    color: #1d3fcf;
}
table.exchange_info ul {
  margin: 0;
  padding: 0 8px;
  display: flex;
  flex-flow: row wrap;
  list-style: none;
}
table.exchange_info ul > * {
  margin: 0.1em 0;
  font-size: .9em;
}
table.exchange_info ul > *:not(:last-child)::after {
  content: "/";
  margin: 0 0.6em;
  filter: opacity(0.5) grayscale(1);
}


dl.qa dd, dl.qa dt{
    text-indent: -2.6em;
    padding: 0 14px 0px 40px;
}
dl.qa dt{
    margin:10px 10px 0 0;
    color: #bb4885;
}
dl.qa dd:first-letter, dl.qa dt:first-letter{
    font-size: 1.2em;
    font-weight: bold;
    margin-right:10px;
    padding:5px;
    font-family: 'Nunito', sans-serif;
}
dl.qa dd{
    margin: 10px 0 -1px 0;
    padding-bottom:14px;
    border-bottom: 1px #AAA dotted;
}

.icon-small {
    margin: 0;
    padding: 0;
    position: relative;
}
.icon-small img {
    margin: -0;
    padding: 0;
    position: absolute;
    top: -55px;
    right: 0px;
}

ol.spaceing li {
	margin-bottom: 1em;
}

/* After Report */

.movie-wrap {
     margin-bottom: 6px;
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

.pagenavi {
  margin: -3em 0 0 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: space-between;
}
.pagenavi div {
	margin: 0 1em;
	padding: 5px 1em;
}
.pagenavi i {
	opacity: 0.4;
}













/* 大デバイス（デスクトップ, 992px 未満）
============================================== */
@media screen and (max-width: 991.98px) {
   .regist_step {
        display: block;
        list-style: none;
    }
    .regist_step > li {
        position: relative;
        padding: 1em;
        margin: 0px;
        text-align: center;
        width: 100%;
    }
    .regist_step > li:first-child {
        padding-top: 0px;
    }
    .regist_step > li:last-child {
        padding-bottom: 0px;
    }
    .regist_step > li:nth-child(n + 2):before {
        position: absolute;
        top: -10px;
        left: 50%;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f107";
        transform: scale(1.3, 1);
    }
    .regist_step > li > div {
        height: auto;
    }
    .regist_step p {
        display: inline;
        position: static;
        margin: 0px auto;
        padding: 0;
    }
    .footer-logo {
        width: 100%;
    }
    .tea_theme {
      width: auto;
      height: auto;
      background: #1d232b;
      border: 4px double #ad884e;
    }
} /* END */

/* 中デバイス（タブレット, 768px 未満）
============================================== */
@media screen and (max-width: 767.98px) {
.gnav-item {
	display: block;
	width: 100%;
	border: none;
}
.gnav-item+ .gnav-item {
	border: none;
}
table th, table td {
	padding: .25rem !important;
}
table th:first-child {
	width: 25%;
}
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上 デスクトップ, 992px 未満）
============================================== */
@media screen and (min-width: 576px) and (max-width: 991.98px) {
 #sec2  {
     height: 500px;
 }
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上）
============================================== */
@media screen and (min-width: 576px) {
 #sec2 .message {
    position: absolute;
     left: 0;
 }
} /* END */
