@charset "utf-8";

/* common element
--------------------------*/
:root {
    --black: #494D4E;
    --white: #FFF;
    --primary: #00A0E9;
    --secondary: #85C300;
    --bg-blue: #E5F5FD;
    --line-blue: #BAEEFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: var(--black);
    background: linear-gradient(90deg, rgba(167, 223, 249, 1) 0%, rgba(229, 245, 253, 1) 20%, rgba(229, 245, 253, 1) 80%, rgba(167, 223, 249, 1) 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    cursor: pointer;
}

main {
    overflow: hidden;
}

h1,h2,h3,h4,h5{
    font-weight: bold;
}

.t-center {
    text-align: center;
}

.underline {
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb4 {
    margin-bottom: 3rem;
}

.pt4 {
    padding-top: 4rem;
}

.pb4 {
    padding-bottom: 4rem;
}

.urbanist {
    font-family: Urbanist;
}

.flexbox {
    display: flex;
}

.t-center {
    text-align: center;
}

.cmt {
    font-size: 0.8rem;
}

.list-disc {
    list-style: disc;
    margin-left: 1rem;
}

/* パンくずリスト */
.breadcrumb {
    max-width: 1024px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 1rem;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-size: 0.7rem;
}

.breadcrumb li:after {
    content: '>';
    padding: 0 0.2em;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: var(--black);
    display: inline;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        padding: 1rem 1rem;
    }

    .breadcrumb li {
        font-size: 0.7rem;
    }
}