@charset "UTF-8";
/* CSS Document */

html,
body {
    font-size: 62.5%;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-feature-settings: "palt";
    line-height: 1.578;
    color: #473E31;
    position: relative;
}

body {
    position: relative;
}

.wrapper {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background-color: #FFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    outline: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

img {
    width: 100%;
    height: auto;
}

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

input,
select {
    vertical-align: middle;
}

input select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

i.fas {
    margin: 0 10px;
}

br.pcbr {
    display: none;
}

@media screen and (min-width:769px) {
    br.spbr {
        display: none;
    }

    br.pcbr {
        display: block;
    }
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #FFF;
    text-align: center;
    color: #473E31;
    top: 0;
    left: 0;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 300px;
    height: auto;
}

.box {
    opacity: 0;
}

.shake-l:hover {
    animation: shake-l 2s infinite;
}

@keyframes shake-l {
    0% {
        transform: translate(2px, 0px);
    }

    5% {
        transform: translate(-2px, 0px);
    }

    10% {
        transform: translate(2px, 0px);
    }

    15% {
        transform: translate(-2px, 0px);
    }

    20% {
        transform: translate(2px, 0px);
    }

    25% {
        transform: translate(-2px, 0px);
    }

    30% {
        transform: translate(0px, 0px);
    }
}

.floatshadow:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
    border-color: transparent;
}

/* 左から */
.fadeLeftTrigger {
    opacity: 0;
}

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */
.fadeRightTrigger {
    opacity: 0;
}

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeTrigger {
    opacity: 0;
}

