﻿@charset "utf-8";



/* home
-------------------------------------------------------------------*/
.home .mv_wrap{
    position: relative;
    z-index: 0;
}
.home .mv_wrap .title_area{
    position: absolute;
    z-index: 1;
    margin: auto;
    text-align: left;
    inset: auto auto 12% 7.5%;
    color: #fff;
}
.home .mv_wrap .title_area .mv_title{
    font-size: min(4.875rem , 4.5vw);
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}
.home .mv_wrap .title_area .mv_title em{
    font-size: 1.12em;
}
.home .mv_wrap .title_area .mv_text{
    font-size: 1.125rem;
    line-height: 2.2;
}
.home .mv_wrap .mv_slide{
    position: relative;
    z-index: 0;
    min-height: 740px;
}
.home .mv_wrap .mv_slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.home .mv_wrap .mv_slide .slide_img img{
    min-height: 740px;
    object-fit: cover;
}   
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.home .mv_wrap .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@media screen and (max-width: 1200px) {
    .home .mv_wrap .title_area{
        bottom: 8%;
    }
    .home .mv_wrap .title_area .mv_title{
        font-size: 3rem;
        margin-bottom: 0.5em;
    }
}
@media screen and (max-width: 767px) {
    .home .mv_wrap .title_area{
        inset: auto auto 10% 0;
        padding-inline: 15px;
    }
    .home .mv_wrap .title_area .mv_title{
        font-size: 2.0rem;
        margin-bottom: 0.5em;
    }
    .home .mv_wrap .title_area .mv_text{
        font-size: 1.125rem;
        line-height: 1.8;
    }
    .home .mv_wrap .mv_slide{
        min-height: 500px;
    }
    .home .mv_wrap .mv_slide .slide_img img{
        min-height: 500px;
    }   
}
.home .massage_wrap{
    padding-block: 8em 6em;
}
.home .massage_wrap .massage_inner{
    max-width: calc(1000px + 4%);
    padding-inline: 2%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 1em 4%;
    text-align: left;
}
.home .massage_wrap .text_area .massage_title{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-align: center;
    color: #000;
}
.home .massage_wrap .text_area .massage_lead{
    font-size: 1.75rem;
    margin-bottom: 1em;
    text-align: center;
}
.home .massage_wrap .text_area .massage_lead em{
    font-weight: 700;
}
.home .massage_wrap .text_area .massage_text{
    margin-bottom: 1em;
    line-height: 2.2;
}
@media screen and (max-width:767px) {
    .home .massage_wrap{
        padding-block: 4em 3em;
    }
    .home .massage_wrap .massage_inner{
        padding-inline: 15px;
    }
    .home .massage_wrap .text_area .massage_title{
        font-size: 2rem;
        margin-bottom: 1em;
    }
    .home .massage_wrap .text_area .massage_lead{
        font-size: 1.35rem;
    }
    .home .massage_wrap .text_area .massage_text{
        line-height: 1.6;
    }
}
.home .feature_wrap .feature_inner{
    background: #f6f6f6;
    padding-block: 4em;
    text-align: center;
    margin-bottom: 6em;
}
.home .feature_wrap .feature_title{
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #000;
}
@media screen and (max-width:767px){
    .home .feature_wrap .feature_inner{
        padding-block: 2em;
        margin-bottom: 2em;
        padding-inline: 0;
    }
    .home .feature_wrap .feature_title{
        font-size: 2rem;
        margin-bottom: 0.5em;
    }
    .home .feature_wrap .img{
        min-width: 500px;
        margin-bottom: 2em;
    }
}
.home .slide_wrap{
    margin-bottom: 6em;
}
.home .slide_wrap .slide_area{
    display: flex;
    overflow: hidden;
}
.home .slide_wrap .slide_items{
   display: flex;
   animation: infinity-scroll-left 70s infinite linear 0.5s both;
}
.home .slide_wrap .slide_item{
    width: calc(100vw / 4.4);
    min-width: 384px;
    margin-left: 1em;
}
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}
@media screen and (max-width:767px){
    .home .slide_wrap{
        margin-bottom: 4em;
    }
    .home .slide_wrap .slide_item{
        margin-left: 0.5em;
        width: calc(100vw / 1.75);
        min-width: unset;
        
    }
}
.home .inst_wrap{
    margin-bottom: 6em;
}
.home .inst_wrap .inst_inner{
    max-width: calc(1460px + 4%);
    padding-inline: 2%;
    margin-inline: auto;
}
.home .inst_wrap .inst_title{
    font-size: 2.5rem;
    font-weight:600;
    margin-bottom: 1.5em;
    color: #000;
}
.home .inst_wrap .inst_area01{
    display: flex;
    flex-wrap: wrap;
    gap: 2em 1.8%;
    text-align: left;
    margin-bottom: 2em;
}
.home .inst_wrap .inst_area01 .inst_item{
    width: 49.1%;
}
.home .inst_wrap .inst_area01 .inst_item a{
    display: flex;
    background: #f6f6f6;
    text-decoration: none;
    height: 100%;
}
.home .inst_wrap .inst_area01 .inst_item .text_area{
    width: 43%;
    padding: 2em 1.5em;
    line-height: 1.6;
    position:relative;
    z-index: 0;
}
.home .inst_wrap .inst_area01 .inst_item .text_area .logo{
    margin-bottom: 1em;
    text-align: center;
}
.home .inst_wrap .inst_area01 .inst_item .text_area .item_text{
    font-weight: 500;
}
.home .inst_wrap .inst_area01 .inst_item .img_area{
    width: 57%;
}
.home .inst_wrap .inst_area01 .inst_item .img_area .img{
    height: 100%;
    overflow: hidden;
}
.home .inst_wrap .inst_area01 .inst_item .img_area .img img{
    height: 100%;
    object-fit: cover;
    transition: scale 0.4s;
}
.home .inst_wrap .inst_area02{
    display: flex;
    gap: 2.5%;
    margin-bottom: 4em;
}
.home .inst_wrap .inst_area02 .inst_item{
    width: calc(95% / 3);
}
.home .inst_wrap .inst_area02 .inst_item a{
    background: #f6f6f6;
    display: block;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 0;
}
.home .inst_wrap .inst_area02 .inst_item .text_area{
    padding: 0em 2em 2em;
}
.home .inst_wrap .inst_area02 .inst_item .item_text{
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}
.home .inst_wrap .inst_area02 .inst_item .logo{
    min-height: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home .inst_wrap .inst_area02 .inst_item .img{
    overflow: hidden;
}
.home .inst_wrap .inst_area02 .inst_item .img img{
    transition: scale 0.3s;  
}
@media (any-hover: hover) {
    .home .inst_wrap .inst_item a:hover .img img{
        scale: 1.03;
    }
}
.home .inst_wrap .inst_item .text_area .item_icon{
    position: absolute;
    z-index: 1;
    margin: auto;
    inset: auto 14px 12px auto;
    font-size: 1rem;
}
.home .inst_wrap .inst_item .text_area .item_icon span{
    position: relative;
    z-index: 1;
    padding-right: 1.75em;
}
.home .inst_wrap .inst_item .text_area .item_icon span:before,
.home .inst_wrap .inst_item .text_area .item_icon span:after{
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    margin: auto;
    width: 20px;
    height: 20px;
    color: #fff;
    background: #c8161d;
    border: 1px solid #c8161d;
    border-radius: 50%;
    inset: 0 0 0 auto;
    transition: all 0.3s;  
}
.home .inst_wrap .inst_item .text_area .item_icon span:after{
    content: "→";
    font-size: 0.875rem;
    font-weight: 600;
    width: 16px;
    height: 22px;
    background: none;
    border: none;
    inset: 0 2px 0 auto;
    line-height: 1.5;
    text-align: left;
}
@media (any-hover: hover) {
    .home .inst_wrap .inst_item a:hover .text_area .item_icon span:before{
        background: #ffffff;
    }
    .home .inst_wrap .inst_item a:hover .text_area .item_icon span:after{
        color: #c8161d;
    }
}
@media screen and (max-width: 1200px) {
    .home .inst_wrap .inst_area01{
        justify-content: center;
    }
    .home .inst_wrap .inst_area01 .inst_item{
        flex-direction: column-reverse;
        justify-content: flex-end;
    }
    .home .inst_wrap .inst_area01 .inst_item .text_area{
        width: 100%;
    }
    .home .inst_wrap .inst_area01 .inst_item .img_area{
        width: 100%;
    }
    .home .inst_wrap .inst_area01 .inst_item .img_area .img img{
        width: 100%;
    }
}
@media screen and (max-width:767px) {
    .home .inst_wrap{
        margin-bottom: 4em;
    }
    .home .inst_wrap .inst_inner{
        padding-inline: 15px;
    }
    .home .inst_wrap .inst_title{
        font-size: 2rem;
        margin-bottom: 0.5em;
    }
    .home .inst_wrap .inst_area01{
        gap: 1.5em;
        margin-bottom: 1.5em;
        flex-direction: column;
    }
    .home .inst_wrap .inst_area01 .inst_item{
        width: 100%;
    }
    .home .inst_wrap .inst_area01 .inst_item a{
        flex-direction: column-reverse;
    }
    .home .inst_wrap .inst_area01 .inst_item .text_area{
        width: 100%;
        padding: 1em 2em 3em;
    }
    .home .inst_wrap .inst_area01 .inst_item .img_area{
        width: 100%;
    }
    .home .inst_wrap .inst_area02{
        gap: 1.5em;
        margin-bottom: 3em;
        flex-direction: column;
    }
    .home .inst_wrap .inst_area02 .inst_item{
        width: 100%;
    }
    .home .inst_wrap .inst_area02 .inst_item .text_area{
        padding: 0em 2em 3em;
    }
    .home .inst_wrap .inst_area02 .inst_item .logo{
        padding: 1em 2em;
    }
    .home .inst_wrap .inst_item .text_area .item_icon span:after{
        inset: 0px 1px auto auto;
        line-height: 1.8;
    }
}
.home .other_wrap{
    background: #f6f6f6;
    padding-block: 8em;
}
.home .other_wrap .other_inner{
    display: flex;
    gap: 1px;
}
.home .other_wrap .other_inner a{
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    justify-content: center;
    background-image: url(../img/top/img_other01.jpg);
    background-size: 100%;
    background-position: center;
    transition: scale 0.3s;
    color: #fff;
    width: calc(50% - 0.5px);
    aspect-ratio: 600/ 240;
    padding: 1em 2em;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-size 0.3s;
}
.home .other_wrap .other_inner .btn_recruit{
    background-image: url(../img/top/img_other02.jpg) ;   
}
.home .other_wrap .other_inner a span{
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}
@media (any-hover: hover) {
    .home .other_wrap .other_inner a:hover{
        background-size: 105%;
    }
}
@media screen and (max-width:767px) {
    .home .other_wrap{
        padding-block: 4em;
    }
    .home .other_wrap .other_inner{
        flex-direction:column;
        gap: 1em;
    }
    .home .other_wrap .other_inner a{
        width: 100%;
        aspect-ratio: 600/ 200;
        padding: 1em 1.1em;
        font-size: 1.5rem;
    }
    .home .other_wrap .other_inner a span{
        font-size: 1.125rem;
    }
}