section {
  position: relative;
}
@media(max-width:768px) {

  section .alt__anc {
    margin-top: -70px;
    padding-top: 70px;
  }

}

@media(min-width:769px) {

  section .alt__anc {
    margin-top: -100px;
    padding-top: 100px;
  }

}

.section__mv {
  position: relative;
}
.section__mv .mv__caption__wrap {
  color: #fff;
  height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.mv__caption__wrap h1 strong,
.mv__caption__wrap .mv__caption {
  background: rgba(0,0,0,.6);
}
.mv__caption__wrap .mv__caption {
  display: inline-block;
}
.section__mv picture {
  display: block;
}

@media(max-width:768px) {

  .section__mv {
    margin-bottom: 20%;
  }
  .section__mv .inner__wrap {
    width: 96%;
  }
  .mv__caption__wrap h1 {
    margin-bottom: .8%;
  }
  .mv__caption__wrap h1 strong {
    /* font-size: 36px; */
    font-size: 4.9vw;
    line-height: 1.52;
    padding: 0.26em 0.2em;
  }
  .mv__caption__wrap .mv__caption {
    /* max-width: 496px;
    font-size: 16px; */
    font-size: 3.12vw;
    letter-spacing: .03em;
    /* margin-bottom: 3.6%; */
    margin-bottom: 60px;
    padding: 0.3em 1em;
  }
  .mv__caption ul li,
  .mv__caption p {
    line-height: 2.125;
  }
  .mv__caption p {
    padding-left: 1em; 
  }
  .section__mv picture {
  min-height: 100vh;
  }
  .section__mv picture img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

}

@media(min-width:769px) {

  .section__mv {
    margin-bottom: 136px;
  }
  .mv__caption__wrap h1 {
    margin-bottom: .8%;
  }
  .mv__caption__wrap h1 strong {
    font-size: 36px;
    line-height: 1.52;
    padding: 0.26em 0.2em;
  }
  .mv__caption__wrap .mv__caption {
    max-width: 496px;
    font-size: 16px;
    letter-spacing: .03em;
    margin-bottom: 3.6%;
    padding: 0.3em 1em;
  }
  .mv__caption ul li,
  .mv__caption p {
    line-height: 2.125;
  }
  .mv__caption p {
    padding-left: 1em; 
  }
  .section__mv picture {
  min-height: 810px;
  }
  .section__mv picture img {
    width: 100%;
    height: 810px;
    object-fit: cover;
  }

}

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

  .mv__caption__wrap h1 strong {
    font-size: 4.04vw;
  }
  .mv__caption__wrap .mv__caption {
    font-size: 1.79vw;
  }

}



/* service */
.section__service {}
.service__item a {
  display: block;
}
.service__item figure {
  box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
  border-radius: 20px;
  display: block;
  overflow: hidden;
}
.service__item h3 {
  background: url(../images/common/icon_blank.svg) 100% 50% / auto .7em no-repeat;
  display: inline-block;
  padding-right: 1.3em;
}

