/*[ FONT ]
///////////////////////////////////////////////////////////
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Courgette');

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Courgette-Regular;
    src: url('../fonts/courgette/Courgette-Regular.ttf');
}

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Light;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: NotoSans-Regular;
    src: url('../fonts/notosans/NotoSans-Regular.ttf');
}



/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* ------------------------------------ */
a {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3a812b;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #4ad59e;
}

/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h3 {
    font-size: 24px;
}

p {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #393939;
    margin-bottom: 0.5em;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}


/* ------------------------------------ */
/*input {
    outline: none;
    border: none !important;
}*/

textarea {
    outline: none;
}

textarea:focus,
input:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #aaaaaa;
}

input:-moz-placeholder {
    color: #aaaaaa;
}

input::-moz-placeholder {
    color: #aaaaaa;
}

input:-ms-input-placeholder {
    color: #aaaaaa;
}

textarea::-webkit-input-placeholder {
    color: #aaaaaa;
}

textarea:-moz-placeholder {
    color: #aaaaaa;
}

textarea::-moz-placeholder {
    color: #aaaaaa;
}

textarea:-ms-input-placeholder {
    color: #aaaaaa;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cp-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    position: relative
}

.cp-meter {
    border-radius: 50%;
    border-top: solid 6px #4ad59e;
    border-right: solid 6px #4ad59e;
    border-bottom: solid 6px #4ad59e;
    border-left: solid 6px #4ad59e;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box
}

.cp-meter:before {
    border-radius: 3px;
    content: " ";
    width: 6px;
    height: 12px;
    display: inline-block;
    box-sizing: border-box;
    background-color: #ec1d25;
    position: absolute;
    top: 5px;
    left: 16px;
    transform-origin: center bottom;
    animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
    0% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(315deg)
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;

}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 0.7;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 65px;
        right: 5px;
    }
}


/*[ Calendar ]
///////////////////////////////////////////////////////////
*/
td.active {
    background-color: #ec1d25 !important;
}

input[type="date"i] {
    padding: 14px;
}

.table-condensed td,
.table-condensed th {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
}

.daterangepicker {
    width: 339px;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 10px;
}

.daterangepicker .calendar {
    max-width: inherit;
}

.daterangepicker thead tr th {
    padding: 10px 0;
}

.daterangepicker .table-condensed th select {
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 15px;
    padding: 5px;
}

.daterangepicker td {
    width: 60px;
    height: 35px;
}



/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/
.select2-container {
    display: block;
    max-width: 100%;
    width: auto !important;
}

/*[ Select ]
===========================================================*/
.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    background-color: white;
    border: 0px solid transparent;
    border-radius: 10px !important;
    height: 46px;
    outline: none;
}

.select2-container--focus {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--focus .select2-selection--single {
    border-color: transparent;
}

.select2-container--below.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--below.select2-container--open .select2-selection--single {
    border-color: transparent;
}

.select2-container--above.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--above.select2-container--open .select2-selection--single {
    border-color: transparent;
}


/*[ in select ]
===========================================================*/
.select2-selection__rendered {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: #666666 !important;
    padding-left: 20px !important;
}

.select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 12px !important;
}


/*[ dropdown option ]
===========================================================*/
.select2-dropdown {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
    margin-top: 7px;
}

.select2-dropdown--above {
    top: -2px;
}

.select2-dropdown--below {
    top: 2px;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #ec1d25;
    color: #fff;
}

.select2-results__options {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: #666666 !important;
}


.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa !important;
    outline: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.select2-search--dropdown .select2-search__field:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
}



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
    /*position: absolute;*/
    position: fixed;
    width: 100%;
    height: 120px;
    top: 0;
    left: 0;
    z-index: 100;
    /*border-top: 5px solid #ec1d25;*/
}

@media (max-width: 992px) {
    .wrap-menu-header {
        height: 85px;
    }
}

.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
}

.header-fixed .wrap-menu-header {
    position: fixed;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/*[ Logo ]
-----------------------------------------------------------
*/
.logo {
    height: 50px;
}

.logo > a {
    display: block;
    height: 100%;
}

.logo > a > img {
    /*width: auto;
    max-height: 100%;*/
    width: 200px;
    vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
    height: 100%;
}

.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu li {
    display: block;
    position: relative;
}

.main_menu > li {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.main_menu > li > a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    padding: 15px;
}

.header-fixed .main_menu > li > a {
    color: #222222;
}

.main_menu > li:hover > a {
    color: #4ad59e;
    text-decoration: none;
}

/* ------------------------------------ */
.sub_menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: white;

    transform-origin: top left;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);

    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.34;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.main_menu > li:hover .sub_menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sub_menu li:hover > .sub_menu {
    display: block;
}

.sub_menu li {
    background-color: #f2f2f2;
    border-top: 1px solid #e0e0e0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li:hover {
    background-color: white;
}

.sub_menu li,
.sub_menu a {
    padding: 10px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #808080;
}

.sub_menu > li:hover > a {
    color: #555555;
    text-decoration: none;
}


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
    font-size: 15px;
    color: white;
}

.header-fixed .social a {
    color: #222222;
}

.social a:hover {
    color: #4ad59e;
}

