/* =======================================

	layout

======================================= */

/* =======================================
	section #hero
======================================= */

.section--hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.section--hero::before {
  content: "";
  position: absolute;
  top: 0%;
  left: calc(30% - 100px);
  width: 200px;
  height: 200px;
  background-image: url("../img/decoration-hero.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* 1200px 以下でさらに下へ */
@media (max-width: 1300px) {
  .section--hero::before {
    display: none;
  }
}

.section--hero::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-image: url("../img/decoration-hero.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}


.hero-title{
  z-index: 1;
  position: absolute;
  bottom: 8%;
  left: 3%;
}

.hero-title span{
  margin-bottom: 8px;
  color: #FFF;
}

.hero-title span:first-of-type{ 
  color: #E75F2A;
  
} 

.hero-title span:nth-of-type(2) { 
  color: #FACB3B; 
} 

.hero-title span:last-of-type{ 
  color: #1F6FB5;
}


.hero-img {
  position: absolute;
  top: 40px;
  right: 2%;
  width: 70%;
  height: calc(100% - 80px);
  overflow: hidden;
  border-radius: 30px;
}


.hero-img-slider {
  position: absolute;
  inset: 0;
}

.hero-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 10s ease;
}

.hero-img-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-img-slide:nth-child(1) {
  background-image: url('../img/hero-img01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img-slide:nth-child(2) {
  background-image: url('../img/hero-img02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img-slide:nth-child(3) {
  background-image: url('../img/hero-img03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


@media screen and (max-width: 1440px) {
  
.hero-img-slide:nth-child(1) {
  background-position: bottom;
}

.hero-img-slide:nth-child(2) {
  background-position: bottom;
}

.hero-img-slide:nth-child(3) {
  background-position: bottom;
}

}


@media screen and (max-width: 768px) {

  .section--hero{
  height: 100%;
}

  .hero-img{
    position: relative;
    width: 100%;
    height: 400px;
    top: 0;
    right: 0;
    border-radius: 0;
  }

  .hero-title{
  padding: 20px;
  padding-bottom: 40px;
  position: relative;
  bottom: 0%;
  left: 0%;
}

.hero-title span{
  margin-bottom: 5px;
}

.section--hero::after {
  bottom: 25%;
  right: -5%;
  width: 100px;
  height: 100px;
}



}


/* =======================================
	section #news
======================================= */

.section--news {
  padding: 100px 10% 0px 10%;
}

/* 左側のデコ */
.section--news .col-box::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -40px;
  width: 100px;
  height: 100px;
  background-image: url("../img/decoration-news.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.news-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-cards > li {
  width: 100%;
}

.news-card__link {
  display: block;
  color: inherit;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-card__date {
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.news-card__pill {
  font-size: 13px;
  width: 110px;
  text-align: center;
}

.news-card__title {
  line-height: 1.7;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .section--news {
  padding: 100px 100px 0px 100px;
}
}

@media (max-width: 1024px) {
  
.section--news .pc{
  display: none;
}

.section--news .sp{
  display: block;
}

  
.section--news {
  padding: 60px 20px 0px 20px;
}

.section--news .col-box::before {
  left: 20px;
  top: -40px;
  width: 80px;
  height: 80px;
}

.news-cards{
  gap: 20px;
}

.news-cards > li {
  flex: 0 0 100%;
  max-width: 100%;
}

.news-card__link{
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.news-card__thumb{
  width: 100%;
}

.news-card__meta {
  font-size: 14px;
}

.news-card__pill{
  width: 100%;
  padding: 5px 10px;
  font-size: 12px;
}

.news-card__title {
  font-size: 15px;
}

}

@media screen and (max-width: 750px) {

  .news-card__meta{
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card__top{
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
}


/* =======================================
	section #concept
======================================= */

.section--concept h3{
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.section--concept h3 span{
  display: block;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #E86A2F;
  text-underline-offset: 10px;
}

.concept__txt{
  margin-top: 40px;
  margin-bottom: 60px;
}

.concept__txt p{
  line-height: 3;
  text-align: center;
}

@media screen and (max-width: 1024px) {

.section--concept h3{
  gap: 10px 0;
}

.concept__txt{
  margin-top: 30px;
  margin-bottom: 30px;
}

.concept__txt p{
  line-height: 2.2;
  text-align: left;
}

.concept__txt p br{
  display: none;
}


}

.concept__values {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0 auto;
}

.concept__values li {
  width: 220px;
  height: 220px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
}

.concept__values {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0 auto;
}

.concept__values li {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .concept__values {
    flex-wrap: wrap;
    justify-content: center;
  }

  .concept__values li {
    width: calc(50% - 10px);
    height: auto;
    aspect-ratio: 1 / 1;
    font-size: 14px;
  }

  .concept__values {
  gap: 10px;
}

.concept__values li {
  width: 170px;
  width: 170px;
}

}



.concept__values .maru {
  position: absolute;
  inset: 0;
  border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
  animation: maru-rotate 20s linear infinite;
  z-index: -1;
}

.bg-red .maru   { background: #F07A4A; }
.bg-yellow .maru { background: #FAD757; }
.bg-blue .maru  { background: #4A8DC8; }
.bg-green .maru { background: #B7DA47; }


@keyframes maru-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* =======================================
	section #facility
======================================= */

.section--facility{
  position: relative;
  padding: 130px 10%;
}

/* 左側のデコ */
.section--facility .section__contents::before {
  content: "";
  position: absolute;
  left: 100px;
  top: -30px;
  width: 120px;
  height: 120px;
  background-image: url("../img/decoration-left-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 右側のデコ */
.section--facility .section__contents::after {
  content: "";
  position: absolute;
  right: 100px;
  bottom: 60px;
  width: 120px;
  height: 120px;
  background-image: url("../img/decoration-right-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {

.section--facility .section__contents::before {
  content: "";
  position: absolute;
  left: 80px;
  top: -30px;
  width: 120px;
  height: 120px;
  background-image: url("../img/decoration-left-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.section--facility .section__contents::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: 60px;
  width: 120px;
  height: 120px;
  background-image: url("../img/decoration-right-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
}

/* 上の波 */
.section--facility::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-top.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: top;
  pointer-events: none;
}

/* 下の波 */
.section--facility::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-bottom.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: bottom;
  pointer-events: none;
}

.section--facility .section__contents{
  padding-top: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 100px;
  max-width: 1000px;
}

.facility-item-wrap{
  padding: 20px;
  background-color: #FAF8F4;
  border-radius: 15px;
  margin-bottom: 30px;
}

.facility-item-wrap .facility-item img{
  margin-bottom: 0;
}

.facility-item__txt{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/facility-deco.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.facility-item__txt p{
  font-size: 16px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  text-align: center;
}

.facility-item__txt p span{
  display: block;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #E86A2F;
  text-underline-offset: 10px;
}

#facility .col-aside{
  width: max-content;
  white-space: nowrap;
}

.facility-item img{
  width: 100%;
  margin-bottom: 10px;
  border-radius: 15px;
  height: 250px;
  object-fit: cover;
}

@media screen and (max-width: 1240px) {
  .facility-item__txt{
  background-image: url(../img/facility-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
}
}


@media screen and (max-width: 1024px) {
.section--facility{
  padding: 90px 20px;
  align-items: center;
}

/* 上の波 */
.section--facility::before {
  background-repeat: round;
}

/* 下の波 */
.section--facility::after {
  background-repeat: round;
}

/* 左側のデコ */
.section--facility .section__contents::before {
  left: 30px;
  top: -10px;
  width: 80px;
  height: 80px;
}

/* 右側のデコ */
.section--facility .section__contents::after {
  right: 20px;
  bottom: -20px;
  width: 90px;
  height: 90px;
}

.section--facility .section__contents{
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.facility-item-wrap.col-2{
  gap: 20px;
}

.facility-item__txt{
  height: 220px;
  width: 310px;
}

.facility-item img{
  margin-bottom: 5px;
}

}

/* =======================================
	section #daily
======================================= */

#daily .section__contents{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.schedule__tabs {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  align-items: end;
}

.schedule__tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: padding .2s ease, background .2s ease;
  margin-bottom: 40px;
}

.schedule__tab.is-active {
  width: 150px;
  height: 150px;
}

@media screen and (max-width: 1024px) {

.schedule__tabs {
  gap: 20px;
}

.schedule__tab {
  width: 80px;
  height: 80px;
  font-size: 14px;
  gap: 20px;
}

.schedule__tab.is-active {
  width: 100px;
  height: 100px;
}

}

.schedule__tab.red{
  background: #E75F2A;
}

.schedule__tab.yellow{
  background: #FACB3B;
}


.schedule__panel[hidden] {
  display: none;
}

.schedule__list {
  list-style: none;
  margin: 0 auto;
  max-width: 800px;
}

.schedule__list ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule__item {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  background-color: #FFF;
  height: 100px;
  border-radius: 30px;
}

.schedule__time {
  display: inline-grid;
  place-items: center;
  min-width: 100px;
  height: 35px;
  padding: 0 10px;
  background: #E75F2A;
  color: #FFF;
  font-weight: 800;
  border-radius: 100px;
}

.schedule__list.yellow .schedule__time{
  background: #FACB3B;
}

.schedule__text {
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {

  .schedule__list{
    width: 100%;
  }

  .schedule__item {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 15px 20px;
  height: auto;
}

.schedule__time{
  font-size: 14px;
  padding: 8px;
  height: auto;
  width: 80px;
  line-height: 1;
}


}


/* =======================================
	section #event
======================================= */

.section--event{
  padding: 130px 10%;
  position: relative;
}

/* 上の波 */
.section--event::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-top.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: top;
  pointer-events: none;
}

/* 下の波 */
.section--event::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-bottom.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: bottom;
  pointer-events: none;
}

#event .section__contents{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 1024px) {

  .section--event{
    padding: 90px 20px;
  }

  /* 上の波 */
  .section--event::before {
    background-repeat:round;
  }

  /* 下の波 */
  .section--event::after {
    background-repeat:round;
  }

}

.events__months.col-3{
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap:100px;
}

@media screen and (max-width: 768px) {

.events__months.col-3{
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
}

.events__month-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: max-content;
}

.events__month-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.events__month-badge {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}

.events__month-txt {
  font-size: 15px;
}

.events__photos {
  max-width: 1000px;
  margin: 0 auto;
}

.events__photo {
  height: 220px;
}

.events__photo.red{
  border-radius: 17px;
  border: solid 2px #E75F2A;
}

.events__photo.yellow{
  border-radius: 17px;
  border: solid 2px #FACB3B;
}

.events__photo.blue{
  border-radius: 17px;
  border: solid 2px #1F6FB5;
}

.events__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .events__photos{
    max-width: 100%;
  }
  .events__photo {
  height: 100%;
}

}

.events__legend {
  display: grid;
  place-items: center;
  width: 700px;
  margin: 0 auto;
  border-radius: 30px;
}

.events__legend-inner {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .events__legend {
  width: 100%;
  grid-template-columns: 1fr;
}
}

.events__legend-block {
  text-align: center;
}

.events__legend-ttl p{
  font-weight: bold;
}

.events__legend-text p{
  font-size: 14px;
}

.events__legend-sep {
  width: 8px;
  height: 60px;
  background-image: url("../img/decoration-line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 1024px) {
  .events {
    gap: 32px;
  }

  .events__legend-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events__legend-ttl p{
  text-align: center;
}

  .events__legend-text p{
    text-align: center;
  }

  .events__legend-sep {
    background-image: url("../img/decoration-line-sp.png");
    height: 8px;
    width: 60px;
    margin: 0 auto;
  }
}


/* =======================================
	section #guidance
======================================= */

.section--guidance .section__contents{
  background: #fff;
  border-radius: 30px;
  padding: 100px;
  position: relative;
}

/* 左側のデコ */
.section--guidance .section__contents::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -60px;
  width: 190px;
  height: 190px;
  background-image: url("../img/decoration-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 右側のデコ */
.section--guidance .section__contents::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 190px;
  height: 190px;
  background-image: url("../img/decoration-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.guidance__txt{
  text-align: center;
}

.guidance__txt p a,
.guidance__txt p i{
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #E86A2F;
  text-underline-offset: 10px;
}

.guidance__table{
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .section--guidance .section__contents{
    padding: 60px 20px;
  }

  .section--guidance .section__contents::before {
  left: 20px;
  top: -50px;
  width: 80px;
  height: 80px;
}

/* 右側のデコ */
.section--guidance .section__contents::after {
  right: 0px;
  bottom: -20px;
  width: 80px;
  height: 80px;
}
}

.guidance__wrap{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0;
}

.guidance__table{
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.guidance__table h5{
  margin-bottom: 5px;
}

.tb01{
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  border-radius: 15px;
}

.tb01 th,
.tb01 td{
  padding: 15px 20px;
  border: solid 1px #FFF;
  text-align:center;
  box-sizing:border-box;
}

.tb01 th {
  width: 20%;
  background: #1F6FB5;
  color: #fff;
}

.tb01 td {
  background: #e6f1f6;
  text-align: left;
}

.tb01 tr:first-child th:first-child {
  border-top-left-radius: 15px;
}

.tb01 tr:first-child td:last-child {
  border-top-right-radius: 15px;
}

.tb01 tr:last-child th:first-child {
  border-bottom-left-radius: 15px;
}

.tb01 tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}


@media screen and (max-width: 768px) {
.tb01 th {
  padding: 15px;
  width: 30%;
}

.tb01 td {
  width: 60%;
  padding: 15px;
  text-align: left;
}
}

.guidance__step {
  max-width: 700px;
  margin: 0 auto;
}

.guidance__step h5 {
  margin-bottom: 5px;
}

.guidance__step p {
  position: relative;
  padding: 15px 20px;
  background-color: #e6f1f6;
  border-radius: 15px;
  display: block;
}

.guidance__step p + p {
  margin-top: 30px;
}


/* 下向き矢印（今のデザイン維持） */
.guidance__step p:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #1F6FB5;
}



/* =======================================
	section #gallery
======================================= */

.section--gallery{
  padding: 130px 10%;
  position: relative;
}

/* 上の波 */
.section--gallery::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-top.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: top;
  pointer-events: none;
}

/* 下の波 */
.section--gallery::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/wave-bottom.png");
  background-repeat: repeat-x;
  background-size: auto 30px;
  background-position: bottom;
  pointer-events: none;
}

.gallery-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
}

.gallery-modal.is-open{
  display: flex;
}

.gallery-modal__inner{
  position: relative;
  max-width: 50vw;
  max-height: 80vh;
}

.gallery-modal__image{
  max-height: 60vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}



/* 閉じるボタン（右上） */
.gallery-modal__close{
  position: absolute;
  top: -50px;
  right: -45px;
  width: 45px;
  height: 45px;
  background: #E75F2A;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media screen and (max-width: 768px){
  .gallery-modal{
    padding: 20px;
  }

  .gallery-modal__inner{
    max-width: 85%;
    max-height: 70%;
  }

  .gallery-nav.prev{ left: -50px; }
  .gallery-nav.next{ right: -50px; }
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 2px;
}

.gallery-item{
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.gallery-item img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* タブレット */
@media screen and (max-width: 1024px){

  /* 上の波 */
.section--gallery::before {
  background-repeat:round;
}

/* 下の波 */
.section--gallery::after {
  background-repeat:round;
}

  .section--gallery{
    padding: 90px 20px;
  }

  .gallery-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .gallery-modal__close{
  right: 0px;
}

}

/* スマホ */
@media screen and (max-width: 768px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =======================================
	section #recruit
======================================= */

.section--recruit{
  padding: 100px 10% 250px 10%;
}

.link-card {
  width: 100%;
  height: 350px;
  background-image: url(../img/recruit-bg.png);
  background-size: contain;
  background-repeat: repeat;
  border-radius: 30px;
  overflow: visible;
  max-width: 1000px;
  display: flex;
  gap: 0 20px;
  padding: 80px;
  margin: 0 auto;
  position: relative;
  z-index: -2;
}


.recruit-img {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 440px;
  height: auto;
  z-index: -1;
}

.link-card .section__ttl h3 {
  font-size: 32px;
  margin-bottom: 30px;
  transition: color 0.3s ease;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #E75F2A;
  text-underline-offset: 12px;
}

@media screen and (max-width: 750px) {

.section--recruit{
  padding: 40px 20px 170px 20px;
}

.section--recruit .col-2{
  gap: 20px;
}

.link-card {
  max-width: 100%;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  display: block;
}  

.link-card .section__ttl h3{
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.link-card p{
  padding-bottom: 150px;
  text-align: center;
}

.link-card a{
  margin: 20px auto 0 auto;
}

.recruit-img {
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 200px;
}

}



