@charset "utf-8";

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

  当院について

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

/*----------------------------------------------------------------------------------------------------

 イントロ
  
----------------------------------------------------------------------------------------------------*/
.m-red {
  background: linear-gradient(rgba(255,255,255,0) 55%, #ffd3c7 55%);
  font-weight: 400; 
}

.m-blue {
  background: linear-gradient(rgba(255,255,255,0) 55%, #CAEDE2 55%);
  font-weight: 400; 
}

.m-green {
  background: linear-gradient(rgba(255,255,255,0) 55%, #81E69F 55%);
  font-weight: 400; 
}



.recruit .inner{
  display: flex;
}

@media screen and (min-width: 641px) {
  .recruit .inner{
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .recruit .inner .img-box{
    max-width: 500px;
  }

  .recruit .inner .txt-box{
    max-width: 750px;
    margin-right: 30px;
  }
    
}

@media screen and (max-width: 640px) {
  .recruit .inner{
    flex-wrap: wrap;
    justify-content: center;
  }
    
  .recruit .inner .txt-box{
    margin-bottom: 30px;
  }

}

/*----------------------------------------------------------------------------------------------------

  
----------------------------------------------------------------------------------------------------*/

span.sub{
  font-size: 20px;
}

@media screen and (min-width: 641px) {
  
    
}

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

    
}

.intro{
  margin-bottom: 60px;
}

.list{
  padding-left: 20px;
}

.list li:not(:last-child){
  margin-bottom: 5px;
}

.feature-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

@media screen and (max-width: 640px) {
.feature-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 30px;
}
    
}

.feature-list li{
  background-color: #F2FFDB;
}
.feature-list li p{
  padding: 20px;
}

.recommended-box{
  padding: 20px 40px;
  background: #F2FFDB;
}

.mb-60{
margin-bottom: 60px;
}

.mb-30{
margin-bottom: 30px;
}

.recommended-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
}

.recommended-list li{
  display: flex;
  align-items: center;
}
.recommended-list li::before{
  content: '';
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #19873b;
  border-bottom: 2px solid #19873b;
  transform: rotate(-45deg);
  margin-right: 10px;
}


/*----------------------------------------------------------------------------------------------------

  
----------------------------------------------------------------------------------------------------*/
.rec-contents{
  margin-bottom: 60px;
}

.rec-table{
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.rec-table dt{
  color: #19873b;
  font-weight: 500;
  padding:20px;
  /* background-color:#F2FFDB; */
  background-color:#ededed;
  width: 20%;
}

.rec-table dd {
   padding: 20px;
  background-color:#ededed;
  width: calc(80% - 2px);
}

.rec-table dd >ul{
  padding-left:2em;
}

.rec-table dd .map{
margin-top: 10px;
}

.rec-table dd .map iframe{
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 640px) {
.rec-table{
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  flex-direction: column;
}

.rec-table dt{
  padding: 10px 20px;
  background-color:#F2FFDB;
  width: 100%;
}

.rec-table dd {
   padding: 10px 20px;
  width: 100%;
}
    
}


.bg-ttl{
  text-align: center;
  background-color: #19873b;
  padding: 0.5em 0;
  border-radius: 20px;
  margin-bottom: 30px;
  color: white;
  font-weight: 500;
}