.btn-show-sidebar {
    width: 26px;
    height: 15px;
    border-top: 2px solid #4ad59e;
    border-bottom: 2px solid #4ad59e;
}

.header-fixed .btn-show-sidebar {
    border-top: 2px solid #4ad59e;
    border-bottom: 2px solid #4ad59e;
}

.btn-show-sidebar:hover {
    border-top: 2px solid #e17100;
    border-bottom: 2px solid #e17100;
}

@media (max-width: 1200px) {
    .main_menu > li {
        margin-left: 4px;
        margin-right: 4px;
    }

    .social {
        padding-right: 0px;
    }

    .logo {
        height: 45px;
    }
}

@media (max-width: 992px) {
    .wrap_menu {
        display: none;
    }

    .wrap_header {
        height: 75px;
    }
}




/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
    position: fixed;
    z-index: 1200;
    width: 390px;
    height: 100%;
    overflow: auto;
    background-image: url(../images/sidebg-image.jpg);
    top: 0;
    right: -390px;
}

@media (max-width: 576px) {
    .sidebar {
        width: 300px;
    }
}

.show-sidebar {
    right: 0px;
}

.btn-hide-sidebar {
    position: absolute;
    font-size: 20px;
    color: #111111;
    padding: 10px;
    top: 20px;
    right: 20px;
}

.overlay-sidebar {
    position: fixed;
    z-index: 1150;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
}

.show-overlay-sidebar {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
    display: block;
    position: relative;
    width: calc((100% - 30px) / 3);
    margin: 5px;
}

.item-gallery-sidebar::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
    background-color: rgba(74, 213, 158, 0.7);
}

@media (max-width: 576px) {
    .wrap_header {
        height: 80px;
    }

    .gallery-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
    position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.item-slick1 {
    height: 100vh;
}

.arrow-slick1,
.arrow-slick2,
.arrow-slick3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
    opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
    background-color: #4ad59e;
}

.next-slick1,
.next-slick2,
.next-slick3 {
    right: 50px;
    left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick1-dots {
    position: absolute;
    width: 100%;
    height: 65px;
    left: 0;
    bottom: 0;
}

.slick1-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick1-dots li {
    padding-left: 3px;
    padding-right: 3px;
}

.slick1-dots li button {
    display: block;
    color: transparent;
    background-color: #958e88;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-clip: padding-box;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick1-dots li button:hover {
    border: 3px solid white;
    background-color: #4ad59e;
}

.slick1-dots li.slick-active button {
    border: 3px solid white;
    background-color: #4ad59e;
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 768px) {
    .wrap-content-slide1 .tit1 {
        font-size: px;
    }

    .wrap-content-slide1 .txt1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .tit1 {
        font-size: 30px;
    }

    .wrap-content-slide1 .txt1 {
        font-size: 40px;
    }
}


/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.btn1 {
    background: white;
    border-radius: 10px;
}

.btn1:hover {
    background-color: #4ad59e;
    color: white;
}

/*[ Button3 ]
///////////////////////////////////////////////////////////
*/
.btn3 {
    background: #4ad59e;
    border-radius: 10px;
}

.btn3:hover {
    background-color: #4ad59e;
    color: white;
}


/*[ Button2 ]
///////////////////////////////////////////////////////////
*/
.btn2 {
    background-color: white;
    border-radius: 10px;
    opacity: 0.9;
}

.btn2:hover {
    background-color: #4ad59e;
    color: white;
}




/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}



/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
    top: 53%;
}


