#codeigniter_profiler {
    /* display:none; */
}

html {
	width:100vw;
}

:root {
	overflow-x: hidden;
	width:100vw;
}

body {
	font-size: 15px;
    font-family: "Montserrat", sans-serif;
	font-weight: 200;
	width:100vw;
	overflow-x: hidden;
    background-image: linear-gradient(to right top, #eaeaea, #eeeeee, #f2f2f2, #f6f6f6, #fafafa, #fafafa, #fafafa, #fafafa, #f7f7f7, #f3f3f3, #f0f0f0, #ededed);

	/* 色 */
    --black: #333333;
    --grey-dk: #585858;
    --grey-md: #969696;
    --grey-lt: #e5e5e5;
    --gold: #876A20;

	/* その他 */
    --box-shadow: 0 0 7px 0px #0000004a;
    --box-shadow-inset: inset 0 0 10px 0px #00000069;
	--shadow: 0px 0px 5px 1px #d5d5d5;
    --radius-lg: 10px;
    --radius-sm: 5px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

body.no-scroll,
html.no-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

/* Utilities */

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: unset;
}

p {
    line-height: 1.75;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Martel", serif;
    color: var(--black);
}

h1 {
    font-size: 2rem;
    line-height: 1.5;
}

h2 {
    font-size: 1.75rem;
    font-weight: 400;
}

h3 {
    font-size: 1.25rem;
    font-weight: 300;
}

hr {
    border-top: 1px solid var(--gold);
}

small {
    font-size: .8rem;
    font-weight: 100;
}

.tc {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.mt-6 {
    margin-top: 6rem!important;
}

img.credit-cards-icons {
    height: 1.5rem;
    padding: 0 .5rem;
    margin-bottom: .2rem;
}

.cc-para {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .cc-para {
        display: block;
    }

    img.credit-cards-icons {
        margin-bottom: -.3rem;
    }
}

b {
    padding: 0 .5rem;
}

/* Pagination */

ul.pagination {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
}

ul.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--grey-md);
    color: var(--grey-md);
    transition: var(--transition);
}

ul.pagination li.active a,
ul.pagination a:hover {
    color: white;
    background: var(--grey-md);
    transition: var(--transition);
}

ul.pagination .material-icons {
    pointer-events:none;
    font-size: 1.2rem;
}

@media (min-width: 1400px) {
    .col-adj-dk {
        padding-right: 3.5rem!important;
    }
}

/* Smartphone header & nav */
@media (max-width: 992px) {
    .mt-6 {
        margin-top: 4rem!important;
    }
}

/* Smartphone bootstrap column padding adjustment */
@media (max-width: 992px) {
    .col-adj-md {
        padding-right: 2rem!important;
    }

    .col-adj-lg {
        padding-right: 2.5rem!important;
    }
}

.jp-txt {
    font-family: sans-serif;
    font-weight: 100;
}

/* Buttons */

.btn {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width:fit-content; */
    cursor: pointer!important;
    transition: var(--transition);
}

.btn-small {
    font-size: .9rem;
    height: 2rem;
}

.btn-primary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-hollow-white {
    border: 1px solid white;
    color: white;
}

.btn-hollow-white:hover {
    background: var(--gold);
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn.full-width {
    width:100%;
    max-width: 100%;
}

.btn.med-width {
    max-width: 30rem;
    width: 100%;
}

.btn-primary:hover {
    color: white;
    background: var(--gold);
    transition: var(--transition);
}

.btn-plain {
    text-decoration:underline;
    cursor: pointer;
}

.btn-plain:hover {
    color: var(--gold);
}

.btn-dark {
    background: var(--gold)!important;
    color: white;
}

.btn-dark:hover {
    filter: brightness(1.2);
}

/* Form & Inputs */

input[type="text"], 
input[type="tel"], 
input[type="email"],
textarea {
    width: 100%;
    font-family: 'Montserrat';
    font-size: 1rem;
    border: 1px solid #cbcbcb;
    padding: 0.5rem 0;
    text-indent: 1rem;
    transition: var(--transition);
}

input[type="submit"] {
    background: white;
}

/* Custom: Blogs Dropdown Background */
.menu-sub {
    background-color: rgb(51,51,51) !important;
}

.menu-sub .menu-item,
.menu-sub .menu-link {
    border: none !important;
    text-decoration: none !important;
}

.menu-sub .menu-item {
    padding-left: 0;
    margin-left: 0;
}

.menu-sub .menu-link {
    display: block;
    text-align: center;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    color: white !important;
}

.menu-sub .menu-link:hover {
    color: rgb(192,176,133) !important;
}

