/*-------hero--------*/
.hero{
  padding-top: 20px;
}
.hero .heroInner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1300px;
  position: relative;
}
.hero .heroSlider {
  margin-left: -20px;
  border-radius: 0 10px 10px 0;
  width: 100%;
  height: 610px;
  overflow: hidden;
}
.hero .heroSlider img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}
.hero .catch {
  writing-mode: vertical-rl;
  font-family: var(--decotxtL);
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  height: 520px;
  position: absolute;
  left: 10%;
  top: 0;
}
.hero .catchInner{
  display: inline-block;
  margin-right: 10px;
  padding: 0 10px 12px;
  background-color: #FFF;
}
@media (max-width: 1000px) {
  .hero .catch {
    left: 20px;
  }
}
@media (max-width: 797px) {
  .hero .heroSlider {
    height: 390px;
  }
  .hero .heroSlider img {
    height: 390px;
  }
  .hero .catch {
    font-size: 1.5rem;
    height: 340px;
  }
}
.hero .emphasis {
  color: var(--main);
  font-weight: 500;
}
.hero .infobox {
  display: flex;
  justify-content: flex-end;
  margin-right: -20px;
  position: absolute;
  bottom: -40px;
  right: 0;
}
.hero .infobox > div{
  background: url("../images/common/bg_noise.jpg") repeat center center/ 350px auto;
  border-radius: 10px 0 0 10px;
  padding: 20px 30px;
  width: 100%;
  max-width: 580px;
  position: relative;
}
.hero .infobox .lead {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4px 10px;
  font-family: var(--decotxt);
  line-height: 1.2em;
  color: #FFF;
  background-color: var(--main);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .infoboxInner{
  margin-bottom: 1rem;
}
.hero .infoboxInner dt{
  margin: 1em 0 0.5em;
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 500;
}
.hero .infoboxInner dd{
  line-height: 1.8em;
}
.hero .btnAreaInner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
}
.hero .btnAreaInner a{
  width: 170px;
  height: 50px;
}
.hero .btnArea .annotation{
  text-align: center;
}
@media (min-width: 1301px) {
  .hero .heroSlider {
    border-radius: 10px;
  }
  .hero .infobox > div{
    border-radius: 10px;
  }
}
@media (max-width: 798px) {
  .hero .infobox {
    position: relative;
    bottom: auto;
    top: -40px;
  }
}
/*-------news--------*/
.news {
  padding: 20px 20px 60px;
}
.newsTitle{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray);
}
.newsTitle h2{
  font-family: var(--decotxt);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--main);
}
.newsTitle span{
  font-size: 0.875rem;
}
.newsTitle span:hover,
.newsItem .title a:hover{
  color: var(--main);
  transition: 0.5s;
}
.newsItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.newsItem:last-child{
  margin-bottom: 0;
}
.newsItem .date{
  margin-right: 10px;
  min-width: 60px;
  font-size: 10px;
}
.newsItem div{
  border-left: 1px solid var(--gray);
  padding-left: 10px;
}
.newsItem .tag{
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.newsItem .title{
  line-height: 1.4em;
}
.news .bnrLine{
  display: block;
  margin: 60px auto 0;
  width: 100%;
  height: auto;
}
.news .bnrLine:hover{
  opacity: 0.8;
  transition: 0.5s;
}
@media (min-width: 798px) {
  .news {
    display: flex;
    flex-wrap: wrap;
    gap: 0 60px;
    padding: 80px 20px 60px;
  }
  .newsTitle {
    display: block;
    border-bottom: 0;
  }
  .newsTitle h2 {
    margin-bottom: 16px;
  }
  .news .newsTitleArea{
    display: flex;
    flex-direction: column;
  }
}
/*-------features--------*/
.features {
  border-top: 1px solid;
  border-image: linear-gradient(to right, #F4AFC5, #F1F3F6, #F4AFC5) 1;
  padding: 60px 0;
  background-color: var(--gray);
}
.featureItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 60px;
  margin-bottom: 60px;
}
.featureItem figure{
  display: block;
  border-radius: 10px;
  width: 100%;
  max-width: 390px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.featureItem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featureItem h3 {
  margin-bottom: 1em;
  font-size: 1.5rem;
  font-family: var(--decotxtL);
  font-weight: 500;
  color: var(--main);
  line-height: 1.4;
}
.featureItem h3 span {
  border-bottom: 1px solid var(--main);
}
@media (min-width: 798px) {
  .featureItem {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
/*-------services--------*/
.services {
  background-color: var(--gray);
  position: relative;
}
.services::before,
.services::after {
  content: "";
  position: absolute;
  top: -80px; 
  height: calc(100% + 80px);
  aspect-ratio: 1 / 6.446; 
  background: url("../images/common/bg_plant.svg") no-repeat top right / auto 110%;
  pointer-events: none;
}
.services::before{
  left: 0;
}
.services::after {
  right: 0;
  transform: scaleX(-1); 
}
@media (max-width: 1000px) {
.services::before,
  .services::after {
    display: none;
  }
}
.services section{
  margin-bottom: 40px;
  border-bottom: 1px solid #FFF;
}
.services section:last-child{
  margin-bottom: 0;
  border-bottom: 0;
}
.services .ribbonWrap {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.services h3{
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--decotxt);
  color: var(--main);
  font-size: 1.875rem;
  font-weight: 500;
}
/*blcSymptoms*/
.blcSymptoms{
  margin: 0 auto 40px;
  border-radius: 10px;
  padding: 20px;
  max-width: 700px;
  background-color: #FFF;
}
.blcSymptoms dt{
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-family: var(--decotxt);
}
.blcSymptoms dt:before{
  display: inline-block;
  content: "";
  margin-right: 0.5em;
  border-radius: 1em;
  width: 0.6em;
  height: 0.6em;
  background-color: var(--main);
}
.blcSymptoms dd ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blcSymptoms dd .tag li a{
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--main);
  border-radius: 1em;
  padding: 0.2em 0.5em 0.3em;
  line-height: 1em;
  font-feature-settings: "palt";
  color: var(--main);
}
.blcSymptoms dd .tag li a:hover{
  background-color: var(--pale);
  transition: 0.5s;
}
/*serviceList*/
.serviceList{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 12px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .serviceList {
grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  .serviceList {
grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 479px) and (min-width: 390px) {
  .serviceList {
grid-template-columns: repeat(2, 1fr);
  }
}
.serviceItem {
  display: grid;
  grid-row: span 1;
  grid-template-rows: subgrid;
  gap: 0;
  border-radius: 8px;
  padding: 55px 20px 20px;
  color: var(--black);
  background-color: #FFF;
  box-shadow: 0 2px 6px rgba(209, 114, 114, 0.3);
  position: relative;
}
.serviceItemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color:var(--gray);
  color: #d6587c;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.serviceItem dt {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: var(--decotxt);
  text-align: center;
}
.serviceItem dt span{
  display: inline-block;
}
/*-------column--------*/
.column {
  padding: 60px 0;
}
.columnItem {
  margin-top: 1em;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 1em;
}
.columnItem .date{
  font-size: 10px;
}
.columnItem .tag{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1em;
}
.columnItem .tag li a{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  padding: 0.3em 1em;
  font-size: 10px;
  color: #FFF;
  line-height: 1em;
  background-color: var(--dark);
}
.columnItem .title a:hover{
  color: var(--main);
}
.columnMore {
  text-align: right;
  margin-top: 15px;
}
.columnMore a {
  color: #d6587c;
  display: inline-flex;
}
/*-------gallery--------*/
.gallery {
  border-top: 1px solid var(--gray);
  padding: 60px 0;
}
.gallery .slider {
  width: 100%;
  overflow: hidden;
}
.gallery .sliderItem {
  margin: 0 10px;
  border-radius: 8px;
  width: 280px;
  height: 180px;
  overflow: hidden;
}
.gallery .sliderItem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
/* 中央にきたアクティブなスライドだけ透明度を100%にする */
.slider .slick-current {
  opacity: 1;
}
.recruit{
  margin: 0 auto;
  padding: 0 20px 60px 20px;
  display: flex;
  justify-content: center;
}
.recruit img{
  width: 100%;
  height: auto;
  max-width: 960px;
}
.recruit img:hover{
  opacity: 0.8;
  transition: 0.5s;
}