.fade {
    animation-name: fadeAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fade2 {
    animation-name: fadeAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
    animation-delay: 0.5s;
}

.delay-time1 {
    animation-delay: 1s;
}

.delay-time15 {
    animation-delay: 1.5s;
}

.delay-time2 {
    animation-delay: 2s;
}

.delay-time25 {
    animation-delay: 2.5s;
}

.delay-time3 {
    animation-delay: 3s;
}

.delay-time35 {
    animation-delay: 3.5s;
}

.delay-time4 {
    animation-delay: 4s;
}

.drawer-nav {
    background-image: url(images/bg-green.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: 636px auto;
    background-color: #C3D83F;
}

nav .drawer-menu {
    padding: 100px 0 0 0;
    box-sizing: border-box;
}

nav li {
    text-align: center;
    margin-bottom: 20px;
}

nav li .drawer-menu-item {
    font-size: 2.1rem;
    font-weight: 700;
}

#nav-fix {
    position: fixed;
    display: block;
    z-index: 100;
    bottom: 20px;
    right: 0;
    width: 91px;
    height: 110px;
    opacity: 0;
    transform: translateY(100px);
}

#nav-fix a {
    display: block;
    bottom: 20px;
    right: 0;
    width: 91px;
    height: 110px;
    background: url(images/btn-badge.png) 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#nav-fix.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#nav-fix.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

.lpg header {
    background: url(images/bgpccontainer_header.png) center 50px repeat-x;
    background-size: auto 83vw;
    margin-bottom: 50px;
}

.lpg header h1 {
    width: 100%;
    max-width: 1288px;
    margin: 10px auto 0 auto;
}

.lpg header h1 img {
    width: 203px;
    height: 46px;
    object-fit: cover;
}

.lpg header h1 img.pcimg {
    display: none;
}

.mainvisuals {
    width: 100%;
    height: 83vw;
    position: relative;
}

.mainvisuals .photos-visual {
    position: absolute;
    right: 0;
    top: 27vw;
    width: 80%;
    max-width: 1000px;
    height: 54.4vw;
    background: url(images/bgheaderphotos.png) 0 0 no-repeat;
    background-size: cover;
    z-index: 1;
}

.mainvisuals .photos-visual .photo-container {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.photos-visual .vegas-slide,
.photos-visual .vegas-slide-inner {
    background-position: 0 0 !important;
}

.mainvisuals .message {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1288px;
    height: 648px;
    z-index: 10;
}

.mainvisuals .message .illust-visual {
    width: 35%;
    /*647px*/
    height: 52vw;
    background: url(images/headerimage.png) 0 0 no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.mainvisuals .message h2 {
    width: calc(100% - 20px);
    max-width: 610px;
    /*647px*/
    height: 22.13vw;
    background: url(images/catchcopy.png) 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -7px;
}

@media screen and (min-width:480px) {
    .lpg header {
        background: url(images/bgpccontainer_header.png) center 50px repeat-x;
        background-size: auto 59vw;
        margin-bottom: 50px;
        padding-top: 16px;
    }

    .lpg header h1 {
        width: 100%;
        max-width: 1288px;
        margin: 0 auto 0 auto;
    }

    .lpg header h1 img {
        width: 203px;
        height: 46px;
        object-fit: cover;
    }

    .mainvisuals {
        width: 100%;
        height: 60vw;
        position: relative;
    }

    .mainvisuals .photos-visual {
        position: absolute;
        right: 0;
        top: 70px;
        width: 80%;
        max-width: 1000px;
        height: 54.4vw;
        background: url(images/bgheaderphotos.png) 0 0 no-repeat;
        background-size: cover;
        z-index: 1;
    }

    .mainvisuals .message {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1288px;
        height: 648px;
        z-index: 10;
    }

    .mainvisuals .message .illust-visual {
        width: 35%;
        /*647px*/
        height: 52vw;
        background: url(images/headerimage.png) 0 0 no-repeat;
        background-size: contain;
        margin-left: 20px;
    }

    .mainvisuals .message h2 {
        width: 70%;
        max-width: 610px;
        /*647px*/
        height: 16vw;
        background: url(images/catchcopy.png) 0 0 no-repeat;
        background-size: contain;
        text-indent: -9999px;
        margin-left: 37px;
        margin-top: -7px;
    }
}

@media screen and (min-width:768px) {
    .lpg header {
        background: url(images/bgpccontainer_header.png) center 50px repeat-x;
        background-size: auto 59vw;
    }

    .lpg header h1 img {
        width: 255px;
        height: 58px;
        object-fit: cover;
    }

    .lpg header h1 img.pcimg {
        display: block;
    }

    .lpg header h1 img.spimg {
        display: none;
    }

    .columns {
        display: flex;
        justify-content: space-between;
    }

    .mainvisuals .photos-visual {
        position: absolute;
        right: 0;
        top: 70px;
        width: 80%;
        max-width: 1000px;
        height: 54.4vw;
        background: url(images/bgheaderphotos.png) 0 0 no-repeat;
        background-size: cover;
        z-index: 1;
    }

    .mainvisuals .message {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1288px;
        height: 648px;
        z-index: 10;
    }

    .mainvisuals .message .illust-visual {
        width: 35%;
        /*647px*/
        height: 45vw;
        background: url(images/headerimage.png) 0 0 no-repeat;
        background-size: contain;
        margin-left: 20px;
    }

    .mainvisuals .message h2 {
        width: 70%;
        max-width: 610px;
        /*647px*/
        height: 135px;
        background: url(images/catchcopy.png) 0 0 no-repeat;
        background-size: contain;
        text-indent: -9999px;
        margin-left: 37px;
        margin-top: -7px;
    }
}

@media screen and (min-width:1200px) {
    .lpg header {
        height: 800px;
        background: url(images/bgpccontainer_header.png) center 50px repeat-x;
        background-size: 1366px auto;
    }

    .mainvisuals .photos-visual {
        position: absolute;
        right: 0;
        top: -50px;
        width: 100%;
        max-width: 1000px;
        height: 680px;
        background: url(images/bgheaderphotos.png) 0 0 no-repeat;
        background-size: cover;
        z-index: 1;
    }

    .mainvisuals .message {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1288px;
        height: 648px;
        z-index: 10;
    }

    .mainvisuals .message .illust-visual {
        width: 100%;
        max-width: 410px;
        /*647px*/
        height: 520px;
        background: url(images/headerimage.png) 0 0 no-repeat;
        background-size: contain;
        margin-left: 20px;
    }

    .mainvisuals .message h2 {
        width: 100%;
        max-width: 610px;
        /*647px*/
        height: 135px;
        background: url(images/catchcopy.png) 0 0 no-repeat;
        background-size: contain;
        text-indent: -9999px;
        margin-left: 37px;
        margin-top: -7px;
    }
}


.lpg #message {
    width: 100%;
    max-width: 656px;
    margin: 10px auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.lpg #message h2 {
    width: 100%;
    background-color: #003F64;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: #FFF;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
}

@media screen and (min-width:480px) {
    .lpg #message h2 {
        width: 100%;
        background-color: #003F64;
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        color: #FFF;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 10px;
    }

    .lpg #message h2 br {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .lpg #message h2 {
        width: 100%;
        background-color: #003F64;
        font-size: 3.8rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        color: #FFF;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 10px;
    }
}

