/* ここには共通の設定を書く */

:root {
    --main-border-color: #e0a800;
    --main-jp-font: 'M PLUS Rounded 1c', sans-serif;
    --main-en-font: 'Merriweather', serif;
    --main-dark-color: #343a40;
    --main-brown-color: #CB5E00;
    --base-gray: #383832;
    --base-gray-rgb: 56, 56, 50;
    --base-yellow: #ffc720;
    --base-yellow-rgb: 255, 199, 32;
}

.base-bg-color {
    background-color: #dcdcdc;
}

.bg-color-white {
    background-color: #ffffff;
}

/* bootstrap ハンバーガーメニュー */
/* 背景を消す */
.breadcrumb {
    background-color: transparent;
}

.w-100 {
    width: 100% !important;
}

.txt-indent-1 {
    text-indent: -1em;
    padding-left: 1em;
}

.txt-indent-2 {
    text-indent: -1em;
    padding-left: 2em;
}

.txt-indent-3 {
    text-indent: -1em;
    padding-left: 3em;
}

/* レスポンシブ */
.resp-pc {
    display: none !important;
}

.resp-sp {
    display: block !important;
}

@media only screen and (min-width: 768px) {
    .resp-pc {
        display: block !important;
    }

    .resp-sp {
        display: none !important;
    }
}

.resp-pc-table {
    display: none !important;
}

.resp-sp-table {
    display: table !important;
}

@media only screen and (min-width: 992px) {
    .resp-pc-table {
        display: table !important;
    }

    .resp-sp-table {
        display: none !important;
    }
}

/* フォント start */
body {
    font-family: var(--main-jp-font);
}

.en-font {
    font-family: var(--main-en-font);
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 15px;
}


h4 {
    font-size: 15px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 15px;
}

p {
    font-size: 14px;
    margin: 0;
}

li {
    font-size: 14px;
}

/* フォント end */

.header-png {
    height: 2.5rem;
}

.white-text {
    color: white;
}

a {
    color: var(--main-dark-color);
    text-decoration: none;
    font-weight: bold;
}

.link-white {
    color: white !important;
    text-decoration: none !important;
}

@media (hover: hover) {
    a:hover, .link-white:hover {
        color: darkgray !important;
        text-decoration: none !important;
    }
}
@media (hover: none) {
    a:active, .link-white:active {
        color: darkgray !important;
        text-decoration: none !important;
    }
}

.base-bt {
    background-color: var(--main-brown-color);
    border-radius: 5px;
    color: white !important;
    padding: 0.5rem;
    text-decoration: none;
    text-align: center;
}

@media (hover: hover) {
    .base-bt:hover {
        background-color: #AA4E00;
        color: white !important;
        text-decoration: none;
    }
}
@media (hover: none) {
    .base-bt:active {
        background-color: #AA4E00;
        color: white !important;
        text-decoration: none;
    }
}


.card-design {
    border-radius: 10px;
    background-color: white;
}

.errorlist {
    color: red;
    list-style: none;
    font-size: 12px;
    padding: 0;
}

ul.errorlist li {
    margin-bottom: 5px;
}

.form-control-line-height {
    line-height: calc(1.5em + 0.75rem + 2px);
}

.dimgray-border {
    border-color: dimgray; !important;
}

.dimgray-border:hover {
  border-color: dimgray; !important;
}

.dimgray-border:focus, .dimgray-border.focus {
  border-color: dimgray; !important;
}

.dimgray-border.disabled, .dimgray-border:disabled {
  border-color: dimgray; !important;
}

/* Bootstrap の h2 と同一の高さに設定する start */
.height-equal-h2 {
    margin-top: 0;
    margin-bottom: .5rem;
    height: calc(1.325rem + .9vw);
}

@media only screen and (min-width: 1200px) {
    .height-equal-h2 {
        height: 2rem;
    }
}

/* Bootstrap の h2 と同一の高さに設定する end */
