@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: #000;
  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:hover {
    background-image: url(../images/index/btn-go-top-hover.svg);
    opacity: 1;
} */
/* #go-top a::after {
    content: "";
    width: 62px;
    height: 62px;
    background-color: #c4eeff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -2;
    transition: .3s;
    border-radius: 50%;
} */
/* #go-top a:hover {
    opacity: 0.7;
    transform: scale(1.1);
} */
#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;
  justify-content: end;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 25px;
}

.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: 338px;
  line-height: 1;
  padding: 0;
  position: relative;
}

a.menu-btn:hover {
  opacity: 1;
}

.header-inner {
  position: static;
  padding-left: 66px;
  padding-right: 12px;
}

.header-main .main-menu {
  flex: 1;
  margin-left: 20px;
}

.header-main .main-menu .nav {
  position: static;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
}

.header-main .main-menu .nav > li {
  margin: 0;
  position: relative;
  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: #f24c8f;
  border-radius: 100%;
}

.header-main .main-menu .nav > li:last-child {
  margin-right: 0;
}

.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;
}

.header-main .main-menu .nav > li > a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #f24c8f;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

/* .header-main .main-menu .nav>li>a span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 5px;
} */
.header-main .main-menu .nav > li:nth-last-child(1) {
  border-right: none;
}

.box-menu-phone {
  display: flex;
  padding-left: 0;
  align-items: center;
  padding: 0;
  justify-content: center;
  position: static;
}

.header-main .main-menu .nav > li > a:hover,
.header-main .main-menu .nav > li.current > a {
  opacity: 1;
  color: #f24c8f;
}

@media (min-width: 768px) {
  .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: 79px;
  z-index: 8999;
  transition: none;
  height: auto;
  box-shadow: none;
  background-color: transparent;
  border-bottom-left-radius: 10px;
  display: block;
  background-color: #fff;
  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: 24px;
  background-color: #ff2f79;
  left: 21px;
  transition: all 0.5s;
}

a.menu-btn span:nth-child(2) {
  top: 32px;
}

a.menu-btn span:nth-child(3) {
  top: 40px;
}

a.menu-btn::after {
  content: "MENU";
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  position: absolute;
  color: #ff2f79;
  font-family: "Zen Maru Gothic", sans-serif;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
}

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: 27px;
}

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 #f24c8f;
}

ul.list-anchor li a:hover {
  opacity: 0.7;
}

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: translateY(-50%);
  right: -50px;
  z-index: 2;
}

ul.slick-dots li {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #f24c8f;
  border-radius: 50%;
  margin: 8px 0;
}

ul.slick-dots li.slick-active {
  background-color: #f24c8f;
}

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 {
  font-size: 30px;
  color: #f24c8f;
  position: relative;
}

.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: #f24c8f;
}

.news-item.item-list:hover:after {
  right: 15px;
}

.news-item.item-list:hover .title a {
  opacity: 1;
  color: #f24c8f;
}

.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: calc(100% - 22px);
  background-image: url(../images/takanokokan/bg-home-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
  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 #f24c8f;
  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: #f24c8f;
  border-radius: 100%;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-title {
  color: #f24c8f;
  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;
  top: 0;
  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-position: center;
  background-repeat: no-repeat;
  top: -300px;
  right: -270px;
  width: 1030px;
  height: 1027px;
  z-index: -1;
}

.connect-content {
  display: flex;
}

.btn-main {
  font-size: 20px;
  font-weight: 500;
  padding: 20px 70px 20px 40px;
  position: relative;
  border: 1px solid #f24c8f;
  border-radius: 100px;
}

.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 #f24c8f;
  background-color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.btn-more::after {
  background-image: url(../images/takanokokan/icon-more.svg);
}
.btn-more:hover {
  background-color: #f24c8f;
  color: #fff;
}

.phone-number {
  font-size: 40px;
  color: #f24c8f;
  letter-spacing: 50;
}

.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: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-main:hover {
  background-color: #f24c8f;
  color: #fff;
}

.btn-main-color {
  background-color: #f24c8f;
  height: -moz-fit-content;
  height: fit-content;
}

.main-title-jp {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #603813;
  position: relative;
  width: 100%;
  position: relative;
}
.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%;
}
.main-title-jp::after {
  content: "";
  height: 1px;
  background-color: #f24c8f;
  width: 420px;
  bottom: -10px;
  left: 0;
  position: absolute;
}

.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: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background-color: #f24c8f;
}

.toggle-hd {
  text-align: center;
  padding: 31px 0;
  width: 100%;
  position: relative;
  background-color: white;
  border: 1px solid #f24c8f;
  border-radius: 100px;
}

.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;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 62px;
  height: 62px;
}

.main-title-en {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #f24c8f;
}

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: #f24c8f;
}

.color-3 {
  color: #cd336b;
}

.color-4 {
  color: #1bb57b;
}

.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;
}

.top-links {
  display: flex;
}

.top-links a {
  border: none;
}