.sectionwrapper {
    width: 100%;
    margin-bottom: 50px;
}

.bgred .container {
    position: relative;
    background-color: #FF2F2F;
}

.bgred::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(images/bgpccontainer_red-upper.png) center bottom repeat-x;
    background-size: 683px auto;
}

.bgred::after {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(images/bgpccontainer_red-lower.png) center top repeat-x;
    background-size: 683px auto;
}

#case .section-container {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 60px 15px 60px 15px;
    box-sizing: border-box;
}

#case .section-container .casetype {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 35px auto;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
    clear: both;
    position: relative;
    overflow: hidden;
}

#case .section-container .casetype h3 {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    text-align: center;
    line-height: 94px;
    font-size: 2.1rem;
    color: #FFF;
    position: absolute;
    z-index: 10;
}

#case .section-container #preschooler h3 {
    top: 0;
    left: 0;
    background-color: #F77AC4;
}

#case .section-container #compulsory-education h3 {
    top: 20px;
    right: 0;
    background-color: #519B52;
}

#case .section-container #highschool h3 {
    top: 48px;
    left: 0;
    background-color: #00B0E1;
}


#case .section-container .casetype .qlist p {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1em;
}

#case .section-container #preschooler .qlist {
    width: 100%;
    height: 57.8vw;
    background: url(images/bgcase01.png) 0 0 no-repeat;
    background-size: contain;
    padding: 57px 0 0 40px;
    margin: 45px auto 0 auto;
    box-sizing: border-box;
}

#case .section-container #compulsory-education .qlist {
    width: 100%;
    height: 57.8vw;
    background: url(images/bgcase02.png) 0 0 no-repeat;
    background-size: contain;
    padding: 68px 0 0 85px;
    margin: 70px auto 0 auto;
    box-sizing: border-box;
}

#case .section-container #highschool .qlist {
    width: 100%;
    height: 58.3vw;
    background: url(images/bgcase03.png) 0 0 no-repeat;
    background-size: contain;
    padding: 86px 0 0 50px;
    margin: 70px auto 0 auto;
    box-sizing: border-box;
}

.decoflower {
    position: absolute;
    z-index: 1;
    display: block;
}

#case .section-container #preschooler .decoflower {
    width: 116px;
    height: 145px;
    background: url(images/decoflower_case01.png) 0 0 no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
}

#case .section-container #compulsory-education .decoflower {
    width: 137px;
    height: 163px;
    background: url(images/decoflower_case02.png) 0 0 no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
}

#case .section-container #highschool .decoflower {
    width: 133px;
    height: 162px;
    background: url(images/decoflower_case03.png) 0 0 no-repeat;
    background-size: contain;
    top: 30px;
    right: 0;
    transform: scale(-1, 1);
}

