@charset "UTF-8";
@import url("style_menu.css");


body {
  position: relative;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}
img {
	width: 100%;
	height: auto;
}
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.sp-only {
   display: none!important;
}
.brsp {
 	display: none;
 }
@media screen and (max-width: 480px) { 
	.brpc {
		display: none;
	}
	.brsp {
		display: block;
	 }
}
.fin {
	opacity: 0;
	transform: translate(0, 10px);
	transition-duration: 2s;
	transition-property: all;
}
.fin.sin {
	opacity: 1;
	transform : translate(0, 0);
}
.split {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.scale-image .bg {
	position: relative;
	overflow: hidden;
}
.scale-image .bg img {
	opacity: 1;
	transform: scale(1);
	transition: all .8s;
}
.scale-image:hover .bg img {
	transform: scale(1.06);
	transition: all .8s;
}


/* ////////  header */

header {
	width:100%;
	height: 67px;
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	background: #FFF;
	border-bottom: solid 3px #E5E3E2;
	z-index: 1001;
}
header .logo {
  width: 300px;
	position: absolute;
	left: 60px;
	bottom: 10px;
	height: 22px;
}
header .logo img {
  width: 150px;
	display: inline-block;
}
header .logo p {
	font-size: 12px;
	font-family: var(--en-font);
	font-weight: 700;
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	padding: 0 0 0 20px;
}
header .logo p a {
	text-decoration: none;
	color: #001E50;;
}

@media screen and (max-width: 660px) {
	header {
		width:100%;
		height: 50px;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		left: 0;
		background: #FFF;
		border-bottom: solid 3px #E5E3E2;
		z-index: 1001;
	}
	header .logo {
		width: 150px;
		position: absolute;
		left: 15px;
		bottom: 5px;
		height: 22px;
	}
	header .logo img {
		width: 90px;
		display: inline-block;
	}
	header .logo p {
		font-size: 11px;
		font-family: var(--en-font);
		font-weight: 700;
		display: inline-block;
		white-space: nowrap;
		position: absolute;
		top: -4px;
		padding: 0 0 0 10px;
	}
}
/* ////////  footer */
.footer {
	background: #62B1DB;
	padding: 20px;
	border-radius: 60px;
	width: calc(100% - 40px);
	margin: 60px auto 20px;
}
.top .footer {
	margin-top: 70px;
	width: 100%;
}
.footer ul {
	display: flex;
	justify-content: center;
}
.footer ul li a {
	color: #FFF;
	font-size: 13px;
	text-decoration: none;
}
.footer ul li:nth-child(n + 2) {
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}
.footer ul li:nth-child(n - 2):after {
	height: 20px;
	width: 1px;
	background: #FFF;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.copyright {
	text-align: center;
	line-height: 1.4em;
	color: #FFF;
	font-weight: 500;
	font-size: 12px;
	font-family: var(--en-font);
}

.pagetop {
  all: unset; /* リセット */
  cursor: pointer;
  position: fixed;
  width: 64px;
  height: 64px;
  background: #001E50;
  border-radius: 50%;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  transition: all .5s;
}
.pagetop span {
	color: #FFF;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 11px;
	text-align: center;
	padding: 40px 0 0;
	font-weight: 600;
	font-family: var(--en-font);
	position: relative;
}
.pagetop span:before {
	width: 30px;
	height: 20px;
	background-image: url("../svg/pagetop-arrow.svg");
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.blue-button {
	all: unset; /* リセット */
	position: relative;
	width: 80%;
	max-width: 770px;
	margin: 0 auto;
	height: 80px;
	background: #62B1DB;
	border-radius: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s;
}
.blue-button:before {
	width: 12px;
	height: 22px;
	background-image: url("../svg/button-arrow.svg");
	right: 24px;
}
.blue-button a {
	display: flex;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	justify-content: center;
	align-items: center;
}
.blue-button span {
	display: inline-block;
  vertical-align: middle;
	color: #FFF;
	line-height: 1.4em;
}
@media (hover: hover) {
	.blue-button:hover {
		background: #34A3DF;
	}
}

@media screen and (max-width: 1200px) {
	/* ////////  footer */
	.footer {
		background: #62B1DB;
		padding: 20px 10px;
		border-radius: 60px;
	}
	.top .footer {
		margin-top: 70px;
	}
	.footer ul {
		display: flex;
		justify-content: center;
	}
	.footer ul li a {
		color: #FFF;
		font-size: 12px;
		text-decoration: none;
	}
	.footer ul li:nth-child(n + 2) {
		margin-left: 10px;
		padding-left: 10px;
		position: relative;
	}
	.footer ul li:nth-child(n - 2):after {
		height: 12px;
		width: 1px;
		background: #FFF;
		left: 0;
		top: 53%;
		transform: translateY(-50%);
	}
	.copyright {
		text-align: center;
		line-height: 1.4em;
		color: #FFF;
		font-weight: 500;
		font-size: 11px;
		font-family: var(--en-font);
	}
}
@media screen and (max-width: 660px) {
	/* ////////  footer */
	.footer {
		background: #62B1DB;
		padding: 15px 10px;
		border-radius: 20px;
	}
	.top .footer {
		margin-top: 70px;
	}
	.footer ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding-bottom: 10px;
	}
	.footer ul li {
		width: 100%;
		display: block;
		text-align: center;
		line-height: 1.4em;
	}
	.footer ul li a {
		color: #FFF;
		font-size: 12px;
		text-decoration: none;
	}
	.footer ul li:nth-child(n + 2) {
		margin-left: 0px;
		padding-left: 0px;
		position: relative;
	}
	.footer ul li:nth-child(n - 2):after {
		display: none;
	}
	.copyright {
		text-align: center;
		line-height: 1.4em;
		color: #FFF;
		font-weight: 500;
		font-size: 11px;
		font-family: var(--en-font);
	}
	.pagetop {
		all: unset; /* リセット */
		cursor: pointer;
		position: fixed;
		width: 50px;
		height: 50px;
		background: #001E50;
		border-radius: 50%;
		z-index: 3;
		right: 5px;
		bottom: 5px;
		transition: all .5s;
	}
	.pagetop span {
		color: #FFF;
		width: 100%;
		height: 100%;
		display: block;
		font-size: 9px;
		text-align: center;
		padding: 32px 0 0;
		font-weight: 600;
		font-family: var(--en-font);
		position: relative;
	}
	.pagetop span:before {
		width: 22px;
		height: 16px;
		background-image: url("../svg/pagetop-arrow.svg");
		top: 12px;
		left: 50%;
		transform: translateX(-50%);
	}
	.blue-button {
		all: unset; /* リセット */
		position: relative;
		width: 80%;
		margin: 0 auto;
		height: 60px;
		background: #62B1DB;
		border-radius: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all .4s;
	}
	.blue-button:before {
		width: 12px;
		height: 22px;
		background-image: url("../svg/button-arrow.svg");
		right: 24px;
	}
	.blue-button a {
		display: flex;
		width: 100%;
		height: 100%;
		text-decoration: none;
		color: inherit;
		justify-content: center;
		align-items: center;
	}
	.blue-button span {
		display: inline-block;
		vertical-align: middle;
		color: #FFF;
		line-height: 1.4em;
		font-size: 80%;
	}
}


/* //////// top */

.top main {
	background: #F7F5EF;
	padding: 100px 0 0;
	overflow: hidden;
}
.top .main-fixed-content {
	position: fixed;
	height: calc(100% - 67px);
	width: 100%;
	left: 0;
	top: 67px;
	background: #F7F5EF;
}
.top .main-fixed-content .bg {
	height: 100%;
	width: 100%;
	position: relative;
}
.top .main-fixed-content .bg img {
	height: 100%;
	width: auto;
}
.top .main-fixed-content .en-ttl {
	position: absolute;
	left: 5%;
	bottom: 0;
	z-index: 2;
	font-size: 40px;
	color: #008CD7;
	font-family: var(--en-font);
	font-weight: 600;
	line-height: 1.4em;
}
.top .main-fixed-content .main-copy {
	position: absolute;
	z-index: 2;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
}
.top .main-fixed-content .main-copy span {
	background: #FFF;
	margin-bottom: 5px;
	padding: 5px 10px;
	font-size: 28px;
	display: inline-block;
}
.main-scroll-content {
	position: relative;
	width: 55%;
	border-radius: 24px;
	background: #fff;
	opacity: 1;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	z-index: 2;
	left: 40%;
	margin-bottom: 50px;
	padding: 30px;
}
.main-scroll-content .content-ttl {
	text-align: center;
	font-family: var(--en-font);
	color: var(--main-color);
	font-weight: 600;
	font-size: 20px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.main-scroll-content .content-ttl:after {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.top-block-message {
	position: relative;
	padding: 30px;
}
.top-block-culture {
	position: relative;
	padding: 30px;
}
.top-block-gender {
	position: relative;
	padding: 30px;
}
.top-block-style{
	position: relative;
	padding: 30px;
}
.top-block-disability {
	position: relative;
	padding: 30px;
}
.top-block-message:before {
	position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 400px solid #EFF8FD;
  border-right: 400px solid transparent;
	z-index: -1;
}
.top-block-culture:before {
	position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 400px solid #F8F5FF;
  border-left: 400px solid transparent;
	z-index: -1;
}
.top-block-gender:before {
	position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 400px solid #FFF5F5;
  border-right: 400px solid transparent;
	z-index: -1;
}
.top-block-style:before {
	position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 400px solid #F8F5FF;
  border-left: 400px solid transparent;
	z-index: -1;
}
.top-block-disability:before {
	position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 400px solid #F2FCFB;
  border-right: 400px solid transparent;
	z-index: -1;
}
.top-bnr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	transition: all .4s;
}
.top-bnr .bg {
	width: 55%;
	border-radius: 16px;
	overflow: hidden;
}
.top-bnr .txt {
	width: 43%;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
.top-bnr .txt p {
	width: 100%;
	font-size: 20px;
	text-align: left;
	line-height: 1.4em;
	border-bottom: solid 1px #008CD7;
	padding-bottom: 5px;
}
.top-bnr .txt p span {
	font-family: var(--en-font);
	color: var(--main-color);
	font-size: 14px;
	display: block;
}
.top-block-culture .top-bnr .bg {
	order: 2;
}
.top-block-culture .top-bnr .txt {
	order: 1;
}
.top-block-style .top-bnr .bg {
	order: 2;
}
.top-block-style .top-bnr .txt {
	order: 1;
}
.top-block-interview {
	background: #F7F5EF;
	padding: 30px;
	margin-bottom: 30px;
}
.top-block-interview .bnr02 {
	position: relative;
	trastion: all .4s;
}
.top-block-session .bnr01 {
	position: relative;
	trastion: all .4s;
}
.top-block-interview .bnr02 .bg img {
	object-fit: cover;
	min-height: 250px;
}
.top-block-session .bnr01 .bg img {
	object-fit: cover;
	min-height: 250px;
}
.top-block-session {
	background: #F7F5EF;
	padding: 30px;
}

.top-block-interview .triangle,
.top-block-session .triangle{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 100px solid #3FC4C0;
  border-right: 100px solid transparent;
	z-index: 2;
}
.top-block-interview .triangle .label,
.top-block-session .triangle .label {
  position: absolute;
  top: -55px;
  left: 0px;
  transform: rotate(-45deg);
  transform-origin: left top;
  color: white;
	text-align: center;
  font-weight: bold;
  font-size: 12px;
	line-height: 1.2em;
  white-space: nowrap;
}
.top-block-session .triangle .label {
	top: -60px;
	left: 10px;
}
.top-block-session .bnr01 .txt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px;
	background: rgba(238,247,252,0.85);
	z-index: 2;
	width: 100%;
}
.top-block-session .bnr01 .txt p {
	line-height: 1.6em;
}
.top-block-interview .bnr02 .txt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	background: #EEF7FC;
	z-index: 1;
	height: 100%;
	width: 35%;
	display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top-block-interview .bnr02 .txt p {
	line-height: 1.6em;
}
.top-block-interview .bnr02 .txt p:nth-of-type(1) {
	font-size: 13px;
}
.top-block-interview .bnr02 .txt p:nth-of-type(2) {
	font-size: 28px;
}
.top-block-interview .bnr02 .txt p:nth-of-type(3) {
	font-size: 13px;
	color: var(--main-color);
	font-family: var(--en-font);
	font-weight: 600;
}
@media (hover: hover) {
	.top-bnr:hover {
		opacity: .6;
	}
	.top-block-interview .bnr02:hover {
		opacity: .6;
	}
	.top-block-session .bnr01:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 1200px) {
	.top .main-fixed-content .en-ttl {
		left: 3%;
		font-size: 30px;
	}
	.top .main-fixed-content .main-copy {
		left: 3%;
	}
	.top .main-fixed-content .main-copy span {
		font-size: 22px;
	}
	.main-scroll-content {
		width: 59%;
		padding: 20px;
	}
	.top-block-message {
		padding: 20px;
	}
	.top-block-culture {
		padding: 20px;
	}
	.top-block-gender {
		padding: 20px;
	}
	.top-block-style{
		padding: 20px;
	}
	.top-block-disability {
		padding: 20px;
	}
	.top-block-message:before {
		border-top: 300px solid #EFF8FD;
		border-right: 300px solid transparent;
	}
	.top-block-culture:before {
		border-top: 300px solid #F8F5FF;
		border-left: 300px solid transparent;
	}
	.top-block-gender:before {
		border-top: 300px solid #FFF5F5;
		border-right: 300px solid transparent;
	}
	.top-block-style:before {
		border-top: 300px solid #F8F5FF;
		border-left: 300px solid transparent;
	}
	.top-block-disability:before {
		border-top: 300px solid #F2FCFB;
		border-right: 300px solid transparent;
	}
	.top-bnr .txt {
		padding: 0 15px;
	}
	.top-bnr .txt p {
		font-size: 18px;
	}
	.top-bnr .txt p span {
		font-size: 11px;
	}
	.top-block-session .bnr01 .txt {
		padding: 10px;
	}
	.top-block-session .bnr01 .txt p {
		line-height: 1.4em;
		font-size: 14px;
	}
	.top-block-interview .bnr02 .txt p {
		line-height: 1.6em;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(1) {
		font-size: 11px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(2) {
		font-size: 20px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(3) {
		font-size: 13px;
	}
}

@media screen and (max-width: 1023px) {
	/* //////// top */

	.top main {
		background: #F7F5EF;
		padding: 0 0 0;
	}
	.top .main-fixed-content {
		position: relative;
		height: 500px;
		width: 100%;
		left: 0;
		top: 0;
		background: #F7F5EF;
	}
	.top .main-fixed-content .bg {
		height: 100%;
		width: 100%;
		position: relative;
	}
	.top .main-fixed-content .bg img {
		height: 100%;
		width: auto;
		object-fit: cover;
	}
	.top .main-fixed-content .en-ttl {
		position: absolute;
		left: 55%;
		bottom: 30px;
		z-index: 2;
		font-size: 30px;
		color: #008CD7;
		font-family: var(--en-font);
		font-weight: 600;
		line-height: 1.4em;
	}
	.top .main-fixed-content .main-copy {
		position: absolute;
		z-index: 2;
		left: 3%;
		top: 50%;
		transform: translateY(-50%);
	}
	.top .main-fixed-content .main-copy span {
		background: #FFF;
		margin-bottom: 5px;
		padding: 5px 10px;
		font-size: 30px;
		display: inline-block;
	}
	.main-scroll-content {
		position: relative;
		width: 90%;
		border-radius: 24px;
		background: #fff;
		opacity: 1;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		z-index: 2;
		left: 5%;
		margin-bottom: 50px;
		padding: 20px;
	}
	.main-scroll-content .content-ttl {
		text-align: center;
		font-family: var(--en-font);
		color: var(--main-color);
		font-weight: 600;
		font-size: 20px;
		position: relative;
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	.main-scroll-content .content-ttl:after {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.top-bnr .bg {
		width: 55%;
		border-radius: 16px;
		overflow: hidden;
	}
	.top-bnr .txt {
		width: 43%;
		display: flex;
		align-items: center;
		padding: 0 15px;
	}
	.top-bnr .txt p {
		width: 100%;
		font-size: 18px;
		text-align: left;
		line-height: 1.4em;
		border-bottom: solid 1px #008CD7;
		padding-bottom: 5px;
	}
	.top-bnr .txt p span {
		font-family: var(--en-font);
		color: var(--main-color);
		font-size: 11px;
		display: block;
	}
	.top-block-culture .top-bnr .bg {
		order: 2;
	}
	.top-block-culture .top-bnr .txt {
		order: 1;
	}
	.top-block-style .top-bnr .bg {
		order: 2;
	}
	.top-block-style .top-bnr .txt {
		order: 1;
	}
	.top-block-interview {
		background: #F7F5EF;
		padding: 30px;
		margin-bottom: 30px;
	}
	.top-block-interview .bnr02 {
		position: relative;
		trastion: all .4s;
	}
	.top-block-session .bnr01 {
		position: relative;
		trastion: all .4s;
	}
	.top-block-interview .bnr02 .bg img {
		object-fit: cover;
		min-height: 250px;
	}
	.top-block-session .bnr01 .bg img {
		object-fit: cover;
		min-height: 250px;
	}
	.top-block-session {
		background: #F7F5EF;
		padding: 30px;
	}
	.top-block-interview .triangle,
	.top-block-session .triangle{
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 100px solid #3FC4C0;
		border-right: 100px solid transparent;
		z-index: 2;
	}
	.top-block-interview .triangle .label,
	.top-block-session .triangle .label {
		position: absolute;
		top: -55px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	.top-block-session .triangle .label {
		top: -60px;
		left: 10px;
	}
	.top-block-session .bnr01 .txt {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 10px;
		background: rgba(238,247,252,0.85);
		z-index: 2;
		width: 100%;
	}
	.top-block-session .bnr01 .txt p {
		line-height: 1.4em;
		font-size: 14px;
	}
	.top-block-interview .bnr02 .txt {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 20px;
		background: #EEF7FC;
		z-index: 1;
		height: 100%;
		width: 35%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.top-block-interview .bnr02 .txt p {
		line-height: 1.6em;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(1) {
		font-size: 11px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(2) {
		font-size: 20px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(3) {
		font-size: 13px;
		color: var(--main-color);
		font-family: var(--en-font);
		font-weight: 600;
	}
}

@media screen and (max-width: 480px) {
	/* //////// top */

	.top main {
		background: #F7F5EF;
		padding: 0 0 0;
	}
	.top .main-fixed-content {
		position: relative;
		height: 500px;
		width: 100%;
		left: 0;
		top: 0;
		background: #F7F5EF;
	}
	.top .main-fixed-content .bg {
		height: 100%;
		width: 100%;
		position: relative;
	}
	.top .main-fixed-content .bg img {
		height: 100%;
		width: auto;
		object-fit: cover;
	}
	.top .main-fixed-content .en-ttl {
		position: absolute;
		left: 5%;
		bottom: 30px;
		z-index: 2;
		font-size: 20px;
		color: #008CD7;
		font-family: var(--en-font);
		font-weight: 600;
		line-height: 1.4em;
	}
	.top .main-fixed-content .main-copy {
		position: absolute;
		z-index: 2;
		left: 3%;
		top: 50%;
		transform: translateY(-50%);
	}
	.top .main-fixed-content .main-copy span {
		background: #FFF;
		margin-bottom: 5px;
		padding: 5px 10px;
		font-size: 20px;
		display: inline-block;
		font-family: "BIZ UDPGothic", sans-serif;
	}
	.main-scroll-content {
		position: relative;
		width: 94%;
		border-radius: 24px;
		background: #fff;
		opacity: 1;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		z-index: 2;
		left: 3%;
		margin-bottom: 50px;
		padding: 15px;
	}
	.main-scroll-content .content-ttl {
		text-align: center;
		font-family: var(--en-font);
		color: var(--main-color);
		font-weight: 600;
		font-size: 20px;
		position: relative;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.main-scroll-content .content-ttl:after {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.top-block-message:before {
		border-top: 200px solid #EFF8FD;
		border-right: 200px solid transparent;
		z-index: -1;
	}
	.top-block-culture:before {
		border-top: 200px solid #F8F5FF;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.top-block-gender:before {
		border-top: 200px solid #FFF5F5;
		border-right: 200px solid transparent;
		z-index: -1;
	}
	.top-block-style:before {
		border-top: 200px solid #F8F5FF;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.top-block-disability:before {
		border-top: 200px solid #F2FCFB;
		border-right: 200px solid transparent;
		z-index: -1;
	}
	.top-bnr {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
		transition: all .4s;
	}
	.top-bnr .bg {
		width: 100%;
		border-radius: 16px;
		overflow: hidden;
	}
	.top-bnr .txt {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 10px 15px;
	}
	.top-bnr .txt p {
		width: 100%;
		font-size: 16px;
		text-align: left;
		line-height: 1.4em;
		border-bottom: solid 1px #008CD7;
		padding-bottom: 5px;
	}
	.top-bnr .txt p span {
		font-family: var(--en-font);
		color: var(--main-color);
		font-size: 11px;
		display: block;
	}
	.top-block-culture .top-bnr .bg {
		order: 1;
	}
	.top-block-culture .top-bnr .txt {
		order: 2;
	}
	.top-block-style .top-bnr .bg {
		order: 1;
	}
	.top-block-style .top-bnr .txt {
		order: 2;
	}
	.top-block-interview {
		background: #F7F5EF;
		padding: 20px;
		margin-bottom: 20px;
	}
	.top-block-interview .bnr02 {
		position: relative;
		trastion: all .4s;
	}
	.top-block-session .bnr01 {
		position: relative;
		trastion: all .4s;
	}

	.top-block-interview .bnr02 .bg img {
		object-fit: cover;
		min-height: 150px;
	}
	.top-block-session .bnr01 .bg img {
		object-fit: cover;
		min-height: 150px;
	}
	.top-block-session {
		background: #F7F5EF;
		padding: 30px;
	}

	.top-block-interview .triangle,
	.top-block-session .triangle {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 80px solid #3FC4C0;
		border-right: 80px solid transparent;
		z-index: 2;
	}
	.top-block-interview .triangle .label,
	.top-block-session .triangle .label {
		position: absolute;
		top: -45px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 10px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	.top-block-session .triangle .label {
		top: -49px;
		left: 4px;
	}
	.top-block-session .bnr01 .txt {
		position: relative;
		bottom: 0;
		left: 0;
		padding: 10px;
		background: rgba(238,247,252,0.85);
		z-index: 2;
		width: 100%;
	}
	.top-block-session .bnr01 .txt p {
		line-height: 1.4em;
		font-size: 14px;
	}
	.top-block-interview .bnr02 .txt {
		position: relative;
		bottom: 0;
		left: 0;
		padding: 15px;
		background: #EEF7FC;
		z-index: 1;
		height: auto;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.top-block-interview .bnr02 .txt p {
		line-height: 1.6em;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(1) {
		font-size: 11px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(2) {
		font-size: 20px;
	}
	.top-block-interview .bnr02 .txt p:nth-of-type(3) {
		font-size: 13px;
		color: var(--main-color);
		font-family: var(--en-font);
		font-weight: 600;
	}
}


.page-ttl01 {
	margin: 67px 0 0;
	background: #F7F5EF;
	padding: 50px 0;
}
.page-ttl01 h1 {
	text-align: center;
	font-size: 32px;
	line-height: 1.4em;
}
.page-ttl01 h1 span {
	display: block;
	font-family: var(--en-font);
	color: var(--main-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
}
.content {
	width: 90%;
	margin: 0 auto;
	max-width: 1120px;
}
.triangle-left-blue:before {
	position: absolute;
  top: -30px;
  left: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #F2FCFB;
  border-right: 400px solid transparent;
	z-index: -1;
}
.triangle-right-blue:before {
	position: absolute;
  top: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #F2FCFB;
  border-left: 400px solid transparent;
	z-index: -1;
}
.triangle-right-yellow:before {
	position: absolute;
  top: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #FFF8EA;
  border-left: 400px solid transparent;
	z-index: -1;
}
.triangle-right-purple:before {
	position: absolute;
  top: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #F8F5FF;
  border-left: 400px solid transparent;
	z-index: -1;
}
.triangle-right-pink:before {
	position: absolute;
  top: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #FFF5F5;
  border-left: 400px solid transparent;
	z-index: -1;
}
.triangle-left-yellow:before {
	position: absolute;
  top: -30px;
  left: -30px;
  width: 0;
  height: 0;
  border-top: 400px solid #FFF8EA;
  border-right: 400px solid transparent;
	z-index: -1;
}
.shadow-box-ttl {
	position: relative;
	background: #FFF;
	line-height: 1.6em;
	border-radius: 50px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	width: 90%;
	height: 70px;
	max-width: 770px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	font-size: 20px;
}
.shadow-box-ttl span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	white-space: nowrap;
}
@media screen and (max-width: 660px) {
	.page-ttl01 {
		margin: 50px 0 0;
		background: #F7F5EF;
		padding: 20px 0;
	}
	.page-ttl01 h1 {
		text-align: center;
		font-size: 20px;
		line-height: 1.4em;
	}
	.page-ttl01 h1 span {
		display: block;
		font-family: var(--en-font);
		color: var(--main-color);
		font-size: 12px;
		font-weight: 400;
		line-height: 1.6em;
	}
	.content {
		width: 86%;
		margin: 0 auto;
		max-width: 1120px;
	}
	.triangle-left-blue:before {
		position: absolute;
		top: -20px;
		left: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #EFF8FD;
		border-right: 200px solid transparent;
		z-index: -1;
	}
	.triangle-right-blue:before {
		position: absolute;
		top: -20px;
		right: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #EFF8FD;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.triangle-right-yellow:before {
		position: absolute;
		top: -20px;
		right: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #FFF8EA;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.triangle-right-purple:before {
		position: absolute;
		top: -20px;
		right: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #F8F5FF;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.triangle-right-pink:before {
		position: absolute;
		top: -20px;
		right: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #FFF5F5;
		border-left: 200px solid transparent;
		z-index: -1;
	}
	.triangle-left-yellow:before {
		position: absolute;
		top: -20px;
		left: -20px;
		width: 0;
		height: 0;
		border-top: 200px solid #FFF8EA;
		border-right: 200px solid transparent;
		z-index: -1;
	}
	.shadow-box-ttl {
		position: relative;
		background: #FFF;
		line-height: 1.6em;
		border-radius: 50px;
		width: 90%;
		height: 40px;
		max-width: 770px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
		font-size: min(3.6vw,15px);
	}
	.shadow-box-ttl span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
	}
}



/* //////// ダイバーシティ経営 */

.seo-message {
	padding: 60px 0;
}
.seo-message-ttl {
	position: relative;
	width: 230px;
	margin: 0 auto 30px;
}
.seo-message-ttl span {
	background: #EFF8FD;
	padding: 10px 0;
	width: 100%;
	line-height: 1.4em;
	display: block;
	text-align: center;
	color: #1A97E5;
	border-radius: 30px;
}
div[class^="message-block0"] {
	position: relative;
}
div[class^="message-block0"] h3 {
	font-size: 20px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
}
div[class^="message-block0"] h3:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
}
.message-block01 {
	padding: 60px 0;
}
.message-block01 .seo-photo .txt {
	padding: 10px 0 0;
}
.message-block01 .seo-photo .txt p:nth-of-type(1) {
	color: var(--main-color);
}
.message-block01 .seo-photo .txt p:nth-of-type(2) {
	font-size: 28px;
	line-height: 1.4em;
}
.message-block01 .seo-photo .txt p:nth-of-type(2) span {
	font-size: 14px;
	line-height: 1.4em;
	display: block;
}
.message-block02 {
	padding: 60px 0;
}
.message-block02:before {
	width: calc(100% - 40px);
	height: 100%;
	background: #FFF5F5;
	border-radius: 20px;
	left: 20px;
	top: 0;
	z-index: -1;
}
.message-block03 {
	padding: 60px 0;
}
div[class^="message-block0"] > .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
div[class^="message-block0"] > .content.flex > div {
	width: 48%;
}
.message-block03 .content .txt {
	order: 2;
}
.message-block03 .content .image {
	order: 1;
}
.message-block03 .content {
	margin-bottom: 100px;
}
.dei-definition {
	background: #F7F5EF;
	padding: 60px 0;
}
.dei-definition .shadow-box-ttl {
	top: -100px;
}
.dei-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.dei-list li {
	width: 31.33%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.dei-list li > p {
	text-align: center;
	font-family: var(--en-font);
	font-size: 40px;
	font-weight: 600;
}
.detail-box {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
	border-radius: 16px;
	padding: 20px 20px;
}
.detail-box p {
  margin: 0;
  padding: 0;
	color: #FFF;
}
.dei-list li:nth-child(1) > p:first-letter {
	color: #F2817F;
}
.dei-list li:nth-child(1) .detail-box {
	background: #F2817F;
}
.dei-list li:nth-child(2) > p:first-letter {
	color: #3FC4C0;
}
.dei-list li:nth-child(2) .detail-box {
	background: #3FC4C0;
}
.dei-list li:nth-child(3) > p:first-letter {
	color: #E8AC3C;
}
.dei-list li:nth-child(3) .detail-box {
	background: #E8AC3C;
}
.dei-list ~ .last-txt {
	text-align: center;
	font-size: 20px;
}
.dei-policy {
	padding: 60px 0;
}
.dei-policy .shadow-box-ttl {
	top: 35px;
}
.dei-policy .policy-block01 {
	background: #F8F5FF;
	margin-bottom: 10px;
}
.dei-policy .policy-block02 {
	background: #EFF8FD;
	margin-bottom: 10px;
}
.dei-policy .policy-block03 {
	background: #F2FCFB;
}
div[class^="policy-block0"] > .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
div[class^="policy-block0"] > .content.flex > div {
	width: 48%;
}
div[class^="policy-block0"] > .content.flex　.image {
  height: 100%;
}
div[class^="policy-block0"] > .content.flex .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dei-policy .policy-block02 .content .image {
	order: 2;
}
div[class^="policy-block0"] .number {
	position: relative;
	margin-bottom: 10px;
}
div[class^="policy-block0"] .number span {
	border-radius: 10px;
	height: 50px;
	width: 50px;
	color: #FFF;
	font-size: 30px;
	text-align: center;
	font-family: var(--en-font);
	line-height: 50px;
	display: inline-block;
}
.dei-policy .policy-block01 .number span {
	background: #8E6EDB;
}
.dei-policy .policy-block02 .number span {
	background: #1A97E5;
}
.dei-policy .policy-block03 .number span {
	background: #3FC4C0;
}
@media screen and (max-width: 660px) {
	.seo-message {
		padding: 40px 0;
	}
	.seo-message-ttl {
		position: relative;
		width: 220px;
		margin: 0 auto 30px;
	}
	.seo-message-ttl span {
		background: #EFF8FD;
		padding: 10px 0;
		width: 100%;
		line-height: 1.4em;
		display: block;
		text-align: center;
		color: #1A97E5;
		border-radius: 30px;
	}
	div[class^="message-block0"] {
		position: relative;
	}
	div[class^="message-block0"] h3 {
		font-size: 16px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
	}
	div[class^="message-block0"] h3:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
	}
	.message-block01 {
		padding: 30px 0;
	}
	.message-block01 .seo-photo .txt {
		padding: 10px 0 0;
	}
	.message-block01 .seo-photo .txt p:nth-of-type(1) {
		color: var(--main-color);
	}
	.message-block01 .seo-photo .txt p:nth-of-type(2) {
		font-size: 20px;
		line-height: 1.4em;
	}
	.message-block01 .seo-photo .txt p:nth-of-type(2) span {
		font-size: 12px;
		line-height: 1.4em;
		display: block;
	}
	.message-block02 {
		padding: 30px 0;
	}
	.message-block02:before {
		width: calc(100% - 20px);
		height: 100%;
		background: #FFF5F5;
		border-radius: 20px;
		left: 10px;
		top: 0;
		z-index: -1;
	}
	.message-block03 {
		padding: 30px 0;
	}
	div[class^="message-block0"] > .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	div[class^="message-block0"] > .content.flex > div {
		width: 100%;
	}
	div[class^="message-block0"] > .content.flex .txt {
		padding-bottom: 20px;
	}
	.message-block03 .content.flex .txt {
		order: 1;
	}
	.message-block03 .content.flex .image {
		order: 2;
	}
	.message-block03 .content {
		margin-bottom: 60px;
	}
	.dei-definition {
		background: #F7F5EF;
		padding: 20px 0 40px;
	}
	.dei-definition .shadow-box-ttl {
		top: -40px;
	}
	.dei-list {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 20px;
		max-width: 400px;
		margin: 0 auto;
	}
	.dei-list li {
		width: 100%;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		margin-bottom: 20px;
	}
	.dei-list li > p {
		text-align: center;
		font-family: var(--en-font);
		font-size: 30px;
		font-weight: 600;
	}
	.detail-box {
		flex-grow: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		border-radius: 16px;
		padding: 20px 20px;
	}
	.detail-box p {
		margin: 0;
		padding: 0;
		color: #FFF;
	}
	.dei-list ~ .last-txt {
		text-align: center;
		font-size: 16px;
	}
	.dei-policy {
		padding: 60px 0;
	}
	.dei-policy .shadow-box-ttl {
		top: 20px;
	}
	.dei-policy .policy-block01 {
		background: #F8F5FF;
		margin-bottom: 10px;
	}
	.dei-policy .policy-block02 {
		background: #EFF8FD;
		margin-bottom: 10px;
	}
	.dei-policy .policy-block03 {
		background: #F2FCFB;
	}
	div[class^="policy-block0"] > .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	div[class^="policy-block0"] > .content.flex > div {
		width: 100%;
	}
	div[class^="policy-block0"] > .content.flex .image {
		height: 100%;
		width: 100%;
		max-width: 300px;
		margin: 20px auto;
	}
	div[class^="policy-block0"] > .content.flex .txt {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px 0 0;
	}
	div[class^="policy-block0"] .content .image {
		order: 2;
	}
	div[class^="policy-block0"] .number {
		position: relative;
		margin-bottom: 10px;
	}
	div[class^="policy-block0"] .number span {
		border-radius: 10px;
		position: relative;
		height: 50px;
		width: 50px;
		color: #FFF;
		font-size: 30px;
		text-align: center;
		font-family: var(--en-font);
		line-height: 50px;
		display: inline-block;
		left: 50%;
		transform: translateX(-50%);
	}
}



/* //////// 働き方 */

.work-style-intro {
	padding: 60px 0 30px;
}
.work-style-intro p {
	text-align: center;
	font-size: 24px;
}
section[class^="work-style-stage0"] {
	position: relative;
	padding: 40px 0 10px;
	margin-bottom: 20px;
}
section[class^="work-style-stage0"]:before {
	width: 45%;
	height: 100%;
	border-radius: 0 24px 24px 0;
	z-index: -1;
}
section[class^="work-style-stage0"] .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 0 0;
	position: relative;
}
section[class^="work-style-stage0"] .section-ttl {
	width: 25%;
}
section[class^="work-style-stage0"] .section-list {
	width: 72%;
}
section[class^="work-style-stage0"] h2 {
	position: relative;
	padding-top: 175px;
	text-align: center;
	line-height: 1.6em;
	padding-bottom: 10px;
}
section[class^="work-style-stage0"] h2:before {
	width: 160px;
	height: 160px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-size: contain;
}
section[class^="work-style-stage0"] h2:after {
	width: 120px;
	height: 1px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
section[class^="work-style-stage0"] h3 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
}
section[class^="work-style-stage0"] h3:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
}
section[class^="work-style-stage0"] .section-list li {
	background: #FFF;
	padding: 25px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	border-radius: 16px;
}
section[class^="work-style-stage0"] h4 {
	font-size: 18px;
	padding-bottom: 2px;
	margin-bottom: 9px;
	position: relative;
}
section[class^="work-style-stage0"] h4:after  {
	width: 70px;
	height: 1px;
	bottom: 0;
	left: 0;
}
.work-style-stage01 h2:before {
	background-image: url("../svg/style-illust-stage01.svg");
}
.work-style-stage02 h2:before {
	background-image: url("../svg/style-illust-stage02.svg");
}
.work-style-stage03 h2:before {
	background-image: url("../svg/style-illust-stage03.svg");
}
.work-style-stage01 h2:after {
	background: #1A97E5;
}
.work-style-stage02 h2:after {
	background: #F2817F;
}
.work-style-stage03 h2:after {
	background: #3FC4C0;
}
.work-style-stage01 h4 {
	color: #1A97E5;
}
.work-style-stage02 h4 {
	color: #F2817F;
}
.work-style-stage03 h4 {
	color: #3FC4C0;
}
.work-style-stage01 h4:after {
	background: #1A97E5;
}
.work-style-stage02 h4:after {
	background: #F2817F;
}
.work-style-stage03 h4:after {
	background: #3FC4C0;
}
.work-style-stage01:before {
	background: #EFF8FD;
}
.work-style-stage02:before {
	background: #FFF5F5;
}
.work-style-stage03:before {
	background: #F2FCFB;
}

.topic-block01,
.topic-block02 {
	background: #FFF;
	padding: 40px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	border-radius: 16px;
}
.topic-block-ttl {
	position: relative;
	width: 230px;
	margin: 0 auto 30px;
}
.topic-block01 .topic-block-ttl ~ p {
	text-align: center;
	font-size: 20px;
}
.petit-mba {
	width: 70%;
	margin: 40px auto 40px;
	max-width: 420px; 
}
.topic-block-ttl span {
	background: #EFF8FD;
	padding: 10px 0;
	width: 100%;
	line-height: 1.4em;
	display: block;
	text-align: center;
	color: #1A97E5;
	border-radius: 30px;
}
.about-petit-mba {
  display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.about-petit-mba > li {
	width: 48%;
	display: flex;
  flex-direction: column;
}
.about-petit-mba li > p.ttl {
	padding-left: 40px;
	color: #3FC4C0;
	position: relative;
}
.about-petit-mba li > p.ttl:before {
	width: 30px;
	height: 25px;
	background-image: url("../png/q-bubble.png");
	left: 0;
	top: 0;
}
.about-petit-mba li > .txt {
	min-height: 200px;
}
div[class^="detail-list0"] {
	flex-grow: 1;
	background: #F7F5EF;
	border-radius: 16px;
	padding: 20px;
}
div[class^="detail-list0"] > p {
	color: #3FC4C0;
}
.detail-list01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.detail-list01 ul li {
	width: 49%;
	background: #FFF;
	border-radius: 16px;
	align-items: center;
	text-align: center;
	padding: 40px 5px;
	position: relative;
}
.detail-list01 ul li p {
	font-size: 14px;
}
.detail-list01 .note,
.detail-list02 .note {
	font-size: 12px;
	line-height: 1.4em;
	margin-top: 10px;
}
.detail-list02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.detail-list02 ul li {
	width: 32.33%;
	background: #FFF;
	border-radius: 16px;
	align-items: center;
	text-align: center;
	padding: 10px 5px;
	position: relative;
}
.detail-list02 ul li .illust {
	width: 80%;
	max-width: 70px;
	margin: 20px auto 0px;
}
.detail-list02 ul li p {
	width: 100%;
	font-size: 12px;
	line-height: 1.4em;
	padding: 20px 0 0;
}
.detail-list03 {
	margin-top: 20px;
}
.detail-list03 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.detail-list03 ul li {
	width: 40%;
	background: #FFF;
	border-radius: 16px;
	align-items: center;
	text-align: center;
	padding: 15px 20px;
	position: relative;
}
.detail-list03 ul li:nth-child(3) {
	width: 18%;
	text-align: center;
}
.detail-list03 ul li:nth-child(3) img {
	max-width: 100px;
}
.detail-list03 ul li {
	font-size: 14px;
	text-align: left;
}
.detail-list01 ul li:before, 
.detail-list02 ul li:before,
.detail-list03 ul li:before {
	width: 8px;
	height: 8px;
	background: #3FC4C0;
	border-radius: 50%;
	top: -4px;
	left: 50%;
	transform: translateX(-50%);
}
.detail-list03 ul li:nth-child(3):before {
	display: none;
}
.topic-block02 .topic-block-ttl ~ p {
	text-align: center;;
}
.work-style-bnr .bnr01 {
	position: relative;
	trastion: all .4s;
}
.work-style-bnr .bnr01 .bg img {
	object-fit: cover;
	min-height: 250px;
}
.work-style-bnr {
	padding: 100px 0;
}
.work-style-bnr .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 100px solid #3FC4C0;
  border-right: 100px solid transparent;
	z-index: 2;
}
.work-style-bnr .triangle .label {
  position: absolute;
  top: -55px;
  left: 0px;
  transform: rotate(-45deg);
  transform-origin: left top;
  color: white;
	text-align: center;
  font-weight: bold;
  font-size: 12px;
	line-height: 1.2em;
  white-space: nowrap;
}
.work-style-bnr .bnr01 .triangle .label {
	top: -57px;
	left: 5px;
}
.work-style-bnr .bnr01 .txt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	background: rgba(238,247,252,0.85);
	z-index: 2;
	width: 100%;
}
.work-style-bnr .bnr01 .txt p {
	line-height: 1.6em;
}
.work-style-pickup {
	padding: 30px 0 40px;
	background: #F7F5EF;
}
.work-style-pickup .shadow-box-ttl {
	top: -70px;
}


@media screen and (max-width: 660px) {
	.work-style-intro {
		padding: 30px 0 10px;
	}
	.work-style-intro p {
		text-align: center;
		font-size: 16px;
	}
	section[class^="work-style-stage0"] {
		position: relative;
		padding: 30px 0 10px;
		margin-bottom: 20px;
	}
	section[class^="work-style-stage0"]:before {
		width: 45%;
		height: 100%;
		border-radius: 0 24px 24px 0;
		z-index: -1;
	}
	section[class^="work-style-stage0"] .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 40px 0 0;
		position: relative;
	}
	section[class^="work-style-stage0"] .section-ttl {
		width: 20%;
	}
	section[class^="work-style-stage0"] .section-list {
		width: 72%;
	}
	section[class^="work-style-stage0"] h2 {
		position: relative;
		padding-top: 125px;
		text-align: center;
		line-height: 1.6em;
		padding-bottom: 10px;
	}
	section[class^="work-style-stage0"] h2:before {
		width: 110px;
		height: 110px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
	}
	section[class^="work-style-stage0"] h2:after {
		width: 120px;
		height: 1px;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	section[class^="work-style-stage0"] h3 {
		font-size: 15px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
	}
	section[class^="work-style-stage0"] h3:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
	}
	section[class^="work-style-stage0"] .section-list li {
		background: #FFF;
		padding: 25px;
		margin-bottom: 10px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		border-radius: 16px;
	}
	section[class^="work-style-stage0"] h4 {
		font-size: 15px;
		padding-bottom: 2px;
		margin-bottom: 9px;
		position: relative;
	}
	section[class^="work-style-stage0"] h4:after  {
		width: 70px;
		height: 1px;
		bottom: 0;
		left: 0;
	}
	.topic-block01,
	.topic-block02 {
		background: #FFF;
		padding: 30px 20px;
		margin-bottom: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		border-radius: 16px;
	}
	.topic-block-ttl {
		position: relative;
		width: 180px;
		margin: 0 auto 20px;
	}
	.topic-block01 .topic-block-ttl ~ p {
		text-align: center;
		font-size: 14px;
	}
	.petit-mba {
		width: 70%;
		margin: 40px auto 40px;
		max-width: 420px; 
	}
	.topic-block-ttl span {
		background: #EFF8FD;
		padding: 10px 0;
		width: 100%;
		line-height: 1.4em;
		display: block;
		text-align: center;
		color: #1A97E5;
		border-radius: 30px;
	}
	.about-petit-mba {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.about-petit-mba > li {
		width: 100%;
		display: flex;
		flex-direction: column;
		margin-bottom: 30px;
	}
	.about-petit-mba li > p.ttl {
		padding-left: 40px;
		color: #3FC4C0;
		position: relative;
	}
	.about-petit-mba li > p.ttl:before {
		width: 30px;
		height: 25px;
		background-image: url("../png/q-bubble.png");
		left: 0;
		top: 0;
	}
	.about-petit-mba li > .txt {
		min-height: auto;
	}
	div[class^="detail-list0"] {
		flex-grow: 1;
		background: #F7F5EF;
		border-radius: 16px;
		padding: 20px;
	}
	div[class^="detail-list0"] > p {
		color: #3FC4C0;
	}
	.detail-list01 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.detail-list01 ul li {
		width: 100%;
		background: #FFF;
		border-radius: 16px;
		align-items: center;
		text-align: center;
		padding: 20px 5px;
		margin-bottom: 8px;
		position: relative;
	}
	.detail-list01 ul li p {
		font-size: 14px;
	}
	.detail-list01 .note,
	.detail-list02 .note {
		font-size: 12px;
		line-height: 1.4em;
		margin-top: 10px;
	}
	.detail-list02 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.detail-list02 ul li {
		width: 100%;
		background: #FFF;
		border-radius: 16px;
		align-items: center;
		text-align: center;
		padding: 10px 5px;
		position: relative;
		margin-bottom: 8px;
	}
	.detail-list02 ul li .illust {
		width: 80%;
		max-width: 70px;
		margin: 10px auto 0px;
	}
	.detail-list02 ul li p {
		width: 100%;
		font-size: 12px;
		line-height: 1.4em;
		padding: 10px 0 0;
	}
	.detail-list03 {
		margin-top: 20px;
	}
	.detail-list03 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.detail-list03 ul li {
		width: 100%;
		background: #FFF;
		border-radius: 16px;
		align-items: center;
		text-align: center;
		padding: 15px 20px;
		position: relative;
		margin-bottom: 8px;
	}
	.detail-list03 ul li:nth-child(3) {
		width: 100%;
		text-align: center;
	}
	.detail-list03 ul li:nth-child(3) img {
		max-width: 100px;
	}
	.detail-list03 ul li {
		font-size: 14px;
		text-align: left;
	}
	.detail-list01 ul li:before, 
	.detail-list02 ul li:before,
	.detail-list03 ul li:before {
		width: 8px;
		height: 8px;
		background: #3FC4C0;
		border-radius: 50%;
		top: -4px;
		left: 50%;
		transform: translateX(-50%);
	}
	.topic-block02 .topic-block-ttl ~ p {
		text-align: center;;
	}
	.work-style-bnr .bnr01 {
		position: relative;
		trastion: all .4s;
	}
	.work-style-bnr .bnr01 .bg img {
		object-fit: cover;
		min-height: 120px;
	}
	.work-style-bnr {
		padding: 100px 0;
	}
	.work-style-bnr .triangle {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 100px solid #3FC4C0;
		border-right: 100px solid transparent;
		z-index: 2;
	}
	.work-style-bnr .triangle .label {
		position: absolute;
		top: -55px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	.work-style-bnr .bnr01 .triangle .label {
		top: -57px;
		left: 5px;
	}
	.work-style-bnr .bnr01 .txt {
		position: relative;
		bottom: 0;
		left: 0;
		padding: 20px;
		background: rgba(238,247,252,0.85);
		z-index: 2;
		width: 100%;
	}
	.work-style-bnr .bnr01 .txt p {
		line-height: 1.6em;
	}
	.work-style-pickup {
		padding: 30px 0 40px;
		background: #F7F5EF;
	}
	.work-style-pickup .shadow-box-ttl {
		top: -50px;
	}
}



/* //////// 働き方 セッション */

.page-ttl02 {
	margin: 67px 0 0;
	padding: 50px 5% 10px;
	background: #FFF;
}
.page-ttl02 h1 {
	text-align: left;
	font-size: 20px;
	line-height: 1.4em;
}
.page-ttl02 h1 span {
	display: block;
	font-family: var(--en-font);
	color: var(--main-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6em;
}

.session-main {
	position: relative;
}
.session-main .main-visual {
	position: relative;
	padding: 0 0 0 15%;
	background: #F7F5EF
}
.session-main .main-visual .txt p {
	position: absolute;
	bottom: 20px;
	left: 10%;
	z-index: 2;
}
.session-main .main-visual .txt p span {
	background: #FFF;
	display: inline-block;
	margin-bottom: 5px;
	padding: 5px 10px;
	font-size: 24px;
}
.session-main .triangle {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 0;
  height: 0;
  border-top: 300px solid #3FC4C0;
  border-right: 300px solid transparent;
	z-index: 2;
}
.session-main .triangle .label {
  position: absolute;
  top: -255px;
  left: 0px;
  transform: rotate(-45deg);
  transform-origin: left top;
  color: white;
	text-align: center;
  font-weight: bold;
  font-size: 12px;
	line-height: 1.2em;
  white-space: nowrap;
}
.session-profile {
	margin: 150px auto 40px;
	background: #F7F5EF;
	padding-bottom: 30px;
}
.session-profile .shadow-box-ttl {
	top: -35px;
}
.session-profile ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px auto 0;
}
.session-profile ul li {
	width: 48%;
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.session-profile ul li .image {
	width: 48%;
}
.session-profile ul li .txt {
	width: 48%;
}
.session-profile ul li .name {
	 font-family: "Montserrat", sans-serif;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.3em;
}
.session-profile ul li .job-section {
	font-size: 12px;
	line-height: 1.4em;
	padding-bottom: 10px;
}
.session-profile ul li .year {
	font-size: 12px;
	line-height: 1.4em;
	padding-bottom: 10px;
	color: #008CD7;
}
.session-profile ul li .prof-txt {
	font-size: 14px;
}
.session-profile ul li .period {
	width: 100%;
	color: #FFF;
	margin-top: 15px;
	border-radius: 5px;
	font-size: 12px;
	padding: 0 10px;
}
.session-profile ul li:nth-child(1) .name {
	color: #F2817F;
}
.session-profile ul li:nth-child(1) .period {
	background: #F2817F;
}
.session-profile ul li:nth-child(2) .name {
	color: #3FC4C0;
}
.session-profile ul li:nth-child(2) .period {
	background: #3FC4C0;
}
.session-profile ul li:nth-child(3) .name {
	color: #E8AC3C;
}
.session-profile ul li:nth-child(3) .period {
	background: #E8AC3C;
}
.session-profile ul li:nth-child(4) .name {
	color: #8E6EDB;
}
.session-profile ul li:nth-child(4) .period {
	background: #8E6EDB;
}
section[class^="session-block0"] {
	position: relative;
	padding: 80px 0 80px;
}
.session-insert {
	width: 100%;
	margin: 30px auto 0;
	max-width: 1200px;
}

section[class^="session-block0"] .content {
	position: relative;
}
section[class^="session-block0"] h2 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
}
section[class^="session-block0"] h2:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
}
section[class^="session-block0"] p {
	padding-bottom: 1em;
	line-height: 1.8em;
	padding-left: 70px;
	position: relative;
	padding-top: 10px;
	min-height: 80px;
}
section[class^="session-block0"] p span:nth-of-type(1) {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 70px;
	padding-top: 46px;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}
section[class^="session-block0"] p span:nth-of-type(1):before {
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
}
section[class^="session-block0"] p span.note {
	color: #008CD7;
	font-size: 11px;
	margin: 5px 0 0;
	line-height: 1.3em;
	text-indent: -1.4em;
	margin-left: 1.4em;
	display: block;
	position: relative;
}
section[class^="session-block0"] p.spk-sh span:nth-of-type(1) {
	color: #F2817F;
}
section[class^="session-block0"] p.spk-iy span:nth-of-type(1) {
	color: #3FC4C0;
}
section[class^="session-block0"] p.spk-ky span:nth-of-type(1) {
	color: #E8AC3C;
}
section[class^="session-block0"] p.spk-ua span:nth-of-type(1) {
	color: #8E6EDB;
}
section[class^="session-block0"] p.spk-sh span:before {
	background-image: url("../jpg/icon-spk-sh.jpg");
}
section[class^="session-block0"] p.spk-ky span:before {
	background-image: url("../jpg/icon-spk-ky.jpg");
}
section[class^="session-block0"] p.spk-ua span:before {
	background-image: url("../jpg/icon-spk-ua.jpg");
}
section[class^="session-block0"] p.spk-iy span:before {
	background-image: url("../jpg/icon-spk-iy.jpg");
}
.session-block02:before {
	width: calc(100% - 40px);
	height: 100%;
	background: #FFF5F5;
	border-radius: 20px;
	left: 20px;
	top: 0;
	z-index: -1;
}
.session-block04 {
	margin-bottom: 70px;
}
.session-block04:before {
	width: calc(100% - 40px);
	height: 100%;
	background: #FFF8EA;
	border-radius: 20px;
	left: 20px;
	top: 0;
	z-index: -1;
}

@media screen and (max-width: 1000px) {
	.session-main .main-visual {
		position: relative;
		padding: 0 0 0 10%;
		background: #F7F5EF
	}
	.session-main .main-visual .bg img {
		object-fit: cover;
		min-height: 250px;
	}
	.session-main .main-visual .txt p {
		position: absolute;
		bottom: -20px;
		left: 7%;
		z-index: 2;
	}
	.session-main .main-visual .txt p span {
		background: #FFF;
		display: inline-block;
		margin-bottom: 5px;
		padding: 5px 10px;
		font-size: 24px;
	}
	.session-main .triangle {
		position: absolute;
		bottom: 20px;
		left: 0;
		width: 0;
		height: 0;
		border-top: 150px solid #3FC4C0;
		border-right: 150px solid transparent;
		z-index: 2;
	}
	.session-main .triangle .label {
		position: absolute;
		top: -110px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
}


@media screen and (max-width: 660px) {
	.page-ttl02 {
		margin: 50px 0 0;
		padding: 20px 5% 10px;
		background: #FFF;
	}
	.page-ttl02 h1 {
		text-align: left;
		font-size: 16px;
		line-height: 1.4em;
	}
	.page-ttl02 h1 span {
		display: block;
		font-family: var(--en-font);
		color: var(--main-color);
		font-size: 12px;
		font-weight: 400;
		line-height: 1.6em;
	}
	.session-main {
		position: relative;
	}
	.session-main .main-visual {
		position: relative;
		padding: 0 0 0 0;
		background: #F7F5EF
	}
	.session-main .main-visual .bg img {
		object-fit: cover;
		min-height: 170px;
	}
	.session-main .main-visual .txt p {
		position: relative;
		bottom: 20px;
		left: 5%;
		z-index: 2;
	}
	.session-main .main-visual .txt p span {
		background: #FFF;
		display: inline-block;
		margin-bottom: 5px;
		padding: 5px 10px;
		font-size: 18px;
	}
	.session-main .triangle {
		position: absolute;
		bottom: auto;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 100px solid #3FC4C0;
		border-right: 100px solid transparent;
		z-index: 2;
	}
	.session-main .triangle .label {
		position: absolute;
		top: -55px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	.session-profile {
		margin: 50px auto 40px;
		background: #F7F5EF;
		padding-bottom: 20px;
	}
	.session-profile .shadow-box-ttl {
		top: -20px;
	}
	.session-profile ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 30px auto 0;
	}
	.session-profile ul li {
		width: 100%;
		margin-bottom: 50px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.session-profile ul li .image {
		width: 40%;
	}
	.session-profile ul li .txt {
		width: 55%;
	}
	.session-profile ul li .name {
		font-family: "Montserrat", sans-serif;
		font-size: 30px;
		font-weight: 700;
		line-height: 1.3em;
	}
	.session-profile ul li .job-section {
		font-size: 12px;
		line-height: 1.4em;
		padding-bottom: 10px;
	}
	.session-profile ul li .year {
		font-size: 12px;
		line-height: 1.4em;
		padding-bottom: 10px;
		color: #008CD7;
	}
	.session-profile ul li .prof-txt {
		font-size: 13px;
	}
	.session-profile ul li .period {
		width: 100%;
		color: #FFF;
		margin-top: 15px;
		border-radius: 5px;
		font-size: 11px;
		padding: 0 10px;
	}
	section[class^="session-block0"] {
		position: relative;
		padding: 40px 0 40px;
	}
	.session-insert {
		width: 100%;
		margin: 30px auto 0;
		max-width: 1200px;
	}

	section[class^="session-block0"] .content {
		position: relative;
	}
	section[class^="session-block0"] h2 {
		font-size: 17px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
	}
	section[class^="session-block0"] h2:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
	}
	section[class^="session-block0"] p {
		padding-bottom: 1em;
		line-height: 1.8em;
		padding-left: 70px;
		position: relative;
		padding-top: 10px;
		min-height: 80px;
	}
	section[class^="session-block0"] p span:nth-of-type(1) {
		position: absolute;
		left: 0;
		top: 0;
		width: 50px;
		height: 70px;
		padding-top: 46px;
		text-align: center;
		font-size: 11px;
		font-weight: 600;
		font-family: "Montserrat", sans-serif;
	}
	section[class^="session-block0"] p span:nth-of-type(1):before {
		width: 50px;
		height: 50px;
		top: 0;
		left: 0;
	}
	.session-block02:before {
		width: calc(100% - 20px);
		height: 100%;
		background: #FFF5F5;
		border-radius: 20px;
		left: 10px;
		top: 0;
		z-index: -1;
	}
	.session-block04 {
		margin-bottom: 70px;
	}
	.session-block04:before {
		width: calc(100% - 20px);
		height: 100%;
		background: #FFF8EA;
		border-radius: 20px;
		left: 10px;
		top: 0;
		z-index: -1;
	}
}


/* //////// ジェンダー平等の推進 */

section[class^="gender-topic0"] {
	position: relative;
	padding: 60px 0;
}
.gender-topic01 {
	margin-top: 40px;
}
section[class^="gender-topic0"] > .content {
	position: relative;
}
section[class^="gender-topic0"] h2 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
}
section[class^="gender-topic0"] h2:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
	z-index: 1;
}
.topic-ttl {
	background: #F7F5EF;
	border-radius: 30px;
	padding: 10px 20px 10px 60px;
	font-size: 18px;
	position: relative;
	margin-bottom: 20px;
}
.topic-ttl span {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 20px;
	top: 12px;
	border-radius: 8px;
	text-align: center;
	line-height: 33px;
	color: #FFF;
	font-family: var(--en-font);
}
.topic-list01 .topic-ttl span {
	background: #F2817F;
}
.topic-list02 .topic-ttl span {
	background: #E8AC3C;
}
.topic-list03 .topic-ttl span {
	background: #3FC4C0;
}
.gender-topic01 ul li h3 {
	text-align: center;
	font-size: 20px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.gender-topic01 ul li h3:after {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.topic-list01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}
.topic-list01 ul li {
	width: 48%;
	background: #FFF;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
}
.topic-list01 ul li .data {
	width: 70%;
	margin: 0 auto;
}
.topic-list02 ul,
.topic-list03 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px;
	width: 102%;
	position: relative;
	left: -1%;
}
.topic-list02 ul li,
.topic-list03 ul li {
	width: 31.33%;
	margin: 0 1% 20px;
}
.topic-list02 ul li .image img,
.topic-list03 ul li .image img {
	border-radius: 20px;
}
.topic-list02 ul li p,
.topic-list03 ul li p {
	text-align: center;
	line-height: 1.3em;
	padding: 10px 0 0;
}
.topic-list02 ul li p span,
.topic-list03 ul li p span {
	font-size: 11px;
}
.gender-topic02 .flex-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gender-topic02 .flex-box .txt {
	width: 71%;
}
.gender-topic02 .flex-box .eruboshi-logo {
	width: 25%;
	background: #FFF;
	padding: 15px 10px;
	border-radius: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	text-align: center;
}
.gender-topic02 .flex-box .eruboshi-logo img {
	max-width: 120px;
	margin: 0 auto;
}
.forum-list {
	position: relative;
	padding: 30px 0 0;
}
.forum-list > .ttl {
	color: #008CD7;
	font-size: 18px;
}
.forum-table {
	position: relative;
	width: 100%;
}
.forum-table th {
	color: #008CD7;
	width: 160px;
	text-align: left;
	padding: 10px 10px;
	border-bottom: solid 1px #008CD7;
}
.forum-table td {
	width: calc(100% - 160px);
	padding: 10px 10px;
	border-bottom: solid 1px #E5E3E2;
}
.gender-topic05 ul {
	margin: 30px auto 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gender-topic05 ul li {
	width: 48%;
	border-radius: 20px;
	background: #F7F5EF;
	padding: 20px;
}
.gender-topic05 ul li .ttl {
	text-align: center;
	color: #008CD7;
	padding-top: 45px;
	line-height: 1.6em;
	margin-bottom: 10px;
	position: relative;
}
.gender-topic05 ul li .ttl:before {
	width: 50px;
	height: 40px;
	background-image: url("../png/movie-icon.png");
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.gender-bnr {
	padding: 0 0 80px;
}
.gender-bnr .bnr02 {
	position: relative;
}
.gender-bnr .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 100px solid #3FC4C0;
  border-right: 100px solid transparent;
	z-index: 2;
}
.gender-bnr .triangle .label {
  position: absolute;
  top: -55px;
  left: 0px;
  transform: rotate(-45deg);
  transform-origin: left top;
  color: white;
	text-align: center;
  font-weight: bold;
  font-size: 12px;
	line-height: 1.2em;
  white-space: nowrap;
}
.gender-bnr .bnr02 .triangle .label {
	top: -57px;
	left: 5px;
}
.gender-bnr .bnr02 .txt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	background: rgba(238,247,252,0.62);
	z-index: 1;
	width: 100%;
}
.gender-bnr .bnr02 .txt p {
	line-height: 1.6em;
}
.gender-bnr .bnr02 .txt p:nth-of-type(1) {
	font-size: 13px;
}
.gender-bnr .bnr02 .txt p:nth-of-type(2) {
	font-size: 28px;
}
.gender-bnr .bnr02 .txt p:nth-of-type(3) {
	font-size: 13px;
	color: var(--main-color);
	font-family: var(--en-font);
	font-weight: 600;
}
.gender-pickup {
	padding: 30px 0 40px;
	background: #F7F5EF;
}
.gender-pickup .shadow-box-ttl {
	top: -70px;
}

@media screen and (max-width: 660px) {
	section[class^="gender-topic0"] {
		position: relative;
		padding: 40px 0;
	}
	.gender-topic01 {
		margin-top: 20px;
	}
	section[class^="gender-topic0"] > .content {
		position: relative;
	}
	section[class^="gender-topic0"] h2 {
		font-size: 18px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
	}
	section[class^="gender-topic0"] h2:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
		z-index: 1;
	}
	.topic-ttl {
		background: #F7F5EF;
		border-radius: 30px;
		padding: 10px 20px 10px 54px;
		font-size: 14px;
		position: relative;
		margin-bottom: 20px;
	}
	.topic-ttl span {
		width: 24px;
		height: 24px;
		position: absolute;
		left: 20px;
		top: 12px;
		border-radius: 8px;
		text-align: center;
		line-height: 26px;
		color: #FFF;
		font-family: var(--en-font);
	}
	.gender-topic01 ul li h3 {
		text-align: center;
		font-size: 16px;
		position: relative;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.gender-topic01 ul li h3:after {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1;
	}
	.topic-list01 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	.topic-list01 ul li {
		width: 100%;
		background: #FFF;
		padding: 20px;
		margin-bottom: 20px;
		border-radius: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	}
	.topic-list01 ul li .data {
		width: 80%;
		margin: 0 auto;
	}
	.topic-list02 ul,
	.topic-list03 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 20px;
		width: 102%;
		position: relative;
		left: -1%;
	}
	.topic-list02 ul li,
	.topic-list03 ul li {
		width: 48%;
		margin: 0 1% 20px;
	}
	.topic-list02 ul li .image img,
	.topic-list03 ul li .image img {
		border-radius: 10px;
	}
	.topic-list02 ul li p,
	.topic-list03 ul li p {
		text-align: center;
		line-height: 1.3em;
		padding: 10px 0 0;
		font-size: 12px;
	}
	.topic-list02 ul li p span,
	.topic-list03 ul li p span {
		font-size: 11px;
	}
	.gender-topic02 .flex-box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.gender-topic02 .flex-box .txt {
		width: 100%;
		padding-bottom: 20px;
	}
	.gender-topic02 .flex-box .eruboshi-logo {
		width: 100%;
		background: #FFF;
		padding: 15px 10px;
		border-radius: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		text-align: center;
	}
	.gender-topic02 .flex-box .eruboshi-logo img {
		max-width: 120px;
		margin: 0 auto;
	}
	.forum-list {
		position: relative;
		padding: 30px 0 0;
	}
	.forum-list > .ttl {
		color: #008CD7;
		font-size: 18px;
	}
	.forum-table {
		position: relative;
		width: 100%;
	}
	.forum-table th {
		color: #008CD7;
		width: 100px;
		text-align: left;
		padding: 10px 5px;
		border-bottom: solid 1px #008CD7;
		font-size: 12px;
	}
	.forum-table td {
		width: calc(100% - 100px);
		padding: 10px 5px;
		border-bottom: solid 1px #E5E3E2;
		font-size: 12px;
	}
	.gender-topic05 ul {
		margin: 30px auto 0px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.gender-topic05 ul li {
		width: 100%;
		border-radius: 20px;
		background: #F7F5EF;
		padding: 20px;
		margin-bottom: 10px;
	}
	.gender-topic05 ul li .ttl {
		text-align: center;
		color: #008CD7;
		padding-top: 45px;
		line-height: 1.6em;
		margin-bottom: 10px;
		position: relative;
	}
	.gender-topic05 ul li .ttl:before {
		width: 50px;
		height: 40px;
		background-image: url("../png/movie-icon.png");
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.gender-bnr {
		padding: 0 0 40px;
	}
	.gender-bnr .bnr02 {
		position: relative;
	}
	.gender-bnr .triangle {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 70px solid #3FC4C0;
		border-right: 70px solid transparent;
		z-index: 2;
	}
	.gender-bnr .triangle .label {
		position: absolute;
		top: -45px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 9px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	.gender-bnr .bnr02 .triangle .label {
		top: -38px;
		left: 1px;
	}
	.gender-bnr .bnr02 .txt {
		position: relative;
		bottom: 0;
		left: 0;
		padding: 15px;
		background: rgba(238,247,252,0.62);
		z-index: 1;
		width: 100%;
	}
	.gender-bnr .bnr02 .txt p {
		line-height: 1.6em;
	}
	.gender-bnr .bnr02 .txt p:nth-of-type(1) {
		font-size: 12px;
	}
	.gender-bnr .bnr02 .txt p:nth-of-type(2) {
		font-size: 20px;
	}
	.gender-bnr .bnr02 .txt p:nth-of-type(3) {
		font-size: 11px;
		color: var(--main-color);
		font-family: var(--en-font);
		font-weight: 600;
	}
	.gender-pickup {
		padding: 30px 0 40px;
		background: #F7F5EF;
	}
	.gender-pickup .shadow-box-ttl {
		top: -70px;
	}
}




.interview-main {
	position: relative;
}
.interview-main .main-visual {
	position: relative;
	padding: 0 0 0 15%;
	background: #F7F5EF
}
.interview-main .main-visual .txt {
	position: absolute;
	bottom: 20px;
	left: 10%;
	min-width: 300px;
	z-index: 2;
	border-radius: 20px;
	background: #FFF;
	padding: 20px 40px 20px 20px;
}
.interview-main .main-visual .txt p:nth-child(2) {
	font-size: 30px;
	line-height: 1.4em;
}
.interview-main .main-visual .txt p:nth-child(2) span {
	font-size: 12px;
	display: block;
	line-height: 1.4em;
	color: var(--main-color);
}
.interview-main .triangle {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 0;
  height: 0;
  border-top: 300px solid #3FC4C0;
  border-right: 300px solid transparent;
	z-index: 2;
}
.interview-main .triangle .label {
  position: absolute;
  top: -255px;
  left: 0px;
  transform: rotate(-45deg);
  transform-origin: left top;
  color: white;
	text-align: center;
  font-weight: bold;
  font-size: 12px;
	line-height: 1.2em;
  white-space: nowrap;
}
section[class^="interview-block0"] {
	padding: 70px 0;
	position: relative;
}
.interview-block01 {
	margin-top: 50px;
}
.interview-block02:before {
	width: calc(100% - 40px);
	height: 100%;
	background: #FFF5F5;
	border-radius: 20px;
	left: 20px;
	top: 0;
	z-index: -1;
}
.interview-block05:before {
	width: calc(100% - 40px);
	height: 100%;
	background: #FFF8EA;
	border-radius: 20px;
	left: 20px;
	top: 0;
	z-index: -1;
}
section[class^="interview-block0"] h2 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
	color: #008CD7;
	width: 100%;
}
section[class^="interview-block0"] h2:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
	z-index: 1;
}
section[class^="interview-block0"] > .content {
	position: relative;
}
section[class^="interview-block0"] > .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
section[class^="interview-block0"] > .content.flex > div {
	width: 48%;
}
section[class^="interview-block0"] > .content.flex　.image {
  height: 100%;
}
.interview-block04 .txt {
	order: 3;
}
.interview-block04 .image {
	order: 2;
	padding: 10px 0 0;
}

@media screen and (max-width: 1000px) {
	.interview-main .main-visual {
		position: relative;
		padding: 0 0 0 10%;
		background: #F7F5EF
	}
	.interview-main .main-visual .bg img {
		object-fit: cover;
		min-height: 250px;
	}
	.interview-main .main-visual .txt {
		bottom: -20px;
	}
	.interview-main .main-visual .txt p {
		position: relative;
		bottom: 0px;
		left: 5%;
		z-index: 2;
	}
	.interview-main .triangle {
		position: absolute;
		bottom: 20px;
		left: 0;
		width: 0;
		height: 0;
		border-top: 150px solid #3FC4C0;
		border-right: 150px solid transparent;
		z-index: 2;
	}
	.interview-main .triangle .label {
		position: absolute;
		top: -110px;
		left: 0px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
}

@media screen and (max-width: 660px) {
	.interview-main {
		position: relative;
	}
	.interview-main .main-visual {
		position: relative;
		padding: 0 0 0 15%;
		background: #F7F5EF
	}
	.interview-main .main-visual .txt {
		position: absolute;
		bottom: -20px;
		left: 5%;
		min-width: 200px;
		z-index: 2;
		border-radius: 20px;
		background: #FFF;
		padding: 10px 20px 10px 20px;
	}
	.interview-main .main-visual .txt p:nth-child(1) {
		font-size: 12px;
	}
	.interview-main .main-visual .txt p:nth-child(2) {
		font-size: 20px;
		line-height: 1.6em;
	}
	.interview-main .main-visual .txt p:nth-child(2) span {
		font-size: 11px;
		display: block;
		line-height: 1.6em;
		color: var(--main-color);
	}
	.interview-main .triangle {
		position: absolute;
		bottom: auto;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-top: 100px solid #3FC4C0;
		border-right: 100px solid transparent;
		z-index: 2;
	}
	.interview-main .triangle .label {
		position: absolute;
		top: -55px;
		left: 5px;
		transform: rotate(-45deg);
		transform-origin: left top;
		color: white;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	section[class^="interview-block0"] {
		padding: 50px 0;
		position: relative;
	}
	.interview-block01 {
		margin-top: 20px;
	}
	.interview-block02:before {
		width: calc(100% - 20px);
		height: 100%;
		background: #FFF5F5;
		border-radius: 20px;
		left: 10px;
		top: 0;
		z-index: -1;
	}
	.interview-block05:before {
		width: calc(100% - 20px);
		height: 100%;
		background: #FFF8EA;
		border-radius: 20px;
		left: 10px;
		top: 0;
		z-index: -1;
	}
	section[class^="interview-block0"] h2 {
		font-size: 17px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
		color: #008CD7;
		width: 100%;
	}
	section[class^="interview-block0"] h2:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
		z-index: 1;
	}
	section[class^="interview-block0"] > .content {
		position: relative;
	}
	section[class^="interview-block0"] > .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	section[class^="interview-block0"] > .content.flex > div {
		width: 100%;
	}
	section[class^="interview-block0"] > .content.flex .txt {
		padding-bottom: 20px;
	}
	section[class^="interview-block0"] > .content.flex　.image {
		height: 100%;
	}
	.interview-block04 .txt {
		order: 2;
	}
	.interview-block04 .image {
		order: 3;
		padding: 0 0 0;
	}
}



.culture-block01 {
	margin-top: 40px;
}
.culture-block04 {
	margin-bottom: 60px;
}
section[class^="culture-block0"] {
	padding: 50px 0;
	position: relative;
}
section[class^="culture-block0"] > .content {
	position: relative;
}
section[class^="culture-block0"] > .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
section[class^="culture-block0"] > .content.flex .txt,
section[class^="culture-block0"] > .content.flex .image,
section[class^="culture-block0"] > .content.flex .three-pro-jp,
section[class^="culture-block0"] > .content.flex .three-pro-en {
	width: 48%;
}
section[class^="culture-block0"] h2 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
	width: 100%;
}
section[class^="culture-block0"] h2:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
}
.three-pro-jp {
	background: #FFF;
	padding: 20px 3%;
	border-radius: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
}
.three-pro-jp dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.three-pro-jp dl dt,
.three-pro-jp dl dd {
	padding: 15px;
	border-bottom: solid 1px #F7F5EF;
	display: flex;
	align-items: center;
}
.three-pro-jp dl dt:last-of-type,
.three-pro-jp dl dd:last-of-type {
	border: none;
}
.three-pro-jp dl dt {
	width: 50%;
	font-size: min(2.4vw,30px);
	line-height: 1em;
	vertical-align: middle;
	font-weight: 600;
	font-family: var(--en-font);
	color: #808EA7;
}
.three-pro-jp dl dt span {
	color: #001E50;
}
.three-pro-jp dl dd {
	width: 50%;
	font-size: 13px;
	line-height: 1em;
	vertical-align: middle;
}
.three-pro-en {
	background: #FFF;
	padding: 20px 3%;
	border-radius: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
}
.three-pro-en dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.three-pro-en dl dt {
	padding: 15px 15px 0 70px;
}
.three-pro-en dl dd {
	padding: 0 15px 15px 70px;
	border-bottom: solid 1px #F7F5EF;
}
.three-pro-en dl dd:last-of-type {
	border: none;
}
.three-pro-en dl dt {
	width: 100%;
	font-size: min(2.4vw,30px);
	line-height: 1em;
	vertical-align: middle;
	font-weight: 600;
	font-family: var(--en-font);
	color: #808EA7;
}
.three-pro-en dl dt span {
	color: #001E50;
}
.three-pro-en dl dd {
	width: 100%;
	font-size: 14px;
	line-height: 1.6em;
	vertical-align: middle;
}
@media screen and (max-width: 660px) {
	.culture-block01 {
		margin-top: 10px;
	}
	.culture-block04 {
		margin-bottom: 30px;
	}
	section[class^="culture-block0"] {
		padding: 40px 0;
		position: relative;
	}
	section[class^="culture-block0"] > .content {
		position: relative;
	}
	section[class^="culture-block0"] > .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	section[class^="culture-block0"] > .content.flex .txt,
	section[class^="culture-block0"] > .content.flex .image,
	section[class^="culture-block0"] > .content.flex .three-pro-jp,
	section[class^="culture-block0"] > .content.flex .three-pro-en {
		width: 100%;
	}
	section[class^="culture-block0"] > .content.flex .txt {
		padding-bottom: 20px;
	}
	section[class^="culture-block0"] h2 {
		font-size: 17px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
		width: 100%;
	}
	section[class^="culture-block0"] h2:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
	}
	.three-pro-jp {
		background: #FFF;
		padding: 20px 3%;
		border-radius: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	}
	.three-pro-jp dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.three-pro-jp dl dt,
	.three-pro-jp dl dd {
		padding: 15px;
		border-bottom: solid 1px #F7F5EF;
		display: flex;
		align-items: center;
	}
	.three-pro-jp dl dt:last-of-type,
	.three-pro-jp dl dd:last-of-type {
		border: none;
	}
	.three-pro-jp dl dt {
		width: 50%;
		font-size: min(5.5vw,30px);
		line-height: 1em;
		vertical-align: middle;
		font-weight: 600;
		font-family: var(--en-font);
		color: #808EA7;
	}
	.three-pro-jp dl dt span {
		color: #001E50;
	}
	.three-pro-jp dl dd {
		width: 50%;
		font-size: 13px;
		line-height: 1em;
		vertical-align: middle;
	}
	.three-pro-en {
		background: #FFF;
		padding: 20px 3%;
		border-radius: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
	}
	.three-pro-en dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.three-pro-en dl dt {
		padding: 15px 15px 0 40px;
	}
	.three-pro-en dl dd {
		padding: 0 15px 15px 40px;
		border-bottom: solid 1px #F7F5EF;
	}
	.three-pro-en dl dd:last-of-type {
		border: none;
	}
	.three-pro-en dl dt {
		width: 100%;
		font-size: min(5.5vw,30px);
		line-height: 1em;
		vertical-align: middle;
		font-weight: 600;
		font-family: var(--en-font);
		color: #808EA7;
	}
	.three-pro-en dl dt span {
		color: #001E50;
	}
	.three-pro-en dl dd {
		width: 100%;
		font-size: 14px;
		line-height: 1.6em;
		vertical-align: middle;
	}
}


.pwd-block01 {
	margin-top: 40px;
}
.pwd-hallow {
	margin-bottom: 60px;
}
section[class^="pwd-block0"] {
	padding: 50px 0;
	position: relative;
}
section[class^="pwd-block0"] > .content {
	position: relative;
}
section[class^="pwd-block0"] > .content.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
section[class^="pwd-block0"] > .content.flex .txt,
section[class^="pwd-block0"] > .content.flex .image {
	width: 48%;
}
section[class^="pwd-block0"] h2 {
	font-size: 24px;
	line-height: 1.6em;
	padding-bottom: 18px;
	margin-bottom: 18px;
	position: relative;
	width: 100%;
}
section[class^="pwd-block0"] h2:before {
	width: 36px;
	height: 4px;
	background-image: url("../svg/color-dots.svg");
	bottom: 0;
	left: 0;
}
.pwd-block02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pwd-block02 ul li {
	width: 48%;
}
.pwd-block02 ul li > p {
	text-align: center;
	background: #F7F5EF;
	font-size: 18px;
	border-radius: 30px;
	margin-bottom: 10px;
}
.pwd-block03 .txt p {
	padding-bottom: 1em;
}
.pwd-hallow {
	background: #F7F5EF;
	margin: 50px 0 0;
	padding-bottom: 50px;
}
.pwd-hallow .shadow-box-ttl {
	top: -35px;
}
.outline-table {
	margin: 0 0 30px;
}
.outline-table th {
	width: 130px;
	text-align: left;
	color: #008CD7;
}
.outline-table td {
	width: calc(100% - 130px);
	text-align: left;
}
.pwd-hallow ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pwd-hallow ul li {
	width: 48%;
	background: #FFF;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		text-align: center;
}
.pwd-hallow ul li img {
	width: 80%;
}
@media screen and (max-width: 660px) {
	.pwd-block01 {
		margin-top: 20px;
	}
	.pwd-hallow {
		margin-bottom: 60px;
	}
	section[class^="pwd-block0"] {
		padding: 30px 0;
		position: relative;
	}
	section[class^="pwd-block0"] > .content {
		position: relative;
	}
	section[class^="pwd-block0"] > .content.flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	section[class^="pwd-block0"] > .content.flex .txt,
	section[class^="pwd-block0"] > .content.flex .image {
		width: 100%;
	}
	section[class^="pwd-block0"] > .content.flex .txt {
		padding-bottom: 20px;
	}
	section[class^="pwd-block0"] h2 {
		font-size: 16px;
		line-height: 1.6em;
		padding-bottom: 18px;
		margin-bottom: 18px;
		position: relative;
		width: 100%;
	}
	section[class^="pwd-block0"] h2:before {
		width: 36px;
		height: 4px;
		background-image: url("../svg/color-dots.svg");
		bottom: 0;
		left: 0;
	}
	.pwd-block02 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.pwd-block02 ul li {
		width: 100%;
	}
	.pwd-block02 ul li:nth-child(1) {
		margin-bottom: 30px;
	}
	.pwd-block02 ul li > p {
		text-align: center;
		background: #F7F5EF;
		font-size: 14px;
		border-radius: 30px;
		margin-bottom: 10px;
	}
	.pwd-hallow {
		background: #F7F5EF;
		margin: 50px 0 0;
		padding-bottom: 50px;
	}
	.pwd-hallow .shadow-box-ttl {
		top: -20px;
	}
	.outline-table {
		margin: 0 0 30px;
	}
	.outline-table th {
		width: 100px;
		text-align: left;
		color: #008CD7;
		font-size: 13px;
	}
	.outline-table td {
		width: calc(100% - 100px);
		text-align: left;
		font-size: 13px;
	}
	.pwd-hallow ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.pwd-hallow ul li {
		width: 100%;
		background: #FFF;
		padding: 30px;
		border-radius: 20px;
		box-shadow: 0px 0px 3px rgba(26,85,121,0.35);
		text-align: center;
		margin-bottom: 20px;
	}
	.pwd-hallow ul li img {
		width: 100%;
	}
}