@charset "UTF-8";

/*　ここから追加した分　*/
/*　ここから追加した分　*/

/* 大画面で左右の余白が広くなりすぎないよう、コンテナの最大幅を拡張 */
@media (min-width: 1200px) {
  .container { max-width: 1400px; }
}
@media (min-width: 1600px) {
  .container { max-width: 1680px; }
}
@media (min-width: 1900px) {
  .container { max-width: 1840px; }
}


/*　トップページ　*/ 
/*　トップページ　*/
.row a:hover {
 	color: #add8e6   !important;   
}

.font_h3 {
   color: #c22f2f;
}

.top-cate-padding {
    padding: 10px;
}


/*　記事ページ内　*/ 
/*　記事ページ内　*/
img {
	margin: 10px 0 30px 20px;
}

.h_230 {
	height: 230px;
}

.paddingtop30 {
 	margin-top:30px;   
}

.article_p {

}

.answer_p {
    margin: 3px 0 3px 15px;
    padding: 0;
}

.txt_white {
	color: #fff;    
}

fieldset {
    background-color: #ffffe0;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 0;
}

.attention {
    background-color: #ffd6d6;
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0 30px;
}

.yellowframe {
    background-color: #ffffe0;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 0;
}  

.font_bold {
 font-weight: bold;   
}

.font_red {
   color: red; 
}

.bgc_g {
 background-color: #dbebc4;
}

.m_1 {
 font-size: 21px; 
 margin-top: 15px;
 margin-bottom: 15px;
}

.indent25 {
	margin-left: 25px;
}

.td1 {
   font-weight: bold;  
   background-color: #dbebc4;
    border: 2px #000000 solid;
}

table tr, td, th {
    border: 2px #000000 solid;
    padding: 5px;
}

table {
    margin-bottom: 20px;
    margin-left: 20px;
}

.table_border {
    border: 2px #000000 solid;
}

.searchkeyword {
	padding-top: 30px;
    font-size: 5px;
    color: #fff;
    display: none;
}

.article {
	font-family: ＭＳ ゴシック,sans-serif;
}


/*　ヘッダー上部　*/ 
/*　ヘッダー上部　*/
.btn_mailform {
  	background-color: #6DC24D;
    padding: 7px 15px;
    border-radius: 20px;
    margin: 0 right;
}

.btn_mailform:hover {
    opacity: .75;
}

#header a {
   color: #fff; 
}

#header a:hover {
   color: #fff;
   opacity: .75;
   text-decoration: none; 
}

#header p {
   margin: 0;
   padding: 0;
}

.img_n {
	margin: 0;
	padding: 0;
}

/*　ここまで追加した分　*/ 
/*　ここまで追加した分　*/






/* Font */
:root {
    --font-family: "Noto Sans JP";
}

/* Colors */
:root {
    --theme-color: {{brand_color}};
    --header-footer-color: {{header_footer_color}};
    --background-color: {{background_color}};
    --block-color: {{block_color}};
    --text-color: {{text_color}};
    --link-color: {{link_color}};
    --light-color: #f2f2f2;
    --gray-color: #e0e0e0;
    --dark-color: #8f8f8f;
}

/* Fonts */
@font-face {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-style: normal;
    src: url("{{asset_url "fontawesome-pro-5.11.2/webfonts/fa-regular-400.woff2"}}") format("woff2"),
url("{{asset_url "fontawesome-pro-5.11.2/webfonts/fa-solid-900.woff2"}}") format("woff2");
    font-display: swap;
}

