@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
  cursor: default;
  outline: none;
}

/* ---------------------------------------------
*   FadeIn
--------------------------------------------- */
.js-scroll-fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
@media screen and (max-width: 750px) {
  .js-scroll-fade {
    -webkit-transform: translateY(6.6666666667vw);
    transform: translateY(6.6666666667vw);
  }
}
.js-scroll-fade.fadein {
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@-webkit-keyframes slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.keyvisual__txt-area-inner-top {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: 1.55s ease 0.2s slidein forwards;
  animation: 1.55s ease 0.2s slidein forwards;
}

.contents .team-wrapper,
.contents .achive-contents-wrap,
.contents .news-list,
.contents .news,
.contents .vision,
.contents .service {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: 1.33s ease 0.2s slidein forwards;
  animation: 1.33s ease 0.2s slidein forwards;
}

.keyvisual__txt-area-inner {
  opacity: 0;
  -webkit-animation: 1.17s ease 0.27s slidein forwards;
  animation: 1.17s ease 0.27s slidein forwards;
}

/* ---------------------------------------------
*   anchor-target
--------------------------------------------- */
.anchor-target {
  border: none;
  margin: 0;
}
.anchor-target--approach {
  padding-top: 120px;
  margin-top: -120px;
}
.anchor-target--team {
  padding-top: 80px;
  margin-top: -80px;
}
@media screen and (max-width: 750px) {
  .anchor-target--team {
    padding-top: 10.6666666667vw;
    margin-top: -10.6666666667vw;
  }
}

/* ---------------------------------------------
*   top-deco
--------------------------------------------- */
.top-deco-wrap {
  position: relative;
  min-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .top-deco-wrap {
    min-width: 320px;
  }
}

.top-deco {
  position: absolute;
  top: -120px;
  right: 0;
  width: 351px;
}
@media screen and (max-width: 750px) {
  .top-deco {
    width: 62.1333333333vw;
    top: -60px;
  }
}

/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
.keyvisual {
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .keyvisual {
    padding: 2vw;
  }
}
.keyvisual--top {
  padding: 0;
  margin-top: 120px;
  height: calc(100vh - 120px);
}
@media screen and (max-width: 750px) {
  .keyvisual--top {
    padding: 0 5.3333333333vw;
    margin-top: 60px;
    margin-bottom: 37.3333333333vw;
    height: calc(100vh - 40vw - 60px);
  }
}
.keyvisual--top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  z-index: 2000;
  background-color: #fff;
}
.is-load .keyvisual--top:after {
  opacity: 0;
}

.keyvisual--index:before {
  position: absolute;
  content: "";
  width: 282px;
  height: 280px;
  top: 330px;
  left: 0;
  background: url(/img/minamo_small_L.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .keyvisual--index:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 33.8666666667vw;
    height: 37.2vw;
  }
}
.keyvisual__inner {
  width: 100%;
}
.keyvisual__img {
  width: 100%;
  height: calc(100vh - 20px);
  background: url(/img/img_keyvisual.jpg) 0 0 no-repeat;
  background-size: cover;
  background-position: center center;
}
.keyvisual__img img {
  width: 100%;
}
.keyvisual__img--child {
  height: 480px;
  background-image: url(/img/img_keyvisual-child.jpg);
}
@media screen and (max-width: 750px) {
  .keyvisual__img--child {
    height: 81.3333333333vw;
    background-image: url(/img/sp/img_keyvisual-child.jpg);
  }
}
.keyvisual__bottom-txt {
  position: absolute;
  width: calc(100% - 20px);
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1260px;
}
@media screen and (max-width: 750px) {
  .keyvisual__bottom-txt {
    left: 2vw;
    width: calc(100% - 4vw);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    bottom: 2vw;
  }
}
.keyvisual__bottom-txt img {
  width: 100%;
}
.keyvisual__txt-area-img {
  width: 79px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-area-img {
    width: 13.3333333333vw;
  }
  .keyvisual__txt-area-img img {
    width: 100%;
  }
}
.keyvisual__txt-area-txt {
  width: 576px;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-area-txt {
    width: 69.6vw;
  }
}
.keyvisual__txt-area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -35%);
  transform: translate(-50%, -35%);
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-area {
    width: 100%;
  }
}
.keyvisual__txt-area--child {
  -webkit-transform: translate(-50%, -65%);
  transform: translate(-50%, -65%);
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-area--child {
    -webkit-transform: translate(-50%, -57%);
    transform: translate(-50%, -57%);
  }
}
.keyvisual__txt-white {
  color: #fff;
  font-weight: bold;
  font-size: 66px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-white {
    font-size: 9.3333333333vw;
  }
}
.keyvisual__txt-white-border {
  border-bottom: 7px solid #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-white-border {
    border-bottom: 0.9333333333vw solid #fff;
  }
}
.keyvisual__txt-blue {
  color: #114D89;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .keyvisual__txt-blue {
    font-size: 3.7333333333vw;
    margin-top: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .keyvisual__top-contents {
    height: 100%;
  }
}
.keyvisual__top-inner {
  margin-left: 295px;
  width: calc(100% - 295px);
}
@media screen and (max-width: 750px) {
  .keyvisual__top-inner {
    margin-left: 0;
    width: 100%;
    height: 100%;
  }
}
.keyvisual__top-txt {
  position: absolute;
  top: auto;
  bottom: 18.3823529412%;
  left: 60px;
  z-index: 1000;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .keyvisual__top-txt {
    top: auto;
    bottom: -20vw;
    left: 5.0666666667vw;
    width: 78.9333333333vw;
  }
}
.is-load .keyvisual__top-txt {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  animation: 1.55s ease 0.2s slidein forwards;
  -webkit-animation: 1.55s ease 0.2s slidein forwards;
}

