@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@media (max-width: 767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-for-small {
        display: none !important;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #333;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(40, 130, 165, 0.45);
}

#go-top a img {
    margin: 0 auto;
}

.ff-maru {
    font-family: "Zen Maru Gothic", sans-serif;
}


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.sticky-bar {
    display: flex;
    align-items: flex-end;
    gap: 54px;
    margin-bottom: 25px;
    justify-content: flex-end;
}

.section-title {
    font-size: 40px;
    color: #603813;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

.anim.slidein.is-animated {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.anim.zoomin.is-animated {
    animation: zoomIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
    40%,
    100% {
        opacity: 1;
    }
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 1;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/


/* .header-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 238px;
    line-height: 1;
    padding: 0;
    position: relative;
}

a.menu-btn:hover {
    opacity: 1;
}

.header-inner {
    margin-bottom: 35px;
    text-align: center;
}

.header-inner {
    position: static;
    padding-left: 66px;
    padding-right: 12px;
    padding-top: 10px;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: static;
    transition: 0.3s;
    padding-bottom: 0px;
    margin-right: 55px;
    position: relative;
}

.header-main .main-menu .nav>li::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #ff7e00;
    border-radius: 100%;
}

.header-main .main-menu .nav>li:last-child {
    margin-right: 0;
}

.header-main .main-menu .nav>li:last-child::after {
    display: none;
}

.header-main .main-menu .nav>li>a {
    font-weight: 500;
    padding: 0;
    color: #333333;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-height: 48px;
    letter-spacing: 0.1em;
}

.header-main .main-menu .nav>li>a span {
    margin-top: 0;
    font-family: "Zen Maru Gothic", sans-serif;
}

.header-main .main-menu .nav>li>a::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0%;
    width: 100%;
    height: 2px;
    background: #ff7e00;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
}
.header-main .main-menu .nav>li.last-item{
    margin-right: 0;
}
.header-main .main-menu .nav>li.last-item:after{
    display: none;
}
.box-menu-phone {
    display: flex;
    padding-left: 0;
    align-items: center;
    padding: 0;
    position: static;
    justify-content: flex-end;
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
    color: #ff7e00;
}

.submit-btn .one-btn::before {
    display: none;
}

@media (min-width: 768px) {
    .box-menu-phone {
        margin-right: 10px;
    }
    .header-main .main-menu .nav>li:not(.nav-mega).current>a::before,
    .header-main .main-menu .nav>li:not(.nav-mega):hover>a::before {
        transform: scale(1, 1);
    }
    .header-main .main-menu .nav>li.nav-mega>a::after {
        content: "";
        width: 30px;
        height: 12px;
        background-color: #fff;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        opacity: 0;
        transition: 0.3s;
    }
    .header-main .main-menu .nav>li.nav-mega:hover>a::after {
        bottom: -25px;
        opacity: 1;
    }
}

a.menu-btn {
    width: 72px;
    min-height: 78px;
    z-index: 8999;
    transition: none;
    height: auto;
    box-shadow: none;
    background-color: transparent;
    border-bottom-left-radius: 10px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0 0 6px 0 rgba(168, 168, 178, 0.45);
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 1px;
    width: 31px;
    top: 21px;
    background-color: #996234;
    left: 21px;
    transition: all 0.5s;
}

a.menu-btn span:nth-child(2) {
    top: 31px;
}

a.menu-btn span:nth-child(3) {
    top: 41px;
}

a.menu-btn::after {
    content: "MENU";
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    position: absolute;
    color: #996234;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: bold;
}

a.menu-btn.open:after {
    content: "CLOSE";
}

body.menu-open header:before {
    display: none;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 25px;
}

a.menu-btn.open span:nth-child(2) {
    display: none;
}

a.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.breadcrums {
    position: relative;
    padding-top: 85px;
}

.breadcrums ul {
    display: flex;
    justify-content: flex-start;
}

.breadcrums ul li>a {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #333333;
}

.breadcrums ul li {
    position: relative;
}

.breadcrums ul li:not(:last-child) {
    margin-right: 40px;
}

.breadcrums ul li span {
    color: #333333;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
}

.breadcrums ul li span br {
    display: none;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    font-size: 1.4rem;
}

ul.list-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    gap: 25px 36px;
}

ul.list-anchor li {
    width: calc(25% - 27px);
}


/* ul.list-anchor li:first-child {
    margin-left: 0;
} */

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(4n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    justify-content: flex-start;
    color: #000;
    position: relative;
    line-height: 1.25;
    padding: 0 10px 10px;
    transition: 0.3s;
    align-items: flex-end;
    text-align: left;
    min-height: 51px;
    border-bottom: 1px solid #f89627;
}

ul.list-anchor li a:hover {
    color: #f89627;
}

.about-section {
    position: relative;
}

.about-section::before {
    content: "";
    width: 100%;
    height: 102px;
    background-image: url(../images/takanokokan/bg-about.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}

.box-slide-care {
    position: relative;
}

.box-slide-care::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #f89627;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
}

ul.list-anchor li a:hover span::after {
    width: 100%;
}

ul.list-anchor li a::after {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    background-image: url(../images/takanokokan/page/icon-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    right: 9px;
}

.box-slide-banner {
    margin-top: 240px;
}

.box-scroll {
    position: absolute;
    position: absolute;
    right: 80px;
    height: 161px;
    z-index: 1;
    bottom: -55px;
}

.loading-active main {
    opacity: 0;
}

.box-scroll::after {
    content: "";
    position: absolute;
    top: -90px;
    width: 1px;
    height: 161px;
    animation: pathmove 1.8s ease-in-out infinite;
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%);
    background: #0bb1dd;
}

a.scroll {
    color: #0bb1dd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: 0.1em;
    font-weight: 400;
    font-size: 1.5rem;
    width: -moz-max-content;
    width: max-content;
    left: -80px;
}

.scroll_down {
    position: absolute;
    bottom: -30px;
    left: 50%;
}

.scroll_down a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    color: #1d69c6;
    font-size: 1.8rem;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
    width: -moz-max-content;
    width: max-content;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #1d69c6;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 160px;
    }
    100% {
        bottom: 0px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

.scroll_down:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 160px;
    background: #1d69c6;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 10px;
        opacity: 0;
    }
    30% {
        height: 161px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 120px;
        opacity: 0;
    }
}

ul.slick-dots {
    position: absolute;
    top: 50%;
    transform: translateXY(-50%);
    display: flex;
    flex-direction: column;
    left: -35px;
    z-index: 2;
}

ul.slick-dots li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #f89627;
    border-radius: 50%;
    margin: 5px 0;
}

