@charset "UTF-8";

/* ---------------------------------------
  general
	---------------------------------------- */
body {
	font-size: 18px;
	line-height: 1.5;
	color: #232323;
	font-family: 'メイリオ', Meiryo,'Meiryo UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: #232323;
}
a.under-bar {
	text-decoration: underline;
}
a:hover {
	transition: all .3s ease;
}
ul {
	list-style: none;
	padding: 0;
}
.list {
	list-style: disc;
}
.list li {
	margin-left: 27px;
}
img {
	width: 100%;
}
.sp, .sp-only {
	display: none;
}
.tb {
	display: none;
}
.pc, .pc-only {
	display: block;
}
@media screen and (max-width:980px) {
	.tb {
		display: block;
	}
	.pc-only {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sp, .sp-only {
		display: block;
	}
	.pc, .pc-only {
		display: none;
	}
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.alL {
	text-align: left;
}
.alC {
	text-align: center;
}
.alR {
	text-align: right;
}


/* ---------------------------------------
  common
	---------------------------------------- */
.wrapper {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
section {
	margin: 80px 0;
}
.main {
	position: relative;
}
@media screen and (min-width:1121px) {
	.main {
		width: calc(100% - 230px);
		margin-left: 230px;
	}
}
@media screen and (max-width:1120px) and (min-width:981px) {
	.main {
		width: calc(100% - 160px);
		margin-left: 160px;
	}
}
@media screen and (max-width:980px) {
	.main {
		margin-top: 80px;
	}
	footer .main {
		margin-top: 0;
	}
	section {
		margin: 60px 0;
	}
}
.arrow {
	content: "";
	width: 40px;
	height: 1px;
	background: #232323;
	position: absolute;
	top: 35px;
	right: 30px;
	transition: all .3s ease;
}
.arrow:after {
	content:"";
	display: block;
	width: 1px;
	height: 20px;
	transform: rotate(-45deg);
	background: #232323;
	position: absolute;
	top: -16px;
	right: 7px;
}
.arrow-left {
	left: 30px;
}
.arrow-left:after {
	transform: rotate(45deg);
	left: 7px;
}
.btn {
	display: block;
	height: 27px;
	padding: 0 40px 10px 20px;
	position: absolute;
	bottom: 20px;
	right: 30px;
	transition: all .3s;
}
.btn span {
	position: absolute;
	border-bottom: 1px solid #232323;
	width: 100%;
	height: 27px;
	right: 0;
}
.btn span:after {
	content:"";
	display: block;
	width: 1px;
	height: 30px;
	transform: rotate(-45deg);
	background: #232323;
	position: absolute;
	top: 1px;
	right: 11px;
}
.btn:hover {
	transform: translateX(10px);
}
.btn-2 {
	display: block;
	width: 200px;
	height: 60px;
	line-height: 60px;
	background: #67D9D1;
	position: absolute;
	bottom: -110px;
	right: 0;
	padding: 0 25px;
	box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.btn-2:hover .arrow {
	transform: translateX(10px);
}
.btn-2:hover {
	background: #51CBC2;
}
@media screen and (max-width:768px) {
	.btn-2 {
		bottom: -90px;
	}
}
.btn-back {
	padding-left: 80px;
}
.btn-back:hover .arrow {
	transform: translateX(-10px);
}
.flex { /*フレックス解除あり*/
	display: flex;
	justify-content: space-between;
}
.flex-2 { /*フレックス解除なし*/
	display: flex;
	justify-content: space-between;
}
.flex-center {
	display: flex;
	justify-content: center;
}
.flex-left {
	display: flex;
}
@media screen and (max-width:768px) {
	.flex, .flex-center, .flex-left {
		display: block;
	}
}
/* ---------------- header ---------------- */
header {
	width: 230px;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 10000;
	overflow-y: scroll;
}
.title-1 {
	background: -moz-linear-gradient(top left, #AADEBB, #67D9D1);
    background: -webkit-linear-gradient(top left, #AADEBB, #67D9D1);
  	background: linear-gradient(to bottom right, #AADEBB, #67D9D1);
	margin: 0;
	/* height: 135px; */
}
header .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
}
header .logo, footer .logo {
	width: 164px;
	margin: 0 auto;
}
header .logo img {
	margin: 30px 0;
}
@media screen and (min-width:981px) {
	.gnav ul {
		font-size: 18px;
		margin: 15px 0 0;
	}
	.gnav a {
		display: block;
		padding: 15px 25px;
	}
}
@media screen and (max-width:1120px) and (min-width:981px) {
	header {
		width: 160px;
	}
	header .logo {
		width: 140px;
	}
	header .logo img {
		margin: 30px 0;
	}
	.gnav ul {
		font-size: 16px
	}
	/* .gnav a {
		padding: 15px 5px;
	} */
}
/* @media screen and (max-height: 700px) {
	.gnav a {
		padding-top: 7px;
		padding-bottom: 7px;
	}
} */
.gnav a:hover {
	background: #67D9D1;
	color: #fff;
}
@media screen and (max-width:980px) {
	header {
		width: 100%;
		height: auto;
	}
	.title-1 {
		/* height: 80px; */
		margin: 0;
		padding: 10px 0;
	}
	header .logo {
		width: 100px;
	}
	header .logo img {
		margin: 0;
	}
	#gnav-btn {
	  	width: 50px;
		position: absolute;
		top: 50%;
		left: 20px;
		/* height: 55px; */
		height: 28px;
		cursor: pointer;
		z-index: 10002;
		transform: translateY(-50%);
	}
	#gnav-btn.active {
		top: 30px;
		transform: translateY(0);
	}
	#gnav-btn div {
		position: relative;
		width: 100%;
	}
	#gnav-btn span {
		width: 50px;
		height: 2px;
		left: 0;
		display: block;
		background: #fff;
		position: absolute;
		transition: transform .2s ease-in-out;
	}
	#gnav-btn div :nth-child(1) {
		top: 0;
	}
	#gnav-btn div :nth-child(2) {
		top: 12px;
	}
	#gnav-btn div :nth-child(3) {
		top: 24px;
	}
	#gnav-btn.active div :nth-child(1) {
	  top:13px;
	  transform: rotate(45deg);
	}
	#gnav-btn.active div :nth-child(2) {
	  top: 15px;
	  width: 0;
	  left: -50%;
	}
	#gnav-btn.active div :nth-child(3) {
	  top:13px;
	  transform: rotate(-45deg);
	}
	#gnav {
		transform: translateX(-100%);
		transition: all .3s ease;
		overflow: auto;
		display: none;
	}
	#gnav.close {
		transform: translateX(-100%);
		transition: all .3s ease;
	}
	#gnav.open {
		transform: translateX(0);
		transition: all .3s ease;
		background: #50A59F;
		padding-bottom: 80px;
		height: 100vh;
		overflow-y: auto;
		display: block;
	}
	#gnav a {
		color: #fff;
		display: block;
		padding: 10px;
		position: relative;
	}
	#gnav ul {
		margin: 0;
		padding: 20px 20px 40px;
	}
	#gnav li {
		border-bottom: 1px solid #fff;
	}
	#gnav li.none-border {
		border-bottom: none;
	}
	.nav-arrow {
		position: absolute;
		content:"";
		width: 10px;
		height: 1px;
		background: #fff;
		transform: rotate(45deg);
		top: 16px;
		right: 20px;
	}
	.nav-arrow:after {
		position: absolute;
		content:"";
		width: 10px;
		height: 1px;
		background: #fff;
		transform: rotate(90deg);
		top: 5px;
		right: -5px;
	}
	.subnav {
		font-size: 14px;
	}
	.subnav.-health-issues,
	.subnav.-business {
		display: none;
	}
	.health-issues-2 .subnav.-health-issues {
		display: block;
	}
	.business .subnav.-business {
		display: block;
	}
}
/* ---------------- footer ---------------- */
footer {
	/* background: #888888; */
	background-color: #999999;
	position: relative;
}
footer .logo img {
	margin: 15px 0;
}
footer .wrapper {
	color: #fff;
	padding: 40px 0 20px;
}
footer .logo {
	margin: 0;
}
footer .btn-2 {
	position: static;
	width: 300px;
	padding: 0 10px;
}
footer .column-nav {
	font-weight: bold;
	font-size: 16px;
}
footer .column-nav ul li {
	margin-bottom: 15px;
}
footer .column-nav a {
	color: #fff;
}
footer .column-nav a:hover {
	color: #67D9D1;
}
footer .info {
	font-size: 14px;
	color: #242424;
}
footer .info .txt_address {
	margin: 0;
}
footer .info img {
	width: 160px;
	margin-top: 10px;
}
footer .other_links {
	display: flex;
	justify-content: center;
	margin: 15px 0;
}
footer .other_links > li + li {
	border-left: 1px solid #232323;
	padding-left: 10px;
	margin-left: 10px;
}
footer .other_links > li a {
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
}
footer .other_links > li a:hover {
	color: #67D9D1;
}
.copyright {
	text-align: center;
	margin: 0;
	padding-bottom: 20px;
	font-size: 12px;
}
@media screen and (max-width:768px) {
	footer .other_links > li a {
		font-size: 12px;
	}
	.copyright {
		font-size: 10px;
	}
}
#page-top {
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 60px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	z-index: 1000;
}
#page-top img {
	display: block;
}


