@charset "UTF-8";
/* CSS Document */
@media only screen and (max-width: 768px) {
  .blurFixSP {
    image-rendering: optimizeSpeed;
    /* STOP SMOOTHING, GIVE ME SPEED  */
    /* Firefox                        */
    image-rendering: -o-crisp-edges;
    /* Opera                          */
    /* Chrome (and eventually Safari) */
    image-rendering: pixelated;
    /* Chrome */
    image-rendering: optimize-contrast;
    /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;
    /* IE8+                           */
  }
  :root {
    --ttl_size: 26px;
    --wrapper: 60px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.menu_toggle {
  background-color: #fff;
  position: fixed;
  top: var(--wrapper);
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--wrapper));
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
}
.menu_toggle .inside .ft_link {
  padding: 20px 20px 20px;
}
@supports (-webkit-touch-callout: none) {
  .menu_toggle .inside .ft_link {
    /* Specific to iOS devices */
    padding-bottom: 120px;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside .ft_link {
      /* Safari */
      padding-bottom: 120px;
    }
  }
}

#nav-icon {
  width: 32px;
  height: 27px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 3px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 11px;
}
#nav-icon span:nth-child(4) {
  top: 19px;
}
#nav-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 18px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--main-color);
  border-radius: 10px;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--clr1);
  }
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}