.keyvisual__top-img {
  width: 100%;
  height: calc(100vh - 120px);
}
@media screen and (max-width: 750px) {
  .keyvisual__top-img {
    height: 100%;
  }
}
.keyvisual__list {
  overflow: hidden;
}
.keyvisual__item {
  overflow: hidden;
}
.keyvisual__item-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.keyvisual__item-img--1 {
  background-image: url(/img/img_kv-slider_01.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--1 {
    background-image: url(/img/sp/img_kv-slider_01.png);
  }
}
.keyvisual__item-img--2 {
  background-image: url(/img/img_kv-slider_02.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--2 {
    background-image: url(/img/sp/img_kv-slider_02.png);
  }
}
.keyvisual__item-img--3 {
  background-image: url(/img/img_kv-slider_03.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--3 {
    background-image: url(/img/sp/img_kv-slider_03.png);
  }
}
.keyvisual__item-img--4 {
  background-image: url(/img/img_kv-slider_04.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--4 {
    background-image: url(/img/sp/img_kv-slider_04.png);
  }
}
.keyvisual__item-img--5 {
  background-image: url(/img/img_kv-slider_05.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--5 {
    background-image: url(/img/sp/img_kv-slider_05.png);
  }
}
.keyvisual__item-img--6 {
  background-image: url(/img/img_kv-slider_06.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--6 {
    background-image: url(/img/sp/img_kv-slider_06.png);
  }
}
.keyvisual__item-img--7 {
  background-image: url(/img/img_kv-slider_07.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--7 {
    background-image: url(/img/sp/img_kv-slider_07.png);
  }
}
.keyvisual__item-img--8 {
  background-image: url(/img/img_kv-slider_08.png);
}
@media screen and (max-width: 750px) {
  .keyvisual__item-img--8 {
    background-image: url(/img/sp/img_kv-slider_08.png);
  }
}

@media screen and (max-width: 750) and (orientation: landscape) {
  .cover {
    height: 173.3333333333vw;
  }
}

/*  swiper
--------------------------------------------- */
@-webkit-keyframes slideAnime {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideAnime {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-animation: slideAnime 10s ease-out forwards;
  animation: slideAnime 10s ease-out forwards;
}

.swiper-slide-active .keyvisual__item-img--8.slide-img,
.swiper-slide-duplicate-active .keyvisual__item-img--8.slide-img,
.swiper-slide-prev .keyvisual__item-img--8.slide-img {
  -webkit-animation: slideAnime 5s ease-out forwards;
  animation: slideAnime 5s ease-out forwards;
}

.swiper-slide img {
  width: 100%;
}

/* ---------------------------------------------
*   module
--------------------------------------------- */
.mod-ttl {
  font-size: 66px;
  font-weight: bold;
  color: #114D89;
  line-height: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .mod-ttl {
    font-size: 12.1333333333vw;
    text-align: center;
    margin-bottom: 10.6666666667vw;
  }
}
.mod-ttl--center {
  text-align: center;
}
.mod-ttl--news {
  margin-bottom: 70px;
}
.mod-ttl__border {
  border-bottom: 10px solid #114D89;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .mod-ttl__border {
    border-bottom: 1.7333333333vw solid #114D89;
  }
}

.mod__txt-l {
  font-size: 28px;
  font-weight: bold;
  color: #114D89;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .mod__txt-l {
    font-size: 5.3333333333vw;
    margin-bottom: 4vw;
  }
}
.mod__txt-l--center {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mod__txt-l--center {
    text-align: left;
  }
}
.mod__txt-l--sp-center {
  text-align: center;
}
.mod__txt-l--team {
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .mod__txt-l--team {
    margin-bottom: 5.3333333333vw;
  }
}
.mod__txt {
  font-size: 16px;
  color: #2E2D2D;
  line-height: 2.1;
}
@media screen and (max-width: 750px) {
  .mod__txt {
    font-size: 3.7333333333vw;
    text-align: justify;
  }
}
.mod__txt--center {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mod__txt--center {
    text-align: left;
  }
}
.mod__txt--right {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .mod__txt--right {
    font-size: 3.7333333333vw;
    text-align: right;
  }
}
.mod__txt-blue {
  font-size: 16px;
  color: #114D89;
  line-height: 2.1;
}
@media screen and (max-width: 750px) {
  .mod__txt-blue {
    font-size: 3.7333333333vw;
  }
}
.mod__btn {
  font-weight: bold;
  background-color: #114D89;
  text-align: center;
  height: 80px;
  width: 464px;
  line-height: 80px;
  display: block;
  margin: 0 auto;
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #114D89;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .mod__btn {
    font-size: 3.2vw;
    width: 78vw;
    border-radius: 13.3333333333vw;
    height: 13.3333333333vw;
    line-height: 12.6666666667vw;
  }
}
.mod__btn:hover {
  background-color: #fff;
  color: #114D89;
}

.mod-note__icon {
  font-size: 10px;
  color: #777777;
  position: absolute;
  top: -1em;
  right: 0;
  white-space: nowrap;
  line-height: 14px;
}
@media screen and (max-width: 750px) {
  .mod-note__icon {
    font-size: 2.4vw;
  }
}
.mod-note__txt {
  font-size: 10px;
  color: #777777;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .mod-note__txt {
    font-size: 2.4vw;
  }
}
.mod-note__sentence {
  position: relative;
}
.mod-note__txt-bold {
  font-weight: bold;
}
.mod-note__txt-italic {
  font-style: italic;
}

/* ---------------------------------------------
*   index-issue
--------------------------------------------- */
.index-issue {
  padding: 170px 0 200px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-issue {
    padding: 25.3333333333vw 0 46.6666666667vw;
  }
}
.index-issue:before {
  position: absolute;
  content: "";
  width: 887px;
  height: 1024px;
  top: -520px;
  left: 0;
  background: url(/img/minamo_big_L.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .index-issue:before {
    width: 100%;
    height: 136.5333333333vw;
    top: -58.6666666667vw;
  }
}
.index-issue__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .index-issue__inner {
    display: block;
  }
}
.index-issue__container {
  width: 1050px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-issue__container {
    width: 100%;
    display: block;
    padding: 0 6vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-issue__txt-l {
  font-size: 28px;
  font-weight: bold;
  color: #114D89;
}
.index-issue__txt {
  font-size: 16px;
  color: #2E2D2D;
}
.index-issue__txt-area {
  width: 100%;
}
.index-issue__txt-blue {
  font-size: 16px;
  color: #114D89;
}
.index-issue__left {
  width: 563px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .index-issue__left {
    width: 100%;
  }
}
.index-issue__img {
  width: 522px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .index-issue__img {
    width: 69.6vw;
    margin-top: 9.3333333333vw;
  }
}
.index-issue__img img {
  width: 100%;
}
.index-issue__right {
  width: 440px;
}
@media screen and (max-width: 750px) {
  .index-issue__right {
    width: 100%;
  }
}

.index-issue-logo {
  padding: 100px 0 200px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-issue-logo {
    padding: 0 0 46.6666666667vw;
  }
}
.index-issue-logo:before {
  position: absolute;
  content: "";
  width: 887px;
  height: 1024px;
  top: -520px;
  left: 0;
  background: url(/img/img_deco_left.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .index-issue-logo:before {
    width: 100%;
    height: 136.5333333333vw;
    top: -58.6666666667vw;
  }
}
.index-issue-logo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .index-issue-logo__inner {
    display: block;
  }
}
.index-issue-logo__container {
  width: 1050px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-issue-logo__container {
    width: 100%;
    display: block;
    padding: 0 6vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-issue-logo__txt-l {
  font-size: 28px;
  font-weight: bold;
  color: #114D89;
}
.index-issue-logo__txt {
  font-size: 16px;
  color: #2E2D2D;
}
.index-issue-logo__txt-area {
  width: 440px;
}
@media screen and (max-width: 750px) {
  .index-issue-logo__txt-area {
    width: 100%;
  }
}
.index-issue-logo__txt-blue {
  font-size: 16px;
  color: #114D89;
}
.index-issue-logo__left {
  width: 485px;
}
@media screen and (max-width: 750px) {
  .index-issue-logo__left {
    width: 100%;
  }
}
.index-issue-logo__right {
  width: 522px;
  margin-top: -90px;
}
@media screen and (max-width: 750px) {
  .index-issue-logo__right {
    width: 69.6vw;
    margin: 0 auto;
    margin-top: 9.3333333333vw;
  }
}
.index-issue-logo__right img {
  width: 100%;
}

.img_pet-bottle {
  position: absolute;
  width: 202px;
  top: 471px;
  left: 185px;
  z-index: 1;
}
.img_pet-bottle img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .img_pet-bottle {
    top: auto !important;
    left: auto !important;
    right: 22vw !important;
    width: 40vw;
    height: 43.6vw;
    bottom: -26.6666666667vw;
  }
}

.keyvisual--index + .contents .index-issue__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.keyvisual--index + .contents .index-issue__txt-area {
  width: 440px;
}
@media screen and (max-width: 750px) {
  .keyvisual--index + .contents .index-issue__txt-area {
    width: 100%;
  }
}
.keyvisual--index + .contents .index-issue__left {
  margin-top: 0;
  width: 485px;
}
@media screen and (max-width: 750px) {
  .keyvisual--index + .contents .index-issue__left {
    width: 100%;
  }
}
.keyvisual--index + .contents .index-issue__right {
  width: 522px;
  margin-top: -90px;
}
@media screen and (max-width: 750px) {
  .keyvisual--index + .contents .index-issue__right {
    margin: 9.3333333333vw auto 0;
    width: 69.6vw;
  }
}
.keyvisual--index + .contents .index-issue__right img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .keyvisual--index + .contents .index-issue-logo {
    padding-top: 17.3333333333vw;
  }
}
.keyvisual--index + .contents .index-issue-logo:before {
  background-image: url(/img/minamo_big_L.png);
}
.keyvisual--index + .contents .img_pet-bottle {
  top: 351px;
  left: auto;
  right: 160px;
}

/* ---------------------------------------------
*   approach
--------------------------------------------- */
.approach {
  padding-top: 180px;
  margin-top: -180px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .approach {
    padding-top: 100px;
    margin-top: -100px;
  }
}
.approach__container {
  padding-top: 100px;
  background-color: #ECF3FA;
  padding-bottom: 60px;
  margin-top: -30px;
  position: relative;
}
.approach__container:before {
  position: absolute;
  content: "";
  width: 282px;
  height: 280px;
  top: -132px;
  right: 0;
  background: url(/img/minamo_small_R.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .approach__container:before {
    width: 50vw;
    height: 49.6vw;
    top: -23.6vw;
  }
}
@media screen and (max-width: 750px) {
  .approach__container {
    width: 100%;
    padding: 0 6vw;
    padding-top: 36vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 9.3333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.approach__ttl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -35px;
}
@media screen and (max-width: 750px) {
  .approach__ttl {
    line-height: 1.6;
    top: -9.3333333333vw;
    z-index: 1;
  }
}
.approach__img {
  width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 750px) {
  .approach__img {
    width: 100%;
    margin: 8vw auto 9.3333333333vw;
  }
}
.approach__txt-area {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .approach__txt-area {
    text-align: left;
  }
}
.approach__list {
  width: 830px;
  margin: 0 auto;
}
.approach__list:after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 750px) {
  .approach__list {
    width: 100%;
  }
}
.approach__list-item {
  width: 240px;
  margin-right: 40px;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  float: left;
}
@media screen and (max-width: 750px) {
  .approach__list-item {
    width: 26.5333333333vw;
    margin: 0 auto;
    margin-right: 4vw;
  }
}
.approach__list-item:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .approach__list-item--none {
    float: none;
    margin-bottom: 6vw;
  }
  .approach__list-item--left {
    margin-right: 6.6666666667vw;
  }
}
.approach__link-img {
  display: block;
  width: 100%;
}
.approach__link-img:hover {
  opacity: 0.5;
}
.approach__link-img img {
  width: 100%;
}
.approach__list-item-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .approach__list-item-lower {
    margin-top: 5.3333333333vw;
  }
  .approach__list-item-lower:first-of-type {
    margin-left: 0;
  }
  .approach__list-item-lower:last-of-type {
    margin-right: 0;
  }
}

/* ---------------------------------------------
*   index-service
--------------------------------------------- */
.index-service {
  position: relative;
  padding-top: 70px;
  margin-top: -70px;
}
.index-service__container {
  width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 60px;
  padding-top: 60px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .index-service__container {
    width: 100%;
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
    border-radius: 2.6666666667vw;
    margin-top: 0;
  }
}
.index-service__txt-area {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .index-service__txt-area {
    text-align: left;
    padding: 0 6.6666666667vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 870px;
  margin: 60px auto -40px;
}
@media screen and (max-width: 750px) {
  .index-service__list {
    width: 100%;
    display: block;
    padding: 0 6.6666666667vw;
    margin: 13.3333333333vw auto 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-service__list-link {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-service__list-link:hover {
  opacity: 0.5;
}
.index-service__list-txt-l {
  font-weight: bold;
  font-size: 16px;
  color: #114D89;
  margin-top: 20px;
  margin-bottom: 15px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .index-service__list-txt-l {
    font-size: 4.5333333333vw;
    margin-top: 5.3333333333vw;
    margin-bottom: 4vw;
    height: 12.2666666667vw;
  }
}
.index-service__list-txt-blue {
  color: #114D89;
}
.index-service__list-item {
  width: 250px;
  position: relative;
  margin-right: 60px;
  margin-bottom: 40px;
}
.index-service__list-item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .index-service__list-item {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
  .index-service__list-item:last-of-type {
    margin-bottom: 0;
  }
}
.index-service__list-txt {
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .index-service__list-txt {
    font-size: 3.2vw;
  }
}
.index-service__list-img {
  margin: 0 auto;
  overflow: hidden;
  width: 250px;
  height: 146px;
}
@media screen and (max-width: 750px) {
  .index-service__list-img {
    width: 100%;
    height: auto;
  }
}
.index-service__list-img img {
  width: 100%;
}

.service-btn-wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .service-btn-wrap {
    margin-bottom: 12vw;
    margin-bottom: 5.33333vw;
  }
}

/* ---------------------------------------------
*   index-team
--------------------------------------------- */
.index-team {
  position: relative;
  padding-top: 70px;
  margin-top: -70px;
}
.index-team__outer {
  background-color: #ECF3FA;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .index-team__outer {
    padding: 0 6.6666666667vw;
    padding-bottom: 20vw;
  }
}
.index-team__container {
  width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 60px;
  padding-top: 60px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .index-team__container {
    width: 100%;
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
    border-radius: 2.6666666667vw;
    margin-top: 0;
  }
}
.index-team__txt-area {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .index-team__txt-area {
    text-align: left;
    padding: 0 6.6666666667vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-team__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 870px;
  margin: 60px auto;
}
@media screen and (max-width: 750px) {
  .index-team__list {
    width: 100%;
    display: block;
    padding: 0 6.6666666667vw;
    margin: 17.3333333333vw auto 11.3333333333vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-team__list-ttl {
  font-weight: bold;
  font-size: 24px;
  color: #114D89;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -35px;
}
@media screen and (max-width: 750px) {
  .index-team__list-ttl {
    font-size: 6.2666666667vw;
    top: -9.3333333333vw;
  }
}
.index-team__list-num {
  font-weight: bold;
  font-size: 66px;
  color: #114D89;
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .index-team__list-num {
    font-size: 17.8666666667vw;
  }
}
.index-team__list-link {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .index-team__list-link {
    width: 40vw;
    height: 40vw;
  }
}
.index-team__list-txt-l {
  font-weight: bold;
  font-size: 16px;
  color: #114D89;
  margin-top: 30px;
  margin-bottom: 20px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .index-team__list-txt-l {
    font-size: 4.5333333333vw;
    margin-top: 5.3333333333vw;
    margin-bottom: 4vw;
    height: 12.2666666667vw;
  }
}
.index-team__list-txt-l.index-team-list-en {
  height: 100px;
}
@media screen and (max-width: 750px) {
  .index-team__list-txt-l.index-team-list-en {
    height: 24.5333333333vw;
  }
}
.index-team__list-txt-blue {
  color: #114D89;
}
.index-team__list-item {
  width: 250px;
  position: relative;
  margin-right: 60px;
}
.index-team__list-item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .index-team__list-item {
    width: 100%;
    margin-bottom: 30vw;
  }
  .index-team__list-item:last-of-type {
    margin-bottom: 0;
  }
}
.index-team__list-txt {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .index-team__list-txt {
    font-size: 3.2vw;
  }
}
.index-team__list-img {
  width: 176px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-team__list-img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .index-team__list-img {
    width: 40vw;
  }
}
.index-team__list-img img {
  width: 100%;
}

.team-btn-wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .team-btn-wrap {
    margin-bottom: 5.33333vw;
  }
}

.team-mod-ttl {
  font-size: 16px;
  font-weight: bold;
  color: #114D89;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .team-mod-ttl {
    font-size: 3.7333333333vw;
    margin-bottom: 2vw;
  }
}

/* ---------------------------------------------
*   news
--------------------------------------------- */
.index-news {
  padding-top: 170px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-news {
    padding-top: 26.6666666667vw;
    padding-bottom: 0;
  }
}
.index-news:before {
  position: absolute;
  content: "";
  width: 887px;
  height: 1024px;
  top: -575px;
  right: 0;
  background: url(/img/minamo_big_R.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .index-news:before {
    width: 100%;
    height: 115.3333333333vw;
    top: -57.6vw;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.index-news:after {
  position: absolute;
  content: "";
  width: 282px;
  height: 280px;
  bottom: 50px;
  left: 0;
  background: url(/img/minamo_small_L.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .index-news:after {
    width: 50%;
    height: 49.6vw;
    bottom: -29.6vw;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: auto;
    right: 0;
    z-index: -1;
  }
}
.index-news__container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .index-news__container {
    width: 100%;
    padding: 0 7.3333333333vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.index-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .index-news__list {
    display: block;
    margin-top: 12vw;
    margin-bottom: 20vw;
  }
}
.news-list .index-news__list {
  margin-top: 60px;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .news-list .index-news__list {
    margin-top: 10vw;
  }
}

.index-news__list-item {
  margin-bottom: 100px;
  margin-left: 53px;
}
.index-news__list-item:nth-of-type(3n + 1) {
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  .index-news__list-item {
    margin: 0 auto 13.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .news-list .index-news__list-item {
    margin: 0 auto 20vw;
  }
}

.index-news__list--single .index-news__list-item {
  margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
  .index-news__list--single .index-news__list-item {
    margin-bottom: 13.3333333333vw;
  }
}

.index-news__link {
  display: block;
}
.index-news__link:hover .index-news__link-img {
  opacity: 0.5;
}
.index-news__link:hover .index-news__link-txt-line {
  background-size: 100% 2px;
}
.index-news__link-img {
  width: 298px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .index-news__link-img {
    width: 100%;
    margin-bottom: 2.6666666667vw;
  }
}
.index-news__link-img img {
  width: 100%;
}
.index-news__link-txt {
  font-size: 16px;
  font-weight: bold;
  width: 298px;
  line-height: 1.8;
  position: relative;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media screen and (max-width: 750px) {
  .index-news__link-txt {
    font-size: 4.5333333333vw;
    width: 100%;
    line-height: 1.6;
  }
}
.index-news__link-txt-line {
  background: -webkit-gradient(linear, left top, left bottom, from(#114D89), to(#114D89)) 0 100% no-repeat;
  background: linear-gradient(to bottom, #114D89 0%, #114D89 100%) 0 100% no-repeat;
  background-size: 0 2px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
.index-news__link-date {
  color: #909090;
  font-size: 13px;
  margin: 10px 0;
}
@media screen and (max-width: 750px) {
  .index-news__link-date {
    font-size: 3.4666666667vw;
    margin: 0;
    padding-top: 5.3333333333vw;
  }
}

.img_plastic-bag {
  position: absolute;
  width: 222px;
  top: -205px;
  left: -15px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .img_plastic-bag {
    position: static;
    width: 42vw;
    margin: 2.6666666667vw auto 4vw;
    top: -10.6666666667vw;
    left: -2vw;
  }
  .img_plastic-bag img {
    width: 100%;
  }
}

/* ---------------------------------------------
*   anchor-list
--------------------------------------------- */
.anchor-list-wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 80px 170px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .anchor-list-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 26.6666666667vw;
  }
}

.anchor-list:after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 750px) {
  .anchor-list {
    padding-top: 9.3333333333vw;
  }
}
.anchor-list__item {
  width: 260px;
  float: left;
  margin-right: 30px;
}
.anchor-list__item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .anchor-list__item {
    width: 45.3333333333vw;
    margin: 0 auto;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .anchor-list__item--one {
    float: none;
  }
}
@media screen and (max-width: 750px) {
  .anchor-list__item--left {
    margin-left: -1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .anchor-list__item--right {
    margin-right: -2.6666666667vw !important;
  }
}
.anchor-list__link {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.anchor-list__link:hover {
  opacity: 0.5;
}
.anchor-list__link:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  width: 15px;
  height: 15px;
  border-top: 5px solid #114D89;
  border-right: 5px solid #114D89;
}
@media screen and (max-width: 750px) {
  .anchor-list__link:after {
    bottom: 4vw;
    left: 50%;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.anchor-list__circle {
  width: 225px;
  height: 225px;
  margin: 0 auto;
  background-color: #ECF3FA;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .anchor-list__circle {
    width: 40.5333333333vw;
    height: 40.5333333333vw;
  }
}
.anchor-list__ttl {
  font-size: 24px;
  font-weight: bold;
  color: #114D89;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -35px;
}
@media screen and (max-width: 750px) {
  .anchor-list__ttl {
    font-size: 4.2666666667vw;
    top: -6.9333333333vw;
  }
}
.anchor-list__num {
  font-size: 66px;
  font-weight: bold;
  color: #114D89;
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .anchor-list__num {
    font-size: 11.8666666667vw;
  }
}
.anchor-list__txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .anchor-list__txt {
    font-size: 3.4666666667vw;
  }
}
.anchor-list__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .anchor-list__lower {
    padding-top: 4vw;
  }
}

/* ---------------------------------------------
*   service-wrapper
--------------------------------------------- */
.service-wrapper {
  background-color: #fff;
  position: relative;
  width: 1000px;
  margin: -60px auto 0;
}
.service-wrapper .index-service__container {
  background-color: #ECF3FA;
  border-radius: 0px;
}
@media screen and (max-width: 750px) {
  .service-wrapper {
    width: 100%;
    top: -8vw;
  }
}

/* ---------------------------------------------
*   team-wrapper
--------------------------------------------- */
.team-wrapper {
  background-color: #fff;
  position: relative;
  top: -60px;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .team-wrapper {
    width: 100%;
    top: -8vw;
  }
}
@media screen and (max-width: 750px) {
  .team-wrapper .anchor-list__item {
    float: none !important;
    margin-top: 8vw;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .team-wrapper .anchor-list__item:first-child {
    margin-top: 0;
  }
}

/* ---------------------------------------------
*   team
--------------------------------------------- */
.team {
  margin-top: -80px;
  padding-top: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .team {
    margin-bottom: 13.3333333333vw;
  }
}

/* ---------------------------------------------
*   team-container
--------------------------------------------- */
.team-container {
  background-color: #ECF3FA;
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .team-container {
    padding: 4vw;
    padding-bottom: 8vw;
  }
}

/* ---------------------------------------------
*   team-ttl-contents
--------------------------------------------- */
.team-ttl-contents {
  background-color: #114D89;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 880px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents {
    width: 100%;
    padding: 2.6666666667vw 4vw;
    margin-bottom: 13.3333333333vw;
  }
}
.team-ttl-contents__left {
  padding-right: 30px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__left {
    padding-right: 4vw;
  }
}
.team-ttl-contents__left-upper {
  font-size: 24px;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__left-upper {
    font-size: 3.2vw;
  }
}
.team-ttl-contents__left-lower {
  font-size: 66px;
  display: block;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__left-lower {
    font-size: 8.8vw;
  }
}
.team-ttl-contents__right {
  padding-left: 40px;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__right {
    padding-left: 5.3333333333vw;
  }
}
.team-ttl-contents__right-link {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__right-link {
    font-size: 2.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
.team-ttl-contents__ttl {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .team-ttl-contents__ttl {
    font-size: 3.2vw;
  }
}

/* ---------------------------------------------
*   team-name
--------------------------------------------- */
.team-name__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .team-name__list {
    width: 100%;
    display: block;
  }
}
.team-name__list-item {
  width: 176px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .team-name__list-item {
    width: 40vw;
    margin-bottom: 9.3333333333vw;
  }
}
.team-name__img {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .team-name__img {
    width: 40vw;
    height: 40vw;
  }
}
.team-name__ttl {
  font-size: 24px;
  font-weight: bold;
  background-color: #fff;
  color: #114D89;
  width: 840px;
  height: 63px;
  line-height: 63px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .team-name__ttl {
    font-size: 3.7333333333vw;
    width: 73.3333333333vw;
    height: auto;
    line-height: 2;
    padding: 3.3333333333vw 0;
    border-radius: 2.6666666667vw;
  }
}
.team-name__txt-position {
  color: #114D89;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .team-name__txt-position {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.team-name__txt-name {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .team-name__txt-name {
    font-size: 3.7333333333vw;
    margin-top: 2vw;
  }
}

/* ---------------------------------------------
*   team-member-contents
--------------------------------------------- */
.team-member-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .team-member-contents {
    display: block;
    margin-top: 2.6666666667vw;
    margin-bottom: 9.3333333333vw;
  }
}
.team-member-contents__txt {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .team-member-contents__txt {
    font-size: 3.7333333333vw;
  }
}
.team-member-contents__left {
  width: 50%;
  text-align: right;
  padding-right: 15px;
}
@media screen and (max-width: 750px) {
  .team-member-contents__left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.team-member-contents__right {
  width: 50%;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 750px) {
  .team-member-contents__right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

/* ---------------------------------------------
*   team-member-list
--------------------------------------------- */
.team-member-list-wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .team-member-list-wrap {
    margin-bottom: 0;
  }
}

.team-member-list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .team-member-list {
    width: 100%;
  }
}
.team-member-list__item {
  margin: 0 39px;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .team-member-list__item {
    margin: 0 auto;
    width: 29.3333333333vw;
    margin-bottom: 8vw;
  }
}
.team-member-list__item-img {
  width: 134px;
  height: 134px;
  margin: 0 auto;
  margin-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .team-member-list__item-img {
    width: 100%;
    height: auto;
    margin-bottom: 4vw;
  }
}
.team-member-list__item-txt {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .team-member-list__item-txt {
    font-size: 3.4666666667vw;
  }
}

/* ---------------------------------------------
*   team-theme
--------------------------------------------- */
.team-theme {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .team-theme {
    width: 100%;
    padding: 0 2.6666666667vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}
.team-theme__txt-blue {
  font-size: 24px;
  font-weight: bold;
  color: #114D89;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .team-theme__txt-blue {
    font-size: 4.2666666667vw;
    margin-top: 4vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
}
.team-theme__txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .team-theme__txt {
    font-size: 3.7333333333vw;
  }
}
.team-theme__img-wrap {
  width: 720px;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .team-theme__img-wrap {
    width: 100%;
    padding-bottom: 10.6666666667vw;
  }
}
.team-theme__img {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .team-theme__img {
    margin-top: 4vw;
  }
}
.team-theme__img img {
  width: 100%;
}
.team-theme__bottom-txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .team-theme__bottom-txt {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   team-service
--------------------------------------------- */
.team-service {
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
  width: 840px;
}
@media screen and (max-width: 750px) {
  .team-service {
    width: auto;
    padding: 0 2.6666666667vw 2.6666666667vw;
  }
}
.team-service__ttl {
  color: #114D89;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .team-service__ttl {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
}
.team-service__txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .team-service__txt {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.team-service__txt:last-child {
  margin-bottom: 0;
}
.team-service__txt a {
  color: #114D89;
  text-decoration: underline;
}

/* ---------------------------------------------
*   news
--------------------------------------------- */
.news {
  width: 1000px;
  margin: 0 auto;
  background-color: #ECF3FA;
  padding: 60px 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-top: -50px;
}
@media screen and (max-width: 750px) {
  .news {
    width: 100%;
    padding: 6.6666666667vw;
    margin-top: -8.6666666667vw;
  }
}
.news__ttl {
  font-size: 28px;
  font-weight: bold;
  color: #114D89;
}
@media screen and (max-width: 750px) {
  .news__ttl {
    font-size: 5.3333333333vw;
  }
}
.news__txt {
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .news__txt {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-top: 4vw;
  }
}
.news__date {
  font-size: 18px;
  color: #707070;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .news__date {
    font-size: 4vw;
    margin-top: 2.6666666667vw;
  }
}
.news__img {
  text-align: center;
}
.news__img figcaption {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .news__img figcaption {
    font-size: 2.6666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.news__img-wrap {
  width: 720px;
  margin: 0 auto;
  margin-top: 65px;
}
@media screen and (max-width: 750px) {
  .news__img-wrap {
    width: 100%;
    margin-top: 8.6666666667vw;
  }
}
.news__img-txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .news__img-txt {
    font-size: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   news-contents
--------------------------------------------- */
.news-contents__ttl {
  font-size: 24px;
  font-weight: bold;
  color: #114D89;
  margin-bottom: 15px;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .news-contents__ttl {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-bottom: 8vw;
    margin-top: 6.6666666667vw;
  }
}
.news-contents__ttl small {
  font-size: 16px;
  margin-left: 0.8rem;
}
@media screen and (max-width: 750px) {
  .news-contents__ttl small {
    font-size: 2.6666666667vw;
    display: block;
    margin-left: 0;
  }
}

/* ---------------------------------------------
*   TinyMCE
--------------------------------------------- */
.news-container > .mod-wysiwyg {
  margin-top: 65px;
}
@media screen and (max-width: 750px) {
  .news-container > .mod-wysiwyg {
    margin-top: 8.6666666667vw;
  }
}
.mod-wysiwyg p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg p {
    font-size: 3.7333333333vw;
  }
}
.mod-wysiwyg .news-contact p {
  line-height: inherit;
}
.mod-wysiwyg a {
  text-decoration: underline;
  color: #114D89;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  word-break: break-all;
}
.mod-wysiwyg a:hover {
  text-decoration: none;
}
.mod-wysiwyg .underline {
  border-bottom: 1px solid #707070;
  line-height: 1.3;
  display: inline-block;
}
.mod-wysiwyg .fw-bold {
  font-weight: bold;
}
.mod-wysiwyg .fc-blue {
  color: #114D89;
}
.mod-wysiwyg .fc-red {
  color: #C40606;
}
.mod-wysiwyg .txt-left {
  text-align: left;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .txt-left {
    margin-top: 2vw;
  }
}
.mod-wysiwyg .txt-center {
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .txt-center {
    margin-top: 2vw;
  }
}
.mod-wysiwyg .txt-right {
  text-align: right;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .txt-right {
    margin-top: 2vw;
  }
}
.mod-wysiwyg .icon-pdf {
  position: relative;
  padding-right: 14px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .icon-pdf {
    padding-right: 3.3333333333vw;
  }
}
.mod-wysiwyg .icon-pdf:after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 11px;
  height: 14px;
  background: url(/img/news/icon_pdf.svg) 0 0 no-repeat;
  background-size: 100% auto;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .icon-pdf:after {
    right: 0.4vw;
    width: 2.1333333333vw;
    height: 2.8vw;
  }
}
.mod-wysiwyg .icon-blank {
  position: relative;
  padding-right: 18px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .icon-blank {
    padding-right: 4vw;
  }
}
.mod-wysiwyg .icon-blank:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 13px;
  background: url(/img/news/icon_open.svg) 0 0 no-repeat;
  background-size: 100% auto;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .icon-blank:after {
    width: 2.9333333333vw;
    height: 2.6666666667vw;
  }
}
.mod-wysiwyg table {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg table {
    margin-top: 2.6666666667vw;
  }
}
.mod-wysiwyg table td {
  background-color: #fff;
  text-align: center;
  border-right: 2px solid #ECF3FA;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg table td {
    font-size: 3.2vw;
    border-right: 0.6666666667vw solid #ECF3FA;
    padding: 2vw;
    text-align: left;
  }
}
.mod-wysiwyg table td:last-of-type {
  border-right: none;
}
.mod-wysiwyg ul li {
  position: relative;
  padding-left: 1.5em;
  font-size: 15px;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg ul li {
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
    padding-left: 1em;
  }
}
.mod-wysiwyg ul li:before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background-color: #114D89;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg ul li:before {
    width: 3.2vw;
    height: 3.2vw;
    top: 0.6em;
  }
}
.mod-wysiwyg ol {
  counter-reset: number;
}
.mod-wysiwyg ol li {
  font-size: 15px;
  line-height: 2;
  margin-top: 10px;
  padding-left: 1.1em;
  text-indent: -1.3em;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg ol li {
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
    text-indent: -0.8em;
  }
}
.mod-wysiwyg ol li:before {
  content: counters(number, "") " ";
  counter-increment: number;
  padding-right: 0.5em;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg ol li:before {
    padding-right: 0.1em;
  }
}

/* ---------------------------------------------
*   news-border-area
--------------------------------------------- */
.mod-wysiwyg .news-border-area {
  border: 1px solid #114D89;
  margin-top: 20px;
  padding: 20px 25px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-border-area {
    margin-top: 6vw;
    padding: 2.6666666667vw 3.3333333333vw;
  }
}
.mod-wysiwyg .news-border-area__txt {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-border-area__txt {
    font-size: 3.2vw;
    line-height: inherit;
  }
}

/* ---------------------------------------------
*   news-right-border-area
--------------------------------------------- */
.news-right-border-area {
  border-left: 4px solid #114D89;
  margin-top: 30px;
  padding-left: 25px;
}
@media screen and (max-width: 750px) {
  .news-right-border-area {
    margin-top: 4vw;
    padding-left: 3.3333333333vw;
    border-left: 1.0666666667vw solid #114D89;
  }
}
.news-right-border-area__txt {
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .news-right-border-area__txt {
    font-size: 3.2vw;
    line-height: 1.8;
  }
}

/* ---------------------------------------------
*   news-bg-white-area
--------------------------------------------- */
.news-bg-white-area {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 25px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .news-bg-white-area {
    padding: 2.6666666667vw 3.3333333333vw;
    margin-top: 4vw;
  }
}
.news-bg-white-area__txt {
  font-size: 10px;
}
@media screen and (max-width: 750px) {
  .news-bg-white-area__txt {
    font-size: 3.2vw;
    line-height: 1.8;
  }
}

/* ---------------------------------------------
*   news-note
--------------------------------------------- */
.news-note {
  width: 465px;
  margin-top: 45px;
}
@media screen and (max-width: 750px) {
  .news-note {
    width: 100%;
    margin: 6vw 0;
  }
}
.news-note__txt {
  font-size: 10px;
  color: #777777;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
@media screen and (max-width: 750px) {
  .news-note__txt {
    font-size: 2.4vw;
    line-height: 1.3;
  }
}
.news-note__txt-bold {
  font-weight: bold;
}
.news-note__txt-italic {
  font-style: italic;
}

/* ---------------------------------------------
*   news-harf-contents
--------------------------------------------- */
.news-harf-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .news-harf-contents {
    display: block;
    margin-bottom: 5.3333333333vw;
  }
}
.news-harf-contents--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-harf-contents__txt {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .news-harf-contents__txt {
    font-size: 3.7333333333vw;
  }
}
.news-harf-contents__img {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .news-harf-contents__img {
    width: 100%;
  }
}
.news-harf-contents__img img {
  width: 100%;
}
.news-harf-contents__text-area {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .news-harf-contents__text-area {
    width: 100%;
    margin-top: 4vw;
  }
}

/* ---------------------------------------------
*   news-harf-img-contents
--------------------------------------------- */
.news-harf-img-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .news-harf-img-contents-wrap {
    display: block;
  }
}

.news-harf-img-contents {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .news-harf-img-contents {
    width: 100%;
    margin-bottom: 6.6666666667vw;
  }
}
.news-harf-img-contents__txt {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .news-harf-img-contents__txt {
    font-size: 2.6666666667vw;
    margin-top: 3.3333333333vw;
  }
}

/* ---------------------------------------------
*   news-contents-list
--------------------------------------------- */
.news-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .news-contents-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.news-contents-list__item {
  width: 198px;
  margin-right: 16px;
}
@media screen and (max-width: 750px) {
  .news-contents-list__item {
    margin-right: 2.9333333333vw;
  }
  .news-contents-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.news-contents-list__item:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .news-contents-list__item {
    width: 35.2vw;
    margin-bottom: 5.3333333333vw;
  }
}
.news-contents-list__txt-l {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .news-contents-list__txt-l {
    font-size: 3.2vw;
  }
}
.news-contents-list__txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .news-contents-list__txt {
    font-size: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.news-contents-list__img {
  width: 198px;
}
@media screen and (max-width: 750px) {
  .news-contents-list__img {
    width: 100%;
  }
}

/* ---------------------------------------------
*   news-bottom-contents
--------------------------------------------- */
.news-bottom-contents {
  background-color: #fff;
  padding: 20px 35px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents {
    padding: 4.6666666667vw;
    border-radius: 1.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
.news-bottom-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents__inner {
    display: block;
  }
}
.news-bottom-contents__img {
  width: 142px;
  height: 142px;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents__img {
    width: 26.8vw;
    height: 26.8vw;
    margin: 0 auto;
  }
}
.news-bottom-contents__txt-l {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents__txt-l {
    font-size: 3.2vw;
  }
}
.news-bottom-contents__txt {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents__txt {
    font-size: 3.2vw;
  }
}
.news-bottom-contents__txt-area {
  margin-top: 20px;
  margin-left: 30px;
  width: 600px;
}
@media screen and (max-width: 750px) {
  .news-bottom-contents__txt-area {
    width: 100%;
    margin-left: 0;
    margin-top: 5.3333333333vw;
  }
}

/* ---------------------------------------------
*   news-contact
--------------------------------------------- */
.mod-wysiwyg .news-contact {
  margin-top: 30px;
  background: white;
  padding: 25px 20px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-contact {
    border-radius: 0.6666666667vw;
    margin-top: 6.6666666667vw;
    padding: 3.3333333333vw 2.6666666667vw;
  }
}
.mod-wysiwyg .news-contact__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.mod-wysiwyg .news-contact__line a {
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-contact__line {
    display: block;
    margin-bottom: 0;
  }
}
.mod-wysiwyg .news-contact__line:last-of-type {
  margin-bottom: 0;
}
.mod-wysiwyg .news-contact__txt {
  font-size: 14px;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-contact__txt {
    font-size: 3.2vw;
    line-height: 2;
    margin-right: 2vw;
  }
}
@media screen and (max-width: 750px) {
  .mod-wysiwyg .news-contact__txt--inline {
    display: inline;
  }
}
.mod-wysiwyg .news-contact__link {
  color: #114D89;
  position: relative;
}
.mod-wysiwyg .news-contact__link:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  border-bottom: 1px solid #114D89;
}
.mod-wysiwyg .news-contact__link:hover:after {
  width: 0;
}

/* ---------------------------------------------
*   news-bottom-sns
--------------------------------------------- */
.news-bottom-sns {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .news-bottom-sns {
    margin-top: 10.6666666667vw;
  }
}
.news-bottom-sns__container {
  width: 115px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  .news-bottom-sns__container {
    width: 22.6666666667vw;
    margin-bottom: 8.6666666667vw;
  }
}
.news-bottom-sns__icon {
  width: 47px;
  height: 47px;
}
@media screen and (max-width: 750px) {
  .news-bottom-sns__icon {
    width: 10vw;
    height: 10vw;
  }
}
.news-bottom-sns__icon img {
  width: 100%;
}
.news-bottom-sns__icon-link {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.news-bottom-sns__icon-link:hover {
  opacity: 0.5;
}

/* ---------------------------------------------
*   news-list
--------------------------------------------- */
.news-list {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .news-list {
    margin-top: 8vw;
  }
}
.news-list__ttl {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #114D89;
}
@media screen and (max-width: 750px) {
  .news-list__ttl {
    font-size: 5.3333333333vw;
  }
}

.news-list-container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .news-list-container {
    width: 100%;
  }
}

/* ---------------------------------------------
*   page-wrap
--------------------------------------------- */
.page-wrap {
  padding-top: 25px;
  border-top: 1px solid #ECF3FA;
  width: 1000px;
  margin: 0 auto;
}
.page-wrap:after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 750px) {
  .page-wrap {
    width: 100%;
    padding-top: 4.6666666667vw;
  }
}
.page-wrap__back {
  position: relative;
  font-weight: bold;
  color: #114D89;
  font-size: 18px;
  float: left;
  padding-left: 45px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .page-wrap__back {
    font-size: 3.3333333333vw;
    padding-left: 6vw;
  }
}
.page-wrap__back:hover {
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .page-wrap__back {
    font-size: 3.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.page-wrap__back:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid #114D89;
  border-right: 3px solid #114D89;
  content: "";
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}
@media screen and (max-width: 750px) {
  .page-wrap__back:before {
    left: 0;
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    border-top: 0.4vw solid #114D89;
    border-right: 0.4vw solid #114D89;
  }
}
.page-wrap__prev {
  position: relative;
  font-weight: bold;
  color: #114D89;
  font-size: 18px;
  float: right;
  padding-right: 45px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .page-wrap__prev {
    font-size: 3.3333333333vw;
    padding-right: 6vw;
  }
}
.page-wrap__prev:hover {
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .page-wrap__prev {
    font-size: 3.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.page-wrap__prev:before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid #114D89;
  border-right: 3px solid #114D89;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .page-wrap__prev:before {
    right: 0;
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    border-top: 0.4vw solid #114D89;
    border-right: 0.4vw solid #114D89;
  }
}

/* ---------------------------------------------
*   achive-contents
--------------------------------------------- */
.achive-contents {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .achive-contents {
    width: 100%;
  }
}
.achive-contents__left {
  background-color: #114D89;
  color: #fff;
  font-size: 18px;
  width: 142px;
  height: 80px;
  line-height: 80px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .achive-contents__left {
    font-size: 3.2vw;
    width: 18vw;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
  }
}
.achive-contents__right {
  background-color: #ECF3FA;
  width: 858px;
  padding-top: 25px;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .achive-contents__right {
    width: 68.6666666667vw;
    padding-top: 4.6666666667vw;
    padding-left: 6vw;
  }
}
.achive-contents__right--acc {
  padding-top: 0;
  padding-left: 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .achive-contents__right--acc {
    padding-top: 0;
    padding-left: 0;
  }
}

.achive-contents-wrap {
  position: relative;
  top: -50px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .achive-contents-wrap {
    top: -8.6666666667vw;
  }
}

.achive-contents {
  position: relative;
}
.achive-contents__acc-trigger {
  color: #114D89;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding-left: 50px;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.achive-contents__acc-trigger:hover {
  background-color: #DFEAF4;
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-trigger {
    height: 13.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.achive-contents__acc-ttl {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-ttl {
    font-size: 3.2vw;
  }
}
.achive-contents__acc-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-btn {
    right: 4vw;
  }
}
.achive-contents__acc-btn img {
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-btn img {
    width: 2.16vw;
    padding: 1.3333333333vw;
  }
}
.achive-contents__acc-body {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
.achive-contents__acc-body-inner {
  padding: 0 80px 20px;
}
.achive-contents__acc-body .achive-list {
  display: block;
}
.achive-contents__acc-body .achive-list__item {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-body .achive-list__item {
    margin-right: 0;
  }
}
.achive-contents__acc-body .achive-list__item:not(:last-of-type) {
  border-top: 1px solid #fff;
}
.achive-contents__acc-body .achive-list__link {
  background-color: #ECF3FA;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding-left: 50px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 750px) {
  .achive-contents__acc-body .achive-list__link {
    height: 13.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.achive-contents__acc-body .achive-list__link:hover {
  background-color: #DFEAF4;
}
.achive-contents__acc-body .achive-list__link:before, .achive-contents__acc-body .achive-list__link:after {
  display: none;
}
.achive-contents__right--acc.open .achive-contents__acc-btn {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.achive-contents__right--acc.open .achive-contents__acc-body {
  visibility: visible;
}

/* ---------------------------------------------
*   achive-list
--------------------------------------------- */
.achive-list {
  color: #114D89;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.achive-list__item {
  margin-right: 70px;
}
@media screen and (max-width: 750px) {
  .achive-list__item {
    margin-right: 9.3333333333vw;
  }
}
.achive-list__link {
  font-size: 18px;
  color: #114D89;
  font-weight: bold;
  position: relative;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .achive-list__link {
    color: #114D89;
    font-size: 3.2vw;
  }
}
.achive-list__link:before {
  content: "";
  height: 2px;
  background: #114D89;
  left: 0;
  right: 100%;
  display: block;
  position: absolute;
  bottom: -6px;
  -webkit-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}
.achive-list__link:hover {
  opacity: 1;
}
.achive-list__link:hover:before {
  right: 0;
}
.achive-list__link:after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #114D89;
  border-right: 2px solid #114D89;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .achive-list__link:after {
    right: -2.6666666667vw;
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    border-top: 0.4vw solid #114D89;
    border-right: 0.4vw solid #114D89;
  }
}

/* ---------------------------------------------
*   contactページiframe配置
--------------------------------------------- */
.contact-container {
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .contact-container {
    max-width: 440px;
    width: 100%;
  }
}

/* ---------------------------------------------
*   見出し背景青テーブル
--------------------------------------------- */
table.blue-ttl td {
  padding: 15px 1em 15px 1em;
}
table.blue-ttl td:first-child {
  background-color: #114D89;
  color: #fff;
  width: 200px;
}
@media screen and (max-width: 750px) {
  table.blue-ttl td:first-child {
    width: auto;
  }
  table.blue-ttl td.txt-left {
    width: 65%;
  }
}

/* ---------------------------------------------
*   背景白dlスタイル
--------------------------------------------- */
.news-contact dl.news-contact__line dt.news-contact__txt {
  width: 126px;
  margin-right: 1em;
}
@media screen and (max-width: 750px) {
  .news-contact dl.news-contact__line {
    margin-left: 4vw;
  }
  .news-contact dl.news-contact__line dt.news-contact__txt {
    width: auto;
    margin: 0 0 0 -2vw;
  }
}

/* ---------------------------------------------
*   vision
--------------------------------------------- */
.vision {
  background-color: #ECF3FA;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: -60px;
  padding: 60px 80px;
  position: relative;
  width: 1000px;
}
@media screen and (max-width: 750px) {
  .vision {
    margin-top: -8vw;
    padding: 6.6666666667vw;
    width: 100%;
  }
}
.vision__contents {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width: 750px) {
  .vision__contents .mod__btn {
    width: 100%;
  }
}
.vision .mod__txt {
  line-height: 2;
}
.vision__ttl-lg, .vision__ttl-lg-left {
  color: #114D89;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision__ttl-lg, .vision__ttl-lg-left {
    font-size: 5.3333333333vw;
    line-height: 1.8;
    margin-top: 4vw;
    margin-bottom: 4vw;
    text-align: center;
  }
}
.vision__ttl-lg-left {
  text-align: left;
}
.vision__ttl-left {
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .vision__ttl-left {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
}
.vision__ttl-center {
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision__ttl-center {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
}
.vision__ttl-line {
  border-bottom: 1px solid #114D89;
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 14px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision__ttl-line {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-top: 4vw;
    margin-bottom: 3.7333333333vw;
    text-align: left;
  }
}
.vision__ttl-column {
  color: #114D89;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 34px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision__ttl-column {
    font-size: 4.2666666667vw;
    margin-bottom: 3.2vw;
    text-align: center;
  }
}
.vision__ttl-label {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision__ttl-label {
    margin-bottom: 3.2vw;
  }
}
.vision__ttl-label p {
  border-bottom: 1px solid #114D89;
  color: #114D89;
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .vision__ttl-label p {
    font-size: 4.2666666667vw;
  }
}
.vision__img-wrap {
  margin: 0 auto;
  padding-bottom: 60px;
  width: 300px;
}
@media screen and (max-width: 750px) {
  .vision__img-wrap {
    padding-bottom: 0;
    width: 70%;
  }
}
@media screen and (max-width: 750px) {
  .vision figure {
    margin-top: 4vw;
  }
}
.vision figure figcaption {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .vision figure figcaption {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.vision__img {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .vision__img {
    margin-top: 4vw;
  }
}
.vision__img img {
  width: 100%;
}
.vision-harf-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .vision-harf-contents {
    display: block;
  }
}
.vision-harf-contents--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.vision-harf-contents__txt {
  font-size: 16px;
  line-height: 2.1;
}
@media screen and (max-width: 750px) {
  .vision-harf-contents__txt {
    font-size: 3.7333333333vw;
  }
}
.vision-harf-contents__img {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .vision-harf-contents__img {
    width: 100%;
  }
}
.vision-harf-contents__img img {
  width: 100%;
}
.vision-harf-contents__text-area {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .vision-harf-contents__text-area {
    width: 100%;
  }
}
.vision__container-white {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 50px 50px 50px 50px;
}
@media screen and (max-width: 750px) {
  .vision__container-white {
    border-radius: 2.6666666667vw;
    margin-top: 0;
    padding: 5.0666666667vw;
    width: 100%;
  }
}
.vision__container-white .vision-harf-contents {
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .vision__container-white .vision-harf-contents {
    margin-bottom: 5.3333333333vw;
  }
}
.vision__container-white .vision-harf-contents__img {
  width: 351px;
}
@media screen and (max-width: 750px) {
  .vision__container-white .vision-harf-contents__img {
    width: 100%;
  }
}
.vision__container-white .vision-harf-contents__img img {
  width: 100%;
}
.vision__container-white .vision-harf-contents__text-area {
  width: 351px;
}
@media screen and (max-width: 750px) {
  .vision__container-white .vision-harf-contents__text-area {
    margin-top: 4vw;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .vision__container-white .mod__btn {
    width: 100%;
  }
}
.vision .communicator__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 700px;
}
@media screen and (max-width: 750px) {
  .vision .communicator__list {
    width: 100%;
  }
}
.vision .communicator__list-item {
  margin-top: 30px;
  min-width: 33.33333%;
}
.vision .communicator__list-item.leader {
  width: 100%;
}
.vision .communicator__list-item.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.vision .communicator__list-item.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.vision .communicator__list-item.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
@media screen and (max-width: 750px) {
  .vision .communicator__list-item {
    margin-top: 8vw;
    min-width: 50%;
  }
  .vision .communicator__list-item.order-2 {
    -webkit-box-ordinal-group: inherit;
    -ms-flex-order: inherit;
    order: inherit;
    width: 100%;
  }
  .vision .communicator__list-item.order-1, .vision .communicator__list-item.order-3 {
    -webkit-box-ordinal-group: inherit;
    -ms-flex-order: inherit;
    order: inherit;
  }
}
.vision .communicator__img {
  border-radius: 50%;
  height: 134px;
  margin: 0 auto 15px auto;
  overflow: hidden;
  width: 134px;
}
@media screen and (max-width: 750px) {
  .vision .communicator__img {
    height: 29.3333333333vw;
    width: 29.3333333333vw;
  }
}
.vision .communicator__ttl {
  background-color: #fff;
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  height: 63px;
  line-height: 63px;
  margin: 0 auto;
  text-align: center;
  width: 840px;
}
@media screen and (max-width: 750px) {
  .vision .communicator__ttl {
    border-radius: 2.6666666667vw;
    font-size: 3.7333333333vw;
    height: auto;
    line-height: 2;
    padding: 3.3333333333vw 0;
    width: 73.3333333333vw;
  }
}
.vision .communicator__txt-position {
  color: #114D89;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .vision .communicator__txt-position {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.vision .communicator__txt-name, .vision .communicator__txt-description {
  font-size: 14px;
  margin: 5px auto 0 auto;
  width: 162px;
}
@media screen and (max-width: 750px) {
  .vision .communicator__txt-name, .vision .communicator__txt-description {
    font-size: 3.4666666667vw;
    margin-top: 2vw;
    width: 29.3333333333vw;
  }
}
.vision .communicator__txt-name {
  font-weight: bold;
  text-align: center;
}
.vision .vision__profile {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 20px 25px 20px 25px;
}
@media screen and (max-width: 750px) {
  .vision .vision__profile {
    border-radius: 2.6666666667vw;
    display: block;
    margin-top: 0;
    padding: 5.0666666667vw;
    width: 100%;
  }
}
.vision .vision__profile__img {
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 50%;
  height: 134px;
  margin-right: 28px;
  overflow: hidden;
  width: 134px;
}
@media screen and (max-width: 750px) {
  .vision .vision__profile__img {
    height: 29.3333333333vw;
    margin: 0 auto 0 auto;
    width: 29.3333333333vw;
  }
}
.vision .vision__profile-right {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 608px;
}
.vision .vision__profile-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .vision .vision__profile-name {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
    text-align: center;
  }
}
.vision .vision__profile-description {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .vision .vision__profile-description {
    font-size: 3.4666666667vw;
  }
}

/* ---------------------------------------------
*   service
--------------------------------------------- */
.service {
  background-color: #ECF3FA;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: -60px;
  padding: 60px 80px;
  position: relative;
  width: 1000px;
}
@media screen and (max-width: 750px) {
  .service {
    margin-top: -8vw;
    padding: 6.6666666667vw;
    width: 100%;
  }
}
.service__contents {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width: 750px) {
  .service__contents .mod__btn {
    width: 100%;
  }
}
.service .mod__txt {
  line-height: 2;
}
.service__ttl-lg {
  color: #114D89;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .service__ttl-lg {
    font-size: 5.3333333333vw;
    line-height: 1.8;
    margin-top: 4vw;
    margin-bottom: 4vw;
    text-align: center;
  }
}
.service__ttl-lg-left {
  text-align: left;
}
.service__ttl-left {
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .service__ttl-left {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
}
.service__ttl-center {
  color: #114D89;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .service__ttl-center {
    font-size: 4.5333333333vw;
    line-height: 1.8;
    margin-bottom: 6.6666666667vw;
  }
}
.service__ttl-line {
  border-bottom: 1px solid #114D89;
  color: #114D89;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .service__ttl-line {
    font-size: 4.2666666667vw;
    line-height: 1.8;
    text-align: left;
  }
}
.service__txt {
  font-size: 13px;
  line-height: 1.8;
}
.service__txt-b {
  font-weight: 700;
}
.service__txt-blue {
  color: #114D89;
}
.service__img-wrap {
  margin: 0 auto;
  padding-bottom: 60px;
  width: 300px;
}
@media screen and (max-width: 750px) {
  .service__img-wrap {
    padding-bottom: 0;
    width: 70%;
  }
}
@media screen and (max-width: 750px) {
  .service figure {
    margin-top: 4vw;
  }
}
.service__img {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .service__img {
    margin-top: 4vw;
  }
}
.service__img img {
  width: 100%;
}
.service-list-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .service-list-contents {
    display: block;
  }
}
.service-list-contents--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.service-list-contents__ttl {
  color: #114D89;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .service-list-contents__ttl {
    font-size: 4.5333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .service-list-contents__txt {
    font-size: 3.4666666667vw;
  }
}
.service-list-contents__img {
  width: 250px;
}
@media screen and (max-width: 750px) {
  .service-list-contents__img {
    width: 100%;
  }
}
.service-list-contents__img img {
  width: 100%;
}
.service-list-contents__text-area {
  width: 401px;
}
@media screen and (max-width: 750px) {
  .service-list-contents__text-area {
    width: 100%;
  }
}

/* ---------------------------------------------
*   service-theme
--------------------------------------------- */
.service-theme {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .service-theme {
    width: 100%;
    padding: 0 2.6666666667vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}
.service-theme__txt-blue {
  font-size: 24px;
  font-weight: bold;
  color: #114D89;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .service-theme__txt-blue {
    font-size: 4.2666666667vw;
    margin-top: 4vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
}
.service-theme__txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .service-theme__txt {
    font-size: 3.7333333333vw;
  }
}
.service-theme__img-wrap {
  width: 840px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .service-theme__img-wrap {
    width: 100%;
    padding-bottom: 0;
  }
}
.service-theme__img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .service-theme__img {
    margin-top: 4vw;
  }
}
.service-theme__img img {
  width: 100%;
}
.service-theme__bottom-txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .service-theme__bottom-txt {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   service-feature
--------------------------------------------- */
.service-feature__img-wrap {
  width: 720px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .service-feature__img-wrap {
    width: 100%;
    padding-bottom: 0;
  }
}
.service-feature__img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .service-feature__img {
    margin-top: 4vw;
  }
}
.service-feature__img img {
  width: 100%;
}
.service-feature__bottom-txt {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .service-feature__bottom-txt {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   service-overview
--------------------------------------------- */
.service-overview__bottom-txt {
  width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .service-overview__bottom-txt {
    font-size: 3.4666666667vw;
    width: auto;
  }
}

/* ---------------------------------------------
*   service-process
--------------------------------------------- */
.service-process__img-wrap {
  width: 720px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .service-process__img-wrap {
    padding-bottom: 0;
    width: 61.3333333333vw;
  }
}
.service-process__img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .service-process__img {
    margin-top: 4vw;
  }
}
.service-process__img img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .service-process__bottom-txt {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   service-plan
--------------------------------------------- */
.service-plan {
  border-top: 1px solid #114D89;
  width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .service-plan {
    width: 100%;
  }
}
.service-plan__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-plan__ttl, .service-plan__ttl-l {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid #114D89;
  border-radius: 50%;
  color: #114D89;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.service-plan__ttl-s {
  font-size: 9px;
  line-height: 1.2;
}
.service-plan__ttl-s span {
  -webkit-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.service-plan__ttl {
  font-size: 14px;
  line-height: 1.2;
}
.service-plan__txt {
  line-height: 1.6;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .service-plan__txt {
    font-size: 3.7333333333vw;
    margin-left: 0;
    width: 100%;
  }
}
.service-plan__bottom-txt {
  width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .service-plan__bottom-txt {
    font-size: 3.7333333333vw;
    width: auto;
  }
}

/* ---------------------------------------------
*   service-team
--------------------------------------------- */
.service-team {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 140px 60px;
}
@media screen and (max-width: 750px) {
  .service-team {
    padding: 8vw 5.3333333333vw 10.6666666667vw;
  }
}
.service-team__img-wrap {
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .service-team__img-wrap {
    width: 100%;
    padding-bottom: 8vw;
  }
}
@media screen and (max-width: 750px) {
  .service-team__img {
    margin-top: 4vw;
  }
}
.service-team__img img {
  width: auto;
  height: 90px;
}
.service-team__ttl {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .service-team__ttl {
    font-size: 3.7333333333vw;
  }
}
.service-team__txt {
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .service-team__txt {
    font-size: 3.4666666667vw;
  }
}
.service-team__bottom-txt {
  border-top: 1px solid #2E2D2D;
  line-height: 1.7;
  padding-top: 30px;
}
@media screen and (max-width: 750px) {
  .service-team__bottom-txt {
    font-size: 3.4666666667vw;
    padding-top: 5.3333333333vw;
  }
}

/* ---------------------------------------------
*   slideshare用スタイル
--------------------------------------------- */
.slideWraper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

/* ---------------------------------------------
*   汎用スタイル
--------------------------------------------- */
.fw-bold {
  font-weight: bold;
}

.text-justify {
  text-align: justify;
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

.mgt-pc--5 {
  margin-top: 5px !important;
}

.mgt-pc--10 {
  margin-top: 10px !important;
}

.mgt-pc--15 {
  margin-top: 15px !important;
}

.mgt-pc--20 {
  margin-top: 20px !important;
}

.mgt-pc--25 {
  margin-top: 25px !important;
}

.mgt-pc--30 {
  margin-top: 30px !important;
}

.mgt-pc--35 {
  margin-top: 35px !important;
}

.mgt-pc--40 {
  margin-top: 40px !important;
}

.mgt-pc--45 {
  margin-top: 45px !important;
}

.mgt-pc--50 {
  margin-top: 50px !important;
}

.mgt-pc--55 {
  margin-top: 55px !important;
}

.mgt-pc--60 {
  margin-top: 60px !important;
}

.mgt-pc--65 {
  margin-top: 65px !important;
}

.mgt-pc--70 {
  margin-top: 70px !important;
}

.mgt-pc--75 {
  margin-top: 75px !important;
}

.mgt-pc--80 {
  margin-top: 80px !important;
}

.mgt-pc--85 {
  margin-top: 85px !important;
}

.mgt-pc--90 {
  margin-top: 90px !important;
}

.mgt-pc--95 {
  margin-top: 95px !important;
}

.mgt-pc--100 {
  margin-top: 100px !important;
}

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

@media screen and (max-width: 750px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }

  .mgt-sp--5 {
    margin-top: 0.6666666667vw !important;
  }

  .mgt-sp--10 {
    margin-top: 1.3333333333vw !important;
  }

  .mgt-sp--15 {
    margin-top: 2vw !important;
  }

  .mgt-sp--20 {
    margin-top: 2.6666666667vw !important;
  }

  .mgt-sp--25 {
    margin-top: 3.3333333333vw !important;
  }

  .mgt-sp--30 {
    margin-top: 4vw !important;
  }

  .mgt-sp--35 {
    margin-top: 4.6666666667vw !important;
  }

  .mgt-sp--40 {
    margin-top: 5.3333333333vw !important;
  }

  .mgt-sp--45 {
    margin-top: 6vw !important;
  }

  .mgt-sp--50 {
    margin-top: 6.6666666667vw !important;
  }

  .mgt-sp--55 {
    margin-top: 7.3333333333vw !important;
  }

  .mgt-sp--60 {
    margin-top: 8vw !important;
  }

  .mgt-sp--65 {
    margin-top: 8.6666666667vw !important;
  }

  .mgt-sp--70 {
    margin-top: 9.3333333333vw !important;
  }

  .mgt-sp--75 {
    margin-top: 10vw !important;
  }

  .mgt-sp--80 {
    margin-top: 10.6666666667vw !important;
  }

  .mgt-sp--85 {
    margin-top: 11.3333333333vw !important;
  }

  .mgt-sp--90 {
    margin-top: 12vw !important;
  }

  .mgt-sp--95 {
    margin-top: 12.6666666667vw !important;
  }

  .mgt-sp--100 {
    margin-top: 13.3333333333vw !important;
  }

  .mgt-sp--105 {
    margin-top: 14vw !important;
  }

  .mgt-sp--110 {
    margin-top: 14.6666666667vw !important;
  }

  .mgt-sp--115 {
    margin-top: 15.3333333333vw !important;
  }

  .mgt-sp--120 {
    margin-top: 16vw !important;
  }

  .mgt-sp--125 {
    margin-top: 16.6666666667vw !important;
  }

  .mgt-sp--130 {
    margin-top: 17.3333333333vw !important;
  }

  .mgt-sp--135 {
    margin-top: 18vw !important;
  }

  .mgt-sp--140 {
    margin-top: 18.6666666667vw !important;
  }

  .mgt-sp--145 {
    margin-top: 19.3333333333vw !important;
  }

  .mgt-sp--150 {
    margin-top: 20vw !important;
  }

  .mgt-sp--155 {
    margin-top: 20.6666666667vw !important;
  }

  .mgt-sp--160 {
    margin-top: 21.3333333333vw !important;
  }

  .mgt-sp--165 {
    margin-top: 22vw !important;
  }

  .mgt-sp--170 {
    margin-top: 22.6666666667vw !important;
  }

  .mgt-sp--175 {
    margin-top: 23.3333333333vw !important;
  }

  .mgt-sp--180 {
    margin-top: 24vw !important;
  }

  .mgt-sp--185 {
    margin-top: 24.6666666667vw !important;
  }

  .mgt-sp--190 {
    margin-top: 25.3333333333vw !important;
  }

  .mgt-sp--195 {
    margin-top: 26vw !important;
  }

  .mgt-sp--200 {
    margin-top: 26.6666666667vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

.mgb-pc--5 {
  margin-bottom: 5px !important;
}

.mgb-pc--10 {
  margin-bottom: 10px !important;
}

.mgb-pc--15 {
  margin-bottom: 15px !important;
}

.mgb-pc--20 {
  margin-bottom: 20px !important;
}

.mgb-pc--25 {
  margin-bottom: 25px !important;
}

.mgb-pc--30 {
  margin-bottom: 30px !important;
}

.mgb-pc--35 {
  margin-bottom: 35px !important;
}

.mgb-pc--40 {
  margin-bottom: 40px !important;
}

.mgb-pc--45 {
  margin-bottom: 45px !important;
}

.mgb-pc--50 {
  margin-bottom: 50px !important;
}

.mgb-pc--55 {
  margin-bottom: 55px !important;
}

.mgb-pc--60 {
  margin-bottom: 60px !important;
}

.mgb-pc--65 {
  margin-bottom: 65px !important;
}

.mgb-pc--70 {
  margin-bottom: 70px !important;
}

.mgb-pc--75 {
  margin-bottom: 75px !important;
}

.mgb-pc--80 {
  margin-bottom: 80px !important;
}

.mgb-pc--85 {
  margin-bottom: 85px !important;
}

.mgb-pc--90 {
  margin-bottom: 90px !important;
}

.mgb-pc--95 {
  margin-bottom: 95px !important;
}

.mgb-pc--100 {
  margin-bottom: 100px !important;
}

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

@media screen and (max-width: 750px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }

  .mgb-sp--5 {
    margin-bottom: 0.6666666667vw !important;
  }

  .mgb-sp--10 {
    margin-bottom: 1.3333333333vw !important;
  }

  .mgb-sp--15 {
    margin-bottom: 2vw !important;
  }

  .mgb-sp--20 {
    margin-bottom: 2.6666666667vw !important;
  }

  .mgb-sp--25 {
    margin-bottom: 3.3333333333vw !important;
  }

  .mgb-sp--30 {
    margin-bottom: 4vw !important;
  }

  .mgb-sp--35 {
    margin-bottom: 4.6666666667vw !important;
  }

  .mgb-sp--40 {
    margin-bottom: 5.3333333333vw !important;
  }

  .mgb-sp--45 {
    margin-bottom: 6vw !important;
  }

  .mgb-sp--50 {
    margin-bottom: 6.6666666667vw !important;
  }

  .mgb-sp--55 {
    margin-bottom: 7.3333333333vw !important;
  }

  .mgb-sp--60 {
    margin-bottom: 8vw !important;
  }

  .mgb-sp--65 {
    margin-bottom: 8.6666666667vw !important;
  }

  .mgb-sp--70 {
    margin-bottom: 9.3333333333vw !important;
  }

  .mgb-sp--75 {
    margin-bottom: 10vw !important;
  }

  .mgb-sp--80 {
    margin-bottom: 10.6666666667vw !important;
  }

  .mgb-sp--85 {
    margin-bottom: 11.3333333333vw !important;
  }

  .mgb-sp--90 {
    margin-bottom: 12vw !important;
  }

  .mgb-sp--95 {
    margin-bottom: 12.6666666667vw !important;
  }

  .mgb-sp--100 {
    margin-bottom: 13.3333333333vw !important;
  }

  .mgb-sp--105 {
    margin-bottom: 14vw !important;
  }

  .mgb-sp--110 {
    margin-bottom: 14.6666666667vw !important;
  }

  .mgb-sp--115 {
    margin-bottom: 15.3333333333vw !important;
  }

  .mgb-sp--120 {
    margin-bottom: 16vw !important;
  }

  .mgb-sp--125 {
    margin-bottom: 16.6666666667vw !important;
  }

  .mgb-sp--130 {
    margin-bottom: 17.3333333333vw !important;
  }

  .mgb-sp--135 {
    margin-bottom: 18vw !important;
  }

  .mgb-sp--140 {
    margin-bottom: 18.6666666667vw !important;
  }

  .mgb-sp--145 {
    margin-bottom: 19.3333333333vw !important;
  }

  .mgb-sp--150 {
    margin-bottom: 20vw !important;
  }

  .mgb-sp--155 {
    margin-bottom: 20.6666666667vw !important;
  }

  .mgb-sp--160 {
    margin-bottom: 21.3333333333vw !important;
  }

  .mgb-sp--165 {
    margin-bottom: 22vw !important;
  }

  .mgb-sp--170 {
    margin-bottom: 22.6666666667vw !important;
  }

  .mgb-sp--175 {
    margin-bottom: 23.3333333333vw !important;
  }

  .mgb-sp--180 {
    margin-bottom: 24vw !important;
  }

  .mgb-sp--185 {
    margin-bottom: 24.6666666667vw !important;
  }

  .mgb-sp--190 {
    margin-bottom: 25.3333333333vw !important;
  }

  .mgb-sp--195 {
    margin-bottom: 26vw !important;
  }

  .mgb-sp--200 {
    margin-bottom: 26.6666666667vw !important;
  }
}
@media screen and (min-width: 751px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-hide {
    display: none !important;
  }
}