@charset "UTF-8";
body {
  padding: 62px 0 0;
}
@media (min-width: 1000px) {
  body {
    padding: 110px 0 0;
  }
}

/*
---------------------------
member一覧ページ
---------------------------*/
/*
#mainVisualLow
---------------------------*/
#mainVisualLow {
  padding: 50px 0;
}
@media (min-width: 769px) {
  #mainVisualLow {
    padding: 48px 0 80px;
  }
}

/*
#memberList
---------------------------*/
#memberList .wrap {
  width: 95%;
  max-width: 1182px;
  margin: 0 auto;
}
#memberList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#memberList ul li {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
}
#memberList ul li.hide {
  display: none;
}
#memberList ul li:nth-of-type(2n) {
  margin-right: 0;
}
#memberList ul li:nth-of-type(n+3) {
  margin-top: 30px;
}
#memberList ul li a {
  display: inline-block;
  width: 100%;
  margin-bottom: 9px;
  aspect-ratio: 1/1;
}
#memberList ul li a:hover .imgWrap img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#memberList ul li a .imgWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#memberList ul li a .imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#memberList ul li .position {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.6;
  color: #1A1A1A;
}
#memberList ul li .name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #1A1A1A;
}
#memberList .btnBox {
  width: 90%;
  max-width: 270px;
  margin: 60px auto 0;
}
#memberList .btnBox .btnBase {
  width: 100%;
}
#memberList .btnBox .btnBase button {
  width: 100%;
}
#memberList .btnBox .btnBase span::before {
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
@media (min-width: 769px) {
  #memberList .wrap {
    padding-bottom: 100px;
  }
  #memberList ul li {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
  }
  #memberList ul li:nth-of-type(2n) {
    margin-right: 24px;
  }
  #memberList ul li:nth-of-type(n+3) {
    margin-top: 0;
  }
  #memberList ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  #memberList ul li:nth-of-type(n+4) {
    margin-top: 40px;
  }
  #memberList ul li a {
    margin-bottom: 18px;
  }
  #memberList ul li .position {
    margin-bottom: 4px;
    font-size: 14px;
  }
  #memberList ul li .name {
    font-size: 20px;
  }
  #memberList ul .btnBox {
    max-width: 300px;
    margin: 100px auto 0;
  }
}

/*
#reception
---------------------------*/
#reception .wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 9px;
  padding-top: 60px;
}
#reception .imgWrap {
  width: 100%;
}
#reception .textWrap {
  position: relative;
  padding: 19px 7% 21px;
  background: #ffffff;
  z-index: 2;
}
#reception .textWrap .title {
  margin-bottom: 14px;
}
#reception .textWrap .title p {
  font-size: 22px;
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
}
#reception .textWrap .detail p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
}
@media (min-width: 769px) {
  #reception .wrap {
    margin: 0 auto 23px;
    padding-top: 100px;
  }
  #reception .imgWrap {
    height: 600px;
    margin-bottom: 254px;
  }
  #reception .imgWrap .jarallax {
    height: 100%;
  }
  #reception .textWrap {
    position: absolute;
    bottom: -240px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 37px 10px 27px;
    width: 80%;
    max-width: 791px;
  }
  #reception .textWrap .title {
    margin-bottom: 26px;
  }
  #reception .textWrap .title p {
    font-size: 28px;
  }
  #reception .textWrap .detail p {
    font-size: 20px;
    text-align: center;
  }
}

/*
.linkList
---------------------------*/
.linkList {
  position: relative;
  background: #1E2428;
}
.linkList::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-color: transparent transparent #FFFFFF #FFFFFF;
  background: #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.linkList .wrap {
  width: 87%;
  max-width: 500px;
  padding: 40px 0;
  margin: 0 auto;
}
.linkList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.linkList ul li {
  width: 100%;
}
.linkList ul li + li {
  margin-top: 10px;
}
.linkList ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 17px 23px;
  background: #ffffff;
  border: 1px solid #000000;
}
.linkList ul li a:hover .name::after {
  background-image: url(../img/common/btn_arrow_wh.svg);
}
.linkList ul li a .icon {
  width: 66px;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}
.linkList ul li a .name {
  position: relative;
  width: calc(100% - 66px - 5%);
  margin-left: 5%;
  font-size: 14px;
  font-weight: 400;
}
.linkList ul li a .name::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  background-image: url(../img/common/btn_arrow_bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 350px) {
  .linkList ul li a {
    padding: 17px 8px;
  }
  .linkList ul li a .icon {
    width: 70px;
  }
  .linkList ul li a .name {
    width: calc(100% - 70px);
    margin-left: 10px;
  }
}
@media (min-width: 769px) {
  .linkList::before {
    top: -72px;
    width: 90px;
    height: 90px;
  }
  .linkList .wrap {
    max-width: 960px;
    padding: 60px 0;
  }
  .linkList ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .linkList ul li {
    width: 33.3333333333%;
    max-width: 320px;
  }
  .linkList ul li + li {
    margin-top: 0;
  }
  .linkList ul li a {
    display: inline-block;
    width: 100%;
    padding: 20px 5px 35px;
  }
  .linkList ul li a .icon {
    width: initial;
    margin-bottom: 20px;
    font-size: 56px;
  }
  .linkList ul li a .name {
    width: initial;
    margin-left: 0;
    text-align: center;
  }
  .linkList ul li a .name::after {
    right: 15px;
  }
}
@media (min-width: 1000px) {
  .linkList ul li a .name::after {
    right: 30px;
  }
}