@media(max-width:768px) {


  .section__service {
    margin-bottom: 20%;
  }
  .section__service .service__contents {
    margin-top: 8%;
  }
  .service__contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .service__contents .service__item {
    /* width: 48%; */
    margin-bottom: 8%;
  }
  .service__item h3 {
    font-size: 2rem;
    margin: 14px auto 5px;
    position: relative;
  }
  .service__item a h3:before {
    background: #333;
    content: '';
    width: calc(100% - 1.3em);
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .service__item p {
    font-size: 1.4rem;
    line-height: 1.8;
  }


}

@media(min-width:769px) {

  .section__service {
    margin-bottom: 110px;
  }
  .section__service .service__contents {
    margin-top: 54px;
  }
  .service__contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .service__contents .service__item {
    width: 30%;
    margin-bottom: 50px;
  }
  .service__item figure img {
    transition: all .5s;
  }
  .service__item a:hover figure img {
    transform: scale(1.1);
  }
  .service__item h3 {
    font-size: 20px;
    margin: 14px auto 5px;
    position: relative;
  }
  .service__item a h3:before {
    background: #333;
    content: '';
    width: calc(100% - 1.3em);
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .service__item a:hover h3:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .service__item p {
    line-height: 2.125;
  }

}


/* vision */
.section__vision {
}

.section__vision .vision__contents {
  background: #f6f6f9;
}
.vision__contents h3 {
  color: #465585;
  text-align: center;
  margin-bottom: 1.5em;
}


@media(max-width:768px) {

  .section__vision {
    margin-bottom: 20%;
  }
  .vision__contents {
    width: 94%;
    padding: 5.4em 4% 4%;
    margin: -3.4em auto 0;
  }
  .vision__contents p {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-bottom: 1em;
    text-align: center;
  }

}

@media(min-width:769px) {

  .section__vision {
    margin-bottom: 136px;
  }
  .vision__contents {
    margin-top: -95px;
    padding: 127px 0 70px;
  }
  .vision__contents p {
    line-height: 3.375;
    margin-bottom: 0;
    text-align: center;
  }

}



/* message */
.section__message {
  position: relative;
}
.section__message .inner__wrap {
  position: relative;
}
.section__message:before {
  content: "";
  position: absolute;
  left: 0;
  background: #f6f6f9;
}
.message__contents * {
  font-weight: normal;
}

.message__contents h3 {
  color: #465585;
}
.message__contents strong {
  display: block;
  text-align: right;
}

@media(max-width:768px) {

  .section__message {
    margin-bottom: 20%;
  }
  .section__message:before {
    top: 96px;
    width: 77.66%;
    height: 424px;
  }
  .section__message .message__contents {
    margin-top: 3em;
  }
  .message__contents figure {
    display: block;
  }
  .message__contents div {
    padding-top: 4.3%;
  }
  .message__contents h3 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.6%;
  }
  .message__contents p {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 1.5em;
  }
  .message__contents strong {
    font-size: 1.3rem;
  }

}

@media(min-width:769px) {

  .section__message {
    margin-bottom: 132px;
  }
  .section__message:before {
    top: 70px;
    width: 66.66%;
    height: 404px;
  }
  .section__message .message__contents {
    margin-top: 54px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .message__contents figure {
    display: block;
    width: 47.28%;
    max-width: 520px;
  }
  .message__contents div {
    width: 46.37%;
    max-width: 510px;
    padding-top: 4.3%;
  }
  .message__contents h3 {
    font-size: 30px;
    line-height: 1.8;
    margin-bottom: 4.6%;
  }
  .message__contents p {
    line-height: 2;
    margin-bottom: 2.3em;
  }

}



/* profile */
.section__profile {}
.section__profile .profile__contents {}
.profile__contents .profile__table__wrap {}
.profile__table__wrap table.profile__table {
  border-spacing: 0;
  margin-right: auto;
  margin-left: auto;
}
.profile__table tr > * {
  text-align: left;
  font-weight: normal;
}
.profile__map__wrap iframe {
  width: 100%;
}


@media(max-width:768px) {


  .section__profile {}
  .section__profile .profile__contents {
    margin-top: 24px;
  }
  .profile__table__wrap table.profile__table {
    margin-bottom: 8%;
  }
  .profile__table tr > * {
    height: 2.6em;
    padding-top: .5em;
    padding-bottom: .5em;
    font-size: 1.4rem;
  }

  .profile__table th {
    border-bottom: 1px solid #465585;
    width: 7em;
  }
  .profile__table td {
    border-bottom: 1px solid #d9d9d9;
    padding: 0.5em 0 0.5em 1.4em;
  }
  .profile__map__wrap iframe {
    height: 92vw;
  }

}

@media(min-width:769px) {

  .section__profile {}
  .section__profile .profile__contents {
    margin-top: 24px;
  }
  .profile__table__wrap table.profile__table {
    margin-bottom: 30px;
    max-width: 1020px;
    width: 94%;
  }
  .profile__table tr > * {
    height: 76px;
  }

  .profile__table th {
    border-bottom: 1px solid #465585;
    width: 160px;
  }
  .profile__table td {
    border-bottom: 1px solid #d9d9d9;
    padding: 1em 0 1em 2.4em;
  }
  .profile__map__wrap iframe {
    height: 620px;
  }

}
