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

.btn.center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*text-align------------------------------------------------------------------*/
.txt-c {
    text-align: center;
}

.txt-r {
    text-align: right;
}

.txt-l {
    text-align: left;
}

@media screen and (max-width:768px) {
    .txt-c-s {
        text-align: center !important;
    }

    .txt-r-s {
        text-align: right !important;
    }

    .txt-l-s {
        text-align: left !important;
    }
}

/*margin----------------------------------------------------------------------*/

.m-t5 {
    margin-top: 5px;
}

.m-t10 {
    margin-top: 10px;
}

.m-t15 {
    margin-top: 15px;
}

.m-t20 {
    margin-top: 20px !important;
}

.m-t30 {
    margin-top: 30px !important;
}

.m-t50 {
    margin-top: 50px !important;
}


.m-b5 {
    margin-bottom: 5px !important;
}

.m-b10 {
    margin-bottom: 10px !important;
}

.m-b15 {
    margin-bottom: 15px !important;
}

.m-b20 {
    margin-bottom: 20px !important;
}

.m-b30 {
    margin-bottom: 30px !important;
}

.m-b50 {
    margin-bottom: 50px !important;
}

.m-l5 {
    margin-left: 5px !important;
}

.m-l20 {
    margin-left: 20px !important;
}

.m-r20 {
    margin-right: 20px !important;
}

.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

@media screen and (max-width:768px) {
    .m-t15s {
        margin-top: 15px !important;
    }

    .m-t20s {
        margin-top: 20px !important;
    }

    .m-b5s {
        margin-bottom: 5px !important;
    }

    .m-b10s {
        margin-bottom: 10px !important;
    }

    .m-b15s {
        margin-bottom: 15px !important;
    }

    .m-b20s {
        margin-bottom: 20px !important;
    }
}

/*padding---------------------------------------------------------------------*/
.p-t5 {
    padding-top: 5px;
}

.p-t15 {
    padding-top: 15px;
}

.p-t30 {
    padding-top: 30px;
}

.p-b5 {
    padding-bottom: 5px;
}

.p-b30 {
    padding-bottom: 30px;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-50 {
    padding: 50px;
}

.p-100 {
    padding: 100px;
}

/*font------------------------------------------------------------------------*/
.shuei{
	font-family: dnp-shuei-mgothic-std,sans-serif;
	font-weight: 400;
	font-style: normal;
}
.shuei_b{
	font-family: dnp-shuei-mgothic-std,sans-serif;
	font-weight: 600;
	font-style: normal;
}
.m-plus{
	font-family: m-plus-1p,sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-12 {
    font-size: 12px;
}
.font-13 {
    font-size: 13px;
}
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 18px;
}
.font-20 {
    font-size: 20px;
}
.font-22 {
    font-size: 22px;
}
.font-24 {
    font-size: 24px;
}
.font-28 {
    font-size: 28px;
}


.normal {
    font-weight: normal;
}

.bold {
    font-weight: bold;
}
.font-red {
    color: #CB4E4E;
}
.red_txt{
  color: #FF0000;
}

@media screen and (max-width:768px) {
    .font-12s {
        font-size: 12px;
    }

    .font-16s {
        font-size: 16px;
    }

    .font-18s {
        font-size: 18px;
    }
}

/*width-----------------------------------------------------------------------*/
.w10 {
    width: 10% !important;
}

.w20 {
    width: 20% !important;
}

.w100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

/*----------------------------------------------------------------------------*/
a:hover {
    opacity: 0.7;
    text-decoration: none !important;
    transition-duration: 0.5s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}


/*===============================================
●PC 画面の横幅が1200px以上 PC
===============================================*/
@media screen and (min-width: 1200px) {
    .p-none {
        display: none !important;
    }
}

/*===============================================
●TB 画面の横幅が1200pxまで
===============================================*/
@media only screen and (min-width: 769px) and (max-width: 1199px) {
    .t-none {
        display: none !important;
    }
}

/*===============================================
●SP  画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px) {

    /*padding-----------------------*/
    .p-t10-s {
        padding-top: 10px !important;
    }

    .p-b10-s {
        padding-bottom: 10px !important;
    }
}

.inline-block_test {
    display: inline-block;
}

/* 例: 600ピクセル以下の場合のスタイル */
@media (max-width: 600px) {
    .pc-none {
        display: none !important;
    }
  }
  
  /* 例: 601ピクセル以上1200ピクセル以下の場合のスタイル */
  @media (min-width: 601px) and (max-width: 1200px) {
    .sp-none {
        display: none !important;
    }
  }
  
  /* 例: 1201ピクセル以上の場合のスタイル */
  @media (min-width: 1201px) {
    .sp-none {
        display: none !important;
    }
  }</pre></body></html>