/*
---------------------------
member詳細ページ
---------------------------*/
/*
#profile
---------------------------*/
#profile .wrap {
  margin-top: 125px;
  background: linear-gradient(238.46deg, #827355 -3.44%, #5D435E 19.35%, #295D7E 38.64%, #1A3D53 171.44%);
}
#profile .inner {
  position: relative;
  width: 90%;
  max-width: 1040px;
  margin: auto;
  padding: 387px 0 50px;
}
#profile .main {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: -115px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
  background: #ffffff;
}
#profile .main .imgWrap {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
#profile .main .imgWrap img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
#profile .main .textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
#profile .main .textWrap .textInner {
  margin: 23px 29px 32px;
}
#profile .main .textWrap .textInner .position {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  line-height: 1.7;
  color: #000000;
}
#profile .main .textWrap .textInner .jp {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
}
#profile .main .textWrap .textInner .en {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.9;
  color: #969696;
}
#profile .detail {
  margin-top: 50px;
}
#profile .detail .introduction p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  color: #ffffff;
}
#profile .detail .other {
  margin-top: 40px;
}
#profile .detail .other dl + dl {
  margin-top: 40px;
}
#profile .detail .other dt {
  margin-bottom: 13px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 400;
  font-family: "rfafont", sans-serif;
  color: #ffffff;
  border-bottom: 1px solid #949494;
}
#profile .detail .other dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #ffffff;
}
@media (max-width: 350px) {
  #profile .inner {
    padding: 105vw 0 50px;
  }
}
@media (min-width: 769px) {
  #profile .wrap {
    margin-top: 159px;
  }
  #profile .inner {
    padding: 30vw 0 91px;
  }
  #profile .main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    right: auto;
    max-width: initial;
  }
  #profile .main .imgWrap {
    width: 45%;
    max-width: initial;
  }
  #profile .main .textWrap {
    width: 55%;
    max-width: initial;
    padding: 0 25px;
  }
  #profile .main .textWrap .textInner {
    margin: 60px auto 0;
  }
  #profile .main .textWrap .textInner .position {
    margin-bottom: 23px;
    font-size: 18px;
  }
  #profile .main .textWrap .textInner .jp {
    font-size: 44px;
  }
  #profile .main .textWrap .textInner .en {
    font-size: 18px;
  }
  #profile .detail {
    margin-top: 46px;
  }
  #profile .detail .introduction p {
    font-size: 20px;
  }
  #profile .detail .other dt {
    font-size: 26px;
  }
  #profile .detail .other dd {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  #profile .inner {
    padding: 353px 0 91px;
  }
}

/*
#profileImg
---------------------------*/
#profileImg .inner {
  width: 100%;
  max-width: initial;
  padding: 0;
}
#profileImg ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#profileImg ul li {
  width: 50%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#profileImg ul li.main {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#profileImg ul li .imgWrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
#profileImg ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  #profileImg ul li {
    width: 33.3333333333%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #profileImg ul li.main {
    width: 33.3333333333%;
  }
}

/*
#link
---------------------------*/
#link .wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 40px 0 25px;
}
#link .articleBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
}
#link .articleBtn .btnWrap + .btnWrap {
  margin-left: 15px;
}
#link .articleBtn .btnWrap.btnBase {
  width: 160px;
  background: #000000;
}
#link .articleBtn .btnWrap.btnBase a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
#link .articleBtn .btnWrap.btnBase a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto 0;
  width: 10px;
  height: 10px;
  background-image: url(../img/common/btn_arrow_wh.svg);
  background-repeat: no-repeat;
}
#link .articleBtn .btnWrap.btnBase a:hover {
  color: #000000;
}
#link .articleBtn .btnWrap.btnBase a:hover::after {
  background-image: url(../img/common/btn_arrow_bk.svg);
}
@media (min-width: 769px) {
  #link .wrap {
    padding: 60px 0 20px;
  }
  #link .articleBtn .btnWrap + .btnWrap {
    margin-left: 30px;
  }
  #link .articleBtn .btnWrap.btnBase {
    width: 240px;
  }
  #link .articleBtn .btnWrap.btnBase a {
    font-size: 16px;
  }
}/*# sourceMappingURL=member.css.map */