ul.slick-dots li.slick-active {
    background-color: #f89627;
}

ul.slick-dots li button {
    opacity: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
}


/* .header-wrapper {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: transparent;
} */

@media (min-width: 768px) {
    .logged-in .header-main {
        top: 32px;
    }
    .logged-in a.menu-btn {
        top: 52px;
    }
}

header.UpMove .header-main {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove .header-main {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-number-header {
    font-size: 30px;
    color: #ff7e00;
    position: relative;
    line-height: 1.73;
}

.phone-number-header::after {
    content: "";
    position: absolute;
    width: 27px;
    height: 30px;
    background-image: url(../images/takanokokan/phone-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
}

.text-top-phone {
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.05em;
}

.news-item.item-list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 55px 34px 20px;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.075em;
}

.news-item.item-list::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 6px;
    background-image: url(../images/takanokokan/part-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 50%;
    transform: translateY(50%);
    right: 24px;
    transition: all 0.5s;
}

.news-item.item-list::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #f89627;
}

.news-item.item-list:hover:after {
    right: 15px;
}

.news-item.item-list:hover .title a {
    opacity: 1;
    color: #f89627;
}

.box-date-cat {
    display: flex;
    align-items: center;
}

.news-item .date {
    color: #4d4d4d;
    font-size: 1.5rem;
    letter-spacing: 0.075em;
}

a.cat {
    display: flex;
    letter-spacing: 0.1em;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    background-color: #edf2f4;
    min-width: 128px;
    min-height: 26px;
    color: #29a6dd;
    border-radius: 13px;
    padding-bottom: 2px;
}

.news-item.item-list .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #222222;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.56;
}

.contact-home {
    position: relative;
}

.contact-home::after {
    content: "";
    width: 100%;
    height: 760px;
    background-image: url(../images/takanokokan/bg-home-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 122px;
    z-index: -2;
}

.contact-home::before {
    content: "";
    width: calc(50% + 160px);
    height: 300px;
    border-radius: 0 50px 50px 0;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: -140px;
    z-index: -1;
}

.home-map-content {
    display: flex;
    gap: 50px;
}

.home-map-right {
    width: 48%;
}

.top-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-title {
    font-size: 20px;
    color: #f2740c;
    letter-spacing: 0.1em;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e07205;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.lead-dot li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 18px;
}

.lead-dot li::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #f89627;
    border-radius: 100%;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.sub-title {
    color: #e07205;
    font-size: 30px;
    position: relative;
}

.sub-title::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bird.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -45px;
    width: 30px;
    height: 100%;
}

.sub-center {
    display: flex;
    justify-content: center;
}

.about-section {
    position: relative;
}