@media (max-width: 576px) {
    .next-slick2 {
        right: 15px;
    }

    .prev-slick2 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick2-dots {
    position: absolute;
    width: 100%;
    height: 128px;
    left: 0;
    bottom: 0;
}

.slick2-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick2-dots li {
    padding-left: 5px;
    padding-right: 5px;
}

.slick2-dots li button {
    display: block;
    color: transparent;
    background-color: #cccccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    background-clip: padding-box;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick2-dots li button:hover {
    border: 1px solid #4ad59e;
    background-color: #4ad59e;
}

.slick2-dots li.slick-active button {
    border: 1px solid #4ad59e;
    background-color: #4ad59e;
}


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/


.arrow-slick3 {
    top: 40%;
}


@media (max-width: 576px) {
    .next-slick3 {
        right: 15px;
    }

    .prev-slick3 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick3-dots {
    width: 100%;
    height: 128px;
}

.slick3-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick3-dots li {
    padding-left: 5px;
    padding-right: 5px;
}

.slick3-dots li button {
    display: block;
    color: transparent;
    background-color: #cccccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    background-clip: padding-box;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick3-dots li button:hover {
    border: 1px solid #d41b22;
    background-color: #d41b22;
}

.slick3-dots li.slick-active button {
    border: 1px solid #d41b22;
    background-color: #d41b22;
}





/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
    border-radius: 10px;
    overflow: hidden;
}

.wrap-pic-blo2 {
    display: block;
    width: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrap-text-blo2 {
    background-color: white;
    width: 50%;
    min-height: 390px;
}

/* ------------------------------------ */
.effect1 {
    background-color: #cf2227;
    opacity: 0.9;
    position: relative;
}

.effect1 .txt-effect1 {
    width: 390px;
    height: 50px;
    transform-origin: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
    -moz-transform: translate(-50%, -50%) rotateZ(90deg);
    -ms-transform: translate(-50%, -50%) rotateZ(90deg);
    -o-transform: translate(-50%, -50%) rotateZ(90deg);
    transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
    .blo2 {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .wrap-pic-blo2 {
        width: 100%;
        height: 390px;
    }

    .wrap-text-blo2 {
        width: 100%;
        min-height: 390px;
    }

    .time-event {
        width: 100%;
        height: auto;
    }

    .effect1 .txt-effect1 {
        width: 100%;
        height: 50px;
        padding: 10px;
        transform-origin: center center;
        position: unset;
        -webkit-transform: rotateZ(0deg);
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@media (max-width: 576px) {
    .blo2 {
        width: 100%;
    }

    .wrap-pic-blo2 {
        width: 100%;
        height: 364px;
    }

}


/*[ fixed-bg ]
///////////////////////////////////////////////////////////
*/
@media (min-width: 769px) {
    .section-fixedbg {
        background-attachment: fixed;
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/intro_bg.jpg);
    }
}

.content-fixedbg {
    background-color: rgba(0, 0, 0, 0.5);
}

.content-fixedbg p {
    color: #fff;
    margin-top: 50px;
}


@media (max-width: 768px) {
    .section-fixedbg {
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/intro_bg.jpg);
    }
}

/*[ txtbg ]
///////////////////////////////////////////////////////////
*/
.section-txtbg {
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-txtbg {
    background-color: rgba(0, 0, 0, 0.5);
}

.content-txtbg p {
    color: #fff;
    margin-top: 50px;
    text-align: center;
}

/*[ Modal video 01 ]
-----------------------------------------------------------
*/
body {
    padding-right: 0px !important;
}

.modal {
    padding: 0px !important;
    z-index: 1160;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.modal-open {
    overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
    background-color: transparent;
}

#modal-video-01 {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1250;

}

#modal-video-01 .modal-dialog {
    max-width: 100% !important;
    height: 100% !important;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wrap-video-mo-01 {
    width: 854px;
    height: auto;
    position: relative;
    margin: 15px;
}

.video-mo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}

.video-mo-01 iframe {
    width: 100%;
    height: 100%;
}

.close-mo-video-01 {
    font-size: 50px;
    color: white;
    opacity: 0.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1250;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

.close-mo-video-01:hover {
    cursor: pointer;
    opacity: 1;
}



/*[ Blog ]
///////////////////////////////////////////////////////////
*/
.time-blog {
    position: absolute;
    left: 14px;
    bottom: 11px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 15px;

    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    color: white;
    border-radius: 4px;

}


/*[ Gallery footer ]
///////////////////////////////////////////////////////////
*/
.item-gallery-footer {
    display: block;
    position: relative;
    width: calc((100% - 50px) / 4);
    margin-right: 10px;
    margin-bottom: 10px;
}

.item-gallery-footer::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.item-gallery-footer:hover:after {
    background-color: rgba(74, 213, 158, 0.7);
}


/*[ footer-tel ]
///////////////////////////////////////////////////////////
*/
.footertel a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
}

/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 315px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

@media (max-width: 576px) {
    .bg-title-page .tit6 {
        font-size: 30px;
    }
}



/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
    flex-grow: 1;
    height: 2px;
    margin-bottom: 5px;
    margin-right: 10px;
    margin-left: 10px;
}

@media (max-width: 576px) {
    .line-item-mainmenu {
        display: none;
    }

    .price-item-mainmenu {
        padding-top: 5px;
    }

    .name-item-mainmenu {
        width: 100%;
    }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
    .text-blo3 {
        width: 100%;
    }
}



/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.label-gallery {
    border-radius: 10px;
    padding: 2px 11px;
    margin: 5px 0;
}

.label-gallery:hover {
    background-color: #111111;
    color: white;
}

.is-actived {
    background-color: #d61c22;
    color: white;
}

/* ------------------------------------ */
.wrap-gallery {
    width: 100%;
    box-sizing: border-box;
}

.item-gallery {
    width: calc((100% - 140px) / 5.5);
    margin: 30px 15px;
    position: relative;
}

.overlay-item-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(34, 180, 133, 0.7);
    opacity: 0;
}

.overlay-item-gallery:hover {
    opacity: 1;
}

.btn-show-gallery {
    font-size: 18px;
    color: #222222;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
}

@media (max-width: 768px) {
    .item-gallery {
        width: calc((100% - 110px) / 2);
    }
}

@media (max-width: 576px) {
    .item-gallery {
        width: calc((100% - 30px) / 1);
    }

    .wrap-gallery {
        padding-left: 0;
        padding-right: 0;
    }
}


/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.item-pagination {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    margin: 6px;
}

.item-pagination:hover {
    background-color: #333333;
    color: white;
}

.active-pagination {
    background-color: #333333;
    color: white;
}



/*[ Sidebar2 ]
///////////////////////////////////////////////////////////
*/

/*[ Search sidebar2 ]
-----------------------------------------------------------
*/
.btn-search-sidebar2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 46px;
    background-color: #333333;
    color: white;
    font-size: 18px;

    box-shadow: 0 0 0px 1px #333333;
    -moz-box-shadow: 0 0 0px 1px #333333;
    -webkit-box-shadow: 0 0 0px 1px #333333;
    -o-box-shadow: 0 0 0px 1px #333333;
    -ms-box-shadow: 0 0 0px 1px #333333;

    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.btn-search-sidebar2:hover {
    color: #4ad59e;
}

.input-search-sidebar2 {
    width: 100%;
    height: 100%;
}



/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.date-blo4 {
    width: 75px;
    height: 82px;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 10px;
    background-color: #ec1d25;
}

/* 診療時間
------------------------------------------------------------*/
.kyuushin {
    margin: 10px 0;
}

.guidance table {
    width: 100%;
    margin: 10px auto 20px auto;
    background-color: #fff;
}

.guidance table th.title {
    background-color: #4ad59e;
    color: #fff;
}

.guidance table th,
.guidance table td {
    text-align: center;
    vertical-align: middle;
    padding: 10px 5px;
    border: 1px solid #4ad59e;
}

.guidance table td {
    color: #4ad59e;
    font-size: 2rem;
    font-weight: bold;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .guidance table td {
        font-size: 1rem;
    }
}

.guidancesub {
    font-size: 0.75rem;
}

/* -----------------------------------------------------------
	news
----------------------------------------------------------- */
.newscontainer {
    width: 100%;
    background-color: #F9F9F9;
    position: relative;
    margin: -150px 0 15px;
    padding: 20px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 25%);
    border-radius: 0.5rem;
}