/* ---------------------------------------
  top
	---------------------------------------- */
.top-title-2 {
	font-size: 32px;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.top-title-2 {
		font-size: 26px;
	}
}
.top {
	width: 100%;
	height: 100vh;
	/* min-height: 800px; */
	background: url(../img/main.jpg) center/cover no-repeat;
	position: relative;
}
.top-text-area {
	display: flex;
	column-gap: 60px;
	position: absolute;
	left: 50px;
	right: 50px;
	bottom: 50px;
}
.top-text-block {
	position: relative;
	background: rgba(255,255,255,.6);
	font-size: 18px;
}
@media screen and (min-width:1920px) {
	.top-text-block {
		width: 610px;
	}
}
.top-copy {
	/* position: absolute;
	top: 20px;
	left: -10px; */
	font-size: 36px;
	background: #67D9D1;
	color: #fff;
	text-align: center;
	padding: 15px 15px 15px 30px;
	white-space: nowrap;
	width: calc(100% + 20px);
	margin: 30px 0 0 -10px;
}
.top-text {
	/* width: 70%; */
	margin: 20px 40px 60px;
}
.top-text-block .btn {
	right: 40px;
}
/* @media screen and (min-width:1121px) {
	.top-text-area {
		width: 700px;
		padding-left: 100px;
	}
	.top-copy {
		width: 730px;
		padding-left: 100px;
	}
} */
@media screen and (max-width:1440px) {
	.top-text-area {
		flex-direction: column;
		row-gap: 10px;
		left: 0;
		right: auto;
		bottom: 0;
	}
}
@media screen and (max-width:980px) {
	.top {
		height: calc(100vh - 80px);
		min-height: auto;
		background: url(../img/main-sp.jpg) center/cover no-repeat;
	}
}
@media screen and (max-width:768px) {
	.top-text-block {
		width: 100%;
		margin: auto;
		font-size: 14px;
	}
	.top-copy {
		font-size: 16px;
		padding: 10px 20px;
		white-space: normal;
		margin: 0;
		text-align: left;
		width: 100%;
	}
	.top-text {
		/* width: 100%; */
		margin: 10px 20px 50px;
	}
	.top-text-block .btn {
		right: 10px;
		bottom: 10px;
	}
}
/* ---------------- news ---------------- */
.latest-news .wrapper {
	background: #EFF5FA;
	position: relative;
	padding: 40px 40px 5px;
}
.latest-news h2 {
	margin-top: -60px;
	text-align: center;
}
.latest-news dl {
	display: flex;
}
.latest-news dt {
	flex-shrink: 0;
	/* width: 110px; */
	margin-right: 20px;
}
.latest-news dd {
	/* display: flex;
	align-items: flex-start; */
	width: calc(100% - 130px);
	margin: 0 0 20px 0;
}
.latest-news dd >a {
	text-decoration: underline;
}
.latest-news dd >a:hover {
	opacity: 0.6;
}
.latest-news dd .special-banner {
	display: block;
	text-decoration: none;
	margin-bottom: 5px;
}
@media screen and (max-width:768px) {
	.latest-news .wrapper {
		padding: 40px 20px 5px;
	}
	.latest-news dl {
		display: block;
	}
	.latest-news dt {
		margin-right: 0;
		line-height: 1;
	}
	.latest-news dd {
		width: 100%;
		margin-top: 10px;
	}
}
/* ---------------- 女性特有の健康課題 ---------------- */
/* ------ 下層ページはさらに下部にCSS書き込みあり ---------*/