@media screen and (min-width:480px) {

    #case .section-container {
        width: 100%;
        max-width: 840px;
        margin: 0 auto;
        padding: 20px 15px 60px 15px;
        box-sizing: border-box;
    }

    #case .section-container .casetype {
        width: 100%;
        max-width: 640px;
        margin: 0 auto 70px auto;
        padding: 0px 0px 0px 0px;
        box-sizing: border-box;
        clear: both;
        position: relative;
        overflow: hidden;
    }

    #case .section-container .casetype h3 {
        width: 141px;
        height: 141px;
        border-radius: 50%;
        text-align: center;
        line-height: 141px;
        font-size: 3.2rem;
        font-weight: 700;
        color: #FFF;
        background-color: #F77AC4;
        position: absolute;
        z-index: 10;
    }

    #case .section-container #preschooler h3 {
        top: 0;
        left: 0;
        background-color: #F77AC4;
    }

    #case .section-container #compulsory-education h3 {
        top: 20px;
        right: 0;
        background-color: #519B52;
    }

    #case .section-container #highschool h3 {
        top: 48px;
        left: 0;
        background-color: #00B0E1;
    }

    #case .section-container .casetype .qlist p {
        font-size: 2.1rem;
        font-weight: 500;
        margin-bottom: 1em;
    }

    #case .section-container #preschooler .qlist {
        width: 460px;
        height: 266px;
        background: url(images/bgcase01.png) 0 0 no-repeat;
        background-size: contain;
        padding: 57px 0 0 50px;
        margin: 90px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #compulsory-education .qlist {
        width: 460px;
        height: 266px;
        background: url(images/bgcase02.png) 0 0 no-repeat;
        background-size: contain;
        padding: 74px 0 0 100px;
        margin: 140px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #highschool .qlist {
        width: 444px;
        height: 259px;
        background: url(images/bgcase03.png) 0 0 no-repeat;
        background-size: contain;
        padding: 91px 0 0 50px;
        margin: 140px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #preschooler {
        float: left;
    }

    #case .section-container #compulsory-education {
        float: right;
    }

    .decoflower {
        position: absolute;
        z-index: 1;
        display: block;
    }

    #case .section-container #preschooler .decoflower {
        width: 174px;
        height: 218px;
        background: url(images/decoflower_case01.png) 0 0 no-repeat;
        background-size: contain;
        bottom: 0;
        right: 0;
    }

    #case .section-container #compulsory-education .decoflower {
        width: 208px;
        height: 244px;
        background: url(images/decoflower_case02.png) 0 0 no-repeat;
        background-size: contain;
        top: 0;
        left: 0;
    }

    #case .section-container #highschool .decoflower {
        width: 200px;
        height: 243px;
        background: url(images/decoflower_case03.png) 0 0 no-repeat;
        background-size: contain;
        top: 0;
        right: 0;
        transform: scale(-1, 1);
    }
}

