@charset "utf-8";

/* CSS Document */

/*
  font-family: 'Renner',sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
*/



/***********
pageHeading
************/

.pageHeading {
  padding-top: 80px;
}
.pageHeading-block {
  display: flex;
  align-items: flex-end;
  padding: 20px 0 20px;
}
.pageHeading-subTitle {
  font-family: 'Renner',sans-serif;
  font-weight: normal;
  font-size: 300%;
  color: #d90056;
  letter-spacing: 0.08em;
  line-height: 1;
}
.pageHeading-title {
  color: #d90056;
  font-size: 131%;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  padding-left: 1em;
  padding-bottom: 0.2em;
  line-height: 1;
}

@media screen and (max-width:834px) {

  .pageHeading {
    padding-top: 55px;
  }
  .pageHeading-block {
    padding: 15px 0 20px;
    display: block;
  }
  .pageHeading-subTitle {
    font-size: 220%;
    line-height: 1;
  }
  .pageHeading-title {
    font-size: 100%;
    padding-top: 0.5em;
    padding-left: 0;
  }


}


/***********
breadcrumb
************/

.breadcrumb{
  padding-top: 5px;
  font-feature-settings: "palt";
  font-size: 85%;
}
.breadcrumb-lists{
  display: flex;
}
.breadcrumb-lists li{
  max-width: 15em;
  color: #d90056;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg) translateY(-2px);
  margin: 0 10px 0 5px;
}
.breadcrumb-lists li a{
  color: #666;
  text-decoration: none;
}
.breadcrumb-lists li a:hover{
  color: #d90056;
  text-decoration: underline;
}


@media screen and (max-width:834px) {

  .breadcrumb{
    padding: 5px 0 5px 0;
    font-size: 70%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb-lists{
    display: flex;
    white-space: nowrap;
    padding-left: 5%;
  }
  .breadcrumb-lists li:last-child{
    padding-right: 20px;
  }
  .breadcrumb-lists li i{
    margin-right: 0.2em;
  }
  .breadcrumb-lists li:not(:last-child)::after{
    margin: 0 6px 0 2px;
  }

}


/***********
pageVisual
************/

.pageVisual{
  padding-top: 80px;
  margin-bottom: -80px;
  position: relative;
}

.pageVisual-img{
  height: 500px;
  background-position: center center;
  background-size: cover;
}
.pageVisual-img > img{
  display: none;
}

.pageVisual-slider li a{
  display: block;
}


/*
slick
*/

.pageVisual .slick-slide{
  opacity: 0.3;
  transition:all 0.2s ease;
}
.pageVisual .slick-slide li {
  vertical-align: bottom;
}
.pageVisual .slick-active{
  opacity: 1;
}

.pageVisual .slick-dots{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -35px;
  display: flex;
  justify-content: center;
  padding-left: 00px;
}
.pageVisual .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #aaa;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.pageVisual .slick-dots .slick-active button{
  background-color: #fff;
  box-shadow: 0 0 0 1px #aaa;
}



.pageVisual .slick-next,
.pageVisual .slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  z-index: 99;
}
.pageVisual .slick-next{
  right: 20px;
}
.pageVisual .slick-prev{
  left: 20px;
}
.pageVisual .slick-next span,
.pageVisual .slick-prev span{
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: -40px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background-color: #d90056;
}

.pageVisual .slick-next span::before,
.pageVisual .slick-prev span::before{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -5px;
}
.pageVisual .slick-next span::before{
  transform: rotate(45deg);
  margin-left: -8px;
}
.pageVisual .slick-prev span::before{
  transform: rotate(-135deg);
  margin-left: -3px;
}

@media screen and (max-width:834px) {

  .pageVisual{
    padding-top: 55px;
    margin-bottom: -55px;
  }

  .pageVisual-img{
    height: 60vmin;
  }

  /*
  slick
  */

  .pageVisual .slick-dots{
    bottom: 0;
  }
  .pageVisual .slick-dots button{
    width: 5px;
    height: 5px;
    margin: 0 3px;
  }
  .pageVisual .slick-dots .slick-active button{
    box-shadow: 0 0 0 1px #aaa;
  }


  .pageVisual .slick-next,
  .pageVisual .slick-prev{
    transform: scale(0.8);
  }
  .pageVisual .slick-next{
    right: 0px;
  }
  .pageVisual .slick-prev{
    left: 0px;
  }

}


/***********
pageLink
************/