.first-content {
	background: url(../img/kenkoukadai.jpg) center/cover no-repeat;
	padding: 40px 0;
}
.first-content .top-area {
	position: relative;
}
.first-content .top-title-2 {
	margin-bottom: 0;
}
.first-content p {
	margin: 10px 0 60px 0;
}
.first-content .btn {
	top: 90px;
	right: 10px;
}
@media screen and (min-width:1141px) {
	.first-content .top-area {
		display: flex;
	}
	.first-content p {
		height: 48px;
		line-height: 48px;
		margin: 30px 0 30px 30px;
	}
	.first-content .btn {
	  top: 40px;
	}
}
.first-content .btn-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.first-content .item {
	width: calc((100% - 60px) / 4);
	min-width: 155px;
	max-width: 230px;
	height: 100px;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	margin: 0 20px 40px 0;
	text-align: center;
	font-size: 18px;
	position: relative;
	background: #fff;
}
.first-content .item:nth-of-type(4n) {
	margin-right: 0;
}
.first-content .item div {
	height: 100px;
	transition: all .3s ease;
}
.first-content .item:nth-of-type(1) div {
	background: url(../img/icon-life.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(2) div {
	background: url(../img/icon-gekkei.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(3) div {
	background: url(../img/icon-ninsin.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(4) div {
	background: url(../img/icon-hunin.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(5) div {
	background: url(../img/icon-ryuzan.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(6) div {
	background: url(../img/icon-kounenki.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(7) div {
	background: url(../img/icon-gan.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(8) div {
	background: url(../img/icon-yase.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(9) div {
	background: url(../img/icon-hinketu.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(10) div {
	background: url(../img/icon-koujousen.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(11) div {
	background: url(../img/icon-utu.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(12) div {
	background: url(../img/icon-shokuji.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.first-content .item:nth-of-type(13) div {
	background: url(../img/icon-suimin.png) center/contain no-repeat;
	background-size: 70px;
	background-color:rgba(255,255,255,.7);
	background-blend-mode:lighten;
}
@media screen and (max-width:768px) {
	.first-content {
		padding: 20px 0 40px;
	}
	.first-content .item {
		width: calc((100% - 20px) / 2);
		max-width: 320px;
		min-width: 120px;
		height: 70px;
		font-size: 16px;
		margin-bottom: 20px;
	}
	.first-content .item:nth-of-type(2n) {
		margin-right: 0;
	}
	.first-content .item div {
		height: 70px;
		background-size: 50px!important;
	}
}
.first-content .item div:hover {
	background-color: rgba(255,255,255,.45);
	transition: all .3s ease;
}
.first-content .item:hover {
	box-shadow: 0 0 15px rgba(0,0,0,.7);
}
.first-content .item span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: 155px;
}








/* ---------------- 企業ご担当者の方へ ---------------- */
.second-content .wrapper {
	position: relative;
	height: 400px;
}
.second-content .bg-img {
	width: 70%;
	height: 350px;
	background: url(../img/kigyou.jpg) center/cover no-repeat;
}
.second-content .top-title-2 {
	background: rgba(0,0,0,.5);
	color: #fff;
	display: inline-block;
	padding: 0 20px;
	height: 80px;
	line-height: 80px;
	font-weight: normal;
	position: absolute;
	top: 50px;
	left: 0;
}
.second-content .item-wrapper {
	min-width: 450px;
	width: 50%;
	position: absolute;
	top: 50px;
	right: 0;
}
.second-content .item {
	display: block;
	background: rgba(80,165,159,.95);
	color: #fff;
	font-size: 22px;
	margin: 30px 0;
	padding: 25px 20px;
	box-shadow: 0 3px 10px rgba(0,0,0,.6);
	position: relative;
}
.second-content .arrow {
	top: 40px;
	background: #fff;
}
.second-content .arrow:after {
	background: #fff;
}
.second-content .item:hover {
	background: #2A817B;
}
.second-content .item:hover .arrow {
	transform: translateX(10px);
}

@media screen and (max-width: 768px) {
	.second-content .wrapper {
		height: 390px;
	}
	.second-content .bg-img {
		width: 90%;
		height: 360px;
	}
	.second-content .top-title-2 {
		top: 20px;
		height: 50px;
		line-height: 50px;
	}
	.second-content .item-wrapper {
		top: 100px;
		left: 5%;
		min-width: 250px;
		width: 95%;
	}
	.second-content .item {
		font-size: 16px;
		padding: 20px 15px;
	}
}
@media screen and (max-width:480px) {
	.second-content .arrow {
		display: none;
	}
	.second-content .bg-img {
		width: 100%;
	}
}

/* ---------------- バナーエリア ---------------- */
.top-title-2-2 {
	margin: 0;
	font-size: 22px;
	font-weight: normal;
}
.third-content .flex-content {
	max-width: 560px;
	width: calc((100% - 40px) / 2);
}
.third-content .item {
	height: 130px;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	margin-bottom: 40px;
	display: flex;
	font-size: 14px;
}
.third-content .item:hover {
	box-shadow: 0 0 15px rgba(0,0,0,.7);
}
.third-content .text {
	width: calc(100% / 2);
	height: 100%;
	text-align: center;
	padding: 15px 10px;
}
.third-content .text p {
	margin: 10px 0;
}
@media screen and (max-width:768px) {
	.third-content .flex-content {
		width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width:480px) {
	.third-content .top-title-2-2 {
		font-size: 18px;
	}
}
.third-content .img {
	width: calc(100% / 2);
	height: 100%;
	background: url(../img/top-company.jpg) center/cover no-repeat;
}
.third-content .item-2 .img {
	background: url(../img/top-column.jpg) center/cover no-repeat;
}
.third-content .item-3 .img {
	background: url(../img/top-law.jpg) center/cover no-repeat;
}
.third-content .item-4 .img {
	background: url(../img/top-link.jpg) center/cover no-repeat;
}

/* ---------------- Q&A ---------------- */
.fourth-content-link {
	display: block;
}
.fourth-content {
	background: linear-gradient(to right, #A7DEBC, #6CD9CF);
}
.fourth-content:hover {
	background: linear-gradient(to right, #67D9D1, #50A59F);
}
.fourth-content .top-title-2 {
	border-bottom: 2px solid #fff;
}
@media screen and (min-width: 769px) {
	.fourth-content {
		height: 300px;
	}
	.question-left {
		width: 40%;
		height: 300px;
		background: url(../img/q-hatena.png);
		background-position: bottom;
		background-repeat: no-repeat;
	}
}
.question-right {
	position: relative;
	width: 55%;
	max-width: 600px;
}
.fourth-content img {
	width: calc((100% - 30px) / 3);
	margin-right: 10px;
}
.question-right .img {
	margin-top: 30px;
	padding-bottom: 60px;
}

.question-right .btn {
	bottom: 30px;
	right: 10px;
}
@media screen and (max-width: 768px) {
	.question-left {
		width: 100%;
		padding-top: 1px;
	}
	.question-right {
		width: 100%;
		max-width: 100%;
	}
}

/* ---------------- お知らせ ---------------- */
.fifth-content {
	background: #EFF5FA;
	position: relative;
	padding: 80px 0;
}
.fifth-content .top-title-2 {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width:768px) {
	.fifth-content {
		padding: 60px 0;
	}
	.fifth-content .top-title-2 {
		top: -40px;
	}
}
.fifth-content .scroll {
	overflow-x: scroll;
}
.fifth-content .flex-2 {
	width: /*1140px*/fit-content;
	margin: 15px;
}
.fifth-content .item {
	width: 330px;
	background: #fff;
	box-shadow: 0 0 10px #2CAEA5;
	position: relative;
	margin-right: 20px;
}
/*.fifth-content .item:nth-of-type(3) {
	margin-right: 0;
}*/
.fifth-content .item:hover {
	box-shadow: 0 0 20px #2CAEA5;
}
.fifth-content .date {
	background: #4C9A94;
	color: #fff;
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	font-size: 16px;
	position: relative;
}
.fifth-content .img {
	width: 100%;
	height: 180px;
}
.fifth-content .text {
	background: #fff;
	padding: 10px 10px 40px;
	min-height: 90px;
	width: 330px;
	white-space: normal;
}
.fifth-content .detail-btn {
	position: absolute;
	bottom: 5px;
	right: 10px;
	padding-right: 30px;
}
.fifth-content .arrow-s {
	content: "";
	width: 25px;
	height: 1px;
	background: #232323;
	position: absolute;
	top: 15px;
	right: 0;
}
.fifth-content .arrow-s:after {
	content:"";
	display: block;
	width: 1px;
	height: 10px;
	transform: rotate(-45deg);
	background: #232323;
	position: absolute;
	top: -9px;
	right: 4px;
}
.fifth-content .wrapper {
	position: relative;
}

/* ---------------- Newアイコン ---------------- */
.new {
	flex-shrink: 0;
	display: inline-block;
	background: #FF6473;
	color: #fff;
	font-size: 14px;
	padding: 6px 2px 4px;
	line-height: 1;
	text-align: center;
	width: 50px;
	/* height: 20px; */
	margin-left: 10px;
}
@media screen and (max-width:480px) {
	.new {
		font-size: 12px;
		/* width: 35px; */
	}
}
.third-content .new, .company .new {
	position: absolute;
}
.fifth-content .new, .column .new, .news .new {
	margin-left: 10px;
}
.fifth-content, .news .new {

}
.column .new {
	margin-top: 7px;
}

/* ---------------------------------------
  下層ページ common
	---------------------------------------- */
.title-2-area {
	width: 100%;
	height: 250px;
	background: url(../img/title-img/q_a-title.jpg) center/cover no-repeat;
	position: relative;
	overflow-x: hidden;
}
.title-2 {
	position: absolute;
	top: 60px;
	color: #fff;
	font-size: 40px;
	font-weight: normal;
	margin: 0;
	background: rgba(0,0,0,.3);
	padding: 10px 20px 10px 200%;
	margin-left: -200%;
	line-height: 1;
}
.title-2 span {
	font-size: 20px;
	padding-top: -20px;
}
.topic-path {
	position: absolute;
	bottom: 0;
	color: #fff;
	font-size: 14px;
	background: rgba(0,0,0,.3);
	padding: 2px 200% 2px;
	margin: 0 -200%;
}
.topic-path a {
	color: #fff;
	margin: 0 5px;
}
.topic-path ul {
	margin: 0;
}
.topic-path li {
	float: left;
}
@media screen and (min-width:1120px) {
	.section-wrapper {
		padding: 0 40px;
	}
}
@media screen and (max-width:980px) {
	.title-2-area {
		height: 180px;
	}
	.title-2 {
		top: 40px;
		font-size: 26px;
	}
	.title-2 span {
		font-size: 16px;
	}
	.topic-path {
		font-size: 12px;
	}
}
.bg {
	background: #F3F7F7;
	overflow-x: hidden;
}
.title-3 {
	font-size: 26px;
	font-weight: normal;
  position: relative;
  padding: 2px 25px 8px 10px;
  background: #fff;
	display: inline-block;
	margin: 40px 0 40px 10px;
}
.title-3:before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #50A59F;
}
section > .title-3 {
	margin-top: 0;
}
.title-4 {
	font-size: 20px;
	margin: 40px 0;
	position: relative;
}
.title-4:after {
	display: block;
	content: "";
	width: 60px;
	height: 2px;
	background: #50A59F;
	position: absolute;
	bottom: -10px;
}
.title-4-1 {
	margin-top: 0;
}
@media screen and (max-width:480px) {
	.title-3 {
		font-size: 22px;
	}
}
.copy {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 40px;
}
.external-link:after {
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	background: url(../img/common/icon-link.png) 0/contain no-repeat;
	margin-left: 5px;
}
@media screen and (max-width: 480px) {
	.copy {
		font-size: 26px;
	}
}
/* ---------- 一部共通（ページ内リンクボタン,5項目）
「Q&A」、
「リンク集」 ------------------------ */
.bg-2 {
	height: 90px;
	background: #E4EEEE;
	position: absolute;
	bottom: -30px;
	margin:0 -200%;
	padding:0 200%;
	z-index:1;
}
.page-link-area {
	position: relative;
	margin: 0 0 60px;
}
.page-link-area .item {
	display: block;
	max-width: 180px;
	width: calc((100% - 40px) / 5);
	height: 110px;
	background: #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,.3);
	z-index: 2;
}
.page-link-area .item-top {
	width: 100%;
	height: 80px;
	position: relative;
	padding: 30px 0 0 65px;
}
.page-link-area .item-top-long {
	padding: 20px 0 0 65px;
	font-size: 16px;
}
.page-link-area .number {
	font-size: 40px;
	color: #67D9D1;
	position: absolute;
	top: 12%;
	left: 10px;
}
.page-link-area .text {
	text-align: center;
}
.page-link-area .item-bottom {
	width: 100%;
	height: 35px;
	background: #67D9D1;
	position: relative;
}
.page-link-area .item-bottom .arrow-down {
	display: block;
	content: "";
	width: 19px;
	height: 10px;
	background: url(../img/common/arrow-down.png) 0/contain no-repeat;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width:1220px) {
	.page-link-area .item-top-long {
		padding: 20px 0 0 60px;
		font-size: 14px;
	}
}
@media screen and (max-width:980px) {
	.page-link-area .item-top {
		padding: 10px 0 0 50px;
	}
	.page-link-area .item-top-long {
		padding: 10px 0 0 50px;
	}
	.page-link-area .number {
		font-size: 40px;
		top: 0%;
	}
}
@media screen and (max-width:768px) {
	.page-link-area {
		margin: 0 0 40px;
	}
	.page-link-area .item {
		max-width: 900px;
		width: 100%;
		height: auto;
		margin: 0 0 20px;
	}
	.page-link-area .item-top {
		height: auto;
		padding-bottom: 3px;
	}
	.page-link-area .item-top-long {
		font-size: 16px;
		padding-bottom: 6px;
	}
	.page-link-area .number {
		font-size: 30px;
		top: 10%;
	}
	.page-link-area .item-bottom {
		width: 100%;
		height: 25px;
		background: #67D9D1;
	}
}
/* ---------- 一部共通（ページ内リンクボタン,1列3項目）
「女性特有の健康課題3階層（女性ホルモンとライフステージ）」、、
「企業ご担当者の方へ3階層（健康課題別職場のサポート）」、
「法律・制度」 ------------------ */
.page-link-area-3 {
	margin-top: 40px;
	flex-wrap: wrap;
}
.page-link-area-3 .item {
	max-width: 360px;
	width: calc(90% / 3);
	margin-right: 5%;
	margin-bottom: 20px;
}
.page-link-area-3 .item:nth-of-type(3),
.page-link-area-3 .item:nth-of-type(6),
.page-link-area-3 .item:nth-of-type(9),
.page-link-area-3 .item:nth-of-type(12),
.page-link-area-3 .item:nth-of-type(15) {
	margin-right: 0;
}
.page-link-area-3 .item-top {
	padding: 15px 5px 0 80px;
}
.page-link-area-3 .bg-2 {
	bottom: -10px;
}
@media screen and (max-width:980px) {
	.page-link-area-3 .item-top {
		padding: 10px 5px 0 60px;
	}
}
@media screen and (max-width:768px) {
	.page-link-area-3 .item {
		max-width: 800px;
		width: 100%;
		margin-right: 0;
	}
	.page-link-area-3 .item-top {
		padding-bottom: 3px;
	}
}
/* ---------- 一部共通（ヘッダーメニュー）
「女性特有の健康課題3階層」、
「企業ご担当者の方へ各ページ」 ----------- */
.sub-menu ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	background: #F3F7F7;
}
.sub-menu li {
	display: block;
	width: calc(100% / 6);
}
.sub-menu li a {
	display :block;
	width: 100%;
	height: 67.5px;
	background: #50A59F;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	position: relative;
}
.sub-menu li a:hover {
	background: #3B948E;
}
.sub-menu span {
	position: absolute;
	display: block;
	width: 100px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.sub-menu li a.active {
	background: #fff;
	color: #50A59F;
	border-bottom: 1px solid #50A59F;
	border-left: 1px solid #50A59F;
	position: relative;
	cursor: auto;
}
.sub-menu-fixed {
	position: fixed;
	top: 0;
	width: calc(100% - 230px);
	z-index: 1000;
}
@media screen and (max-width:1120px) and (min-width:981px) {
	.sub-menu-fixed {
		width: calc(100% - 160px);
	}
}


/* ------------ 記事レイアウト用 ------------------- */
.article-flex {
	display: flex;
	align-items: top;
	margin-bottom: 40px;
}
.article-flex-left {
	width: 47.5%;
	margin-right: 5%;
}
.article-flex-right {
	width: 47.5%;
}

.img-initial {
	width: initial;
}
table.blue-1, table.blue-2  {
	border-collapse: collapse;
	font-size: 16px;
}
.blue-1 th, .blue-1 td, .blue-2 th, .blue-2 td {
	border: 1px solid #000;
	padding: 5px;
	text-align: left;
}
.blue-1 th {
	background: #5B9BD5;
	color: #fff;
}
.blue-2 th {
	background: #c0cfe7;
}
@media screen and (max-width:768px) {
	.article-flex {
		display: block;
	}
	.article-flex-left {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.article-flex-right {
		width: 100%;
	}
	.img-initial {
		width: 100%;
	}
}
/* ---------------------------------------
	はじめに
	---------------------------------------- */
.introduction .title-2-area {
	background: url(../img/title-img/introduction-title.jpg) center/cover no-repeat;
}
.introduction-title-1 {
	font-size: 32px;
	font-weight: normal;
	height: 60px;
	line-height: 60px;
	margin-right: -200%;
	padding-right: 200%;
	padding-left: 20px;
		background: -moz-linear-gradient(left, #AADEBB, #67D9D1);
		background: -webkit-linear-gradient(left, #AADEBB, #67D9D1);
	background: linear-gradient(to right, #AADEBB, #67D9D1);
}
.introduction-title-2 {
	font-size: 22px;
	font-weight: normal;
	margin: 0;
}
.introduction-title-2:before {
	display: inline-block;
	content: "";
	width: 32px;
	height: 32px;
	background: url(../img/introduction/introduction-title-2.png) 0/contain no-repeat;
	vertical-align: middle;
}
.intro-p {
	margin: 40px 0;
}
.introduction .example {
	background: #fff;
	padding: 30px;
	max-width: 760px;
	box-shadow: 0 3px 6px rgba(0,0,0,.2);
}
.introduction .example li {
	margin-bottom: 10px;
}
.introduction .example span {
	display: inline-block;
	width: 450px;
}
.dw-btn {
	display: inline-block;
	background: #67D9D1;
	padding: 5px 20px;
	box-shadow: 0 3px 6px rgba(0,0,0,.2);
	transition: all .2s ease;
	margin-left: 20px;
}
.dw-btn:hover {
	background: #48C1B8;
	color: #fff;
}
.dw-btn:after {
	display: inline-block;
	content: "";
	width: 20px;
	height: 18px;
	background: url(../img/introduction/dw-btn.png) 0/contain no-repeat;
	margin-left: 5px;
	vertical-align: middle;
	transition: all .2s ease;
}
.dw-btn:hover:after {
	background: url(../img/introduction/dw-btn-wh.png) 0/contain no-repeat;
}
.introduction .teacher img {
	display: block;
}
.introduction .teacher .item {
	width: calc(90% / 2);
}
.introduction .privacy p {
	margin: 0;
}
@media screen and (min-width:769px) {
	.introduction .teacher .item:nth-of-type(1) {
		margin-right: 5%;
	}
	.introduction .teacher .item:nth-of-type(2) {
		margin-left: 5%;
	}
}
@media screen and (max-width:768px) {
	.introduction .title-2-area {
		background: url(../img/title-img/introduction-title-sp.jpg) center/cover no-repeat;
	}
	.introduction-title-1{
		font-size: 28px;
	}
	.introduction .example {
		padding: 20px;
	}
	.introduction .example span {
		width: 100%;
	}
	.introduction .teacher .item {
		width: 100%;
	}
}

/* ---------------------------------------
	女性特有の健康課題
	---------------------------------------- */
.health-issues .title-2-area, .health-issues-2 .title-2-area {
	background: url(../img/title-img/health-title.jpg) center/cover no-repeat;
}
.health-issues .flex-2 {
	flex-wrap: wrap;
}
.health-issues p {
	margin: 0 0 40px;
}
.health-issues .item {
	display: block;
	background: #fff;
	width: calc((100% - 60px) / 3);
	min-width: 210px;
	max-width: 320px;
	height: 200px;
	text-align: center;
	box-shadow: 0 3px 10px #00B8BF;
	margin-bottom: 40px;
}
.health-issues .title {
	background: #50A59F;
	color: #fff;
	height: 41px;
	line-height: 41px;
	font-weight: bold;
	position: relative;
}
.health-issues .title.long {
	font-size: 14px;
}
.health-issues .text {
	position: relative;
}
.health-issues span {
	display: block;
	width: 100%;
	padding: 0 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.health-issues .text-bg {
	height: 159px;
	transition: all .3s ease;
}


@media screen and (max-width: 768px) {
	.health-issues .item {
		width: calc((100% - 40px) / 2);
	}

}
@media screen and (max-width:480px) {
	.health-issues .item {
		width: calc((100% - 20px) / 2);
		min-width: 0;
		font-size: 14px;
	}
	.health-issues .title {
		padding: 5px 0;
		line-height: 1.2;
	}
}
.health-issues .item:nth-of-type(1) .text-bg {
	background: url(../img/icon-life.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(2) .text-bg {
	background: url(../img/icon-gekkei.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(3) .text-bg {
	background: url(../img/icon-ninsin.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(4) .text-bg {
	background: url(../img/icon-hunin.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(5) .text-bg {
	background: url(../img/icon-ryuzan.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(6) .text-bg {
	background: url(../img/icon-kounenki.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(7) .text-bg {
	background: url(../img/icon-gan.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(8) .text-bg {
	background: url(../img/icon-yase.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(9) .text-bg {
	background: url(../img/icon-hinketu.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(10) .text-bg {
	background: url(../img/icon-koujousen.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(11) .text-bg {
	background: url(../img/icon-utu.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(12) .text-bg {
	background: url(../img/icon-shokuji.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
}
.health-issues .item:nth-of-type(13) .text-bg {
	background: url(../img/icon-suimin.png) center/contain no-repeat;
	background-size: 100px;
	background-color:rgba(255,255,255,.7);
	background-blend-mode:lighten;
}
.health-issues .item .text-bg:hover {
	background-color: rgba(255,255,255,.45);
	transition: all .3s ease;
}
.health-issues .item:hover {
	box-shadow: 0 3px 20px #00B8BF;
}

/* ------------ ３階層 -------------------- */
.health-issues-2 .sub-menu li {
	font-size: 14px;
}
.health-issues-2 .sub-menu span {
	left: 55%;
}
.health-issues-2 .sub-menu span:before {
	display: block;
	content:"";
	width: 30px;
	height: 30px;
	background: url(../img/health-issues/carrer-wh.png) 0/contain no-repeat;
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translateY(-50%);
}
.health-issues-2 .sub-menu li:nth-of-type(2) span:before {
	background: url(../img/health-issues/blood-2-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(3) span:before {
	background: url(../img/health-issues/ninsin-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(4) span:before {
	background: url(../img/health-issues/hunin-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(5) span:before {
	background: url(../img/health-issues/ryuzan-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(6) span:before {
	background: url(../img/health-issues/kounenki-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(7) span:before {
	background: url(../img/health-issues/gan-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(8) span:before {
	background: url(../img/health-issues/yase-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(9) span:before {
	background: url(../img/health-issues/blood-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(10) span:before {
	background: url(../img/health-issues/virus-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(11) span:before {
	background: url(../img/health-issues/mental-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(12) span:before {
	background: url(../img/health-issues/food-wh.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(13) span:before {
	background: url(../img/health-issues/night-wh.png) 0/contain no-repeat;
}

.health-issues-2 .sub-menu .active span:before {
	background: url(../img/health-issues/carrer-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(2) .active span:before {
	background: url(../img/health-issues/blood-2-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(3) .active span:before {
	background: url(../img/health-issues/ninsin-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(4) .active span:before {
	background: url(../img/health-issues/hunin-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(5) .active span:before {
	background: url(../img/health-issues/ryuzan-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(6) .active span:before {
	background: url(../img/health-issues/kounenki-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(7) .active span:before {
	background: url(../img/health-issues/gan-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(8) .active span:before {
	background: url(../img/health-issues/yase-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(9) .active span:before {
	background: url(../img/health-issues/blood-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(10) .active span:before {
	background: url(../img/health-issues/virus-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(11) .active span:before {
	background: url(../img/health-issues/mental-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(12) .active span:before {
	background: url(../img/health-issues/food-gr.png) 0/contain no-repeat;
}
.health-issues-2 .sub-menu li:nth-of-type(13) .active span:before {
	background: url(../img/health-issues/night-gr.png) 0/contain no-repeat;
}
@media screen and (max-width:1300px) {

	.health-issues-2 .sub-menu li {
		font-size: 12px;
	}
	.health-issues-2 .sub-menu span:before {
		width: 20px;
		height: 20px;
		left: -15px;
	}
}

/*-- lifestage-table -2024.02追加 -*/
.health-issues-2 .lifestage-table.hormon table{
	width: 100%;
	-webkit-border-horizontal-spacing: 0px;
	-webkit-border-vertical-spacing: 0px;
}
@media screen and (max-width:480px) {
	.health-issues-2 .lifestage-table.hormon table{
		font-size: 14px;
	}
}
.health-issues-2 .lifestage-table.hormon .hormon_tit{
    color: #fff;
    text-align: center;
    font-size: 20px;
    width: 30%;
}
.health-issues-2 .lifestage-table.hormon .hormon_tit.tit01{
	background: #475a8d;
    border-radius: 15px 0 0 0;
}
.health-issues-2 .lifestage-table.hormon .hormon_tit.tit01+td{
	border-radius:0 15px 0 0;
	padding-top: 15px;
}
.health-issues-2 .lifestage-table.hormon .hormon_tit.tit02{
	background: #84aa33;
    border-radius: 0 0 0 15px;
}
.health-issues-2 .lifestage-table.hormon tr:last-child td{
    border-radius: 0 0 15px 0;
	padding-bottom: 15px;
}
.health-issues-2 .lifestage-table.hormon tr td:not(.hormon_tit){
	background: #dbe0ed;
	text-indent: -1em;
    padding-left: 2em;
	line-height: 1.2em;
}
.health-issues-2 .lifestage-table.hormon tr td.txt02{
	background: #eaf3d7;
}

@media screen and (max-width:480px) {
	.health-issues-2 .lifestage-table.hormon .hormon_tit.tit01,
	.health-issues-2 .lifestage-table.hormon .hormon_tit.tit02{
		font-size: 16px;
	}
	.health-issues-2 .lifestage-table.hormon tr td:not(.hormon_tit){
		padding-left: 1.5em;
		text-indent: -1em;
	}
}
/*-- /lifestage-table -2024.02追加 -*/

.health-issues-2 .lifestage-table {
	margin: 40px 0;
}
.health-issues-2 .lifestage-table a {
	text-decoration: underline;
}
.lifestage-table th {
	background: #5B9BD5;
	text-align: left;
	color: #fff;
	padding: 5px;
}
.lifestage-table td {
	background: #EAEFF7;
	padding: 5px;
}
.lifestage-table tr:nth-of-type(2n) {
	background: #D2DEEF;
}
/* .lifestage-table tr:nth-of-type(2n) td.txt01{
	padding-bottom: 10px;
} */

.lifestage-table td:nth-of-type(1) {
	width: 110px;
}
.health-issues-2 .relation-page {
	background: #fff;
	margin: 40px 0;
	padding: 20px;
	border: 2px solid #50A59F;
}
.health-issues-2 .relation-page .title {
	font-size: 22px;
	margin-bottom: 20px;
}
.health-issues-2 .relation-page a {
	font-size: 14px;
}

@media screen and (max-width:480px) {
	.health-issues-2 td:nth-of-type(1) {
		width: 70px;
	}
}

/* childbirth */
/* .health-issues_body .modaal-wrapper,
.health-issues_body .modaal-overlay{
	width: calc(100% - 15px)!important;
} */

/*-- meal.html 食事 -2024.02追加 -*/
.meal .table{
	font-size: 14px;
}
.meal .table table{
	-webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
	border: 1px solid #ccc;
}
.meal .table tr th{
	color: #ffffff;
    background: #f0aeed;
}
.meal .table tr td{
	background: #ffffff;
	text-align: center;
	padding: 2px 2px;
    border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.meal .table tr td:last-child{
	border-right: unset;
}
.meal .table tr td:not(:first-child){
	text-align:left;	
}
.meal .table tr td.txt{
	background: #fbe5fc;
    color: #2f5496;
    text-align: left;
	border-top: dotted 2px #ccc;
}

/* ---------------------------------------
	企業ご担当者の方へ
	---------------------------------------- */
.business .title-2-area {
	background: url(../img/title-img/business-title.jpg) center/cover no-repeat;
}
.business .sub-menu li {
	width: calc(100% / 3);
}
.business .sub-menu span {
	width: 270px;
}
.business-support table {
	border-collapse: collapse;
	font-size: 16px;
}
.business-support th, .business-support td {
	border: 1px solid #000;
	padding: 5px;
	text-align: left;
}
.business-support .btn {
	position: relative;
	display: block;
	width: 186px;
	margin: 0 0 0 auto;
}
.business-support #content-2 td:nth-of-type(1) {
	width: 200px;
}



/* ---------------------------------------
  企業取組事例
	---------------------------------------- */
.company .title-2-area, .company-2 .title-2-area {
	background: url(../img/title-img/company-title.jpg) center/cover no-repeat;
}
@media screen and (max-width:786px) {
	.company .title-2-area, .company-2 .title-2-area {
		background: url(../img/title-img/company-title-sp.jpg) center/cover no-repeat;
	}
}
.company .flex-left {
	flex-wrap: wrap;
}
.company p {
	margin: 0 0 40px;
}
.company .item {
	display: block;
	background: #fff;
	width: 30%;
	box-shadow: 0 3px 10px #00B8BF;
	margin: 0 5% 40px 0;
	font-size: 16px;
}
.company .item:hover {
	box-shadow: 0 3px 20px #00B8BF;
}
.company .item:nth-of-type(3n) {
	margin-right: 0;
}
.company .title {
	background: #50A59F;
	color: #fff;
	font-weight: bold;
	padding: 5px 10px;
	position: relative;
}
.company .img {
	width: 100%;
	height: 180px;
}
.company .text {
	padding: 5px 10px 1px;
}
.company .logo {
	width: 100px;
	height: 75px;
	display: table;
}
.company .logo .inner {
	display: table-cell;
	vertical-align: middle;
}
.company .com-name {
	border-top: 1px solid #232323;
	padding-top: 10px;
}
.company .detail ul {
	margin-top: 0;
}
@media screen and (max-width: 1120px) {
	.company .item {
		width: 47.5%;
	}
	.company .item:nth-of-type(3n) {
		margin-right: 5%;
	}
	.company .item:nth-of-type(2n) {
		margin-right: 0;
	}
}
@media screen and (max-width:768px) {
	.company .item {
		width: 100%;
	}
}

/* ------------- 企業取り組み事例　階層３ ----------- */
.company-2 .com-name {
	font-size: 26px;
	font-weight: bold;
}
.company-2 .btn-2 {
	position: relative;
	bottom: 0;
	margin: 60px auto 0;
}
/* ---------------------------------------
  専門家コラム
	---------------------------------------- */
.column .title-2-area, .column-2 .title-2-area {
	background: url(../img/title-img/column-title.jpg) center/cover no-repeat;
}
@media screen and (max-width:768px) {
	.column .title-2-area, .column-2 .title-2-area {
		background: url(../img/title-img/column-title-sp.jpg) center/cover no-repeat;
	}
}
.column .item {
	position: relative;
}
.column .date {
	background: #4C9A94;
	color: #fff;
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	position: relative;
}
.column .img {
	width: 100%;
	height: 180px;
}
.column .text {
	background: #fff;
	padding: 15px 10px 40px;
	min-height: 90px;
	white-space: normal;
}
.column .category-area {
	position: absolute;
	bottom: 10px;
	right: 0;
}
.column .woman {
	font-size: 14px;
	color: #67D9D1;
	border: 1px solid #67D9D1;
	padding: 2px 5px;
	margin-right: 10px;
}
.column .company {
	font-size: 14px;
	color: #fff;
	background: #67D9D1;
	padding: 2px 5px;
	margin-right: 10px;
}
/* -------------- ３階層 ----------------- */
.sub-menu-back {
	background: #50A59F;
	height: 67.5px;
	padding: 16.25px 0;
}
.sub-menu-back .wrapper {
	position: relative;
}
.sub-menu-back a {
	display: block;
	width: 110px;
	height: 35px;
	border-radius: 17.5px;
	background: #fff;
	padding: 7px 10px;
	font-size: 14px;
	position: absolute;
}
.column-2 .sub-menu-back .prev {
	left: 0;
}
.column-2 .sub-menu-back .next {
	right: 0;
}
.column-2 .sub-menu-back .prev:before {
	display: inline-block;
	content: "";
	width: 7px;
	height: 15px;
	background: url(../img/common/arrow-left.png) 0/contain no-repeat;
	vertical-align: middle;
	margin-right: 7px;
}
.column-2 .sub-menu-back .next:after {
	display: inline-block;
	content: "";
	width: 7px;
	height: 15px;
	background: url(../img/common/arrow-right.png) 0/contain no-repeat;
	vertical-align: middle;
	margin-left: 7px;
}
.column-2 .author {
	align-items: flex-end;
}
@media screen and (min-width:769px) {
	.column-2 .author img {
		width: 45%;
		margin-right: 20px;
	}
}

/* ---------------------------------------
  法律・制度
	---------------------------------------- */
.law .title-2-area {
	background: url(../img/title-img/law-title.jpg) center/cover no-repeat;
}

.law .section-wrapper .flex {
	align-items: center;
	column-gap: 10px;
}

.law .section-wrapper .flex .img{
	max-width:350px; 
	height: auto;
	flex: .35 1 0;
}
.law .section-wrapper .flex div:not(.img){
	flex: .65 1 0;
}
.law .section-wrapper .flex.wide .img{
	max-width:410px; 
	height: auto;
	flex: .4 1 0;
}
.law .section-wrapper .flex.wide div:not(.img){
	flex: .6 1 0;
}

@media screen and (max-width:768px) {
	.law .title-2-area {
		background: url(../img/title-img/law-title-sp.jpg) center/cover no-repeat;
	}
	.law .section-wrapper .flex{
		display: flex;
		flex-direction: column;
		row-gap: 20px;
	}
	.law .section-wrapper .flex .img{
		max-width: 420px;
	}
}

.law ul {
	margin: 0;
}
.law .link-block {
	margin: 40px 0;
	padding: 30px;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,.2);
}
.law .link-block .title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
@media screen and (max-width:768px) {
	.law .link-block {
		padding: 20px;
	}
}

@media screen and (max-width:480px) {
	.law img.img-initial {
		max-width: 240px;
	}
}

/* ---------------------------------------
  お知らせ
	---------------------------------------- */
.news .title-2-area {
	background: url(../img/title-img/news-title.jpg) center/cover no-repeat;
}
.news dl {
	margin: 0;
}
.news dt, .news .date {
	/*width: 158px;*/
	display: inline-block;
	height: 35px;
	line-height: 35px;
	background: #4C9A94;
	color: #fff;
	padding: 0 15px;
	font-size: 16px;
	position: relative;
}
.news dd {
	width: 100%;
	background: #fff;
	margin: 0 0 20px 0;
}
.news dd a {
	display: block;
	padding: 15px;
}
.news dd a:hover {
	box-shadow: 0 0 10px #67D9D1;
}
.news .pagenation {
	width: 100%;
	max-width: 300px;
	margin: 60px auto 0;
}
.news .pagenation ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.news .pagenation a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 0 5px #67D9D1;
	text-align: center;
	line-height: 30px;
	margin-left: 10px;
}
.news .pagenation a:hover {
	box-shadow: 0 0 10px #67D9D1;
}
.news .pagenation .active {
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background: #67D9D1;
	color: #fff;
	text-align: center;
	line-height: 30px;
	margin-left: 10px;
}
.news .pagenation .prev span, .news .pagenation .next span {
	display: inline-block;
	content: "";
	width: 7px;
	height: 15px;
	background: url(../img/common/arrow-left.png) 0/contain no-repeat;
	margin-top: 7px;
}
.news .pagenation .next span {
	background: url(../img/common/arrow-right.png) 0/contain no-repeat;
}
.news .content {
	background: #fff;
	padding: 60px;
}
.news .title {
	font-size: 26px;
	padding-bottom: 10px;
	margin-bottom: 40px;
	border-bottom: 1px solid #232323;
}
.news .img {
	max-width: 575px;
	margin: 0 auto;
}
.news .text {
	margin: 40px 60px 0;
}
.news .btn-2 {
	position: relative;
	bottom: 0;
	margin: 60px auto 0;
}
@media screen and (max-width:980px) {
	.news .text {
		margin: 40px 0 0;
	}
}
@media screen and (max-width:480px) {
	.news .content {
		padding: 20px;
	}
	.news .title {
		font-size: 20px;
	}
}
/* ---------------------------------------
  リンク集
	---------------------------------------- */
.link .title-2-area {
	background: url(../img/title-img/link-title.jpg) center/cover no-repeat;
}
.link .content ul {
	list-style: inside;
	margin: 0;
}
.link .content li {
	margin-bottom: 10px;
}
.link .content li a {
	display: inline-block;
	max-width: 640px;
	width: calc(100% - 137px);
	vertical-align: top;
}
.link .content li span {
	display: inline-block;
	width: 6.5em;
	text-align: center;
	background: #67D9D1;
	color: #fff;
	padding: 2px 0;
	margin-left: 10px;
}
@media screen and (max-width:768px) {
	.link .title-2-area {
		background: url(../img/title-img/link-title-sp.jpg) 0/cover no-repeat;
	}
}
@media screen and (max-width:480px) {
	.link .content li a {
		display: inline-block;
		max-width: 560px;
		width: calc(100% - 117px);
		vertical-align: top;
	}
	.link .content li span {
		max-width: 84px;
		margin-left: 5px;
		font-size: 14px;
	}
}
/* ---------------------------------------
  Q&A
	---------------------------------------- */
.q_a .page-link-area {
	margin-top: 40px;
}
.q_a dl {
	margin: 0;
}
.q_a dt {
	  background: -moz-linear-gradient(left, #AADEBB, #67D9D1);
	  background: -webkit-linear-gradient(left, #AADEBB, #67D9D1);
  background: linear-gradient(to right, #AADEBB, #67D9D1);
	padding: 15px 200px 15px 40px;
	margin-top: 10px;
	position: relative;
	cursor: pointer;
}
.q_a dt:before {
	display: inline-block;
	width: 20px;
	height: 20px;
	content: "";
	background: url(../img/q_a/arrow-down.png) 0/contain no-repeat;
	position: absolute;
	top: 18px;
	left: 10px;
}
.q_a dt.open:before {
	background: url(../img/q_a/arrow-up.png) 0/contain no-repeat;
}
.q_a .icon {
	display: block;
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	right: 10px;
	font-size: 16px;
}
.q_a .icon-woman {
	color: #fff;
	border: 1px solid #fff;
	padding: 5px 10px;
}
.q_a .icon-company {
	background: #fff;
	color: #67D9D1;
	padding: 5px 10px;
	margin-left: 5px;
}
.q_a dd {
	background: #fff;
	padding: 40px;
	margin: 0;
	display: none;
}
.q_a dd ul {
	list-style: disc;
	margin: 0;
}
.q_a table {
  border-collapse: collapse;
}
.q_a table th, .q_a table td {
	padding: 5px;
}
@media screen and (max-width:768px) {
	.q_a dt {
		padding: 15px 15px 50px 40px;
	}
	.q_a .icon {
		bottom: 15px;
		transform: translateY(0);
	}
	.q_a dd {
		padding: 20px;
	}
}
@media screen and (max-width:480px) {
	.q_a table {
		font-size: 10px;
	}
	.q_a dd {
		padding: 10px;
	}
}
/* ---------------------------------------
  個人情報保護方針・リンクやコンテンツ等利用について
	---------------------------------------- */
.privacy .title-2-area,
.rules .title-2-area {
	background: url(../img/title-img/introduction-title.jpg) center/cover no-repeat;
}
.rules .bnr-block {
	padding: 30px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.2);
}
.rules .bnr-block .bnr-box {
	display: flex;
	column-gap: 20px;
}
.rules .bnr-block .bnr-box > p {
	margin: 0;
}
@media screen and (max-width:768px) {
	.rules .bnr-block .bnr-box {
		row-gap: 10px;
		flex-direction: column;
	}
}

/* ---------------------------------------
 追加｜2024.02｜table_レスポンシブ時横スクロール化
	---------------------------------------- */
@media screen and (max-width:768px) {
	.spScroll:has(table){
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}
	.spScroll > table{
		width: 175%;
	}
}

/* ---------------------------------------
 追加｜2024.12｜上付き文字
---------------------------------------- */
.superScript{
	font-size: 0.75em;
	vertical-align: top;
	padding-inline: 1px;
}
.footNote{
	font-size: 14px;
}
.footNote_1em{
	text-indent: -1.3em;
	padding-left: 1.3em;
}
.footNote_2em{
	text-indent: -2em;
	padding-left: 2em;
}

/*-- 共通
	margin | padding
----------------------------------*/

/* margin */
.mg0 {
	margin: 0;
}
.mg40 {
	margin: 40px 0px;
}

/* margin-top */
.mt0 {
	margin-top: 0px;
}
.mt5 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mt45 {
	margin-top: 45px;
}
.mt50 {
	margin-top: 50px;
}
.mt55 {
	margin-top: 55px;
}
.mt100 {
	margin-top: 100px;
}
@media screen and (max-width:480px) {
	.sp_mt0 {
		margin-top: 0px;
	}
	.sp_mt5 {
		margin-top: 5px;
	}
	.sp_mt10 {
		margin-top: 10px;
	}
	.sp_mt15 {
		margin-top: 15px;
	}
	.sp_mt20 {
		margin-top: 20px;
	}
	.sp_mt25 {
		margin-top: 25px;
	}
	.sp_mt30 {
		margin-top: 30px;
	}
	.sp_mt35 {
		margin-top: 35px;
	}
	.sp_mt40 {
		margin-top: 40px;
	}
	.sp_mt45 {
		margin-top: 45px;
	}
	.sp_mt50 {
		margin-top: 50px;
	}
	.sp_mt55 {
		margin-top: 55px;
	}
	.sp_mt100 {
		margin-top: 100px;
	}
}

/* margin-bottom */
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb100 {
	margin-bottom: 100px;
}
@media screen and (max-width:480px) {
	.sp_mb5 {
		margin-bottom: 5px;
	}
	.sp_mb10 {
		margin-bottom: 10px;
	}
	.sp_mb15 {
		margin-bottom: 15px;
	}
	.sp_mb20 {
		margin-bottom: 20px;
	}
	.sp_mb25 {
		margin-bottom: 25px;
	}
	.sp_mb30 {
		margin-bottom: 30px;
	}
	.sp_mb35 {
		margin-bottom: 35px;
	}
	.sp_mb40 {
		margin-bottom: 40px;
	}
	.sp_mb45 {
		margin-bottom: 45px;
	}
	.sp_mb50 {
		margin-bottom: 50px;
	}
	.sp_mb100 {
		margin-bottom: 100px;
	}
}

/* padding-top */
.pt5 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
/* padding-bottom */
.pb5 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb30 {
	padding-bottom: 30px;
}
