<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

img{
    width: 100%;
    vertical-align: bottom;
}

a{
    text-decoration: none;
    color: inherit;
}

*{
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family:  "Zen Old Mincho", serif;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    color: #333;
    font-size: 16px;
}

.inner{
    max-width: 1280px;
    padding: 0 4%;
    width: 92%;
    margin: 0 auto;
}

button.page-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: none;
    transition: .2s;
    letter-spacing: 3px;
    color: #333;
}

button.page-top span:before {
    position: absolute;
    top: -23px;
    left: 33%;
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 1px solid #333;
    border-width: 1px 1px 0px 0px;
}

button.page-top span:after {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid #333;
    content: "";
    border-radius: 100%;
    top: -38px;
    left: 8%;
}

.is-active {
    opacity: 1 !important;
    visibility: visible !important;
}

section {
    margin-top: 50px;
}

#lead {
    background-color: #f2fff8;
}





h2 {
    width: 90%;
    margin: auto;
    padding: 5% 0;
    max-width: 1520px;
}

.background01 {
    background-color: #009c8e;
}

.background02 {
    background-color: #00ca8e;
}

.background03 {
    background-color: #c4e7d1;
}

.slide_left {
    transform: translateX(-106%);
}

.slide_left_anim {
    animation: slide_left_anim 1s forwards;
}

@keyframes slide_left_anim {
    0% {
        transform: translateX(-106%);
    }
    100% {
        transform: translateX(0);
    }
}



.slide_right {
    transform: translateX(-106%);
}

.slide_right_anim {
    animation: slide_right_anim 1s forwards;
}

@keyframes slide_right_anim {
    0% {
        transform: translateX(106%);
    }
    100% {
        transform: translateX(0);
    }
}






.fadeup{
    opacity: 0;
}
.fadeup_anim{
animation-name: fadeup_anim;
animation-duration:.6s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeup_anim{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.mt0 {
    margin-top: 0;
}

.pt20 {
    padding-top: 20px;
}




/*Dms button multi*/
.dms_button_wrapper{
    display: flex;
    justify-content: center;
    gap: 0 20px;
    width: 90%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 70px;
}
.dms_button{
    width: 50%;
    max-width: 500px;
}
.dms_button a{
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.4px;
    padding: 30px 40px;
    background-color: #009c8e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s ease-in;
}
.dms_button a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
.dms_button a:hover{
    filter: brightness(150%);
}

.dms_button.to_top {
        margin: 6% auto;
}

.dms_button.to_top a{
    background-color: #00ca8e;
    color: #fff;
}
.dms_button.to_top a::before{
border-color: #fff;
}


.sp{display:none;}
@media screen and (max-width:768px){
.sp{display:block;}
.pc{display:none;}

    section {
    margin-top: 20px;
    }

    h2 {
        width: 100%;
    }

    .block_wrap {
        width: 100%;
    }

    .dms_button_wrapper{
        display: block;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .dms_button{
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
    }
    .dms_button a{
        font-size: 14px;
        padding: 20px 40px;
    }
}

</pre></body></html>