@charset "UTF-8";
/* About Section
--------------------------------*/
#about .about-content {
  padding-top: 40px; }
  #about .about-content h2 {
    color: #413e66;
    font-family: "Montserrat", sans-serif;
    font-weight: 700; }
  #about .about-content h3 {
    color: #696592;
    font-weight: 400;
    font-size: 22px;
    font-style: italic; }
  #about .about-content ul {
    list-style: none;
    padding: 0; }
    #about .about-content ul li {
      padding-bottom: 10px; }
      #about .about-content ul li i {
        font-size: 20px;
        padding-right: 4px;
        color: #1bb1dc; }
#about .about-img {
  position: relative;
  margin: 30px 30px 30px 30px; }
  #about .about-img img {
    width: 100%;
    border: 8px solid #fff;
    transition: .5s; }
    #about .about-img img:hover {
      width: 100%;
      transform: scale(1.03); }
  #about .about-img::before {
    position: absolute;
    left: -31px;
    top: -30px;
    width: 90%;
    height: 92%;
    z-index: -1;
    content: '';
    background-color: #ebf1fa;
    transition: 0.5s; }
  #about .about-img::after {
    position: absolute;
    right: -31px;
    bottom: -30px;
    width: 90%;
    height: 92%;
    z-index: -1;
    content: '';
    background-color: #ebf1fa;
    transition: 0.5s; }

/* features Section
--------------------------------*/
#features .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center; }
  #features .box:hover {
    transform: scale(1.1); }
#features .title-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px; }
#features .title {
  font-weight: 700;
  margin: 0 -10px 15px -15px;
  font-size: 16px; }
#features .box:hover .title a {
  color: #1bb1dc; }
#features .description {
  line-height: 28px;
  margin-bottom: 0;
  text-align: left; }

/* movie Section
--------------------------------*/
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden; }
  .movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
