/** カスタマイズcss用のcssファイル **/

/** 全体　**/
body {
    background: #f8f9fa;
    padding-top: 64px;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}

.btn {
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
.btn-primary {
    background-color: #1a73e8;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/** ヘッダー・ナビゲーション **/
#header {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    background-color: #eeeeee;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%);
    height: 64px;
}
.navbar-light .navbar-brand {
    color: #fff;
}
.navbar-light .navbar-brand:hover {
    color: #fff;
}
.navbar-light .navbar-brand:active {
    color: #fff;
}
.navbar-brand {
    position: fixed;
    z-index: 1000;
    top: 14px;
    left: 72px;
    width: 180px;
    padding: 0;
    font-size: 0;
}
.navbar-brand img {
    width: 180px;
}

.hamburger {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 20px;
  }
.hamburger .bar {
    transition: all .4s ease;
    display: block;
    background-color: black;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    position: absolute;
    left: 5px;
    top: 50%;
}
.hamburger .bar-top {
    transform: translate(0, -10px);
}
.hamburger .bar-bottom {
    transform: translate(0, 10px);
}
.hamburger.show .bar-top {
    transform: translate(0, 0) rotate(45deg);
}
.hamburger.show .bar-mid {
    opacity: 0;
}
.hamburger.show .bar-bottom {
    transform: translate(0, 0) rotate(-45deg);
}
#nav-menu {
    padding: 0;
    display: block;
    align-items: center;
    list-style: none;
    width: 216px;
    height: 100%;
    position: fixed;
    z-index: 105;
    top: 64px;
    left: 0;
    bottom: 0;
    background-color: #3c4043;
    box-shadow: 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%), 0 5px 5px -3px rgb(0 0 0 / 20%);
    transform: translateX(-216px);
    transition: transform .4s ease;
}
#nav-menu.show {
    transform: translateX(0);
}
.mask-grey {
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .54);
  }
  .mask-grey.show {
    pointer-events: auto;
    opacity: 1;
  }
  .navbar-light .navbar-nav .nav-link {
    padding: 16px;
    display: block;
    color: #fff;
    text-align: left;
    font-size: 12px;
    font-weight: bold;
  }
  .navbar-light .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, .26);
  }
  .navbar-light .navbar-nav .nav-link:active {
    background-color: rgba(255, 255, 255, .26);
  }

  /** コンテナ　**/
.container.custom-container table {
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.container.custom-container table tr td {
    vertical-align: middle;
}
.container.custom-container table tr {
    border-bottom: 1px solid #ced4da;
}
.container.custom-container table tr:first-child {
    border-top: 1px solid #ced4da;
}
.container.custom-container table tr p {
  margin-bottom: 0;
}
.custom-container form {
    margin-bottom: 0;
}
.custom-container h3 {
    margin-top: 24px;
}
.table.custom-table {
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    background: #fff;
    max-width: 480px;
    margin: 0 auto;
}
.table.custom-table.wide-table {
    max-width: 100%;
}
.table.custom-table.wide-table th,
.table.custom-table.wide-table td {
    padding: 16px 24px;
}
.table.custom-table.wide-table .btn-primary {
    display: inline-block;
}
.table.custom-table td{
    vertical-align: middle;
}
.table.user-table {
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 24px;
    background-color: #fff;
}
.table.user-table th {
    text-align: center;
}
.table.user-table a{
    display: block;
}

.container.custom-container .form-group {
    max-width: 480px;
    margin: 0 auto 24px;
}
.container.custom-container .form-group input:not([type="checkbox"]) {
    margin-bottom: 8px;
}

/* フリーワード検索css */
.free-word-row {
    justify-content: center;
    align-items: center;
    margin: 28px auto;
    width: 650px;
}

.free-word-row .col{
    margin: 0;
}

/* 紐付けページ */
.ads-user-links-checkbox-wrap input{
    display: block;
    margin: auto;
}