/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal, [data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 99999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay, .remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.modal_cap {
  text-align: left;
  font-weight: normal;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 23px;
}

a.modal_linkbtn {
  display: block;
  width: 280px;
  padding: 20px;
  background: #fff;
  border-radius: 100px;
  color: #1d8b5b;
  text-align: center;
  margin: 10px auto;
  font-weight: bold;
  font-size: 1.5rem;
}

.remodal_inner {
  display: flex;
  align-items: center;
}

.modal_image {
  width: 35%;
  overflow: hidden;
}

.modal_image img {
  width: 100%;
  height: auto;
}

.modal_prof {
  width: 100%;
  padding: 30px 30px 20px;
  border: 1px solid #fff;
}

.modal_name {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 34px;
}

.modal_name span {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.modal_cap a {
    color: #fff;
    text-decoration: underline;
    font-size: 1.2rem;
}
.modal_inner_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal_thumb {
    width: 42%;
    margin: 0;
}

.modal_detail {
    width: 52%;
}

.modal_position {
    margin-bottom: 25px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.shikaku_titke {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.shikaku {
    font-size: 1.2rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.shikaku span {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 100%;
    margin-right: 10px;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/

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

.modal_inner_area {
    display: block;
    justify-content: space-between;
    align-items: center;
	}
  .remodal_inner {
    display: block;
    align-items: center;
  }
	.modal_detail {
    width: 100%;
	}
  .modal_thumb {
    width: 140px;
    margin: 0 auto 10px;
    overflow: hidden;
    height: 140px;
    border-radius: 100%;
 }
	.modal_position {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.25rem;
	}
  .modal_name {
    font-size: 1.6rem;
    color: #fff;
    line-height: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  .modal_name span {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .modal_cap {
    text-align: left;
    font-weight: normal;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 20px;
  }
  a.modal_linkbtn {
    display: block;
    width: 240px;
    padding: 20px;
    background: #fff;
    border-radius: 100px;
    color: #1d8b5b;
    text-align: center;
    margin: 10px auto;
    font-weight: bold;
    font-size: 1.3rem;
  }
  .modal_prof {
    width: 100%;
    margin-left: 0;
    font-size: 1.1rem;
    padding: 20px 20px 10px;
}
	.modal_position {
		margin-bottom: 16px;
		text-align: center;
		font-size: 1.25rem;
	}

.shikaku_titke {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 13px;
}

.shikaku {
    font-size: 1.1rem;
    margin: 6px 0;
    display: flex;
    align-items: center;
    line-height: 18px;
}

.shikaku span {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 100%;
    margin-right: 10px;
}


	
}