@charset "utf-8";
/* ----------------------------------------
 mv
------------------------------------------- */
#mv {
  background: url("../images/index-images/mv.jpg") 50% 50% no-repeat;
  background-size: cover;
}
#mv .wrap01 {
  min-height: 700px;
  position: relative;
}
#mv .catch {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
#mv .catch h2 {
  font-size: min(4.4444vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 40px;
}
#mv .catch h2 span {
  color: #825b50;
}
#mv .catch p {
  font-size: min(2.0740vw, 2.8rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 40px;
}
#mv .catch h3 {
  font-size: min(2.0740vw, 2.8rem);
  font-weight: 700;
  line-height: 1.8;
}
#mv .catch h3 span {
  color: #fff;
  background-color: #ff7c44;
  border-radius: 10px;
  padding: 5px 15px;
  margin-right: 0.5em;
}
/* ----------------------------------------
 news
------------------------------------------- */
.im-list li {
  background-color: #e54e35;
  border-radius: 20px;
  padding: 20px 40px;
  margin-bottom: 40px;
}
.im-list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.im-list dl dt {
  color: #fff;
  font-size: min(1.6296vw, 2.2rem);
  font-weight: 700;
}
.im-list dl dt i {
  color: #fff280;
  font-size: min(2.2222vw, 3rem);
  margin-right: 10px;
}
.im-list dl dt span {
  color: #fbedb7;
  font-size: min(1.3333vw, 1.8rem);
  margin-left: 1em;
}
.im-list dl dd a {
  display: block;
  position: relative;
  color: #e54e35;
  background-color: #fff;
  font-size: min(1.1851vw, 1.6rem);
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 20px;
  transition: 0.4s ease-in-out;
}
.im-list dl dd a::after {
  display: inline-block;
  font-family: 'Font Awesome 6 Free';
  content: "\f0da";
  color: #ffbea2;
  margin-left: 0.5em;
}
.im-list dl dd a:hover {
  transform: scale(1.05, 1.05);
}

.news {
  background-color: #eeeae6;
  border-radius: 20px;
  padding: 40px 20px;
}
.news-list {
  margin-bottom: 30px;
}
.news-list li {
  width: 100%;
  max-width: 700px;
  border-bottom: 2px dotted #bfbfbf;
  padding-bottom: 15px;
  margin: 0 auto 15px auto;
}
.news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0 auto;
}
.news-list li dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list li dl dt {
  width: 25%;
}
.news-list li dl dd {
  width: 75%;
}
/* ----------------------------------------
 features
------------------------------------------- */
#features .txt01 {
  text-align: center;
  margin-bottom: 40px;
}
#features ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#features ul li {
  width: 31%;
}
#features ul li .img-box {
  padding-top: 62%;
  margin-bottom: 10px;
}
#features ul li h3 {
  color: #825b50;
  font-size: min(1.4814vw, 2rem);
  border-bottom: 1px solid #825b50;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
/* ----------------------------------------
 medical
------------------------------------------- */
#medical {
  background: url("../images/cmn-images/medical-bg.jpg") 50% 50% no-repeat;
  background-size: cover;
}
#medical ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1175px;
  margin: 0 auto;
}
#medical ul li {
  width: 23%;
  transition: 0.4s ease-in-out;
}
#medical ul li:hover {
  transform: scale(1.05, 1.05);
}
/* =======================
  PC
======================== */
@media screen and (min-width: 1350px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1349px) {}
/* =======================
  SP
======================== */
@media screen and (max-width: 799px) {
  /* ----------------------------------------
 mv
------------------------------------------- */
  #mv {
    background: url("../images/index-images/mv-sp.jpg") 100% 0% no-repeat;
    background-size: cover;
  }
  #mv .catch {
  top: auto;
  bottom: 20px;
  transform: translate(0, 0);
}
  #mv .wrap01 {
    min-height: 500px;
    position: relative;
  }
  #mv .catch h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #mv .catch p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  #mv .catch h3 {
    font-size: 1.1rem;
  }
  #mv .catch h3 span {
    padding: 5px 10px;
	margin-right: 0.2em;
  }
  /* ----------------------------------------
 news
------------------------------------------- */
  .im-list li {
    border-radius: 20px;
    padding: 20px 20px;
    margin-bottom: 30px;
  }
  .im-list dl {
    display: block;
  }
  .im-list dl dt {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 15px;
  }
  .im-list dl dt i {
    font-size: 2rem;
    margin-right: auto;
  }
  .im-list dl dt span {
    display: block;
    font-size: 1.4rem;
    margin-left: auto;
  }
  .im-list dl dd a {
    display: block;
    max-width: 250px;
    box-sizing: border-box;
    font-size: 1.5rem;
    text-align: center;
    padding: 15px 30px;
	border-radius: 30px;
    margin: 0 auto;
  }
  .news {
    background-color: #eeeae6;
    border-radius: 20px;
    padding: 30px 20px;
  }
  .news-list {
  margin-bottom: 10px;
  }
  .news-list li dl {
    display: block;
  }
  .news-list li dl dt {
    width: 100%;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .news-list li dl dd {
    width: 100%;
  }
 .news  .cmn-btn01 a{
    display: block;
    max-width: 250px;
	box-sizing: border-box;
    margin: 0 auto;
  }
  /* ----------------------------------------
 features
------------------------------------------- */
  #features .txt01 {
    text-align: left;
    margin-bottom: 30px;
  }
  #features ul {
    display: block;
    margin-bottom: -30px;
  }
  #features ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  #features ul li .img-box {
    padding-top: 62%;
    margin-bottom: 10px;
  }
  #features ul li h3 {
    color: #825b50;
    font-size: 2rem;
    border-bottom: 1px solid #825b50;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  /* ----------------------------------------
 medical
------------------------------------------- */
  #medical ul {
    width: 80%;
    margin-bottom: -20px;
  }
  #medical ul li {
    width: 45%;
    margin-bottom: 20px;
  }
}