.pageLink {
  display: flex;
  font-feature-settings: "palt";
  margin-bottom: 30px;
}
.pageLink li {
  flex: 1;
  background-color: rgba(221, 223, 231, 0.5);
  position: relative;
}
.pageLink li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  position: absolute;
  right: 0;
  top: 20%;
  background-color: #ccc;
}
.pageLink a {
  display: block;
  white-space: nowrap;
  padding: 1.2em 0 1.5em;
  text-align: center;
  text-decoration: none;
  font-size: 108%;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  color: #1b1464;
  position: relative;
}
.pageLink a:hover {
  background-color: rgba(221, 223, 231, 0.5);
}
.pageLink a::after {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f078";
  line-height: 1;
  color: #1b1464;
  font-size: 14px;
  position: absolute;
  left: 50%;
  bottom: 5px;
}

@media screen and (max-width:834px) {

  .pageLink {
    display: flex;
    overflow: auto;
    margin-bottom: 40px;
  }
  .pageLink a {
    padding: 1.2em 1em 1.5em;
    font-size: 93%;
  }
  .pageLink a:hover {
    background-color: transparent;
  }
  .pageLink a::after {
    font-size: 12px;
    bottom: 3px;
  }

}

/***********
pageNavi
************/

.pageNavi{
  background-color: #dddfe7;
  padding: 60px 0;
}
.pageNavi.is-white {
  background-color: #fff;
}


.pageNavi-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
}
.pageNavi-list li {
  width: 30%;
  margin-left: 3%;
  margin-bottom: 15px;
  position: relative;
}
.pageNavi-list li::after {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f054";
  line-height: 1;
  color: #d90056;
  font-size: 16px;
  transform: scaleY(0.6) translateY(-1em);
  position: absolute;
  right: 0;
  top: 50%;
}
.pageNavi-list a {
  display: block;
  padding: 1.2em 30px 1.2em 0;
  color: #1b1464;
  text-decoration: none;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 131%;
  position: relative;
}
.pageNavi-list a::before,
.pageNavi-list a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #666;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right;
  transition: transform 0.3s ease;
}
.pageNavi-list a::before{
  opacity: 0.5;
}
.pageNavi-list a::after{
  transform: scaleX(0);
}
.pageNavi-list a:hover{
  color: #d90056;
}
.pageNavi-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  opacity: 0.5;
  background-color: #d90056;
}

@media screen and (max-width:834px) {

  .pageNavi{
    padding: 0 0;
  }

  .pageNavi-list {
    display: block;
    margin-left: 0;
  }
  .pageNavi-list li {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
  }
  .pageNavi-list li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .pageNavi-list li::after {
    font-size: 12px;
    right: 10px;
    top: 50%;
  }
  .pageNavi-list a {
    padding: 1.2em 30px 1.2em 5%;
    font-size: 108%;
  }
  .pageNavi-list a::before,
  .pageNavi-list a::after {
    display: none;
  }
  .pageNavi-list a:hover{
    color: #1b1464;
  }

}



/***********
orgChart
************/

.orgChart{
  background-color: #e9ecf3;
  padding: 30px 3% 50px;
  font-feature-settings: "palt";
}
.orgChart-logo{
  text-align: center;
  padding-bottom: 15px;
}
.orgChart-logo img  {
  width: 160px;
  height: 80px;
}
.orgChart-heading {
  font-size: 185%;
  color: #1b1464;
  text-align: center;
  padding-bottom: 15px;
}

.orgChart-grid {
  display: grid;
  grid-gap : 15px;
  grid-template-columns: 11fr 9fr;
}
.orgChart-grid-item {
  background: #fff;
  padding: 40px 20px;
}
.orgChart-grid-item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.orgChart-grid-item:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 5;
}

.orgChart-title {
  font-size: 147%;
  text-align: center;
}
.orgChart-text{
  line-height: 1.5;
  text-align: center;
}

.orgChart-member {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: -20px;
}
.orgChart-member li {
  width: 150px;
  padding: 0 2px 20px;
}
.orgChart-member-img {
  max-width: 120px;
  margin: 0 auto;
}
.orgChart-member-cat {
  background-color: #333;
  color: #fff;
  font-size: 93%;
  padding: 2px 0;
  line-height: 1.3;
}
.orgChart-member-cat.is-chemistry {
  background-color: #42b3aa;
}
.orgChart-member-cat.is-biology {
  background-color: #ea7324;
}
.orgChart-member-cat.is-theoretical {
  background-color: #662d8a;
}

.orgChart-member-name {
  font-size: 108%;
  line-height: 1.3;
  padding-top: 8px;
}
.orgChart-member-text {
  font-size: 85%;
  line-height: 1.2;
  padding-top: 5px;
}