.ttl {
    font-family: "Marcellus SC", serif;
    font-size: 150%;
    font-weight: bold;
    color: #ec1d25;
    padding: 1px 0;
    border-bottom: solid 1px #32a1ce;
}

.topics {
    margin: 10px 0 0;
}

.topics dl {
    padding: 1px 0;
}

.topics dt {
    padding-bottom: 5px;
    font-weight: normal;
}

.underl {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .topics dt {
        clear: left;
        float: left;
        width: 20%;
        font-weight: normal;
        padding-left: 10px;
    }

    .topics dd {
        margin-left: 11%;
    }


    .newscontainer {
        width: 100%;
        margin: 0px 0 15px;
        padding: 20px;
        border-radius: 0.5rem;
    }
}

/* -----------------------------------------------------------
	blog
----------------------------------------------------------- */
.blogcontainer {
    width: 100%;
    background-color: #F9F9F9;
    position: relative;
    margin: 10px 0 10px;
    padding: 10px;
    border-radius: 0.5rem;
}

@media screen and (min-width: 768px) {
    .blogcontainer {
        width: 100%;
        margin: 10px 0 10px;
        padding: 20px;
        border-radius: 0.5rem;
        border: 2px solid #6deb522b;
    }
}

.ttl2 {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-size: 150%;
    font-weight: 400;
    color: #3a812b;
    padding: 1px 0;
    border-bottom: solid 1px #4ad59e;
}

/* --------------------------------------------------
   ボタン
-------------------------------------------------- */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-coupon {
  line-height: 1.2;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  width: 320px;
  padding: 0;

  color: #fa4141;
  border-radius: 0;
}

a.btn-coupon:before {
  position: absolute;
  top: 0;
  left: 118px;

  width: 2px;
  height: 10%;

  content: "";
  -webkit-transition: all 1s;
  transition: all 1s;

  background: #f8f8f8;
}

a.btn-coupon .left {
  font-size: 3rem;
  line-height: 1;

  width: 120px;
  padding: 1rem 0;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  color: #fff;
  border-right: 2px dashed #fff;
  background: #df302d;
}

a.btn-coupon .left span {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;

  color: #fff100;
}

a.btn-coupon .right {
  font-size: 1.5rem;
  line-height: 1.5;

  padding: 1rem 0;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  color: #df302d;
  background: #fcb6a6;

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;
}

a.btn-coupon .right span {
  font-size: 1.1rem;

  display: inline-block;

  padding: 0.2rem 1rem;

  letter-spacing: 0.05rem;

  color: #fff;
  border-radius: 100vh;
  background: #df302d;
}

a.btn-coupon i {
  position: absolute;
  top: 0;
  left: calc(120px - 0.5rem);

  width: 1rem;

  -webkit-transition: all 1s;

  transition: all 1s;
  -webkit-transform: rotate(90deg) translateX(0.5rem) translateY(0);
  transform: rotate(90deg) translateX(0.5rem) translateY(0);
  text-align: right;

  color: #fff;
}

a.btn-coupon:hover {
  color: #fa4141;
}

a.btn-coupon:hover:before {
  height: calc(100% - 1rem);
}

a.btn-coupon:hover i {
  -webkit-transform: rotate(90deg) translateX(7rem) translateY(0);
  transform: rotate(90deg) translateX(7rem) translateY(0);
}

a.btn-coupon:hover .left {
  background: #e24643;
}

a.btn-coupon:hover .right {
  background: #fdcabf;
}

/* 左画像section
------------------------------------------------------------*/
/* container */
.wrapper4 {
    width: 100%;
    background-color: #fafafa;
}