@media screen and (min-width:769px) {
    .sectionwrapper {
        margin-bottom: 100px;
    }

    .bgred::before {
        height: 60px;
        background-size: 1366px auto;
    }

    .bgred::after {
        height: 60px;
        background-size: 1366px auto;
    }

    #case .section-container {
        width: 100%;
        max-width: 840px;
        margin: 0 auto;
        padding: 20px 15px 60px 15px;
        box-sizing: border-box;
    }

    #case .section-container .casetype {
        width: 100%;
        max-width: 640px;
        margin: 0 auto 70px auto;
        padding: 0px 0px 0px 0px;
        box-sizing: border-box;
        clear: both;
        position: relative;
        overflow: hidden;
    }

    #case .section-container .casetype h3 {
        width: 188px;
        height: 188px;
        border-radius: 50%;
        text-align: center;
        line-height: 188px;
        font-size: 4.2rem;
        font-weight: 700;
        color: #FFF;
        background-color: #F77AC4;
        position: absolute;
        z-index: 10;
    }

    #case .section-container #preschooler h3 {
        top: 0;
        left: 0;
        background-color: #F77AC4;
    }

    #case .section-container #compulsory-education h3 {
        top: 20px;
        right: 0;
        background-color: #519B52;
    }

    #case .section-container #highschool h3 {
        top: 48px;
        left: 0;
        background-color: #00B0E1;
    }


    #case .section-container .casetype .qlist p {
        font-size: 2.1rem;
        font-weight: 500;
        margin-bottom: 1em;
    }

    #case .section-container #preschooler .qlist {
        width: 460px;
        height: 266px;
        background: url(images/bgcase01.png) 0 0 no-repeat;
        background-size: contain;
        padding: 57px 0 0 80px;
        margin: 90px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #compulsory-education .qlist {
        width: 460px;
        height: 266px;
        background: url(images/bgcase02.png) 0 0 no-repeat;
        background-size: contain;
        padding: 74px 0 0 100px;
        margin: 140px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #highschool .qlist {
        width: 444px;
        height: 259px;
        background: url(images/bgcase03.png) 0 0 no-repeat;
        background-size: contain;
        padding: 91px 0 0 100px;
        margin: 140px auto 0 auto;
        box-sizing: border-box;
    }

    #case .section-container #preschooler {
        float: left;
    }

    #case .section-container #compulsory-education {
        float: right;
    }

    .decoflower {
        position: absolute;
        z-index: 1;
        display: block;
    }

    #case .section-container #preschooler .decoflower {
        width: 232px;
        height: 290px;
        background: url(images/decoflower_case01.png) 0 0 no-repeat;
        background-size: contain;
        bottom: 0;
        right: 0;
    }

    #case .section-container #compulsory-education .decoflower {
        width: 277px;
        height: 325px;
        background: url(images/decoflower_case02.png) 0 0 no-repeat;
        background-size: contain;
        top: 0;
        left: 0;
    }

    #case .section-container #highschool .decoflower {
        width: 266px;
        height: 324px;
        background: url(images/decoflower_case03.png) 0 0 no-repeat;
        background-size: contain;
        top: 0;
        right: 0;
        transform: scale(-1, 1);
    }
}

.lpg #about {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.lpg #about h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1em;
    padding: 0 0.5em;
}

.lpg #about h2 strong {
    display: inline-block;
    background-color: #FF0000;
    color: #FFF;
    margin: 0 0.25em;
    padding: 0 0.35em;
    border-radius: 5px;
}

.lpg #about .container {
    padding-left: 20px;
    padding-right: 20px;
}

.lpg #about p {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: left;
    line-height: 2;
}

.lpg #about p br {
    display: none;
}

@media screen and (min-width:480px) {
    .lpg #about {
        width: 100%;
        text-align: center;
        margin-bottom: 100px;
    }

    .lpg #about h2 {
        font-size: 3.6rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 0.5em;
    }

    .lpg #about h2 strong {
        display: inline-block;
        background-color: #FF0000;
        color: #FFF;
        margin: 0 0.25em;
        padding: 0 0.35em;
        border-radius: 5px;
    }

    .lpg #about p {
        font-size: 2.1rem;
        font-weight: 500;
        text-align: center;
        line-height: 2;
    }

    .lpg #about p br {
        display: block;
    }
}

@media screen and (min-width:768px) {
    .lpg #about {
        width: 100%;
        text-align: center;
        margin-bottom: 100px;
    }

    .lpg #about h2 {
        font-size: 4.2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 0.5em;
    }

    .lpg #about h2 strong {
        display: inline-block;
        background-color: #FF0000;
        color: #FFF;
        margin: 0 0.25em;
        padding: 0 0.35em;
        border-radius: 5px;
    }

    .lpg #about p {
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        line-height: 2;
    }
}


.bggreen .container {
    position: relative;
    background-color: #0FC338;
    padding-top: 50px;
    padding-bottom: 20px;
}

#merit .section-container {
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#voice .section-container {
    width: 100%;
    max-width: 840px;
    padding: 30px 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

#flow .section-container {
    width: 100%;
    max-width: 1056px;
    margin: 0 auto;
    padding: 30px 15px;
    box-sizing: border-box;
}

.bggreen::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(images/bgpccontainer_green-upper.png) center bottom repeat-x;
    background-size: 683px auto;
}