@media screen and (max-width:834px) {

  .orgChart{
    padding: 30px 5% 30px;
    margin-left: -5%;
    margin-right: -5%;
  }
  .orgChart-logo{
    padding-bottom: 10px;
  }
  .orgChart-logo img  {
    width: 100px;
    height: 50px;
  }
  .orgChart-heading {
    font-size: 131%;
    padding-bottom: 15px;
  }

  .orgChart-grid {
    display: block;
  }
  .orgChart-grid-item {
    background: #fff;
    padding: 20px 15px;
    margin: 10px 0;
  }

  .orgChart-title {
    font-size: 124%;
  }
  .orgChart-text{
    line-height: 1.4;
  }

  .orgChart-member {
    margin-bottom: -10px;
  }
  .orgChart-member li {
    width: 110px;
    padding: 0 5px 20px;
  }
  .orgChart-member-img {
    max-width: 100px;
    margin: 0 auto;
  }
  .orgChart-member-cat {
    font-size: 85%;
  }

  .orgChart-member-name {
    font-size: 100%;
  }
  .orgChart-member-text {
    font-size: 77%;
  }


}




/***********
floorMap
************/

.floorMap {
  display: flex;
  justify-content: space-between;
}
.floorMap-img {
  width: 50%;
  min-width: 400px;
}
.floorMap-inner {
  flex: 1;
  padding-left: 30px;
}

.floorMap-data {
  padding-bottom: 60px;
  display: flex;
}
.floorMap-data dt {
  font-size: 300%;
  font-weight: normal;
  font-family: 'Renner',sans-serif;
  white-space: nowrap;
  line-height: 1;
}
.floorMap-data dd {
  flex: 1;
  padding-left: 20px;
  font-size: 116%;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7;
}

@media screen and (max-width:834px) {

  .floorMap {
    display: flex;
    justify-content: space-between;
  }
  .floorMap-img {
    width: 65%;
    min-width: initial;
    margin-left: -35%;
  }
  .floorMap-inner {
    padding-left: 10px;
  }

  .floorMap-data {
    padding-bottom: 3vmin;
  }
  .floorMap-data dt {
    font-size: 200%;
  }
  .floorMap-data dd {
    padding-left: 10px;
    font-size: 93%;
    line-height: 1.5;
  }

}


/***********
access
************/

.access {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.access-map {
  width: 55%;
}
.access-map img {
}
.access-block {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-right: 50px;
}
.access-inner {
}
.access-address {
  font-size: 116%;
  line-height: 2;
  font-style: normal;
}
.access-address a {
  color: #d90056;
}
.access-img {
}
.access-img img {
}
.access-img figcaption {
  font-size: 116%;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  color: #1b1464;
  padding-bottom: 0.8em;
}

@media screen and (max-width:834px) {

  .access {
    display: block;
  }
  .access-map {
    width: auto;
    text-align: center;
    padding-bottom: 30px;
  }
  .access-block {
    display: block;
    padding-right: 0;
  }
  .access-inner {
  }
  .access-address {
    font-size: 100%;
    line-height: 1.8;
    font-style: normal;
  }
  .access-address a {
    color: #d90056;
  }
  .access-img {
    padding-top: 40px;
  }
  .access-img img {
  }
  .access-img figcaption {
    font-size: 100%;
  }

}

/***********
refine
************/

.refine{
  padding-bottom: 60px;
  font-feature-settings: "palt";
}
.refine-data {
  display: flex;
  padding-bottom: 10px;
}
.refine-data dt {
  width: 5em;
  font-size: 116%;
  font-weight: bold;
  padding-top: 0.5em;
}
.refine-data dd {
  flex: 1;
}


.refine-list {
  display: flex;
  flex-wrap: wrap;
}
.refine-list li {
  margin: 0 5px 5px 0;
}
.refine-list a {
  display: inline-block;
  background-color: #dddfe7;
  text-decoration: none;
  color: #333;
  font-size: 108%;
  padding: 0.6em 1.2em;
  border-radius: 50px;
}
.refine-list a:hover,
.refine-list a.is-active {
  background-color: #d90056;
  color: #fff;
}

.refine-selecter {
}
.refine-selecter form {
}
.refine-selecter-select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../img/select_arrow.png) no-repeat right center;
  width: 640px;
  background-color: #dddfe7;
  padding: 5px 10px 5px 10px;
  font-size: 16px;
  height: 50px;
  border-radius: 8px;
  border: none;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.refine-search {
  padding-top: 10px;
}
.refine-search-block {
  display: flex;
  justify-content: space-between;
}
.refine-search-input {
  width: calc(100% - 80px);
  background: #dddfe7;
  padding: 5px 10px 5px 10px;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  border: none;
  box-shadow: none;
  border-radius: 8px;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
}
.refine-search-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  width: 80px;
}
.refine-search-submit svg {
  width: 26px;
  height: 26px;
  fill: #333;
}