/* content */
@media (min-width: 992px) {
    .wrapper4 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper4 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wrapper4 .content-item {
    width: 100%;
}

.wrapper4 .content-item2 {
    width: 100%;
    background-image: url(../images/greeting_txtbg.jpg);
}

@media (min-width: 992px) {
    .wrapper4 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper4 .content-item2 {
        width: 50%;
    }
}

.wrapper4 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

.wrapper4 .text {
    padding: 0 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .wrapper4 .text {
        padding: 0 50px;
    }
}

.wrapper4 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4 .text .heading2 {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4 .text .heading2:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #7afdd3 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -55px;
    /* 位置調整 */
}

/* 右画像section
------------------------------------------------------------*/
/* container */
.wrapper6 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper6 .container {
    max-width: 1920px;
    margin: 0px auto;
    padding: 0px 0px;
}

.wrapper6 .container2 {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 0px;
}

/* content */
@media (min-width: 992px) {
    .wrapper6 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper6 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* PC時のみ順番を入れ替える */
@media (min-width: 992px) {
    .wrapper6 .content {
        flex-direction: row-reverse;
    }
}

.wrapper6 .content-item {
    width: 100%;
}

@media (min-width: 992px) {
    .wrapper6 .content-item {
        width: 50%;
    }
}

.wrapper6 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

.wrapper6 .text {
    padding: 0 15px;
}

.wrapper6 .text2 {
    padding: 0 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .wrapper6 .text2 {
        padding: 0 50px;
    }
}

.wrapper6 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}


/* access左画像section
------------------------------------------------------------*/
/* container */
.wrapper5 {
    width: 100%;
}

.wrapper5 .container {
    max-width: 1920px;
    margin: 0px auto;
    padding: 0px 0px;
}

.wrapper5 .container2 {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 0px;
}

/* content */
@media (min-width: 992px) {
    .wrapper5 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper5 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wrapper5 .content-item {
    width: 100%;
}

.wrapper5 .content-item2 {
    width: 100%;
}

@media (min-width: 992px) {
    .wrapper5 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper5 .content-item2 {
        width: 50%;
    }
}

.wrapper5 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

.wrapper5 .text {
    padding: 0 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .wrapper5 .text {
        padding: 0 100px;
    }
}

.wrapper5 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}


/* 画像背景section
------------------------------------------------------------*/
/* container */
.wrapperintrod {
    width: 100%;
    background-image: url(../images/top_introd_bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.wrapperintrod .container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapperintrod .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapperintrod p {
    padding: 0 15px;
}

/* 画像boxshadow
------------------------------------------------------------*/
.wrap-pic-welcome {
    box-shadow: #4ad59e 25px 25px 1px;
}

/* --------------------------------------------------
   画像上透過フィルターテキスト
-------------------------------------------------- */
/* top */
.wrapper1 {
    width: 100%;
    background-image: url(../images/mv/tes.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 10px;
    display: flex;
}

.wrapper1 .container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapper1 .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapper1 p {
    padding: 0 30px;
}

.bg-rgba {
    background-color: rgba(255, 255, 255, 0.8);
    width: 90%;
    height: 400px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
}

/* --------------------------------------------------
   画像上透過フィルターテキスト
-------------------------------------------------- */
/* top */
.wrapper1-2 {
    width: 100%;
    background-image: url(../images/neurobg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 38px;
    display: flex;
}

.wrapper1-2 .container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapper1-2 .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapper1-2 p {
    text-align: center;
    padding: 0 30px;
    color: #fff;
}

.bg-rgba-b {
    background-color: rgba(34, 180, 133, 0.4);
    width: 90%;
    height: 400px;
    margin: auto;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
}

/* 医師紹介
------------------------------------------------------------*/
.section-greeting {
    width: 100%;
    background-image: url(../images/sidebg-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.name {
    font-size: 20px;
    font-weight: bold;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    color: #212529;
}

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

/* sp時改行
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .br-pc {
        display: none;
    }
}

/* sp-text-left
------------------------------------------------------------*/
.sp-left {
    text-align: center;
}

@media screen and (max-width: 992px) {
    .sp-left {
        text-align: left;
    }
}

/* table
------------------------------------------------------------*/
.ptable {
    width: 100%;
    margin-bottom: 1rem;
    color: #666666;
    line-height: 1.8;
}

.ptable th {
    width: 120px;
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #d61c22;
    font-weight: normal;
}

.ptable td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #212529;
}

.ptable thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

/* philosophy
------------------------------------------------------------*/
.phi-box {
    padding: 2em 2em;
    margin: 2em 0;
    border: 1px solid #d61c22;
    background-color: #fff;
    text-align: center;
}

.phi-box p {
    text-align: left;
    display: inline-block;
}

.phi-box2 {
    padding: 2em 2em;
    margin: 0.5em 0 3em 0;
    border: 1px solid #4ad59e;
    background-color: #fff;
    box-shadow: #4492e1 10px 10px 10px;
    text-align: center;
    border-radius: 0.5rem;
}

.phi-box p {
    text-align: left;
    display: inline-block;
}

@media screen and (max-width: 992px) {
    .phi-box2 p {
        text-align: left;
        display: inline-block;
    }
}

.hipo {
    font-weight: bold;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

/*access-text一部*/
.access_text {
    color: #4ad59e;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 992px) {
    .access_how {
        text-align: center;
    }

    .access_how p {
        text-align: left;
        display: inline-block;
    }
}

/* 見出しテキスト
------------------------------------------------------------*/
.headingtitle {
    margin: 50px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.service-icon {
    background-color: #fff;
    color: #1D809F;
    height: 7rem;
    width: 7rem;
    display: block;
    line-height: 7.5rem;
    font-size: 2.25rem;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

/* 領域中央寄せ
------------------------------------------------------------*/
.center {
    margin: 0 auto;
}

/* infobox
------------------------------------------------------------*/
.infobox {
    padding: 2em 2em;
    margin: 0.5em 0 3em 0;
    border: 1px solid #4ad59e;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .infobox p {
        text-align: left;
        display: inline-block;
    }
}

.infonoutit {
    text-shadow: #fff 0px 0px 20px;
}

/* txtimagecolor
------------------------------------------------------------*/
.txtblue {
    color: #4ad59e;
}

.txtred {
    color: #d61c22;
}

/* neurology-top
------------------------------------------------------------*/
.head_neuro {
    margin: 0;
    /* デフォルトCSS打ち消し */
    font-size: 24px;
    /* 文字サイズ指定 */
    position: relative;
    /* 位置調整 */
    font-weight: normal;
    /* 文字の太さ調整 */
    margin-bottom: 15px;
    /* 周りの余白指定 */
    padding-top: 30px;
    /* 余白指定 */
    padding-left: 0px;
    /* 余白指定 */
}

.head_neuro:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #a5ffe2 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -20px;
    /* 位置調整 */
}

.head_neuro2 {
    margin: 0;
    /* デフォルトCSS打ち消し */
    font-size: 24px;
    /* 文字サイズ指定 */
    position: relative;
    /* 位置調整 */
    font-weight: normal;
    /* 文字の太さ調整 */
    margin-bottom: 15px;
    /* 周りの余白指定 */
    padding-top: 30px;
    /* 余白指定 */
    padding-left: 0px;
    /* 余白指定 */
}

.head_neuro2:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #ffffa5 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -20px;
    /* 位置調整 */
}


/* scroll-effect
------------------------------------------------------------*/
.ef {
    visibility: hidden;
}

.is_visible {
    visibility: visible !important;
}

/* right-effect */
.ef1_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef1;
    animation-name: ef1;
}

.ef1_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef1;
    animation-name: ef1;
}

@-webkit-keyframes ef1 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef1 {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* up-effect */
.ef2_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef2;
    animation-name: ef2;
}

.ef2_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef2;
    animation-name: ef2;
}

@-webkit-keyframes ef2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef2 {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* left-effect */
.ef3_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef3;
    animation-name: ef3;
}

.ef3_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef3;
    animation-name: ef3;
}

@-webkit-keyframes ef3 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef3 {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* img-max-width
------------------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
}

/* zutu-txt
------------------------------------------------------------*/
.zututxtbg {
    background-image: url(../images/zututxtbg.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

/* gazo-touka-banner
------------------------------------------------------------*/
.banner:hover {
    opacity: 0.7;
}

/* footer-nav
------------------------------------------------------------*/
@media only screen and (max-width: 992px) {
    .mobile-fix-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        display: block;
    }

    .mobile-fix-nav .mobile-fix-nav-menu {
        margin: 0 auto;
        box-sizing: border-box;
        height: 62px;
        /*padding: 12px 0 10px;*/
        overflow: hidden;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        z-index: 9999999999;
        /*opacity: .9;*/
    }

    .mobile-fix-nav .mobile-fix-nav-menu li {
        margin: 0;
        padding: 0;
        vertical-align: middle;
        list-style-type: none;
        font-size: 10px;
        line-height: 1.3;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn,
    .mobile-fix-nav .mobile-fix-nav-menu li a {
        border: none;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn .link-icon,
    .mobile-fix-nav .mobile-fix-nav-menu li a .link-icon {
        display: block;
        margin-bottom: 4px;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn i,
    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn svg,
    .mobile-fix-nav .mobile-fix-nav-menu li a i,
    .mobile-fix-nav .mobile-fix-nav-menu li a svg {
        font-size: 22px;
        font-style: normal;
        margin-right: 0;
    }

    .fa-solid,
    .fas {
        font-weight: 900;
    }
}

.bnr-p {
    padding: 2px;
}

.yoyaku a:hover {
    text-decoration: none;
}

@media only screen and (min-width: 993px) {
    .left_bnr {
        z-index: 10;
        position: fixed;
        left: 0;
        top: 400px;
        background: rgba(255, 255, 255, 0.8);
        padding: 20px 0;
        width: 70px;
        text-align: center;
    }

    .left_bnr li + li {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .left_bnr {
        position: fixed;
        z-index: 10;
        bottom: 19vw;
        left: 15px;
    }

    .left_bnr ul {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    /*.left_bnr ul li:last-child{
    margin-left:20px;
  }*/
    .left_bnr ul li:nth-child(n+2) {
        margin-left: 20px;
    }

    .left_bnr img {
        width: 40px;
    }
}

.dash-ul {
    border-bottom: 1px dashed rgba(58, 129, 43, 0.5);
}

/* grid-layout
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .md4 {
        -ms-flex: 0 0 16%;
        flex: 0 0 16%;
        max-width: 16%;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .md4 {
        position: relative;
        width: 25%;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 15px;
    }
}

.module-grad {
    position: relative;
    margin-bottom: 25px;
}

/* obi
------------------------------------------------------------*/
.module-grad::before {
    width: 100%;
    height: 80px;
    background: url(../images/bg_green.jpg) repeat-x 0 center/100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-27px);
    z-index: -1
}

.module-grad-title {
    margin: 0 auto
}

.module-grad-title.is-difference {
    width: 510px;
    position: relative
}

/* bg-image
------------------------------------------------------------*/
.hinmoku-bg {
    background: url(../images/bg-image3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*セロテープ風*/
.box5-5 {
    background-color: #f3f1e8;
    /* ボックス背景色 */
    padding: 1em 1em 1em;
    /* ボックス内側余白 */
    position: relative;
    /* 配置(ここを基準に) */
    border: 10px solid #4AD59E;
}

.box5-5 img:hover {
    opacity: 0.7;
}

.box5-6 {
    background-color: #f3f1e8;
    /* ボックス背景色 */
    padding: 2.5em 2em 2em;
    /* ボックス内側余白 */
    position: relative;
    /* 配置(ここを基準に) */
    border: 10px solid #6deb522b;
}

.box5-6 .box-title {
    background-color: rgba(255, 255, 255, .1);
    /* テープ背景色と透過*/
    border-left: 2px dotted rgba(0, 0, 0, .1);
    /* ギザギザ左*/
    border-right: 2px dotted rgba(0, 0, 0, .1);
    /* ギザギザ右*/
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    /*テープ影*/
    transform: rotate(-2deg);
    /*テープの傾き*/
    font-size: 1.8em;
    /*タイトル文字の大きさ*/
    font-weight: bold;
    color: #3a812b;
    /*タイトル文字色 */
    padding: 10px 20px;
    /*タイトルの余白*/
    line-height: 1;
    /*タイトルの行の高さ*/
    position: absolute;
    /*配置(ここを動かす)*/
    top: -15px;
    /*上からの距離*/
    left: 20px;
    /*左からの距離*/
}

.list_check {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.list_check > li {
    position: relative;
    padding: 0px 0px 0px 2em;
    margin: 0px;
    font-size: 20px;
    font-weight: bold;
}

.list_check > li::before,
.list_check > li::after {
    position: absolute;
    top: 50%;
    height: 1em;
    content: "";
}

.list_check > li::before {
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    border: 1px solid #e17100;
}

.list_check > li::after {
    left: 0.5em;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    border-bottom: 3px solid #e17100;
    border-right: 3px solid #e17100;
}

.list_check > li + li {
    margin: 1em 0px 0px;
}

.green {
    color: #3a812b;
}

.bg-green {
    background-color: #e8ffda;
}

.orange {
    color: #e17100;
}

/* swiper-slide
------------------------------------------------------------*/
.wrapper {
    position: relative;
    /* ナビゲーション、ページネーションの位置決めに必要 */
    max-width: 1000px;
    /* サイトにあわせて任意で */
    margin: 0 auto;
}

/* ナビゲーションボタンとページネーションの位置 */
.wrapper {
    --swiper-navigation-sides-offset: -25px;
    /* ナビゲーションボタンの位置 */
    --swiper-pagination-bottom: -20px;
    /* ページネーションの位置 */
}

/* 矢印ボタン */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    /* 矢印幅 */
    height: 50px;
    /* 矢印高さ */
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 50px;
    /* 矢印幅 */
    height: 50px;
    /* 矢印高さ */
    fill: #000;
    /* 矢印の色 */
    stroke: #000;
    /* 外周円の色 */
    transition: 0.2s;
}

.swiper-button-next svg:hover,
.swiper-button-prev svg:hover {
    opacity: 0.7;
    /* ボタンホバー時 */
}

.swiper-button-prev svg {
    transform: rotate(180deg);
    /* ボタンを反転（prev用） */
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
    content: '';
    /* デフォルトの矢印を削除 */
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: '';
    /* デフォルトの矢印を削除 */
}

.wrapper {
    --swiper-pagination-color: #000;
    /* ページネーション、アクティブ時のドットの色 */
}

/* accordion
------------------------------------------------------------*/
.a-toggle {
    display: none;
}

.a-Label {
    /*タイトル*/
    padding: 20px;
    display: block;
    color: #1c3f15;
    font-weight: bold;
    background: #ffffff;
    border: 2px solid #3a812b;
    font-size: 20px;
}

.a-Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0c87e4;
    border-right: 2px solid #0c87e4;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.a-Label,
.a-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.a-content {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 0px;
    overflow: hidden;
}

.a-toggle:checked + .a-Label + .a-content {
    /*開閉時*/
    height: auto;
    padding: 30px 20px 20px 2.5em;
    transition: all .3s;
    background-color: #feffee;
    border: 2px solid #e17100;
}

.a-toggle:checked + .a-Label::before {
    transform: rotate(-45deg) !important;
}

.a-Label ul li:before {
    content: 'Q.';
    position: absolute;
    font-size: 30px;
    color: #3a812b;
    left: 0.25em;
    top: 0.8em;
}

.a-Label ul li {
    padding: 10px 10px 10px 1.5em;
}

.a-content ul li:before {
    content: 'A.';
    position: absolute;
    font-size: 30px;
    color: #e17100;
    left: 0.25em;
    top: 0.8em;
    font-weight: bold;
}

.a-Label ul li {
    padding: 10px 10px 10px 1.5em;
}

.bold {
    font-weight: bold;
}

/* title-photo
------------------------------------------------------------*/
/*.topPage-cta {
    padding-bottom: 40px
}*/

.topPage-cta-lead {
    position: relative
}

.topPage-cta-lead::before {
    width: 100%;
    height: 80%;
    /*background: #5fea50;*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/sidebg-image3.jpg);
    */
}

.topPage-cta-lead-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.topPage-cta-lead-des {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-right: 40px;
    padding-bottom: 32px
}

.topPage-cta-lead-illust {
    /*width: 25%*/
    margin-bottom: 0;
}

.topPage-cta-title {
    width: 44%;
    margin: 60px auto 0
}

.topPage-cta-title img {
    width: 100%
}

.topPage-cta-btn {
    width: 35%;
    margin: 32px auto 0
}

.topPage-cta-btn img {
    width: 100%
}

@media (max-width:767px) {
    .topPage-cta {
        padding-bottom: 0
    }

    .topPage-cta-lead-des {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-right: 0;
        /*padding-bottom: 25px;*/
        padding-bottom: 10px;
        padding-left: 5px;
    }

    .topPage-cta-lead-illust {
        width: 40%;
        /*margin-right: -30px;*/
        margin-bottom: 0;
    }

    .topPage-cta-title {
        width: 85%;
        margin-top: 40px
    }

    .topPage-cta-btn {
        width: 70%;
        margin-top: 24px
    }
}

@media (max-width: 992px) {
    .for-sp {
        display: block !important;
    }
}

.for-sp {
    display: none !important;
}

.lh-2 {
    line-height: 2;
}

/* button
------------------------------------------------------------*/
a.btn_25 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: 4rem;
    width: 280px;
    margin: auto;
    padding: 0 4rem;
    border-radius: 100vw;
    background: #4ad59e;
    background-size: 400%;
    color: #000;
}

a.btn_25:hover::before {
    transform: scaleX(1);
}

a.btn_25:hover {
    color: #3a812b;
}

a.btn_25 span {
    position: relative;
    z-index: 1;
}

a.btn_25::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(82.3deg,
            rgba(74, 213, 158, 1) 10.8%,
            rgba(239, 244, 92, 1) 94.3%);
    transition: all 0.475s;
}

/* contact form
------------------------------------------------------------*/
#formWrap {
    width: 700px;
    margin: 0 auto;
    color: #000;
    line-height: 120%;
    font-size: 90%;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td,
table.formTable th {
    border: 1px solid #ccc;
    padding: 10px;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    background: #4ad59e;
    text-align: left;
}

/*table*/
@media screen and (max-width:572px) {
    #formWrap {
        width: 95%;
        margin: 0 auto;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
    }

    input[type="text"],
    textarea {
        width: 80%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
    }
}

/* works
------------------------------------------------------------*/
.inner {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 0px;
}

@media (max-width: 767px) {
    .inner {
        width: 90%;
    }
}

.works .img {
    margin: 0 auto;
    text-align: center;
    width: auto;
    height: 300px;
}

.works .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.works p {
    margin-top: 15px;
}

@media only screen and (min-width: 992px) {
    .works {
        text-align: center;
    }

    .works li {
        display: inline-block;
        width: 31%;
        padding: 0 1%;
        vertical-align: top;
        text-align: left;
    }
}

@media only screen and (max-width: 991px) {
    .works li {
        margin: 0 auto 20px;
        display: block;
        text-align: center;
    }
}

.va-m {
    vertical-align: middle !important;
}

/* mv
------------------------------------------------------------*/
.mv {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .mv {
        padding-top: 50px;
    }
}

/* purchase-img
------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .purchase-img img {
        max-width: 768px;
        height: auto;
    }
}

/* opening-animation
------------------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  /*background-image: url(../images/opening_bg.jpg);*/
  background-color: #4AD59E;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.lh-chui {
    line-height: 1.3 !important;
}

/* マークアップテキスト
------------------------------------------------------------*/
mark {
    --color1: #e1710030;
    --color2: #e1710030;
    --bg-height: 40%;

    all: unset;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color1)), to(var(--color2)));
    background-image: linear-gradient(var(--color1), var(--color2));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 var(--bg-height);
    -webkit-animation: highlight 2500ms 1 ease-out;
    animation: highlight 2500ms 1 ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

@keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

/* anime
------------------------------------------------------------*/
.hekomu {
	animation: hekomu 2s infinite;
	box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}
@keyframes hekomu {
	0% {
		box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
		top: 0px;
	}
	10% {
		box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
		top: 3px;
	}
	20% {
		box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
		top: 0px;
	}
	30% {
		box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
		top: 3px;
	}
	40% {
		box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
		top: 0px;
	}
}

.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.kiran:hover::before {
  animation: kiran 0.5s linear;
}
 
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}