@charset "utf-8";

/* 共通 --------------------------------------------------------------------- */
/* 一覧 */
.mem_block + .mem_block {
  margin-top: 50px;
}

.mem_block_ttl {
  display: block;
  width: min(100%, 400px);
  text-align: center;
  border: 1px solid #ee5944;
  background-color: #fff;
  border-radius: 100px;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto;
  padding: 20px 0;
}
.mem_block_ttl__min {
  font-size: 16px;
  width: min(100%, 200px);
  padding: 3px 0;
}

.mem_block_list {
  margin-top: 30px;
  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;
}

.mem_block_listItem {
  width: calc(250 / 1080 * 100%);
  margin-left: calc(25 / 1080 * 100%);
  margin-bottom: 40px;
}

.mem_block_listItem img {
  border: 1px solid #d3d3d3;
}

.mem_block_listItem:first-of-type,
.mem_block_listItem:nth-of-type(4n+1) {
  margin-left: 0;
}

.mem_block_listTxt {
  margin-top: 10px;
}

.mem_block_listTxt::before {
  content: "＞";
  display: inline-block;
  margin-right: 5px;
  color: #ee5944;
  font-weight: bold;
}

/* 所属 */
.mem_contents {
  background-color: rgba(238, 89, 67, 0.15);
  width: calc(100% - 60px);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mem_contents_section {
  width: 50%;
  padding: 32px 0 32px 70px;
}

.mem_contents_section .mem_block_ttl {
  margin: 0;
  padding: 15px 0;
}

.mem_contents_department {
  font-size: 3.2rem;
  font-weight: bold;
  margin-top: 40px;
}

.mem_contents_department span {
  display: inline-block;
  line-height: 1.1;
}

.mem_contents_background {
  font-size: 2.4rem;
  margin-top: 20px;
}

.mem_contents_background:first-of-type {
  margin-top: 30px;
}

.mem_contents_img {
  width: 49.0196078431%;
  -webkit-transform: translate(60px, 32px);
      -ms-transform: translate(60px, 32px);
          transform: translate(60px, 32px);
  border-radius: 20px;
  overflow: hidden;
}

/* FAQ */
.mem_faqWrapper {
  margin-top: 140px;
}

.mem_faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 20px;
}

.mem_faq + .mem_faq {
  margin-top: 100px;
}

.mem_faq_txt {
  width: calc(600 / 1080 * 100%);
}

.mem_faq_q span {
  display: inline-block;
  line-height: 1.1;
}

.mem_faq_txt .mark {
  position: absolute;
  width: 70px;
  height: 70px;
  text-align: center;
  padding-top: 13px;
  border: 1px solid #ee5944;
  border-radius: 50%;
  font-size: 3.6rem;
  font-weight: bold;
  left: 0;
  top: 0;
}

.mem_faq_txt .mark__q {
  color: #fff;
  background-color: #ee5944;
  line-height: 1;
}

.mem_faq_txt .mark__a {
  color: #ee5944;
  background-color: #fff;
  line-height: 1;
}

.mem_faq_q,
.mem_faq_a {
  padding-left: 97px;
  position: relative;
}

.mem_faq_q {
  font-size: 3.2rem;
  font-weight: bold;
  padding-top: 18px;
}



.mem_faq_a {
  margin-top: 70px;
}

.mem_faq_a_txt p::before {
  content: "";
  display: inline-block;
  width: 1em;
}

.mem_faq_img {
  width: 40%;
  border: 1px solid lightgray;
}

/* 社員ページ間遷移（上部） */
.mem_pagenation {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
  margin-top: 30px;

}

.mem_prevbtn {
	background-color:#fcfcfc;
	border:1px solid lightgray;
	border-radius:5px;
	padding: 8px;
}

.mem_nextbtn {
	background-color:#fcfcfc;
	border:1px solid lightgray;
	border-radius:5px;
	padding: 8px;
}

/* 社員ページ間遷移（下部） */

.mem_arrowBtnWrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
	margin-top: 80px;
}

.mem_arrowBtn {
	width: min(40%, 420px);
	height: 140px;
	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;
	padding: 20px 25px;
	background-color: #FDE6E3;
	margin-left: 60px;
	position: relative;
}

.mem_arrowBtn::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 70px 60px 70px 0;
	border-color: transparent #fde6e3 transparent transparent;
	top: 0;
	left: -60px;
}