@media screen and (max-width:834px) {

  .refine{
    padding-bottom: 30px;
    margin-right: -5%;
    overflow: hidden;
  }
  .refine-data {
  }
  .refine-data dt {
    width: 4.5em;
    font-size: 100%;
    overflow: auto;
  }
  .refine-data dd {
    overflow: auto;
  }


  .refine-list {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .refine-list li {
    margin: 0 2px 2px 0;
  }
  .refine-list a {
    font-size: 93%;
    padding: 0.5em 1em;
  }
  .refine-list a:hover,
  .refine-list a.is-active {
  }


  .refine-selecter {
  }
  .refine-selecter form {
  }
  .refine-selecter-select {
    width: auto;
    max-width: 240px;
    padding: 5px 30px 5px 10px;
    font-size: 16px;
    height: 40px;
    border-radius: 5px;
  }


  .refine-search {
    padding-top: 5px;
  }
  .refine-search-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: calc(100% - 60px);
    padding: 5px 10px 5px 10px;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
  }
  .refine-search-submit {
    width: 60px;
  }
  .refine-search-submit svg {
    width: 20px;
    height: 20px;
  }

}

/***********
article
************/

.article {
}
.article-heading {
  padding: 40px 0;
  font-feature-settings: "palt";
}
.article-heading-data {
  display: flex;
  flex-wrap: wrap;
  font-size: 108%;
  padding-bottom: 20px;
}
.article-heading-type {
  display: inline-block;
  color: #d90056;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
}
.article-heading-type::after {
  content: "|";
  padding: 0 0.5em;
}
.article-heading-cat {
  display: inline-block;
  color: #d90056;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  padding-right: 0.2em;
}
.article-heading-cat:not(:last-of-type)::after {
  content: "、";
}
.article-heading-time {
  display: inline-block;
  padding-left: 1em;
  font-family: 'Renner',sans-serif;
}
.article-heading-title {
  font-size: 250%;
  color: #1b1464;
}


.article-block {
  background-color: #fff;
}
.article-visual {
  text-align: center;
}
.article-visual img {
}
.article-inner {
  padding: 60px 8%;
}

.article-post{
  font-size: 1.31rem;
  line-height: 2;
}


.article-info {
}
.article-info-title {
  font-size: 200%;
  font-family: 'Renner',sans-serif;
  font-weight: 500;
  color: #d90056;
  letter-spacing: 0.08em;
}
.article-info-inner {
  background-color: rgba(221, 223, 231, 0.5);
  padding: 40px 6%;
}

.article-info-table{
}
.article-info-table tr{
  border-bottom: 1px solid #ccc;
}
.article-info-table th{
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  font-size: 1.31rem;
  width: 12em;
  padding: 15px 0;
  line-height: 1.8;
}
.article-info-table td{
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  font-size: 1.31rem;
  padding: 15px 0;
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .article {
  }
  .article-heading {
    padding: 40px 0;
  }
  .article-heading-data {
    font-size: 85%;
    padding-bottom: 15px;
  }
  .article-heading-type {
  }
  .article-heading-type::after {
  }
  .article-heading-cat {
  }
  .article-heading-time {
  }
  .article-heading-title {
    font-size: 147%;
  }


  .article-block {
    background-color: #fff;
  }
  .article-visual {
    text-align: center;
  }
  .article-visual img {
  }
  .article-inner {
    padding: 30px 0;
  }

  .article-post{
    font-size: 1.16rem;
    line-height: 2;
  }


  .article-info {
  }
  .article-info-title {
    font-size: 154%;
    padding-bottom: 5px;
  }
  .article-info-inner {
    padding: 10px 5% 20px;
  }

  .article-info-table{
    font-feature-settings: "palt";
    font-size: 93%;
  }
  .article-info-table tr{
  }
  .article-info-table th{
    width: 8em;
    font-size: 1rem;
    padding: 10px 0;
    line-height: 1.8;
  }
  .article-info-table td{
    padding: 10px 0;
    font-size: 1rem;
  }

}

/***********
memberHeader
************/

.memberSubCat {
  padding-bottom: 40px;
}
.memberSubCat a {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  padding: 1em 2em;
  border-radius: 100vw;
  background-color: #fff;
  color: #1b1464;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 139%;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  position: relative;
}
.memberSubCat a[href]::after {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f054";
  line-height: 1;
  color: #d90056;
  transform: scaleY(0.6) translateY(-70%);
  position: absolute;
  right: 1em;
  top: 50%;
}
body.is-pc .memberSubCat a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.memberSubCat a:not([href]){
  pointer-events: none;
}
.memberSubCat a:not([href])::after {
  display: none;
}

@media screen and (max-width:834px) {

  .memberSubCat {
    padding-bottom: 20px;
  }
  .memberSubCat a {
    width: auto;
    min-width: 160px;
    max-width: 80%;
    font-feature-settings: "palt";
    padding: 0.5em 1.5em 0.5em 1.5em;
    font-size: 108%;
  }
  .memberSubCat a[href]::after {
    right: 0.5em;
  }
}