.bggreen::after {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(images/bgpccontainer_green-lower.png) center top repeat-x;
    background-size: 683px auto;
}

#merit .section-header,
#voice .section-header,
#flow .section-header {
    width: 100%;
    max-width: 696px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

#merit .section-header h2,
#voice .section-header h2,
#flow .section-header h2 {
    width: 100%;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #FFF;
    text-align: center;
    border-radius: 10px;
    padding: 18px 10px;
    box-sizing: border-box;
}

#merit .section-header h2 {
    background-color: #FF9300;
}

#voice .section-header h2 {
    background-color: #FF9BD6;
    margin-bottom: 10px;
}

#flow .section-header h2 {
    background-color: #1BDBEB;
    margin-bottom: 10px;
}

#flow .section-header p {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
}

#voice .section-container ul {
    margin-left: 3em;
}

#voice .section-container li {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1em;
}

#merit .section-container ul {
    margin-left: 3em;
}

#merit .section-container li {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1em;

}

#flow .section-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

#flow .section-container ul {
    margin-left: 3em;
}

#flow .section-container ul li {
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
}

#flow .section-container ol {
    max-width: 454px;
    margin: 0 auto;
}

#flow .section-container ol li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#flow .section-container ol li .flownum {
    width: 50px;
    padding: 20px;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #FFF;
    background-color: #D96030;
    border-radius: 10px 0 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#flow .section-container ol li .flowtitle {
    padding: 20px;
    margin: 0;
    background-color: #FFF;
    border-radius: 0px 10px 10px 0px;
    width: calc(100% - 50px);
    box-sizing: border-box;
}

#flow .section-container ol li::after {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: url(images/caret-down-solid.png) center center no-repeat;
    background-size: 50px 30px;
}

#flow .section-container ol li:last-of-type::after {
    background-image: none;
}

#flow .section-container ol li .flowtitle h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0em;
}

#flow .section-container ol li .flowtitle p {
    font-size: 1.6rem;
    font-weight: 500;
}

#flow .section-container .message {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 50px;
}

@media screen and (min-width:480px) {
    .bggreen .container {
        position: relative;
        background-color: #0FC338;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    #merit .section-container {
        width: 100%;
        padding: 60px 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    #voice .section-container {
        width: 100%;
        padding: 60px 15px;
        box-sizing: border-box;
    }

    #flow .section-container {
        width: 100%;
        max-width: 1056px;
        margin: 0 auto;
        padding: 60px 15px;
        box-sizing: border-box;
    }

    #merit .section-header h2,
    #voice .section-header h2,
    #flow .section-header h2 {
        width: 100%;
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1;
        color: #FFF;
        text-align: center;
        border-radius: 10px;
        padding: 18px 10px;
        box-sizing: border-box;
    }

    #merit .section-header h2 {}

    #flow .section-header h2 {
        margin-bottom: 10px;
    }

    #flow .section-header p {
        font-size: 2.0rem;
        font-weight: 500;
        text-align: center;
    }

    #voice .section-container ul {
        margin-left: 2em;
    }

    #voice .section-container li {
        font-size: 2.1rem;
        margin-bottom: 1em;
    }

    #merit .section-container ul {
        margin-left: 2em;
    }

    #merit .section-container li {
        font-size: 2.1rem;
        font-weight: 500;
        margin-bottom: 1em;

    }

    #flow .section-container h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5em;
    }

    #flow .section-container ul {
        margin-left: 3em;
    }

    #flow .section-container ul li {
        padding: 0;
        margin: 0;
        font-size: 1.6rem;
    }

    #flow .section-container ol {
        max-width: 454px;
        margin: 0 auto;
    }

    #flow .section-container ol li {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #flow .section-container ol li .flownum {
        width: 50px;
        padding: 20px;
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        color: #FFF;
        background-color: #D96030;
        border-radius: 10px 0 0 10px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #flow .section-container ol li .flowtitle {
        padding: 20px;
        margin: 0;
        background-color: #FFF;
        border-radius: 0px 10px 10px 0px;
        width: calc(100% - 50px);
        box-sizing: border-box;
    }

    #flow .section-container ol li::after {
        content: "";
        display: block;
        width: 100%;
        height: 60px;
        background: url(images/caret-down-solid.png) center center no-repeat;
        background-size: 50px 30px;
    }

    #flow .section-container ol li:last-of-type::after {
        background-image: none;
    }

    #flow .section-container ol li .flowtitle h3 {
        font-size: 2.4rem;
        font-weight: 500;
        margin-bottom: 0em;
    }

    #flow .section-container ol li .flowtitle p {
        font-size: 1.8rem;
        font-weight: 500;
    }
    #flow .section-container .message {
        text-align: center;
    }
}

