@charset "UTF-8";

:root {
    --main-color: #008F85;
    --sub-color: #145c9c;
    --hover-darken-color: #01746c;
    --hover-darken-sub-color: #124e83;
    --gray: #D9D9D9;
}

.logo {
    width: 200px;
}

/* タイトル */
.c-title01 {
    font-size: 40px;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.c-title01::after {
    content: '';
    display: block;
    width: 20%;
    height: 4px;
    background: var(--main-color);
}

.c-title02 {
    position: relative;
    font-size: 28px;
}
.sp-c-title02 {
    position: relative;
    font-size: 20px;
}
.c-title02::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--main-color);
    margin-top: 8px;
}

.c-title03 {
    font-size: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.c-title03::before {
    content: '';
    display: block;
    width: 4px;
    height: 1em;
    flex-shrink: 0;
    background-color: var(--main-color);
}

.c-title04 {
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.4;
    gap: 20px;
}
.c-title04::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--main-color);
}

.c-title05 {
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.4;
    gap: 10px;
    margin-bottom: 0px;
}
.c-title05::before {
    content: '';
    display: block;
    width: 4px;
    height: 1em;
    flex-shrink: 0;
    background-color: var(--main-color);
}


/* フォーム */
.form-check-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-check-label > * {
    flex-shrink: 0;
}

/* ドット */
.dot-wrap {
    margin-top: 80px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.dot-wrap > .dot {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border-radius: 50%;
}

/* ボタン */
.c-button01 {
    padding: 20px 20px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    border: 1px solid var(--main-color);
    transition: background-color .3s ease , color .3s ease;
}
.c-button01:hover {
    background-color: #fff;
    color: var(--main-color);
}
.btn-anchor{
    border: none;
    background-color: transparent;
}
input[type="file"] {
    display: none;
}

/* タグ */
.c-tag {
    font-size: 16px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 10px 10px;
    min-width: 80px;
    text-align: center;
}
.c-tag.--outline {
    background-color: #fff;
    color: var(--main-color);
}

/* テーブル */
.c-head {
    background-color: #008F85;
    color: white;
}
.bg-green {
    background-color: #008F85;
}

/* bootstrapのcss上書き */
.nav-pills .nav-link.active {
    background-color: var(--main-color) !important;
}

.btn-primary {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.btn-outline-primary {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.btn-primary:hover {
    background-color: var(--hover-darken-color) !important;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--main-color) !important;
}
.btn-secondary {
    background-color: var(--sub-color) !important;
    border-color: var(--sub-color) !important;
}
.btn-outline-secondary {
    color: var(--sub-color) !important;
    border-color: var(--sub-color) !important;
}
.btn-secondary:hover {
    background-color: var(--hover-darken-sub-color) !important;
}
.btn-gray {
    color: #e7f3ee !important;
    background-color: rgb(135, 135, 135) !important;
    border-color: rgb(183, 183, 183) !important;
}
.btn-gray:hover {
    background-color: var(--hover-darken-color) !important;
}
.btn-outline-secondary:hover {
    color: #fff !important;
    background-color: var(--main-color) !important;
}
.breadcrumb-item a {
    color: var(--main-color) !important;
}
.page-link {
    color: var(--main-color) !important;
}
.list-group-item-action:hover {
    background-color: #e7f3ee !important;
}
.rotate-180 {
    transform: rotate(180deg);
}

@keyframes open {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.open-enter-active {
    animation: open .2s;
}
.open-leave-active {
    animation: open .2s linear reverse;
}

.bi {
    vertical-align: -.125em;
    pointer-events: none;
    fill: currentColor;
}

@media (min-width: 768px) {
    /* widthの定義 */
    .w-md-25 {
        width: 25% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

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

/*!* 商品一覧ページ *!*/
/*.product_items .product_card{*/
/*    width:22%;*/
/*    margin: 2% 0;*/
/*}*/

.product_items .card-img-top{
    object-fit: cover;
    width:100%;
    height: 230px;
}

/*!* タブレット版 *!*/
/*@media screen and (max-width:1024px) and (min-width:600px){*/
/*    .product_items .product_card{*/
/*        width:48%;*/
/*        margin: 1% auto;*/
/*    }*/
/*}*/

/*!* スマホ版 *!*/
@media screen and (max-width:599px) {
    .logo {
        width: 200px;
    }
    .c-title01 {
        font-size: 28px;
    }
    .c-title03 {
        font-size: 20px;
    }
    .c-title04 {
        font-size: 18px;
        gap: 10px;
    }
    .c-title04::before {
        width: 10px;
        height: 10px;
    }
    .table-flow03 .form-item {
        width: 80px !important;
    }
}