/***********
memberGroupList
************/

.memberGroupList{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}
.memberGroupList li {
  width: 23%;
  margin-left: 2%;
  margin-bottom: 40px;
}
.memberGroupList a {
  display: block;
  color: #000;
  text-decoration: none;
}
.memberGroupList a:not([href]) {
  pointer-events: none;
}
body.is-pc .memberGroupList a:hover .memberGroupList-inner{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.memberGroupList-img {
  position: relative;
  z-index: 9;
  width: 45%;
  margin: 0 auto;
}
.memberGroupList-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center top;
}

.memberGroupList-inner {
  background-color: #fff;
  padding: 65px 15px 0;
  margin-top: -50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
.memberGroupList-box {
  padding-bottom: 5px;
}
.memberGroupList-title {
  font-size: 124%;
  line-height: 1.35;
  color: #1b1464;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}
.memberGroupList-text {
  padding-top: 0.5em;
  opacity: 0.7;
  font-size: 93%;
}
.memberGroupList-cat {
  font-weight: bold;
  font-size: 85%;
  font-feature-settings: "palt";
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  padding: 12px 35px 12px 0;
  color: #d90056;
  line-height: 1.2;
}
.memberGroupList-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #d90056;
  width: 32px;
  height: 32px;
}
.memberGroupList-btn::before,
.memberGroupList-btn::after{
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transition: 0.3s;
}
.memberGroupList-btn::after{
  transform: rotate(90deg);
}
.memberGroupList a:not([href]) .memberGroupList-btn {
  display: none;
}

@media screen and (max-width:834px) {

  .memberGroupList{
    margin-bottom: -20px;
  }
  .memberGroupList li {
    width: 48%;
    margin-bottom: 20px;
  }
  .memberGroupList-img {
    width: 40%;
  }
  .memberGroupList-img img {
    height: 18vmin;
  }

  .memberGroupList-inner {
    padding: 45px 15px 0;
    margin-top: -30px;
  }
  .memberGroupList-box {
    padding-bottom: 5px;
  }
  .memberGroupList-title {
    font-size: 100%;
  }
  .memberGroupList-text {
    font-size: 69%;
  }
  .memberGroupList-cat {
    font-size: 77%;
    padding: 8px 20px 8px 0;
  }
  .memberGroupList-btn {
    width: 22px;
    height: 22px;
  }
  .memberGroupList-btn::before,
  .memberGroupList-btn::after{
    width: 7px;
    height: 1px;
    left: 7px;
  }

}

/***********
memberList
************/

.memberList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -3%;
}
.memberList li {
  width: 47%;
  margin-left: 3%;
  margin-bottom: 3%;
}
.memberList a {
  display: flex;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.memberList a:not([href]) {
  pointer-events: none;
}
body.is-pc .memberList a:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.memberList-img {
  width: 26%;
}
.memberList-img img {
  width: 100%;
  height: 150px;
  min-height: 100%;
  object-fit: cover;
}

.memberList-inner {
  flex: 1;
  padding: 30px 20px 40px;
  position: relative;
}
.memberList-title {
  font-size: 154%;
  line-height: 1.35;
  color: #1b1464;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}
.memberList-text {
  padding-top: 1em;
  opacity: 0.7;
  font-size: 93%;
}
.memberList-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #d90056;
  width: 76px;
  height: 32px;
  padding-top: 11px;
  padding-left: 10px;
  color: #fff;
  font-family: 'Renner',sans-serif;
  font-weight: 700;
  line-height: 1;
}

.memberList-btn::before,
.memberList-btn::after{
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: 0.3s;
}
.memberList-btn::after{
  transform: rotate(90deg);
}
.memberList a:not([href]) .memberList-btn {
  display: none;
}

@media screen and (max-width:834px) {

  .memberList {
    font-size: 12px;
  }
  .memberList-img img {
    height: 15vmin;
    min-height: 15vmin;
  }
  .memberList-inner {
    padding: 15px 10px 40px;
  }

}

@media screen and (max-width:640px) {

  .memberList {
    display: block;
    margin-left: 0;
    margin-bottom: -5px;
  }
  .memberList li {
    width: auto;
    margin-left: 0;
    margin-bottom: 5px;
    position: relative;
  }
  .memberList li a {
    position: static;
    align-items: center;
  }

  .memberList-img {
    width: 26%;
  }
  .memberList-img img {
    height: 25vmin;
    min-height: 25vmin;
  }

  .memberList-inner {
    position: static;
    padding: 12px 10px 30px;
  }
  .memberList-title {
    font-size: 116%;
  }
  .memberList-text {
    opacity: 0.7;
    padding-top: 0.5em;
    font-size: 85%;
  }
  .memberList-btn {
    width: 55px;
    height: 24px;
    padding-top: 8px;
    padding-left: 5px;
    font-size: 10px;
  }

  .memberList-btn::before,
  .memberList-btn::after{
    width: 7px;
    height: 1px;
    right: 8px;
  }

}

/***********
memberDivisionList
************/

.memberDivisionList{
  display: flex;
  margin-left: -2%;
  margin-bottom: -20px;
}
.memberDivisionList li {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 20px;
  font-size: 131%;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  color: #1b1464;
  background-color: #fff;
  height: 6em;
  padding: 0 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-feature-settings: "palt";
}

@media screen and (max-width:834px) {

  .memberDivisionList{
    margin-bottom: -10px;
  }
  .memberDivisionList li {
    margin-bottom: 10px;
    font-size: 100%;
    height: 4em;
    padding: 0 0.5em;
  }

}



/***********
memberMinList
************/


.memberMinList {
}
.memberMinList li {
  margin-bottom: 10px;
}
.memberMinList a {
  display: flex;
  width: 100%;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 25px 70px 25px 25px;
  position: relative;
}
.memberMinList a:not([href]) {
  pointer-events: none;
}
body.is-pc .memberMinList a:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.memberMinList-title {
  font-size: 154%;
  line-height: 1.35;
  color: #1b1464;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}
.memberMinList-text {
  opacity: 0.7;
  font-size: 93%;
  padding-left: 20px;
  padding-top: 0.5em;
}
.memberMinList-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d90056;
  width: 76px;
  height: 32px;
  padding-top: 11px;
  padding-left: 10px;
  color: #fff;
  font-family: 'Renner',sans-serif;
  font-weight: 700;
  line-height: 1;
}

.memberMinList-btn::before,
.memberMinList-btn::after{
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: 0.3s;
}
.memberMinList-btn::after{
  transform: rotate(90deg);
}
.memberMinList a:not([href]) .memberMinList-btn {
  display: none;
}

@media screen and (max-width:834px) {

  .memberMinList li {
    margin-bottom: 5px;
  }
  .memberMinList a {
    padding: 15px 50px 15px 15px;
    position: relative;
    display: block;
  }
  .memberMinList a:not([href]) {
    pointer-events: none;
  }
  body.is-pc .memberMinList a:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  .memberMinList-title {
    font-size: 116%;
  }
  .memberMinList-text {
    opacity: 0.7;
    padding-left: 0;
    padding-top: 0.5em;
    font-size: 85%;
  }

  .memberMinList-btn {
    width: 55px;
    height: 24px;
    padding-top: 8px;
    padding-left: 5px;
    font-size: 10px;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
  }

  .memberMinList-btn::before,
  .memberMinList-btn::after{
    width: 7px;
    height: 1px;
    right: 8px;
  }

}


/***********
memberHeader
************/

.memberHeader {
  display: flex;
  justify-content: space-between;
}
.memberHeader-visual {
  width: 28%;
}
.memberHeader-img {
}
.memberHeader-img img {
}
.memberHeader-id {
  padding-top: 10px;
}
.memberHeader-id a {
  display: inline-block;
  border-radius: 0 15px 0 15px;
  background-color: #666;
  color: #fff;
  font-family: 'Renner',sans-serif;
  font-size: 116%;
  text-decoration: none;
  padding: 0.5em 1.5em 0.3em;
}
.memberHeader-id span {
  color: #e89a3b;
  padding-right: 0.2em;
}
.memberHeader-id a:hover {
  background-color: #d90056;
}

.memberHeader-inner {
  width: 65%;
}
.memberHeader-heading {
  border-bottom: 1px solid #d90056;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.memberHeader-heading-title {
  font-size: 240%;
  font-weight: bold;
  color: #1b1464;
  letter-spacing: 0.1em;
}
.memberHeader-heading-text {
  color: #666;
}
.memberHeader-link {
  line-height: 2;
  font-size: 116%;
  padding-bottom: 1.5em;
}
.memberHeader-link strong {
  color: #d90056;
}
.memberHeader-link a {
}
.memberHeader-link small {
  display: inline-block;
}
.memberHeading-text {
  font-size: 116%;
  line-height: 2;
}

@media screen and (max-width:834px) {

  .memberHeader {
    display: block;
  }
  .memberHeader-visual {
    width: auto;
    padding-bottom: 20px;
  }
  .memberHeader-img {
    text-align: center;
  }
  .memberHeader-img img {
    width: 40%;
    max-width: 160px;
  }
  .memberHeader-id {
    padding-top: 10px;
    text-align: center;
  }
  .memberHeader-id a {
    border-radius: 0 10px 0 10px;
    font-size: 93%;
  }
  .memberHeader-inner {
    width: auto;
  }
  .memberHeader-heading {
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
  }
  .memberHeader-heading-title {
    font-size: 147%;
    letter-spacing: 0.02em;
  }
  .memberHeader-heading-text {
    font-size: 93%;
  }
  .memberHeader-link {
    line-height: 1.5;
    font-size: 93%;
  }
  .memberHeading-text {
    font-size: 108%;
    line-height: 1.8;
  }

}

/***********
memberProfile
************/

/*既存からコピペして使える*/

.memberProfile table{
  font-size: 116%;
  line-height: 1.8;
}
.memberProfile table th{
  padding-bottom: 0.5em;
  text-align: left;
  vertical-align: top;
}
.memberProfile table td{
  padding-bottom: 0.5em;
    vertical-align: top;
}

@media screen and (max-width:834px) {

  .memberProfile table{
    font-size: 93%;
    line-height: 1.7;
  }
  .memberProfile table td:first-child{
    width: 7em;
    vertical-align: top;
  }
  .memberProfile table td{
  }


}

/***********
newsList
************/

@media screen and (min-width:835px) {

  .newsList.l-topicsList li a{
    padding-left: 20px;
  }
  .newsList.l-topicsList li a:hover {
    background-color: rgba(221, 223, 231, 0.5);
  }

}


/***********
giveInquiry
************/

.giveInquiry {
  background-color: #fff;
  margin: 50px auto;
  padding: 40px 8%;
  text-align: center;
}
.giveInquiry-lead {
  font-size: 147%;
  text-align: center;
  padding-bottom: 1em;
}

.giveInquiry-box {
  display: inline-block;
  text-align: left;
  padding: 20px 0;
}

.giveInquiry-data{
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
}
.giveInquiry-data dt {
  width: 5em;
  font-size: 147%;
  font-family: 'Renner',sans-serif;
  background-color: #dddfe7;
  text-align: center;
  padding: 0.2em 0 0.1em;
  border-radius: 100px;
}
.giveInquiry-data dd {
  flex: 1;
  padding-left: 20px;
}

.giveInquiry-link {
  color: #1b1464;
  font-size: 220%;
  text-decoration: none;
  font-family: 'Renner',sans-serif;
}
.giveInquiry-text {
  font-size: 116%;
}

@media screen and (max-width:834px) {

  .giveInquiry {
    margin: 30px auto;
    padding: 30px 5%;
  }
  .giveInquiry-lead {
    font-size: 116%;
    line-height: 1.8;
  }

  .giveInquiry-box {
    padding: 10px 0;
  }

  .giveInquiry-data{
    padding-bottom: 10px;
  }
  .giveInquiry-data dt {
    width: 4em;
    font-size: 100%;
  }
  .giveInquiry-data dd {
    font-size: 85%;
    flex: 1;
    padding-left: 10px;
  }

  .giveInquiry-link {
    font-size: 154%;
  }
  .giveInquiry-text {
    font-size: 93%;
  }

}


/***********
giveGift
************/

.giveGift {
  display: flex;
  justify-content: space-between;
  font-feature-settings: "palt";
  margin-top: 40px;
}
.giveGift li {
  width: 32%;
  padding: 30px 20px;
  background-color: rgba(221, 223, 231, 0.5);
  text-align: center;
}
.giveGift-title {
  font-size: 147%;
  padding-bottom: 0.5em;
  color: #1b1464;
}
.giveGift-text {
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .giveGift {
    display: block;
    margin-top: 20px;
  }
  .giveGift li {
    width: auto;
    padding: 25px 5%;
    margin-bottom: 15px;
  }
  .giveGift-title {
    font-size: 124%;
  }
  .giveGift-text {
    line-height: 1.8;
  }

}


/***********
giveUse
************/

.giveUse {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  padding-top: 50px;
}
.giveUse li {
  width: 47%;
  margin-left: 3%;
  margin-bottom: 50px;
  position: relative;
}
.giveUse li::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
}