@media screen and (min-width:768px) {

    .bggreen::before {
        height: 60px;
        background-size: 1366px auto;
    }

    .bggreen::after {
        height: 60px;
        background-size: 1366px auto;
    }

    #merit .section-header h2,
    #voice .section-header h2,
    #flow .section-header h2 {
        width: 100%;
        font-size: 4.2rem;
        font-weight: 700;
        line-height: 1;
        color: #FFF;
        text-align: center;
        border-radius: 10px;
        padding: 18px 10px;
        box-sizing: border-box;
    }
}

footer {
    padding: 25px 0 0px 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
}

footer h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

footer h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0px;
}

footer h4 {
    width: 100%;
    max-width: 1288px;
    margin: 16px auto 0 auto;
}

footer h4 img {
    width: 255px;
    height: 58px;
    object-fit: cover;
}

footer p {
    margin-bottom: 30px;
}

.telnum {
    margin-bottom: 50px;
    font-size: 3.6rem;
    font-weight: 700;
    color: #D95F30;
}

.telnum a {
    color: #D95F30;
}

.contactbtn {
    padding-left: 20px;
    padding-right: 20px;
}

.contactbtn a {
    width: 100%;
    max-width: 454px;
    margin: 40px auto;
}

.contactbtn .btn {
    display: block;
    width: 100%;
    padding: 15px 15px;
    box-sizing: border-box;
    font-size: 2.1rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    background-color: #FF2F2F;
    border: 2px solid #FFF;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.kyuminyokin-banner {
    width: 100%;
    max-width: 270px;
    padding: 0 10px;
    margin: 0 auto 0 auto;
    box-sizing: border-box;
}

.contactbtn .btn:hover {}

@media screen and (min-width:480px) {
    footer {
        padding: 0px 0 10px 0;
        font-size: 1.6rem;
    }

    footer {
        padding: 50px 0 100px 0;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 500;
    }

    footer h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    footer h3 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 0px;
    }

    footer h4 {
        width: 100%;
        max-width: 1288px;
        margin: 16px auto 0 auto;
    }

    footer h4 img {
        width: 255px;
        height: 58px;
        object-fit: cover;
    }

    footer p {
        margin-bottom: 30px;
    }

    .telnum {
        margin-bottom: 50px;
        font-size: 3.6rem;
        font-weight: 700;
        color: #D95F30;
    }

    .telnum a {
        color: #D95F30;
    }

    .contactbtn a {
        width: 100%;
        max-width: 454px;
        margin: 40px auto;
    }

    .contactbtn .btn {
        display: block;
        width: 100%;
        padding: 15px 15px;
        box-sizing: border-box;
        font-size: 2.4rem;
        font-weight: 700;
        color: #FFF;
        text-align: center;
        background-color: #FF2F2F;
        border: 2px solid #FFF;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }

    .contactbtn .btn:hover {}
}

@media screen and (min-width:768px) {
    .contactbtn .btn {
        display: block;
        width: 100%;
        padding: 15px 15px;
        box-sizing: border-box;
        font-size: 2.7rem;
        font-weight: 700;
        color: #FFF;
        text-align: center;
        background-color: #FF2F2F;
        border: 2px solid #FFF;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }
}