/* ==========================================================================
   GENERAL
   Basic stylings of the website. 
   ========================================================================== */

/*
 * KEYFRAMES
 */

@keyframes contact-mail {
  0% {
    box-shadow: 0 0 0 0 rgba(166,56,0,0.35);
  }
  15% {
    box-shadow: 0 0 0 3.5em rgba(166,56,0,0);
  }
  100% {
    box-shadow: 0 0 0 3.5em rgba(166,56,0,0);
  }
}
@keyframes contact-tel {
  0% {
    box-shadow: 0 0 0 0 rgba(166,56,0,0.35);
  }
  45% {
    box-shadow: 0 0 0 0 rgba(166,56,0,0.35);
  }
  60% {
    box-shadow: 0 0 0 3.5em rgba(166,56,0,0);
  }
  100% {
    box-shadow: 0 0 0 3.5em rgba(166,56,0,0);
  }
}

/*
 * BASIC
 */

::-webkit-scrollbar {
    width: 1.0em;
    height: 1.0em;
}
::-webkit-scrollbar-track {
    background-color: rgba(220, 220, 220, 0);
}
::-webkit-scrollbar-track:hover {
    background-color: rgba(220, 220, 220, 0.25);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(186, 186, 186, 0.5);
    border-radius: 1.0em;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #BABABA;
}
::-webkit-scrollbar-button {
    display: none;
}
body *::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}
body *::-webkit-scrollbar-track {
    background-color: rgba(220, 220, 220, 0.25);
    border-radius: 1.0em;
}
body *::-webkit-scrollbar-track:hover {
    background-color: rgba(220, 220, 220, 0.35);
}
body *::-webkit-scrollbar-thumb {
    background-color: rgba(186, 186, 186, 0.75);
}
body *::-webkit-scrollbar-thumb:hover {
    background-color: #BABABA;
}
html {
  scrollbar-color: rgba(186, 186, 186, 0.5) rgba(220, 220, 220, 0.5);
  scrollbar-width: auto;
}
body * {
    scrollbar-color: #BABABA rgba(220, 220, 220, 0.25);
    scrollbar-width: thin;
}
::-moz-selection {
    background-color: rgba(255, 154, 102, 0.15);
    color: #C4C4C4;
}
::selection {
    background-color: rgba(255, 154, 102, 0.15);
    color: #C4C4C4;
}
*:focus {
    outline: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
th,
td {
    padding: 0;
}
label {
	font-weight: 300;
}
input,
select,
textarea {
	outline: none
}
address {
    font-style: normal;
    margin-bottom: 0;
}
img {
    height: auto;
    width: 100%;
}
body.JS-no-scroll {
    height: 100%;
    overflow: hidden;
}

/*
 * TYPOGRAPHY
 */

html {
    font-size: 16px;
}
body {
	color: #333333;
	line-height: 1.4;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 68.8%;
    font-weight: 400;
}
b,
strong,
th {
	font-weight: 700;
}
blockquote {
    border-left: 0;
    font-size: inherit;
    margin: 0;
    padding: 0;
}
a,
a:visited,
a:hover {
    color: inherit;
    text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.0em;
    font-weight: 400;
}
.OBK-main p {
    font-size: 1.8em;
    margin: 20px 0;
}
.OBK-main p:last-child {
    margin-bottom: 0;
}
.OBK-main ul:not(.slick-dots),
.OBK-main ol {
    font-size: 1.8em;
    margin: 20px 0;
    padding: 0 0 0 20px;
}
.OBK-main ul:not(.slick-dots):last-child,
.OBK-main ol:last-child {
    margin-bottom: 0;
}
.OBK-main table {
    border: 2px solid #FFCC9A;
    margin: 20px 0;
    width: 100%;
}
    .OBK-main table tr {
        border-top: 1px dashed #FFCC9A;
    }
    .OBK-main table tr:first-child {
        border-top: 0;
    }
        .OBK-main table tr th,
        .OBK-main table tr td {
            border-left: 1px dashed #FFCC9A;
            font-size: 1.8em;
            padding: 5px 20px 5px 20px;
        }
        .OBK-main table tr th:first-child,
        .OBK-main table tr td:first-child {
            border-left: 0;
        }
        .OBK-main table tr th {
            background-color: #FFCC9A;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: left; /* reob 250122 Original: text-align: center; */
            text-transform: uppercase;
        }
        .OBK-main table tr td {
            text-align: left;
        }
        .OBK-main table tr:hover td {
            background-color: rgba(255, 154, 102, 0.15);
        }
.OBK-main .OBK-table-wrap {
    margin: 20px 0;
    overflow-x: none;
}
    .OBK-main .OBK-table-wrap table {
        margin: 0;
        min-width: 767px;
    }
.OBK-main p a,
.OBK-main ul a,
.OBK-main ol a,
.OBK-main table a {
    opacity: 0.6;
}
.OBK-main p a:hover,
.OBK-main ul a:hover,
.OBK-main ol a:hover,
.OBK-main table a:hover {
    opacity: 1;
}

/*
 * MISC
 */

/* Button */
.OBK-button {
    background-color: #2E1915;
    border: 1px solid #2E1915;
    border-radius: 5.0em;
    color: #ffffff !important;
    display: inline-block;
    height: 5.0em;
    line-height: 4.8em;
    min-width: 15.0em;
    padding: 0 2.0em;
    text-align: center;
}
    .OBK-button span {
        font-size: 1.6em;
        font-weight: 700;
    }
.OBK-button:visited {
    color: #ffffff !important;
}
.OBK-button:hover {
    background-color: transparent;
    color: #2E1915 !important;
}

/* inverted */
.OBK-button.OBK-button--inverted {
    background-color: transparent;
    border-color: #2E1915;
    color: #2E1915 !important;
}
.OBK-button.OBK-button--inverted:visited {
    color: #2E1915 !important;
}
.OBK-button.OBK-button--inverted:hover {
    background-color: #2E1915;
    color: #ffffff !important;
}

/* call to action */
.OBK-button.OBK-button--cta {
    background-color: #ff5701;
    border-color: #ff5701;
    color: #ffffff !important;
}
.OBK-button.OBK-button--cta:visited {
    color: #ffffff !important;
}
.OBK-button.OBK-button--cta:hover {
    background-color: transparent;
    color: #ff5701 !important;
}