.mem_arrowBtn:nth-of-type(even) {
	margin-left: 0;
	margin-right: 60px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.mem_arrowBtn:nth-of-type(even)::before {
	-webkit-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
			transform: scale(-1, 1);
	left: auto;
	right: -60px;
}

.mem_arrowBtn_txt {
	width: min(55%, 200px);
}

.mem_arrowBtn_txt p {
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
}
.mem_arrowBtn_txt p:first-of-type {
	margin-top: 14px;
}

.mem_arrowBtn_ttl {
	display: block;
	width: 400px;
	text-align: center;
	border: 1px solid #ee5944;
	background-color: #fff;
	border-radius: 100px;
	font-size: 32px;
	font-weight: bold;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 16px;
	width: min(100%, 200px);
	padding: 3px 0;
}

.mem_arrowBtn_img {
	width: min(40%, 140px);
	height: 100%;
	overflow: hidden;
}

.mem_arrowBtn_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media not all and (min-width: 1080px) {
  .mem_contents {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
  .mem_contents_section {
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .mem_contents_section .mem_block_ttl {
    margin: 0 auto;
  }
  .mem_contents_img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: min(100%, 450px);
    text-align: center;
  }
  .mem_contents_img img {
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .mem_faq:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media not all and (min-width: 768px) {
	/* 一覧 */
	.mem_block + .mem_block {
    margin-top: 40px;
  }
  .mem_block_ttl,
  .mem_contents .mem_block_ttl {
    font-size: 21px;
    width: min(100%, 300px);
    padding: 5px 0;
  }
  .mem_block_ttl__min {
    font-size: 16px;
  }
  .mem_block_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mem_block_listItem {
    width: calc(50% - 5px);
    margin-left: 0;
    margin-bottom: 20px;
  }
	/* 所属 */
	.mem_contents_department {
    font-size: 21px;
    margin-top: 20px;
  }
  .mem_contents_background {
    margin-top: 5px;
    font-size: 18px;
  }
  .mem_contents_background:first-of-type {
    margin-top: 15px;
  }
	/* FAQ */
	.mem_faqWrapper {
    margin-top: 90px;
  }
  .mem_faq {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .mem_faq + .mem_faq {
    margin-top: 50px;
  }

  .mem_faq_txt,
  .mem_faq_img {
    width: 100%;
  }

  .mem_faq_img {
    text-align: center;
  }

  .mem_faq_img img {
    max-width: 100%;
  }

  .mem_faq_txt {
    margin-top: 20px;
  }

  .mem_faq_txt .mark {
    width: 40px;
    height: 40px;
    font-size: 24px;
    padding-top: 3px;
    line-height: 1.2;
  }

  .mem_faq_q,
  .mem_faq_a {
    padding-left: 50px;
  }

  .mem_faq_q {
    font-size: 21px;
    padding-top: 5px;
  }

  .mem_faq_a {
    margin-top: 20px;
  }

	/* 下部遷移ボタン衝突後、ミニボタンに変更 ------------------------------- */


	/* 社員ページ遷移ボタン（下部） */
	.mem_arrowBtnWrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: baseline;
		margin-top: 30px;
	}

	.mem_arrowBtnWrapper > * + * {
		margin-top: 15px;
	}

	.mem_arrowBtn {
		padding: 15px;
		width: 120px;
		margin-left: 40px;
		margin-right: auto;
	}

	.mem_arrowBtn + .mem_arrowBtn {
		margin-left: 5px;
	}

	.mem_arrowBtn::before {
		border-width: 70px 40px 70px 0;
		left: -40px;
	}

	.mem_arrowBtn:nth-of-type(even) {
		margin-right: 40px;
		margin-left: auto;
		display: block;
	}

	.mem_arrowBtn:nth-of-type(even)::before {
		right: -40px;
	}

	.mem_arrowBtn:nth-of-type(odd) {
		display: block;
		left: -10px;
	}

	.mem_arrowBtn:nth-of-type(odd) > .mem_arrowBtn_txt  > .mem_arrowBtn_ttl {
		margin-left: -10px;
	}

	.mem_arrowBtn:nth-of-type(odd) > .mem_arrowBtn_img {
		margin-left: -10px;
	}

	.mem_arrowBtn_ttl {
		margin-bottom: 5px;
		width: 100px;
	}

	.mem_arrowBtn_txt {
		width: 100px;
		margin-bottom: 10px;
	}

	.mem_arrowBtn_txt p {
		display: none;
	}

	.mem_arrowBtn_img {
		width: 100px;
	}

	.mem_arrowBtn_img img {
		height:	60px;
	}

}

@media print {
  .mem_faqWrapper {
    page-break-before: always;
  }

  .mem_contents_img img {
    width: auto;
    height: 200px;
  }

  .mem_faq_img {
    width: fit-content;
    margin: 0 auto;
  }

  .mem_faq_img img {
    display: block;
    width: auto;
    height: 200px;
  }
  .mem_block_list {
    margin-top: 20px;
  }
  .mem_block_listItem  {
    width: calc((100% - 10px)/3);
  }
  .mem_block_list::after {
    content: "";
    display: block;
    width: calc((100% - 10px)/3);
  }
  .mem_block+.mem_block {
    margin-top: 10px;
  }
}