
html {
    font-size: 1.2rem;
}
p {
    color: #141414;
    margin-bottom: 0;
}
@media screen and (max-width:768px) {
    html {
        font-size: 1rem;
    }
}

/* wrap */
body {
    background-color: #F2E5D8;
}

/* 共通 */
.main-color {
    color: #31ad35 !important;
}
.background-base-color {
    background-color: #F2E5D8;
}
.base-color {
    color: #F2E5D8;
}
.background-accent-color {
    background-color: #EDFF41;
}
.accent-color {
    color: #EDFF41;
}
.title {
    width: fit-content;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}
.underline {
    border-bottom: 1px #141414 solid;
}
.under-yellow {
    width: 100%;
    height: 10px;
    background-color: #EDFF41;
    margin-top: -20px;
}
.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:768px) {
    .title {
        font-size: 1.5rem;
        padding: 0 3%;
    }
    .under-yellow {
        height: 5px;
        margin-top: -10px;
    }
}



/* Header */
.header-color {
    background-color: white;
}
.navbar {
    width: 100%; /* ヘッダーの横幅を指定する */
    height: 75px; /* ヘッダーの高さを指定する */
    padding: 10px; /* ヘッダーの余白を指定する(上下左右) */
    z-index: 2;
}
.navbar-nav {
    align-items: center;
}
.main-visual-img {
    width: 100%;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E2B6A3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E2B6A3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
.navbar .nav-link {
    color: #E2B6A3 !important;
    font-size: 16px;
    font-weight: bold;
}
.navbar-scrolled .nav-link {
    color: #4f4f4f !important;
}
.nav-application {
    padding: 10px 20px;
    background: transparent;
    color: #fff !important;
}
.logo-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}
.logo {
    height: 120%;
    object-fit: contain;
    margin-left: 20px;
}
.navbar .logo-txt {
    color: #fff;
    margin: 0 0 0 15px;
    font-weight: bold;
}
.navbar-scrolled .logo-txt {
    color: #4f4f4f;
}
.navbar .nav-item-application {
    display: inline-block;
    border: 2px solid #fff;
    margin-left: 10px;
    font-weight: bold;
    border-radius: 10px;
}
.navbar-scrolled .nav-item-application {
    border: none;
    background-color: #2E1C11;
}
.navbar .nav-application {
    color: #E2B6A3!important;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width:768px) {
    .navbar-collapse {
        background-color: #E2B6A3;
    }
    .navbar {
        height: 70px;
        padding: 0;
    }
    .navbar-brand {
        margin-right: 0;
    }
    .navbar-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0 !important;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
    }
    .nav-item {
        width: 100%;
        text-align: center;
        margin: 7px 0;
    }
    .nav-item a {
        font-weight: bold;
    }
    .navbar-collapse {
        width: 100vw;
        height: 100vh;
    }
    .navbar .nav-link {
        color: #fff !important;
    }
    .navbar .nav-application {
        color: #E2B6A3!important;
    }
    .navbar .nav-item-application {
        display: inline-block;
        border: none;
        font-weight: bold;
        padding: 10px 20px;
        margin: 0;
    }
    .logo {
        height: 80%;
        margin-left: 0;
    }
    .logo-txt {
        font-size: 3vw;
        margin: 0 0 0 10px;
    }

    #navbarSupportedContent {
        position: absolute;
        top: 60px;
        left: 0;
        min-width: 100hw;
        height: calc(100vh - 0px);
    }
}


/* 吹き出し */
.balloon4 {
    position: relative;
    margin: 2em 0 2em 40px;
    padding: 15px;
    background: white;
    border-radius: 30px;
    padding: 2% 0 2% 2%;
    background-color: rgba(229, 232, 224, 0.8);
    border: 1px solid white;
}
.balloon4:before {  
    content: "";
    position: absolute;
    left: -52px;
    width: 18px;
    height: 15px;
    bottom: 0;
    background: white;
    border-radius: 50%;
    background-color: rgba(229, 232, 224, 0.8);
    border: 1px solid white;
}
.balloon4:after {
    content: "";
    position: absolute;
    left: -30px;
    width: 25px;
    height: 22px;
    bottom: 7px;
    background: white;
    border-radius: 50%;
    background-color: rgba(229, 232, 224, 0.8);
    border: 1px solid white;
}
.balloon4 p {
    margin: 0; 
    padding: 0;
}
@media screen and (max-width:768px) {
    .balloon4 {
        margin: 2em 0 2em 20px;
    }
    .balloon4:before {  
        left: -32px;
        width: 13px;
        height: 12px;
    }
    .balloon4:after {
        left: -20px;
        width: 20px;
        height: 18px;
    }
}