.giveUse-img {
  text-align: center;
  position: relative;
  z-index: 2;
}
.giveUse-img img {
  width: 86%;
}
.giveUse-inner {
  padding: 0 7% 30px;
  position: relative;
  z-index: 2;
}
.giveUse-title {
  font-size: 147%;
  color: #1b1464;
  padding: 20px 0 15px;
  text-align: center;
}
.giveUse-text {
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .giveUse {
    display: block;
    margin-left: 0;
    padding-top: 30px;
    max-width: 480px;
    margin: 0 auto;
  }
  .giveUse li {
    width: auto;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .giveUse-inner {
    padding: 0 7% 20px;
  }
  .giveUse-title {
    font-size: 124%;
    padding: 20px 0 15px;
  }

}




/***********
giveTips
************/

.giveTips {
  border: 1px solid #1b1464;
  padding: 30px 5%;
  margin-top: 30px;
  text-align: center;
}
.giveTips-title {
  font-size: 185%;
  padding-bottom: 0.5em;
}
.giveTips .giveTips-text {
  font-size: 131%;
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .giveTips {
    padding: 30px 5%;
    margin-top: 20px;
    text-align: center;
  }
  .giveTips-title {
    font-size: 139%;
  }
  .giveTips .giveTips-text {
    font-size: 108%;
    line-height: 1.8;
  }

}


/***********
faq
************/

.faq {
  border-bottom: 1px solid #ccc;
}
.faq-title {
  font-size: 139%;
  padding: 15px 50px 15px 0;
  position: relative;
  cursor: pointer;
}
.faq-title:hover {
  text-decoration: underline;
}
.faq-title::before,
.faq-title::after{
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background-color: #d90056;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.3s;
}
.faq-title::after{
  transform: rotate(90deg);
}
.is-active.faq-title::after{
  transform: rotate(180deg);
}
.faq-answer {
  background-color: #fff;
  padding: 30px 5% 30px 80px;
  position: relative;
  font-size: 1.16rem;
  line-height: 2;
}
.faq-answer::before {
  content: "A";
  font-size: 36px;
  font-family: 'Renner',sans-serif;
  color: #d90056;
  position: absolute;
  left: 35px;
  top: 30px;
  line-height: 1;
}

@media screen and (max-width:834px) {

  .faq {
  }
  .faq-title {
    font-size: 116%;
    padding: 15px 30px 15px 0;
  }
  .faq-title:hover {
  }
  .faq-title::before,
  .faq-title::after{
    width: 12px;
    height: 2px;
    right: 0;
  }
  .faq-answer {
    padding: 20px 5% 20px 40px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .faq-answer::before {
    content: "A";
    font-size: 22px;
    left: 15px;
    top: 20px;
  }

}


/***********
inquiryBlock
************/

.inquiryBlock {
  background-color: rgba(221, 223, 231, 0.5);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiryBlock-title {
  width: 50%;
  text-align: center;
  font-size: 131%;
  font-feature-settings: "palt";
}
.inquiryBlock-inner {
  width: 50%;
  border-left: 1px solid #ccc;
  padding: 15px 30px 15px 5%;
}

.inquiryBlock-text {
  font-size: 131%;
  line-height: 2;
}

@media screen and (max-width:834px) {

  .inquiryBlock {
    padding: 25px 5%;
    display: block;
  }
  .inquiryBlock-title {
    width: auto;
    font-size: 116%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
  }
  .inquiryBlock-inner {
    width: auto;
    border: none;
    padding: 20px 0 0 0;
  }

  .inquiryBlock-text {
    font-size: 108%;
    line-height: 2;
    text-align: center;
  }


}

/***********
inquiryFlow
************/

.inquiryFlow {
  font-feature-settings: "palt";
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 50px;
}
.inquiryFlow li{
  flex: 1;
}
.inquiryFlow-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 38px;
  background-color: #ccc;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: Arial,sans-serif;
  font-size: 16px;
  position: relative;
}
.inquiryFlow li:not(:last-child) .inquiryFlow-num::after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.inquiryFlow-text {
  font-size: 116%;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif;
  padding-top: 15px;
}

.inquiryFlow li{
  color: #aaa;
}
.inquiryFlow li.is-active{
  opacity: 1;
  color: #000;
}
.inquiryFlow li.is-active .inquiryFlow-num{
  background-color: #333;
}

@media screen and (max-width:834px) {

  .inquiryFlow {
    max-width: 480px;
    padding: 30px 0;
  }
  .inquiryFlow li{
    width: 33.333333%;
    flex-grow: 1;
  }
  .inquiryFlow-num {
    width: 32px;
    height: 32px;
    line-height: 33px;
    font-size: 16px;
  }
  .inquiryFlow li:not(:last-child) .inquiryFlow-num::after {
    display: none;
  }
  .inquiryFlow-text {
    font-size: 85%;
    padding-top: 10px;
  }

  .contact-block {
    padding: 20px 5%;
  }

}

/***********
pagination
************/

.pagination {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination span.current_page,
.pagination a.link_page,
.pagination a.link_next,
.pagination a.link_before{
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 116%;
  border-radius: 50%;
  margin: 0 2px 8px;
  text-decoration: none;
  text-align: center;
}
.pagination a.link_page {
  border: 1px solid #aaa;
  color: #aaa;
}
.pagination .link_next,
.pagination .link_before {
  border: 1px solid #d90056;
  color: #d90056;
}
.pagination span.current_page,
.pagination a:hover {
  border: 1px solid #d90056;
  background-color: #d90056;
  color: #fff;
}


/***********
aboutLink
************/

.aboutLink {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
.aboutLink-item {
  width: 48%;
}

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