/* Jumbotron */
:root {
    --background-image: url({{#if has_jumbotron}}{{jumbotron_url}}{{else}}{{asset_url "jumbotron-background-image.png"}}{{/if}});
}

/* Overwrite Boostrap's css */
html {
    background-color: #fff;
}
body {
    color: var(--text-color);
    font-family: var(--font-family);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-wrap: break-word;
}
section {
    position: relative;
}
h1 {
    font-size: 1.4rem;
}
h2 {
    font-size: 1.3rem;
    font-weight: bold;  
}
h3 {
    font-size: 1.2rem;
}
h4 {
    font-size: 1.1rem;
}
p img {
    max-width: 100%;
}
label {
    margin-bottom: unset;
}
a {
    color: var(--link-color);
}
a:hover {
    color: var(--link-color);
    text-decoration: underline;
}
.fa-chevron-circle-right:before {
    display: inline-block;
    color: var(--theme-color);
    font-size: .9rem;
}
a:hover .fa-chevron-circle-right {
    opacity: .75;
}
ul {
    list-style-type: none;
}
.container {
    padding-right: 1rem;
    padding-left: 1rem;
}
.btn {
    padding: .25rem 1rem;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 2rem;
    white-space: normal;
    outline: none;
}
.btn:hover {
    color: #fff;
    opacity: .75;
}
.btn:disabled {
    color: var(--text-color);
    background-color: var(--light-color);
    border: 1px solid var(--dark-color);
    opacity: .5;
    cursor: not-allowed;
}
.btn-light {
    color: var(--text-color);
    background-color: #f8f9fa;
    border-color: var(--dark-color);
}
.btn-light:hover {
    background-color: #fff;
    border-color: var(--dark-color);
}
.navbar {
    padding: .5rem 1rem;
    background-color: var(--header-footer-color);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .025);
    z-index: 1052;
}
.navbar h1 {
    margin-bottom: 0;
    max-width: calc(100% - 43.5px);
    height: 38px;
}


@media (min-width:992px) {
    .navbar h1 {
        max-width: calc(100% - 515px);  
    }
    
    
/*　ここから追加した分　*/    
/*　ここから追加した分　*/       


/*　ここまで追加した分　*/ 
/*　ここまで追加した分　*/ 
    
}
.navbar-brand {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.navbar-brand img {
    margin-top: -.3125rem;
    max-height: 38px;
}
.nav-link img {
    border-radius: 50%;
}
@media (min-width:992px) {
    .nav-link {
        position: relative;
        padding-right: 1rem !important;
        max-width: 22em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.navbar-toggler {
    margin-top: -.25rem;
}
.navbar-toggler-icon {
    width: auto;
    height: auto;
}
.dropdown-toggle::after {
    content: none;
}
@media (min-width:992px) {
    .dropdown-toggle::after {
        position: absolute;
        top: .75rem;
        right: 0;
    }
}
@media (min-width:768px) {
    .dropdown-toggle::after {
        content: "";
    }
}
.dropdown-menu {
    display: block;
    right: 0;
}

@media (min-width:768px) {
    .dropdown-menu {
        display: none;
    }
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f2f2f2;
    border-radius: .25rem;
}
.breadcrumb {
    padding: .25rem 1rem;
    font-size: .9rem;
    background-color: rgba(255, 255, 255, .75);
    border-radius: 0;
}
.breadcrumb-item {
    max-width: 20rem;
    line-height: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: bold;
}
.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    content: "\f054";
}
.modal {
    display: block;
    background-color: rgba(0, 0, 0, .25);
    overflow-y: scroll;
}
.modal.fade {
    display: none;
}
.modal select.form-control {
    display: inline-block;
    width: auto;
    max-width: 100%;
}
.modal-dialog {
    margin: 1.5rem 1rem;
}
@media (min-width:768px) {
    .modal-dialog {
        margin: 10rem auto;
    }
}
.modal-header {
    display: block;
    border-bottom: none;
}
.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
}
.form-group.required > label {
    position: relative;
}
.form-group.required > label::after {
    content: "*";
    position: absolute;
    top: .25rem;
    margin-left: .25rem;
    color: #dc3545;
}
.form-group label span {
    margin-left: .25rem;
    color: #dc3545;
}
.request-form {
    display: flex;
    flex-direction: column;
}
.request-form .form-group p {
    margin-bottom: 0;
}
.request-form .g-recaptcha {
    order: 100;
    margin-top: 2rem;
}
.request-form .bp-Form_Submit {
    order: 101;
    margin-top: 2rem;
}
.form-control:disabled,
.form-control[readonly] {
    min-height: 38px;
    background-color: var(--light-color);
    pointer-events: none;
}
textarea.form-control[readonly] {
    pointer-events: auto;
}
textarea.form-control[readonly]:focus {
    border-color: #ced4da;
    box-shadow: none;
}
.form-control[readonly] button {
    display: none;
}
.form-control.flatpickr-input {
    pointer-events: auto;
}
.request-form .form-control.flatpickr-input[readonly],
.setting-form .form-control.flatpickr-input[readonly],
.modal-signup .signup-form .form-control.flatpickr-input[readonly] {
    background-color: #fff;
}
.request-confirm-form .form-control.flatpickr-input,
.modal-signup-confirm .signup-form .form-control.flatpickr-input {
    pointer-events: none;
}
input[type=checkbox] {
    width: auto;
}
select:disabled,
select[readonly] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.table thead th {
    vertical-align: middle;
    border-bottom: none;
}
.table td,
.table th {
    vertical-align: middle;
    border-top: none;
}
.page-item .page-link {
    color: var(--link-color);
    border: none;
}
.page-item .page-link:hover {
    color: var(--link-color);
    text-decoration: underline;
    background-color: unset;
    border-color: unset;
}
.page-item .page-link:not([href]):hover {
    text-decoration: none;
    cursor: default;
}
.page-item.active .page-link {
    color: var(--link-color);
    font-weight: bold;
    background-color: unset;
    border-color: unset;
}
.card {
    width: 80%;
}
.card-header {
    border-bottom: none;
}
.card-body {
    padding: 1.25rem 1.25rem 0;
}
.alert {
    margin-bottom: 0;
    padding: .75rem;
    text-align: center;
    border: none;
    border-radius: 0;
    z-index: 1051;
}
.error {
    color: var(--danger);
    font-size: .9rem;
}
.form-group + .error {
    display: block;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}
.d-flex {
    align-items: center;
}
.registered_message {
    display: block;
    position: relative;
    margin-bottom: 2rem;
    margin-left: 1.5rem;
    color: #dc3545;
}
.registered_message::before {
    position: absolute;
    top: -1px;
    left: -1.5rem;
    color: #dc3545;
    font-size: 1.25rem;
    font-family: "Font Awesome 5 Pro";
    content: "\f06a";
}

/* brand-portal */
.bp-Header {
    height: 54px;
    background-color: var(--header-footer-color);
}
.bp-Header select.form-control {
    display: inline-block;
    width: auto;
}
.bp-JumboTron {
    margin-bottom: 0;
    padding: 0;
    background-color: var(--theme-color);
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    border-radius: 0;
}
.bp-JumboTron_Container {
    max-width: unset !important;
}
.bp-JumboTron_Message {
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
    background-color: none;
}

.bp-JumboTron_Lead {
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
    background-color: rgba(255, 255, 255, .25);
}

.bp-Search {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 3rem 0;
    width: 100%;
}
@media (min-width:768px) {
    .bp-Search {
        width: 60%;
    }
}
.bp-Search_Input {
    position: absolute;
    padding: 0 2.75rem 0 1rem;
    width: 100%;
    height: 2.5rem;
    border: 1px solid var(--light-color);
    border-radius: 2.5rem;
    color: #657563;
}
.bp-Search_Input:focus {
	outline: none;
}
.bp-Search_Button {
    position: absolute;
    right: 6px;
}
.bp-Search_Button.btn {
    padding: .2rem .5rem;
    border-radius: 50%;
}
.bp-Container {
    padding: 3rem 1rem;
    width: calc(100% - 2rem);
    background-color: #fff;
}
@media (min-width:768px) {
    .bp-Container {
        padding: 4rem 2rem;
    }
}
.bp-Container_Header img {
    border-radius: 50%;
}
.bp-Category_Name {
    border-left: .5rem solid var(--link-color);
}
.bp-ChildCategory_Name a {
    padding-left: .75rem;
    border-left: .25rem solid var(--link-color);
}

.bp-ChildCategory_Name a:hover {
	color: #c22f2f !important;
}

.bp-Container_Body .article h1,
.bp-Container_Body .article h2,
.bp-Container_Body .article h3,
.bp-Container_Body .article h4,
.bp-Container_Body .article h5,
.bp-Container_Body .article h6 {
    padding-bottom: .5rem;
    margin: 2rem 0 .5rem;
    border-bottom: 1px solid var(--gray-color);
}
@media (min-width:768px) {
    .bp-Container_Header h2 {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
    .bp-Container_Body .article {
        line-height: 2rem;
    }
    .bp-Container_Body .article h1 {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
    .bp-Container_Body .article h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .bp-Container_Body .article h3 {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .bp-Container_Body .article h4 {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .bp-Container_Body .article h1,
    .bp-Container_Body .article h2,
    .bp-Container_Body .article h3,
    .bp-Container_Body .article h4,
    .bp-Container_Body .article h5,
    .bp-Container_Body .article h6 {
        margin: 4rem 0 1.5rem;
    }
}
.bp-Container_Body .message h1 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}
.bp-Container_Body .article ul,
.bp-Container_Body .message ul {
    list-style-type: disc;
}
.bp-Container_Body .article blockquote,
.bp-Container_Body .message blockquote {
    margin: 0;
    padding-left: 1em;
    border-left: 5px solid var(--gray-color);
}
.bp-Container_Body .article pre,
.bp-Container_Body .message pre {
    padding: 0.25em;
    background-color: var(--light-color);
}
.bp-Container_Body .article a,
.bp-Container_Body .message a {
    text-decoration: underline;
}
.bp-Container_Body .article table,
.bp-Container_Body .message table {
    margin-bottom: 1em;
    width: 100%;
}
.bp-Container_Body .article table th,
.bp-Container_Body .article table td,
.bp-Container_Body .message table th,
.bp-Container_Body .message table td {
    display: block;
    padding: .375rem .75rem;
    width: 100%;
    border: 1px solid var(--gray-color);
}
@media (min-width:375px) {
    .bp-Container_Body .article table,
    .bp-Container_Body .message table {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
    .bp-Container_Body .article table th,
    .bp-Container_Body .message table th {
        display: table-cell;
        background-color: #e5ffe5;
        border-color: #000;
        width: 400px;
    } 
    
    .bp-Container_Body .article table td,
    .bp-Container_Body .message table td {
        display: table-cell;
        border-color: #000;
        width: 600px;
    }  
    
}




.bp-Button_Request {
    position: fixed;
    right: 0;
    bottom: 4rem;
}
.bp-Button_Request a {
    padding: .375rem .5rem .375rem .75rem;
    color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.bp-Button_Attach {
    padding: 1px 6px 2px;
    font-size: .8rem;
}
.bp-Button_Trash {
    padding: 1px 6px 2px;
    font-size: .9rem;
}
.bp-Button_Download {
    padding: 1px 6px 2px;
    font-size: .8rem;
}
.bp-Button_Mypage a {
    margin: -.25rem -1rem;
    padding: .25rem 1rem;
    display: block;
    color: #fff;
}
.bp-Button_Mypage a:hover {
    text-decoration: none;
}
.bp-Form_Submit {
    margin-top: 2rem;
}
.bp-Form_SignUp {
    margin-top: 1rem;
    font-size: .8rem;
    text-align: center;
}
.bp-Table {
    table-layout: fixed;
}
.bp-Table p {
    margin-bottom: 0;
}
.bp-Table th {
    background-color: rgba(0, 0, 0, .1);
}
.bp-Table tbody tr .bp-Table_Title {
    color: var(--link-color);
}
.bp-Table tbody tr:hover {
    cursor: pointer;
}
.bp-Table tbody tr:hover .bp-Table_Title {
    text-decoration: underline;
}
.bp-Table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, .05);
}
.bp-Table tr th:first-child,
.bp-Table tr td:first-child {
    width: 4rem;
    text-align: center;
}
.bp-List li:nth-child(even) {
    background-color: #f8f8f8;
}
.bp-List li a {
    color: var(--gray-dark);
}
.bp-List li a .bp-Title {
    color: var(--link-color);
    font-size: 1.1rem;
}
.bp-List li a .bp-Snippet {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .8rem;
}
@media (min-width:768px) {
    .bp-List li a .bp-Snippet {
        -webkit-line-clamp: unset;
    }
}
.bp-List li a:hover {
    text-decoration: none;
}
.bp-List li a:hover .bp-Title {
    text-decoration: underline;
}
.bp-Top_Categories {
    padding: 1.5rem 1.5rem 1rem;
    height: 100%;
    background-color: var(--block-color);
    border: 1px solid var(--light-color);
    border-radius: .25rem;
}
.bp-Top_Categories .bp-ChildCategory_Name a {
    font-size: 1rem;
}
.bp-List i,
.bp-Top_Categories i {
    margin-left: -1.25rem;
    width: 1.25rem;
}
.bp-Footer {
    text-align: center;
    background-color: var(--header-footer-color);
}
@media (min-width:768px) {
    .bp-Footer {
        text-align: right;
    }
}
.bp-Satisfaction {
    display: inline-block;
    margin-top: 4rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.bp-Satisfaction .btn {
    padding: .25rem 1rem;
    min-width: 5rem;
    color: var(--link-color);
    background-color: #fff;
    border: 2px solid var(--theme-color);
    border-radius: 5rem;
}
.bp-Satisfaction .btn:hover {
    color: #fff;
    background-color: var(--theme-color);
    opacity: 1;
}
.bp-Satisfaction .feedback-message {
    color: var(--dark-color);
}
.bp-Featured_Keywords {
    position: relative;
    margin-top: -1rem;
}
.bp-Featured_Keywords dl {
    height: 100%;
    font-size: .8rem;
    line-height: 1.6rem;
    background-color: rgba(255, 255, 255, .75);
    border-radius: .25rem;
}
.bp-Featured_Keywords li::before {
    content: "\f054";
    margin-top: 2px;
    margin-right: -0.25rem;
    color: var(--link-color);
    font-family: "Font Awesome 5 Pro";
    font-size: 0.75rem;
    font-weight: 700;
}

.user-image {
    object-fit: cover;
}