.link-bottom {
  display: inline-block;
  max-width: 750px;
}

.btn-banner {
  position: absolute;
  bottom: 76px;
  right: 40px;
  width: 280px;
  border: 1px solid #1cc3ea;
  background: white;
  font-size: 20px;
  justify-content: center;
  border-radius: 30px;
}

.btn-banner::after {
  background-image: url(../images/takanokokan/icon-link-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-infor {
  background: #fff;
  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%);
}

a.link-footer:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #f24c8f;
  position: absolute;
  border-radius: 100%;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-wrap {
  padding: 40px 80px;
  position: relative;
  border-radius: 30px;
}

.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: 40px;
  top: 4px;
  right: 50%;
  transform: translateY(-50%);
}

.footer-left {
  max-width: 435px;
}

a.link-footer {
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
a.link-footer::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #f4a2a2;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
a.link-footer:hover::before {
  width: 100%;
}

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;
  padding: 10px 20px;
}

.site-header {
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #eee;
}
.site-header .top-links {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}
.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 {
  text-decoration: underline;
}
.site-header .border-solid {
  width: 7px;
  height: 7px;
  background-color: #f24c8f;
  border-radius: 100%;
  display: none;
}
.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: #f24c8f;
}
.site-header .header-main .main-nav ul li.active a {
  color: #f24c8f;
  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: #f24c8f;
}
.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: #f24c8f;
  text-decoration: none;
}
.site-header .header-main .contact .contact-btn {
  background: #f24c8f;
  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, 76, 143, 0.1);
}

.box-flex-mail {
  display: flex;
  align-items: center;
  gap: 16px;
}

a.btn.btn-mail {
  flex-direction: column;
  background: #f24c8f;
  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;
  background-color: #f7f5e8;
  max-width: 540px;
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin-left: -85px;
  flex: 1;
}

.care-img {
  width: 700px;
}

.care-container {
  position: relative;
  display: flex;
  align-items: center;
}

.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%);
}

.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: 100% 100%;
  top: 70px;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: -1;
}

.service-2 {
  position: relative;
}
.service-2::after {
  position: absolute;
  content: "";
  background-image: url(../images/takanokokan/bg-service.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: -545px;
  right: -125px;
  width: 1432px;
  height: 1734px;
  z-index: -3;
}

.title-care p {
  font-size: 30px;
  letter-spacing: 0.15em;
  color: #8e4f10;
  line-height: 1.13;
  padding-left: 40px;
  position: relative;
}
.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;
}

.title-en {
  letter-spacing: 0.176em;
  color: #f24c8f;
  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%);
}

.box-bg-mail {
  padding-top: 15px;
  padding-bottom: 65px;
  position: relative;
}
.box-bg-mail::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f24c8f;
  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: #f24c8f;
  font-size: 3.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  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: #f24c8f;
  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 #f24c8f;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.text-care-cs p {
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.care-02 {
  position: relative;
}
.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: -6;
  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: #f24c8f;
  position: absolute;
  left: 0;
  top: 0;
}

.box-step {
  display: flex;
  border: 2px solid #f24c8f;
  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: #f24c8f;
  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: #f24c8f;
}

.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 #f24c8f;
  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::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;
}

.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: #f24c8f;
}
.box-event:nth-child(5) .month-event {
  background-color: #29a6dd;
}
.box-event:nth-child(6) .month-event {
  background-color: #0071b7;
}
.box-event:nth-child(7) .month-event {
  background-color: #f6ab3b;
}
.box-event:nth-child(8) .month-event {
  background-color: #e57e17;
}
.box-event:nth-child(9) .month-event {
  background-color: #87b3cc;
}
.box-event:nth-child(10) .month-event {
  background-color: #458c38;
}
.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;
}

.img-bg {
  position: absolute;
  bottom: 37px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.home-banner {
  position: relative;
}
.home-banner::after {
  content: "";
  width: 100%;
  height: 581px;
  background-image: url(../images/recruit/index/bg-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center top;
  top: 40px;
  left: 0;
  z-index: -5;
}
.home-banner::before {
  content: "";
  width: 1256px;
  height: 1010px;
  background-image: url(../images/recruit/index/bg-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: -266px;
  z-index: -4;
}

.home-news {
  position: relative;
}
.home-news::before {
  content: "";
  width: 100%;
  height: calc(100% - 50px);
  background-color: #fce8e8;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -6;
}
.home-news::after {
  content: "";
  width: 100%;
  height: 419px;
  background-image: url(../images/recruit/index/bg-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 330px;
  left: 0;
  z-index: -5;
}

#loading {
  background-image: url(../images/takanokokan/bg-loading.png);
}

.text-loading {
  color: #f24c8f;
}

@media (min-width: 1480px) {
  .img-bg {
    height: auto;
    width: 100%;
  }
  .img-bg img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-section::before {
    height: 150px;
    background-size: cover;
  }
  .home-connect-right .img-connect img {
    width: calc(50vw - 100px);
  }
}/*# sourceMappingURL=takanokokan.css.map */