.about-section::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bg-bird.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: -300px;
    right: -270px;
    width: 1030px;
    height: 1027px;
    z-index: -6;
}

.connect-content {
    display: flex;
}

.btn-main {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 70px 20px 40px;
    position: relative;
    border: 1px solid #ff7e00;
    border-radius: 100px;
    color: #fff;
}

a.btn.btn-main:hover {
    background-color: #fff !important;
    color: #ff7e00;
}

.btn-main::after {
    position: absolute;
    content: "";
    right: 12px;
    transform: translateY(-50%);
    top: 50%;
    background-image: url(../images/takanokokan/icon-btn.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 36px;
    height: 36px;
}

.btn-more {
    padding: 14px 70px 14px 45px;
    border: 1px solid #f89627;
    font-size: 15px;
    letter-spacing: 0.05em;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 7px 0 rgba(169, 177, 181, 0.45);
}

.btn-more::after {
    background-image: url(../images/takanokokan/icon-more.svg);
}

a.btn.btn-main.btn-more:hover {
    background-color: #f89627 !important;
    color: #fff;
}

.phone-number {
    font-size: 40px;
    color: #ed6f11;
    letter-spacing: 0.05;
}

.content-contact-right a.btn {
    box-shadow: 0 0 6px 0 rgba(169, 177, 181, 0.45);
}

.phone-number::after {
    content: "";
    position: absolute;
    width: 33px;
    height: 33px;
    background-image: url(../images/takanokokan/phone-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-main-color {
    background-color: #ff7e00;
    height: -moz-fit-content;
    height: fit-content;
}

.main-title-jp {
    font-size: 40px;
    letter-spacing: 0.1em;
    color: #603813;
    position: relative;
    width: 100%;
}

.main-title-jp::before {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bird.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: -45px;
    width: 30px;
    height: 100%;
}

.content-contact {
    padding-bottom: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 100px;
    position: relative;
}

.content-contact::after {
    position: absolute;
    content: "";
    left: 48.5%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    background-color: #ff7e00;
}

.toggle-hd {
    text-align: center;
    padding: 31px 0;
    width: 100%;
    position: relative;
    background-color: white;
    border: 1px solid #f89627;
    border-radius: 100px;
    font-size: 2.5rem;
    font-weight: 500;
    transition: 0.3s;
}


/* .toggle-hd:hover {
    background-color: #f89627;
    color: white;
}

.toggle-hd:hover::after {
    background-image: url(../images/takanokokan/email-white.png);
} */

.toggle-hd.active::before {
    background-image: url(../images/takanokokan/icon-close-2.svg);
}

.toggle-hd::after {
    content: "";
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/email.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: 55px;
    width: 56px;
    height: 46px;
}

.toggle-hd::before {
    content: "";
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/icon-plus.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 62px;
    height: 62px;
}

.main-title-jp::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/heart-border.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -30px;
    left: 0;
    right: 0;
    width: 626px;
    height: 98px;
}

.main-title-en {
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #f26722;
    font-weight: 300;
}

a.btn.btn-recruit {
    width: 227px;
    height: 65px;
    font-size: 1.7rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-color: #123851;
    border: 5px solid #30b0ff;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-radius: 27px;
    padding-left: 30px;
}

a.btn.btn-recruit img {
    margin-right: 30px;
}

a.btn.btn-recruit:hover {
    background-color: #30b0ff;
}

.icon-text {
    position: relative;
    top: 4px;
}

.color-1 {
    color: #1cc3ea;
}

.color-2 {
    color: #ff8e39;
}

.color-3 {
    color: #cd336b;
}

.color-4 {
    color: #1bb57b;
}

.color-5 {
    color: #ED6F11;
}

.color-6 {
    color: #e07205;
}

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*中の要素*/

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*左から右*/

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #30b0ff;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }
    50% {
        transform-origin: left;
        transform: scaleX(1);
    }
    50.001% {
        transform-origin: right;
    }
    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

@media (min-width: 768px) {
    .news-item-imp>a {
        padding-right: 45px;
    }
}

a.btn.btn-main::after {
    transition: all 0.5s;
}

.btn-social {
    position: relative;
    padding: 10px 46px 10px 20px;
    display: flex;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    gap: 23px;
    align-items: center;
    border-radius: 20px;
    justify-content: flex-start;
    border: 1px solid #c7c7c7;
        font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1;
    text-align: center;
    min-height: 65px;
}

.btn-social::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    right: 25px;
    background-image: url(../images/takanokokan/icon-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.link-social {
    padding: 8px 40px 8px 15px;
    position: relative;
    font-weight: 500;
    font-size: 1.5rem;
}

footer .top-links {
    justify-content: center;
    font-family: "noto sans jp", sans-serif;
}

.link-social::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/takanokokan/icon-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.link-social:last-child span::before {
    display: none;
}

.top-links {
    display: flex;
}

.top-links a {
    border: none;
}

.box-slider-wrapper {
    position: relative;
}

.box-slider-wrapper::after {
    position: absolute;
    z-index: -2;
    background-color: #f89627;
    content: "";
    width: 1256px;
    bottom: 80px;
    height: 362px;
    right: -15px;
}

.box-slider-wrapper ul.slick-dots {
    bottom: -96px;
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
}

.box-slider-wrapper ul.slick-dots li {
    border-color: #fff;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: transparent;
}

.box-slider-wrapper ul.slick-dots li.slick-active {
    background-color: #fff;
}

.box-slider-wrapper .slider-left-item img {
    border-radius: 0 50px 50px 0;
    height: 552px;
}

.slide-arrow {
    position: absolute;
    border: 0;
    background: none;
    z-index: 10;
    bottom: -120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 57px;
    height: 57px;
    cursor: pointer;
}

.box-slider-right {
    position: relative;
    margin-top: 80px;
}

.box-slider-right-inner {
    height: -moz-fit-content;
    height: fit-content;
    max-width: 550px;
    margin-left: -40px;
}

.box-slider-right-inner .slick-list {
    position: relative;
    z-index: -1;
}

.next-arrow {
    right: 56px;
}

.prev-arrow {
    left: 100px;
}

.slider-right-item {
    padding: 90px 50px 90px 100px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #f89627;
}

.box-slider-left {
    width: 56%;
}

.box-slider-left .slider-left-item {
    border-radius: 50px;
}

.box-slider-wrapper {
    display: flex;
}

.title-slider {
    font-size: 25px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.sub-content {
    margin-top: 45px;
    letter-spacing: 0.1em;
    line-height: 1.91;
}

.btn-banner {
    position: absolute;
    bottom: 24px;
    right: 40px;
    width: 280px;
    border: 2px solid #29a6dd;
    background: white;
    font-size: 20px;
    justify-content: center;
    border-radius: 30px;
    font-family: 'Zen Kaku Gothic News', sans-serif;
    letter-spacing: 0.05em;
    color: #29a6dd;
    font-weight: bold;
    min-height: 70px;
}

a.btn-banner:hover {
    opacity: 1;
}

.btn-banner::after {
    background-image: url(../images/takanokokan/icon-link-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 28px;
    height: 28px;
    right: 26px;
}

.contact-infor {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
}

.contact-infor .content {
    max-width: 880px;
    margin: auto;
}

.top-links span::before {
    content: "";
    right: 0;
    border-right: 1px solid #c7c7c7;
    position: absolute;
    width: 1px;
    background: #c7c7c7;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gap-20 {
    gap: 20px;
}

a.link-footer {
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

a.link-footer::after {
    content: "";
    width: 15px;
    height: 15px;
    background: #f89627;
    position: absolute;
    border-radius: 100%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

a.link-footer span {
    position: relative;
    transition: 0.3s;
}

a.link-footer span::before {
    content: "";
    position: absolute;
    bottom: -5px;
    background-color: #f89627;
    width: 0;
    height: 1px;
    transition: 0.3s;
    left: 0;
}

a.link-footer:hover span {
    color: #f89627;
}

a.link-footer:hover span::before {
    width: 100%;
}

.footer-wrap {
    padding: 40px 80px;
    position: relative;
    border-radius: 30px;
    opacity: 0.8;
}

.footer-wrap::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/people-orange.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 44px;
    top: -22px;
    right: 50%;
    transform: translateX(50%);
}

.footer-left {
    max-width: 435px;
}

a.link-footer {
    position: relative;
}

footer {
    background-image: url(../images/takanokokan/bg-footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 0;
}

.footer {
    position: relative;
    z-index: 2;
}

.fade-in-letter {
    opacity: 0;
    display: inline-block;
    animation: fadeInLetter 0.5s forwards;
}

@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* .site-header {
    font-family: "Noto Sans JP", sans-serif;
} */

.site-header .top-links {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.site-header .top-links a {
    color: #4d4d4d;
    text-decoration: none;
    font-size: 15px;
    border-right: 1px solid #eee;
    padding-right: 20px;
    padding-left: 20px;
}

.site-header .top-links a:hover {}

.site-header .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.site-header .header-main .main-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header .header-main .main-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.site-header .header-main .main-nav ul li a:hover {
    color: #f26722;
}

.site-header .header-main .main-nav ul li.active a {
    color: #f26722;
    font-weight: bold;
}

.site-header .header-main .main-nav ul li.active a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f26722;
}

.site-header .header-main .contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-header .header-main .contact .phone {
    text-align: right;
}

.site-header .header-main .contact .phone .label {
    display: block;
    font-size: 12px;
    color: #555;
}

.site-header .header-main .contact .phone .number {
    font-size: 18px;
    font-weight: bold;
    color: #f26722;
    text-decoration: none;
}

.site-header .header-main .contact .contact-btn {
    background: #f26722;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.site-header .header-main .contact .contact-btn:hover {
    background: rgba(242, 103, 34, 0.1);
}

.box-flex-mail {
    display: flex;
    align-items: center;
    gap: 16px;
}

a.btn.btn-mail {
    flex-direction: column;
    background: #ff7a00;
    border-radius: 10px;
    width: 78px;
    height: 69px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

a.btn.btn-mail img {
    margin-left: auto;
    margin-right: auto;
}

.home-connect-right {
    padding-left: 100px;
    height: 563px;
}

.home-connect-right .img-connect {
    height: 100%;
}

.home-connect-right .img-connect img {
    max-width: unset;
    border-radius: 50px 0 0 50px;
}

.care-wrapper {
    padding: 50px 48px;
    background-color: #f7f5e8;
    max-width: 540px;
    border-radius: 20px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    margin-left: -85px;
    flex: 1;
}

.care-wrapper p {
    text-align: justify;
}

.care-img {
    width: 700px;
}

.care-img img {
    transition: 0.3s;
}

.care-container {
    position: relative;
    display: flex;
    align-items: center;
}

.care-container:hover .care-img {
    overflow: hidden;
    border-radius: 20px;
}

.care-container:hover .care-img img {
    transform: scale(1.1);
}

.care-container:hover .title-care p::before {
    background-image: url(../images/takanokokan/icon-right.svg);
}

.footer-left .box-email {
    cursor: pointer;
}

.footer-left .box-email.color-1 {
    color: #1d95b7;
}

.footer-left .box-email:nth-child(2) {
    font-size: 1.6rem;
}

.footer-left .box-email:hover {
    opacity: 0.6;
}

.box-link-bottom-home {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.box-link-bottom-home img {
    transition: 0.3s;
}

.box-link-bottom-home:hover .link-bottom-img img {
    transform: scale(1.1);
}

.box-link-bottom-home:hover .btn-social {
    background-color: #1cc3ea;
    color: #fff;
}

.box-link-bottom-home:hover .btn-banner::after {
    background-image: url(../images/takanokokan/icon-blank-white.svg);
}

.care-container.reverse {
    flex-direction: row-reverse;
}

.care-container.reverse .care-wrapper {
    margin-left: auto;
    margin-right: -85px;
}

.service-infor .care-2 {
    padding: 30px;
    background-color: #f7f5e8;
    border-radius: 20px;
    min-height: 285px;
}

.service-infor {
    margin-top: -26px;
    position: relative;
}

.img-left {
    text-align: center;
}

.img-left img {
    border-radius: 20px;
}

.title-care {
    padding-bottom: 40px;
    border-bottom: 1px solid hsl(32, 94%, 56%);
}

.title-care a {
    color: #8e4f10;
    letter-spacing: 0.15em;
    line-height: 1.13;
}

.service-home {
    position: relative;
}

.service-home::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bg-email.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 160px;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: -1;
}

.service-2 {
    position: relative;
}

.service-2 .img-left-anim {
    max-width: 468px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.service-2 .img-left-anim img {
    transition: 0.3s;
}

.service-2::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bg-service.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -545px;
    right: -125px;
    width: 1432px;
    height: 1734px;
    z-index: -3;
}

.service-2 .large-6 .col-inner:hover .img-left-anim img {
    transform: scale(1.1);
}

.service-2 .large-6 .col-inner:hover .title-care p::before {
    background-image: url(../images/takanokokan/icon-right.svg);
}

.title-care p {
    font-size: 30px;
    letter-spacing: 0.15em;
    color: #8e4f10;
    line-height: 1.13;
    padding-left: 40px;
    position: relative;
    padding-right: 70px;
}

.title-care p::after {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/bird.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
}

.title-care p::before {
    position: absolute;
    content: "";
    background-image: url(../images/takanokokan/icon-orange.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 42px;
    height: 42px;
    transition: .3s;
}

.title-en {
    letter-spacing: 0.176em;
    color: #ff7a00;
    font-family: "Reem Kufi Fun", sans-serif;
}

.title-jp {
    font-size: 4.3rem;
    color: #603813;
    letter-spacing: 0.1em;
    position: relative;
    margin-top: 15px;
}

.title-jp::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/takanokokan/bird.svg);
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
}

.page-header {
    height: 345px;
    position: relative;
    padding-top: 105px;
}

.page-header::before {
    content: "";
    width: 100%;
    height: 700px;
    background-image: url(../images/takanokokan/page/after-page.png);
    position: absolute;
    left: 0;
    top: 35px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -4;
    background-size: 100% 100%;
    background-position: center top;
}

.page-header-img::after {
    content: "";
    width: 541px;
    height: 385px;
    background-image: url(../images/takanokokan/page/bg-page.png);
    position: absolute;
    right: -135px;
    top: -105px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: -1;
}

.box-list-anchor {
    padding: 15px 50px 28px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

.box-bg-avaliable {
    max-width: 827px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f7f5e8;
    padding: 40px;
    border-radius: 20px;
}

.list-care {
    max-width: 560px;
    margin: 0 auto;
}

.list-care li {
    position: relative;
    padding-left: 40px;
    font-size: 3rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.list-care li:last-child {
    margin-bottom: 0;
}

.list-care li:last-child::after {
    background-color: #f28e1e;
}

.list-care li span {
    font-size: 2rem;
    padding-left: 20px;
}

.list-care li::after {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #29a6dd;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.img-bg {
    width: 100%;
    height: 143px;
    position: absolute;
    bottom: 142px;
    z-index: -1;
}

.img-bg img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    text-align: center;
    height: 100%;
}

.box-bg-mail {
    padding-top: 15px;
    padding-bottom: 65px;
    position: relative;
}

.box-bg-mail::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f89627;
    position: absolute;
    z-index: -2;
    bottom: 0;
    left: 0;
}

.box-bg-mail::before {
    content: "";
    width: 100%;
    height: 224px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.title-sub {
    color: #e07205;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    position: relative;
}

.title-sub::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/takanokokan/bird.svg);
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
}

.title-line {
    font-size: 2.7rem;
    letter-spacing: 0.1em;
    color: #876239;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.title-line::after {
    content: "";
    width: 120px;
    height: 2px;
    background-color: #f89627;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.text-under-cs {
    text-decoration: underline;
    text-decoration-color: #f7e921;
    text-decoration-thickness: 6px;
}

.bdr-20 {
    border-radius: 20px;
}

.img-care-cs img {
    border-radius: 10px;
}

.text-care-cs h3 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 1.59;
    color: #723900;
    border-bottom: 2px solid #f89627;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.text-care-cs p {
    letter-spacing: 0.05em;
    line-height: 1.75;
    text-align: justify;
}

.event-info {
    letter-spacing: 0.05em;
}

.care-02 {
    position: relative;
}

.page-term .title-jp p {
    font-size: 2.4rem;
}

.page-term .breadcrums {
    padding-top: 55px;
}

.care-02::after {
    content: "";
    width: 100%;
    height: 1781px;
    background-image: url(../images/takanokokan/page/bg-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 200px;
    z-index: -4;
    left: 0;
    position: absolute;
}

.box-img-care-3 {
    text-align: center;
}

.box-img-care-3 p {
    padding-top: 20px;
    color: #808080;
    letter-spacing: 0.05em;
}

.care-03 {
    position: relative;
}

.care-03::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f7f5e8;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.care-05 {
    position: relative;
}

.care-05::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f7f5e8;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.title-cs {
    min-height: 35px;
    padding-left: 25px;
    padding-bottom: 15px;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    position: relative;
    color: #333333;
    margin-bottom: 35px;
    border-bottom: 1px solid #949494;
}

.title-cs::after {
    content: "";
    width: 4px;
    height: 35px;
    background-color: #f89627;
    position: absolute;
    left: 0;
    top: 0;
}

.box-step {
    display: flex;
    border: 2px solid #f89627;
    border-radius: 20px;
    background-color: #fff;
    padding: 15px 25px;
    margin-bottom: 48px;
    align-items: center;
    position: relative;
}

.box-step::after {
    content: "";
    width: 44px;
    height: 25px;
    background-color: #f89627;
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.box-step:last-child {
    margin-bottom: 0;
}

.box-step:last-child::after {
    display: none;
}

.box-step-left {
    width: 387px;
    display: flex;
    align-items: center;
    min-height: 78px;
    border-right: 1px solid #aeaeae;
    gap: 35px;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    color: #333333;
}

.num-step {
    font-size: 3.3rem;
    letter-spacing: 0.1em;
    color: #e07205;
}

.box-step-right {
    flex: 1;
    padding: 0px 25px;
    line-height: 1.75;
    letter-spacing: 0.05em;
    padding-right: 0;
}

.slide-care-item-2 {
    margin-top: 70px;
}

.slide-care .slick-list {
    margin: -14px;
}

.slide-care .slick-slide {
    padding: 0 14px;
}

.slide-care .slick-slide img {
    width: 100%;
}

a.btn.btn-file {
    border: 2px solid #f89627;
    background-color: #fff;
    border-radius: 20px;
    padding-left: 100px;
    font-size: 2rem;
    letter-spacing: 0.05em;
    min-height: 94px;
    justify-content: flex-start;
    box-shadow: 0 0 10px 0 rgba(205, 235, 243, 0.55);
    margin-bottom: 27px;
}

a.btn.btn-file:hover {
    opacity: 0.6;
}

a.btn.btn-file::after {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(../images/takanokokan/page/part-arrow-orange.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    right: 30px;
}

a.btn.btn-file::before {
    width: 30px;
    height: 36px;
    background-image: url(../images/takanokokan/page/pdf.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    left: 40px;
}

.care-07 {
    position: relative;
}

.care-07::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f7f5e8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

.care-04 {
    position: relative;
}

.care-04::after {
    content: "";
    width: 1026px;
    height: 1029px;
    background-image: url(../images/takanokokan/page/bg-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -453px;
    right: -200px;
    z-index: -3;
}

.box-event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 22px;
}

.box-event {
    width: 165px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    padding-top: 56px;
}

.box-event:nth-child(2) .month-event {
    background-color: #2bb28e;
}

.box-event:nth-child(3) .month-event {
    background-color: #9971bf;
}

.box-event:nth-child(4) .month-event {
    background-color: #29A6DD;
}

.box-event:nth-child(5) .month-event {
    background-color: #0071B7;
}

.box-event:nth-child(6) .month-event {
    background-color: #F6AB3B;
}

.box-event:nth-child(7) .month-event {
    background-color: #E57E17;
}

.box-event:nth-child(8) .month-event {
    background-color: #87B3CC;
}

.box-event:nth-child(9) .month-event {
    background-color: #458C38;
}

.box-event:nth-child(10) .month-event {
    background-color: #C9A95B;
}

.box-event:nth-child(11) .month-event {
    background-color: #d6384f;
}

.box-event:nth-child(12) .month-event {
    background-color: #7ac443;
}

.month-event {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ff7ba7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    top: -55px;
    left: 0;
}

.month-event span {
    font-size: 4.7rem;
    line-height: 1;
    margin-top: -15px;
}

.care-05 {
    position: relative;
}

.care-05::after {
    content: "";
    width: 1285px;
    height: 1318px;
    background-image: url(../images/takanokokan/page/bg-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 590px;
    right: -265px;
    z-index: -5;
}

.care-08 {
    position: relative;
}

.care-08::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/takanokokan/bg-care-8.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

.box-home-banner {
    display: flex;
    align-items: center;
}

.home-banner-left {
    width: 63%;
}

.home-banner-right {
    padding: 0 15px;
    flex: 1;
}

.box-banner-cont {
    max-width: 310px;
    margin: 0 auto;
}

.banner-item img {
    border-radius: 20px;
}

.home-banner {
    position: relative;
}

.home-banner::after {
    content: "";
    width: 100%;
    height: 640px;
    background-image: url(../images/takanokokan/bg-banner.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -5;
}

.home-banner::before {
    content: "";
    width: 1038px;
    height: 1078px;
    background-image: url(../images/takanokokan/page/bg-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    right: -235px;
    z-index: -4;
}

.home-news {
    position: relative;
}

.home-news::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/takanokokan/bg-banner.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

.box-flex-cs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-flex-left {
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.1em;
}

.title-flex-left h3 {
    font-size: 3rem;
    color: #ef7f18;
}

.home-banner .list-care {
    margin-left: 75px;
}

.home-banner .list-care li {
    font-size: 2.3rem;
    padding-left: 25px;
}

.home-banner .list-care li::after {
    width: 15px;
    height: 15px;
}

.home-banner .box-bg-avaliable {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 80px;
    max-width: 650px;
}

.box-link-bottom-home {
    position: relative;
}

.toggle-cont {
    padding: 30px;
}

.toggle-contact {
    border: 1px solid #ff7e00;
    border-radius: 50px;
    background-color: #fff;
}

a.btn.btn-close-popup {
    max-width: 241px;
    min-height: 75px;
    border: 2px solid #f89627;
    border-radius: 10px;
    padding: 0 35px;
    justify-content: flex-start;
    gap: 70px;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 auto;
}

a.btn.btn-close-popup img {
    width: 23px;
}

.page-daytime .page-header-img::after {
    background-image: url(../images/takanokokan/bg-day.png);
}

.page-term .page-header-img::after {
    background-image: url(../images/takanokokan/bg-term.png);
}


/*# sourceMappingURL=takanokokan.css.map */

.box-link-bottom-home {
    box-shadow: 0 0 6px 0 rgba(169, 177, 181, 0.45);
}

.footer-link {
    font-size: 1.6rem;
    font-weight: 500;
}

.list-dot {
    position: relative;
}

.list-dot::before {
    content: "";
    width: 15px;
    height: 15px;
    background: #f89627;
    position: absolute;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.list-dot li {
    padding-left: 30px;
}

.daytime-bg {
    position: absolute;
    opacity: 0.3;
    top: 575px;
    object-fit: contain;
    width: 100%;
    z-index: -1;
}

.btn-main-color {
    background-color: #f89627 !important;
}

.term-06::after {
    opacity: 0.3 !important;
}

a.link-footer:hover {
    opacity: 1;
}

body:not(.page-template-page-takanokokan) .btn-main::after {
    transform: translateY(-50%) rotate(-90deg);
}

.home-map-left-img iframe {
    height: 422px;
    width: 520px;
    border-radius: 20px;
}

#loading {
    background-image: url(../images/takanokokan/bg-loading.png);
}

.text-loading {
    color: #ff7a00;
}

@media (min-width: 768px) {
    .mr--10 {
        margin-right: -10px;
    }
}

@media (min-width: 1480px) {
    .box-slider-wrapper::after {
        left: 0;
        width: 100vw;
    }
    /* .slider-home .container-1480 {
        max-width: 100%;
        padding: 0;
    } */
    .img-bg {
        height: auto;
    }
    .img-bg img {
        height: auto;
        object-fit: cover;
    }
    .about-section::before {
        height: 150px;
        background-size: cover;
    }
    .home-connect-right .img-connect img {
        width: calc(50vw - 100px);
    }
}

@media(max-width:1482px) and (min-width:768px) {
    .header-inner {
        padding-left: 15px;
    }
    .box-menu-phone {
        margin-right: 0;
    }
    .site-header .top-links a {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media(max-width:1402px) and (min-width:768px) {
    .phone-number-header {
        font-size: 25px;
    }
    .site-header .top-links a {
        padding-left: 10px;
        padding-right: 10px;
    }
    .site-header .top-links a .ml-10 {
        margin-left: 5px;
    }
}

@media(max-width:1320px) and (min-width:768px) {
    .site-header .top-links a .ml-10 {
        display: none;
    }
    .phone-number-header::after {
        display: none;
    }
    .sticky-bar {
        gap: 25px;
    }
    .site-header .top-links a:last-child {
        border-right: none;
    }
    .header-main .main-menu .nav>li>a {
        letter-spacing: normal;
    }
    .header-main .main-menu .nav>li::after {
        right: -23px;
    }
    .header-main .main-menu .nav>li {
        margin-right: 40px;
    }
}

@media(max-width:1191px) and (min-width:768px) {
    .sticky-bar {
        gap: 15px;
    }
    .site-header .top-links a:last-child {
        border-right: none;
    }
    .phone-number-header {
        font-size: 20px;
    }
    .header-main .main-menu .nav>li>a {
        letter-spacing: normal;
    }
    .header-main .main-menu .nav>li::after {
        right: -23px;
    }
    .header-main .main-menu .nav>li {
        margin-right: 40px;
    }
    .site-header .top-links a,
    .header-main .main-menu .nav>li>a span {
        font-size: 13px;
    }
}

@media(max-width:1080px) and (min-width:768px) {
    .header-main .logo-left .logo {
        width: 180px;
    }
    a.btn.btn-mail p {
        display: none;
    }
    a.btn.btn-mail {
        width: 49px;
        height: 49px;
    }
    .header-main .main-menu {
        margin-left: 10px;
    }
}

@media(max-width:980px) and (min-width:768px) {
    .site-header .top-links {
        flex-wrap: wrap;
        width: 375px;
    }
    .site-header .top-links a {
        width: 50%;
        margin-bottom: 5px;
    }
    .header-main .main-menu .nav>li::after {
        right: -18px;
    }
    .header-main .main-menu .nav>li {
        margin-right: 28px;
    }
    .site-header .top-links a,
    .header-main .main-menu .nav>li>a span {
        font-size: 12px;
    }
    .header-main .logo-left .logo {
        width: 150px
    }
}
.content-contact-right{
    display: none;
}
.content-contact::after{
    display: none;
}
.content-contact{
    justify-content: center;
    display: flex;
}
.content-contact-left{
    position: relative;
}
.phone-number::after{
    left: -34px;
}