@media only screen and (max-width: 768px) {
  .menu_toggle .lv2 ul {
    background-color: rgba(107, 158, 178, 0.8);
  }
  .menu_toggle .lv2 li {
    padding: 0 10px;
  }
  .menu_toggle .lv2 li a,
  .menu_toggle .lv2 li p.title {
    display: block;
    position: relative;
    color: #fff;
    font-size: 13px;
    padding: 10px 10px 10px 25px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  }
  .menu_toggle .lv2 li a::after {
    content: "›";
    display: block;
    position: absolute;
    top: 47%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link a {
    display: block;
  }
  .ft_link .menu01 {
    margin-bottom: 30px;
  }
}
/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  a:hover {
    opacity: 1 !important;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .under .topic_path {
    padding-bottom: 10px;
  }
  .txt_l,
  .txt_r {
    float: none;
    width: auto;
  }
  .image_l,
  .image_r {
    float: none;
    width: auto;
    margin: 0 0 20px;
    text-align: center;
    max-width: none;
  }
  p,
  li {
    margin-bottom: 13px;
    line-height: 2;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media screen and (min-width: 769px) {
  header .flex-box {
    display: flex;
  }
  header .icon_ins {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 100%;
    margin-top: -4px;
    cursor: pointer;
  }
  header .icon_ins:hover {
    opacity: 1;
  }
  header .icon_ins a img {
    width: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1750px) {
  header.active .logo::before {
    height: 150px;
    width: 325px;
  }
  header .logo img {
    margin-top: 20px;
    margin-left: 20px;
  }
  header .logo::before {
    width: 343px;
    height: 253px;
  }
  header .logo .logo-default {
    max-width: 342px;
    width: 230px;
  }
  footer {
    width: 90%;
    padding: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .right_head.pc_only {
    width: auto;
    max-width: 100%;
  }
  .pc_navi > ul > li {
    margin-right: 8px;
  }
  .pc_navi > ul > li.recruit_btn {
    margin-top: -5px;
    margin-right: 0;
    margin-left: 0;
  }
  .pc_navi > ul > li.recruit_btn a {
    width: 160px;
    height: 55px;
  }
  .pc_navi > ul > li.recruit_btn a::before {
    width: 30px;
    height: 30px;
    left: 30px;
  }
  header.active .logo::before {
    height: 150px;
    width: 325px;
  }
  header .logo img {
    margin-top: 15px;
    margin-left: 15px;
  }
  header .logo::before {
    width: 343px;
    height: 253px;
  }
  header .logo .logo-default {
    max-width: 342px;
  }
  .fixed_banner {
    right: 20px;
  }
  .fixed_banner.active {
    right: 100px;
  }
  .fixed_banner .schedule-card {
    width: 80%;
    margin-left: auto;
  }
  .fixed_banner .schedule-card .close {
    top: 25px;
    right: 11px;
  }
  footer {
    width: 96%;
    margin-top: 0;
    padding: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  header .logo::before {
    width: 182px;
    height: 140px;
  }
  header .logo img {
    width: 45%;
    margin-top: 10px;
    margin-left: 10px;
  }
  header.active .logo::before {
    height: 80px;
    width: 166px;
  }
  .pc_navi > ul > li:nth-child(3) a {
    width: 8.25em;
  }
  .pc_navi > ul > li > a::before, .pc_navi > ul > li > p::before {
    right: 26px;
  }
  header .icon_ins a img {
    width: 2em;
  }
  header .icon_ins {
    width: 3.5em;
    height: 3.5em;
  }
  header .logo {
    max-width: 542px;
    width: 40%;
  }
  header .logo .logo-default {
    max-width: 542px;
    width: 45%;
  }
  header .logo .logo-scroll {
    width: 45%;
  }
  header .pc_navi > ul > li {
    margin-bottom: 0;
    margin-right: 4px;
  }
  header .pc_navi > ul > li a,
  header .pc_navi > ul > li p {
    font-size: 1.0625em;
    width: 8.25em;
    height: 2.75em;
  }
  header .pc_navi > ul > li.recruit_btn {
    margin-top: 0;
  }
  header .pc_navi > ul > li.recruit_btn a {
    width: 13.3125em;
    height: 4.5625em;
    padding-left: 3.4375em;
    font-size: 0.7em;
  }
  header .pc_navi > ul > li.recruit_btn a::before {
    width: 2.5em;
    height: 2.5em;
    left: 2.6875em;
  }
  .pc_navi > ul {
    font-size: 1.3vw;
    margin-top: 20px;
  }
  .fixed_banner.active {
    right: 70px;
  }
  .fixed_banner .schedule-card {
    margin-left: auto;
    right: 20px;
  }
  footer .inner {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
  .fixed_banner {
    right: -15px;
  }
  .fixed_banner .schedule-card {
    width: 65%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header_top .icon_ins {
    position: fixed;
    top: 10px;
    right: 75px;
    z-index: 10;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    z-index: -1;
  }
  .header_top .icon_ins a img {
    width: 45px;
    height: 45px;
    margin-left: 0;
    margin-top: 0;
  }
  .logo_ftr > div {
    display: flex;
    justify-content: center;
  }
  .under .sp_navi {
    display: block;
  }
  .fixed_banner {
    bottom: 220px;
    left: auto;
    right: 10px;
    width: auto;
    transform: unset;
  }
  .fixed_banner.active {
    right: 60px;
    bottom: 85px;
  }
  .fixed_banner .schedule-card {
    width: 235px;
    height: 120px;
  }
  .fixed_banner .dates {
    justify-content: space-between;
    width: 165px;
    height: 40px;
  }
  .fixed_banner .label {
    width: 32px;
    height: 95px;
    left: 13px;
  }
  .fixed_banner .label span {
    font-size: 14px;
  }
  .fixed_banner .date .text {
    font-size: 22px;
  }
  .fixed_banner .time {
    font-size: 12px;
  }
  .fixed_banner .close {
    top: 15px;
    width: 15px;
    right: 10px;
  }
  .fixed_banner .content {
    margin-top: 10px;
  }
  .hamburger-btn {
    display: block;
  }
  footer .inner {
    justify-content: center;
  }
  footer .inner .logo_ftr img {
    max-width: 240px;
    margin-right: 20px;
  }
  footer .inner .textwidget {
    padding: 0;
    font-size: 12px;
    text-align: center;
  }
  .wrapper {
    padding-bottom: 50px;
  }
  .ovh .header_top {
    background: #35b8ed;
  }
  .ovh .header_top .logo {
    width: 200px;
    height: 100%;
  }
  .ovh .header_top .logo img {
    margin-left: 10px;
    margin-top: -2px;
  }
  .ovh .hamburger-btn {
    right: 0;
    top: 0;
  }
  .ovh .ft_link a:hover {
    color: unset;
  }
  header.active .header_top .logo::before {
    width: 232px;
    height: 108px;
  }
  .header_top {
    align-items: normal;
  }
  .header_top .logo {
    width: 180px;
  }
  .header_top .logo::before {
    width: 232px;
    height: 180px;
  }
  .header_top .logo img {
    margin-top: 15px;
    margin-left: 5px;
  }
  .ft_link a {
    font-size: 16px;
  }
  .wrapper {
    min-width: inherit;
  }
  .header_top {
    width: 100%;
    height: 60px;
    padding: 0;
  }
  .header_top a img {
    margin-left: 10px;
    margin-top: -2px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 80px);
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 160px;
  }
  .header_top .logo img.logo-scroll {
    max-height: 120px;
  }
  footer {
    padding: 10px 20px;
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
  footer .logo_ftr figure {
    display: flex;
    justify-content: center;
  }
  footer .inner {
    display: block;
  }
  footer .inner .textwidget {
    margin-right: 0;
    padding: 0;
  }
  footer .inner .textwidget p {
    font-size: 12px;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 85px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .fixed_banner {
    right: 20px;
    height: auto;
    display: block;
    width: auto;
    bottom: 140px;
    transform: translateY(100%);
  }
  .fixed_banner .schedule-card {
    width: 170px;
    height: auto;
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner > div {
    width: 33.33%;
    height: 100%;
  }
  .fixed_banner > div > p {
    font-size: 12px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
  }
  .copyright {
    display: block;
  }
  .copyright .flex {
    justify-content: center;
  }
  .idx_gallery .list .img img {
    max-width: 50vw;
  }
  .fixed_recruit {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .fixed_recruit a {
    background: repeating-linear-gradient(-45deg, #29a9e6 0, #29a9e6 10px, #37b4ec 10px, #37b4ec 20px);
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
  }
  .fixed_recruit a figure {
    width: 30px;
  }
  .fixed_recruit a span {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .copyright .flex {
    max-width: 400px;
    margin: auto;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    max-width: 130px;
  }
  .copyright .textwidget {
    margin-top: 10px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    text-align: center;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
@media screen and (max-width: 360px) {
  header.active .header_top .logo::before {
    width: 182px;
    height: 87px;
  }
  header .header_top .logo {
    width: 150px;
  }
  header .header_top .logo::before {
    width: 180px;
    height: 142px;
  }
  header .header_top .logo img {
    margin-top: 5px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/