@charset "utf-8";
/**
 * base.css
 */

/* Bootstrap break point */
@media only screen and (max-width:1199px) {} /* xl */
@media only screen and (max-width:991px) {} /* lg */
@media only screen and (max-width:767px) {} /* md */
@media only screen and (max-width:565px) {} /* sm */
/* (mobile first) */
@media only screen and (min-width:566px) {}
@media only screen and (min-width:768px) {}
@media only screen and (min-width:992px) {}
@media only screen and (min-width:1200px) {}


/* V3.1  break point */
@media only screen and (max-width:959px) {} /* tablet */
@media only screen and (max-width:767px) {} /* smart phone */
/* (mobile first) */
@media only screen and (min-width:768px) {}
@media only screen and (min-width:960px) {}


/*--------------------------------------------------
font-size

16px:1rem
15px:.938rem
14px:.875rem
13px:.813rem
12px:.75rem

--------------------------------------------------*/


/*--------------------------------------------------

root

--------------------------------------------------*/

:root {
    --primary-color: #BE3E34;
    --secondary-color: #dad0bc;
	--primary-text-color: #333;
	--accent-color: #f3552e;
}

/*--------------------------------------------------

 Accessibility - Visually Hidden

--------------------------------------------------*/

/* スクリーンリーダー用の非表示テキスト（アクセシビリティ対応） */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/*--------------------------------------------------

 html, body

--------------------------------------------------*/

/*
html {
	font-size: 62.5%;
}
html.big {
	font-size: 75%;
}
*/

@font-face {
    font-family: "Local Noto Sans JP";
    src: local("Noto Sans JP");
}

body {
	position: relative;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
ul,ol {
	padding-left: 1.1em;
}

.small, small {font-size: .875rem;/* font-weight:500; */line-height: 1.4;display: inline-block;}
/*
.btn {
    font-weight: 500;
	font-size: 1.6rem;
}
*/


h1, h2, h3, h4, h5, h6 {line-height:1.7;font-size: inherit;}



/* search-btn
=================================== */
.nav-wrapper {position: relative;}

.search-btn > div {
  position: absolute;
  right: 12px;
  top: 24px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  /* height: 100%; */
}

#s-sp-open span {margin-top: 3px;}

.search-btn > div img {width: 24px;height:auto;}

.s-open .search-btn > div#s-sp-open {display:none;} 


@media only screen and (max-width:959px) {
.search-btn > div {
  z-index: 10;right: 70px;top: 16px;}
.open .search-btn {display: none;}
}

@media only screen and (max-width:767px) {
.search-btn > div {
  z-index: 10;right: 70px;top: 8px;}
}

	#s-sp-close {
		position: absolute;
		top: 24px;
		right: 6px;
		width: 38px;
		height: 38px;
		display: none;
		cursor: pointer;
		/*transition: 0.4s;*/
		z-index: 300;
	}
	.s-open #s-sp-close {
	display: flex;
	flex-direction: column;
	align-items: center;
	}
	
	#s-spClose-text  {
    position: absolute;
    display: none;
    font-size: 10px;
    font-weight: 700;
    top: 28px;
    text-align: center;
}
	
	.s-open #s-spClose-text {
	display: block;
	}
	
	#s-sp-close span,
    #s-sp-close:before,
	#s-sp-close:after {
		position: absolute;
		top: 38%;
		left: 46%;
		display: block;
		content: '';
		width: 32px;
		height: 2px;
		margin-left: -15px;
		background-color: #333;
	}
    
    #s-sp-close span {
	margin-top: -2px;
	/*transition: 0.3s;
	-webkit-transition: 0.3s;*/
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

}

	#s-sp-close:before {
	margin-top: -2px;
	-webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
	transform: rotate(-45deg);        

	}
	#s-sp-close:after {
		margin-top: 7px;
        display: none;

	}

@media only screen and (max-width:959px) {
	#s-sp-close span,
    #s-sp-close:before,
	#s-sp-close:after {
		position: absolute;
		top: 38%;
		left: 46%;
}
		#s-sp-close {
		top: 14px;
		right: 14px;
	}
}

@media only screen and (max-width:767px) {
	#s-sp-close span,
    #s-sp-close:before,
	#s-sp-close:after {
		position: absolute;
		top: 38%;
		left: 46%;
}
		#s-sp-close {
		top: 10px;
		right: 10px;
	}
}



/* 
sp-nav（上からスライド）
=================================== */
.sp-nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}

.s-open .sp-nav {
  top: 0;
}

@media only screen and (max-width:767px) {
.sp-nav {height: 80vh;}
}


/* 
sp-nav(右からスライド)
=================================== */
/*
.sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 85vw;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}

.s-open .sp-nav {
  right: 0;
}
*/


/* 
black-bg
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  /* cursor: pointer; */
  z-index: 100;
}

.s-open .black-bg {
  background-color: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 1;
  visibility: visible;
}



/*--------------------------------------------------

 siteCommonStyle

--------------------------------------------------*/
/* selection */
::-moz-selection {
	background: #b2d7fe;
}
/*::selection {
	background: #b2d7fe;
}*/

/* a */
a {
	color: #06f;
	text-decoration: none;
	word-break: break-all;
	font-weight: 600;
}
a:hover {
	text-decoration: underline;
}

a:hover img {
	opacity: .6;
}

p {margin-bottom: 0.5rem;}

/* cap */
.caption,
.cap {
	color: #999999;
	font-size: 83.4%;
}
.cap {
	padding-top: 5px;
}

/* formText */
.formText {
	padding: 3px 2px;
	border: #ccc solid 1px;
}

/* img */
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
}

/* sp pc */
.sp,
.sp_cont {
	display: none !important;
}
@media only screen and (max-width:767px) {
	.sp {
		display: block !important;
	}
	.sp_cont {
		display: inline-block !important;
	}
	.pc {
		display: none !important;
	}
	.anchor{
	padding-top:60px;
	margin-top:-60px;
	}
/*
	  [id] {
    scroll-margin-top: 60px;
	  }
*/
}

/* fade */
@media only screen and (min-width:768px) {
	.fade-area a:hover {
		opacity: 0.7;
	}
}

/* mintyo */
.mintyo {
	font-family: 'Hannari', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', '游明朝', YuMincho, serif;
}

/* noscript */
#noscript {
	position: relative;
	z-index: 5260;
	padding: 1em;
	border-bottom: #000000 solid 1px;
	background: #ffffff;
	color: #000000;
	text-align: center;
}
#noscript span {
	color: #ff0000;
}

/* clearfix */
.clearfix {
	zoom: 1;
}
.clearfix:after {
	display: block;
	clear: both;
	height: 0;
	content: '';
}

/*.shadow {
	text-shadow:0px 0px 1px #fff,0 0 5px #fff,0 0 10px #fff,0 0 15px #fff,0 0 20px #fff,0 0 30px #fff,0 0 40px #fff;
}*/

/*#spMenu.on:before {
	margin-top: 0;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}
#spMenu.on:after {
	margin-top: 0;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}*/


/*--------------------------------------------------

 wrapper

--------------------------------------------------*/
#wrapper{
	overflow: hidden;
	color: #222;
	font-family: "Local Noto Sans JP", "Noto Sans JP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	font-weight: 400;
	font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
	line-height: 1.8;
	text-align: left;
	letter-spacing: .04em; 
	font-feature-settings: "palt";
}

/*--------------------*/


.common-wrap {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 24px;
	padding-left: 24px;
	background-color: #fff;
}

.main-columns .common-wrap {padding-bottom: 48px;padding-top: 24px;}

@media only screen and (max-width:767px) {
	#wrapper {/*        font-size: 1.4rem;*/min-width: 320px;/* line-height: 1.92; *//* letter-spacing: 0; */}
    .common-wrap {
    /* margin-right: auto; */
    /* margin-left: auto; */
    /* padding: 0 10px; */
    }
    .main-columns .common-wrap{padding-bottom:16px;padding-top: 0;}
    ol, ul, dl { margin: 1rem 0;}
    .parts-tab-body > p + p:not(.parts-tab-btn), .parts-tab-body > h3 + p:not(.parts-tab-btn) {margin-top: 1.3rem;}
    th > *:last-child,
    td > *:last-child { margin-bottom: 0;}
    table {margin-bottom: 2rem;}
    .mian-column li {margin-bottom: .5rem;}
    h2 + h3.parts-title-03 {margin-top: 20px;}
}


/*--------------------------------------------------

 header

--------------------------------------------------*/
/*#header-include { height:95px;}*/
#header-include {height: 130px;/* box-shadow: 0 2px 3px rgba(0,0,0,.1); */} /* header2.html */

#header {
	/*overflow: hidden;*/
	position: relative;
	border-top: none;
	background-color: #fff;
	z-index: 100;
	height: 130px;
}
@media only screen and (min-width:960px) {
	#header.type02 .common-wrap {
		max-width: 1200px;
		padding: 0;
		box-shadow: none;
	}
}
@media only screen and (max-width:959px) {
	#header-include, #header2-include { height:0;}

	#header {
		position: fixed;
        height: 75px;
		top: 0;
		left: 0;
		width: 100%;
		border-top-width: 3px;
		z-index: 100;
        box-shadow: 0 2px 3px rgba(0,0,0,.1);
	}
	#header .common-wrap {
		max-width: none;
        padding: 0;
	}
}

@media only screen and (max-width:767px) {
	#header {
        height: 60px;
        min-width: 320px;
 }
}

/* site-title
------------------------------------*/
#header .site-title {
position: absolute;
	margin: 0;
	padding: 20px 0 0;
    height: 74px;
    z-index: 5;
}
#header .site-title a {
	display: block;
}

@media only screen and (max-width:959px) {
	#header .site-title {
		padding: 22px 0 10px 10px;
		line-height: 0;
	}
	#header .site-title img {
		width: auto;
		height: 28px;
	}
}

@media only screen and (max-width:767px) {
	#header .site-title {
		padding: 20px 0 20px 10px;
		line-height: 0;
	}
    #header .site-title {
    height: 50px;
}
	#header .site-title img {
		width: auto;
        height: 20px;
	}
}


/* gnav
------------------------------------*/
#gnav {
	float: right;
    position: relative;
}
#gnav td > *:last-child { padding: inherit; border-radius: inherit;}

@media only screen and (min-width:960px) {
	.type02 #gnav {
		width: 100%;
}

}

@media only screen and (max-width:959px) {
	#gnav {
		overflow-y: auto;
		overflow-x: hidden;
		position: fixed;
		top: 0;
		display: block;
		visibility: hidden;
		pointer-events: none;
		float: none;
		height: 100%;
		width: 85vw;
		max-width: 500px;
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
		z-index: 100;
		padding: 55px 12px 0 12px;
		right: 0;
		transform: translateX(100%);
		filter: blur(5px);
		opacity: 0.5;
		transition: transform 1s ease, filter 1s ease, opacity 1s ease, visibility 0s 1s;
	}
	.open #gnav {
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0);
		filter: blur(0);
		opacity: 1;
		transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease, visibility 0s 0s;
	}
}

/* リサイズ中はtransitionを無効化 */
body.resizing #gnav {
	transition: none !important;
}

/* PC表示時にモバイル用transformをリセット */
@media only screen and (min-width:960px) {
	#gnav {
		transform: none !important;
		transition: none !important;
		visibility: visible !important;
		pointer-events: auto !important;
		filter: none !important;
		opacity: 1 !important;
	}
}

/* size-search - language */
#gnav #language {
	text-align: right;
	margin-right: 10px;
	position: absolute;
	right: 60px;
	top: 16px;
	width: 220px;
}

@media only screen and (max-width:959px) {
#gnav #language {top: 8px;left: 45%;right: 0;transform: translateX(-50%);}
	#gnav #access {
	text-align: right;
	margin-right: 10px;
	position: absolute;
	right: 200px;
	top: 18px;
	/* width: 100px; */
}
}

@media only screen and (max-width: 640px) {
	#gnav #access {right: calc(85vw - 60%);}
	#gnav #language {left: 40%;transform: translateX(-50%);}
}

.lang_Jp #gnav #language a.f-en {visibility:hidden;}

#gnav #language > * {
	display: inline-block;
	margin-left: 5px;
	vertical-align: bottom;
	text-decoration: none;
	line-height: 1.1;
}
#gnav #language span {
	font-size: 15px;
	transform: scale(0.9, 1);
}
#gnav #language a {
	margin-top: 10px;
	padding: 8px 24px;
	color: #404040;
	border: solid 1px #dbdbdb;
	font-family:"Lucida Sans Unicode", "Lucida Grande", "sans-serif";
	letter-spacing: initial;
	border-radius: 16px;
	transition: all 0.3s ease;
}

@media only screen and (max-width:959px) {
	#gnav #language a {
	padding: 8px 16px;
	}
}


#gnav #language a:hover {
	animation: language-ripple 1.5s 1;
}
@keyframes language-ripple {
	0% {box-shadow: 0 0 0 0 #ccc;}
	70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}


#gnav #language a.on,
.en #gnav #language .f-en {
	color: #fff;
	background-color: #1fa2b4;
	box-shadow: 0px 0px 0px 1px #dbdbdb;
	border: solid 1px #FFF;
}
.en #gnav #language .f-jp {
	color: #404040;
	background-color: #fff;
}
#gnav #language .f-jp,#gnav #language .f-en {
	font-size: 13px;
}


/* size-search */
.size-search {
	float: left;
	width: 205px;
	padding: 10px 15px 0 0;
	line-height: 1.1;
}

@media only screen and (min-width:960px) {
	.type02 .size-search {
		position: absolute;
		top: 20px;
		right: 0;
		float: none;
	}
	#gNavInfo {display:none;}
}
@media only screen and (max-width:959px) {
	.size-search {
		float: none;
		width: auto;
		padding: 0;
	}
}

/* size-search - fontsize */
#fontsize {
	margin-bottom: 10px;
	text-align: right;
	display:none;
}
#fontsize > * {
	display: inline-block;
	margin-left: 5px;
	vertical-align: bottom;
	text-decoration: none;
	line-height: 1.1;
}
#fontsize span {
	font-size: 15px;
}
#fontsize a {
	padding: 2px;
	color: var(--primary-color);
	border: var(--primary-color) solid 1px;
}
#fontsize a.on,
.big #fontsize .f-big {
	color: #fff;
	background-color: var(--primary-color);
}
#fontsize .f-mid {
	font-size: 16px;
}
.big #fontsize .f-mid {
	color: var(--primary-color);
	background-color: #fff;
}
#fontsize .f-big {
	font-size: 22px;
}
@media only screen and (max-width:959px) {
	#fontsize {
		display: none;
	}
}
@media only screen and (max-width:767px) {
	#union-side-include {display: none;}
}

/* size-search - search-area */
#search-area {
	position: relative;
	max-width: 800px;
	margin: 90px auto;
}
#search-area form {
	position: relative;
	display: block;
	margin: 0;
}
#search-area table {
	margin: 0;
	border-collapse: collapse;
	width: 100%;
}
#search-area table th,
#search-area table td {
	margin: 0;
	padding: 0;
	/* width: 100%; */
}
.gsc-input-box {
	border: none;
}
.gsib_b {
	width:0;
	height: 0;
}

#search-area .cse .gsc-search-button-v2,
#search-area .gsc-search-button-v2 {
	margin: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	/*outline: none;*/
	appearance: none;
}
#search-area .gsc-search-button {
	width: 44px;
	height: 44px;
	background: url(../img/pc/page/icon_search_bl.svg) no-repeat center center/18px;
	cursor: pointer;
	position: absolute;
	right: 0px;
}

#search-area form input {
	display: block;
	margin: 0!important;
	padding: 0!important;
	background: none!important;
	border: none!important;
	/* border-radius: 0!important; */
	/*outline: none!important;*/
	-webkit-appearance: none!important;
	-moz-appearance: none!important;
	appearance: none!important;
}
#search-area form input[type="text"] {
	display: block;
	width: 100%;
	height: 44px !important;
	padding: 5px 5px 5px 10px !important;
	font-size: 13px;
	border: #e1e1e1 solid 1px !important;
	line-height: 28px;
	border-radius: 4px;
}
#search-area ::-webkit-input-placeholder {
	color: #999;
	font-size:13px;
}
#search-area :-moz-placeholder {
	color: #999;
	font-size:13px;
}
#search-area ::-moz-placeholder {
	color: #999;
	font-size:13px;
}
#search-area :-ms-input-placeholder {
	color: #999;
	font-size:13px;
}


#search-area form input[type="submit"] {
	/* position: absolute; */
	/* top: 0; */
	/* right: 0; */
	/* width: 16px; */
	/* height: 30px; */
	text-indent: -9999px;
	/* background: url(../img/pc/page/icon_search.png) no-repeat center center; */
	/* cursor: pointer; */
}
@media only screen and (max-width:1199px) {
	#search-area {
		max-width: 90%;
		margin: 70px auto;
	}
	#search-area form input[type="text"] {
		/* border-color: transparent; */
	}
}



input.search-box-search-button{
	background-image: url(../img/pc/page/icon_search_bl.svg);
	background-color: transparent!important;
	text-indent: -9999px;
	border: none!important;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	background-position: center;
	min-width: 30px!important;
	}

div.search-box-clear-button {display:none!important;}

ul.keyword-list {padding-left: 0;}
.keyword-list li {list-style-type: none;flex-basis:calc((100% - 40px) / 4);max-width:calc((100% - 40px) / 4);margin: 6px 4px;}
.keyword-list li a {text-decoration: none;padding: 4px 10px;border: 1px solid var(--primary-color);display: flex;width: 100%;height: 100%;align-items: center;justify-content: center;font-size: .813rem;border-radius: 8px;color: var(--primary-color);word-break: break-word;}
.keyword-list li a:hover {opacity: .6;}

@media only screen and (max-width:959px) {
#search-area {
	max-width: 600px;
}
.keyword-list li {list-style-type: none; flex-basis:calc((100% - 40px) / 3); max-width:calc((100% - 40px) / 3);
}
}


@media only screen and (max-width:767px) {
#search-area {
	max-width: 300px;
}
.keyword-list li {list-style-type: none; flex-basis:calc((100% - 20px) / 2); max-width:calc((100% - 20px) / 2);
}
}

/* navs */
#gnav .navs {
	float: right;
	width: 540px;
	padding: 0;
}
#gnav .navs ul {
	padding: 0;
	margin: 0;
}
#gnav .navs li {
	padding: 0;
	text-align: center;
	list-style: none;
	border-left: #dcdcdc solid 1px;
}
#gnav .navs li:nth-last-of-type(2) {
	border-right: #dcdcdc solid 1px;
}
#gnav .navs li a {
	display: block;
	padding-bottom: 0;
	color: var(--primary-color);
	font-size: .875rem;
	text-decoration: none;
	position:relative;
}

#gnav .navs li .icon {
	display: block;
	margin: 0;
	font-size: 12px;
	padding: 2px 0 0;
}

#gnav .navs li .icon img {
width: auto;
height: 18px;
}

#gnav .navs li .txt {
	display: block;
	width: 100%;
	height: 1em;
	line-height: 1.2;
	font-size: 16px;
	font-weight: 600;
	/* letter-spacing: -.03em; */
	/* font-family: "Roboto Condensed", sans-serif; */
	text-align: center;
	color: #343331;
}

#gnav .navs li .txt span {
}
@media only screen and (min-width:960px) {
	.type02 #gnav .navs {
		float: none;
		width: auto;
	}

/* 下線リンクmotionn　中央から左右 */

#gnav .navs li.col-xl > a:before{
	position: absolute;
	display: block;
	left:100%;
	right:100%;
	bottom: 0;
	content: '';
	height: 2px;
	background-color: var(--primary-color);
	transition:left 0.3s ease, right 0.3s ease;
}
#gnav .navs li.col-xl > a:hover::before {
	left:20%;
	right:20%;
}


.bOutline #gnav .navs li#gNavOutline > a:after,
.bBenefit #gnav .navs li#gNavBenefit > a:after,
.bHealth #gnav .navs li#gNavHealth > a:after,
.bCheckup #gnav .navs li#gNavCheckup > a:after,
.bApplication #gnav .navs li#gNavApplication > a:after,
.bForm #gnav .navs li#gNavForm > a:after, 
.bQuestion #gnav .navs li#gNavQuestion > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 60%;
    margin-left:20%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
}
}
@media only screen and (max-width:959px) {
	#gnav .navs {
		float: none;
		width: auto;
		border-top: none;
	}
	#gnav .navs li,
	#gnav .navs li:last-child {
		border: none;
		border-bottom: none;
		margin: 8px 0;
	}

#gnav .navs li:nth-last-of-type(2) {border-right:none;}

	#gnav .navs li a {
		display: table;
		width: 100%;
		padding: 18px 16px;
		color: #444;
		font-size: 17px;
		min-height: 44px;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		transition: all 0.3s ease;
	}
	#gnav .navs li a:hover,
	#gnav .navs li a:active {
		background-color: #fff;
		box-shadow: 0 4px 16px rgba(38, 135, 8, 0.2);
		transform: translateY(-2px);
	}
	#gnav .navs li a:focus {
		outline: none;
	}
	#gnav .navs li a:focus-visible {
		outline: 2px solid var(--primary-color);
		outline-offset: 2px;
	}
	#gnav .navs li .icon,
	#gnav .navs li .txt {
		display: table-cell;
		margin: 0;
		vertical-align: middle;
	}
	#gnav .navs li .icon img {
		max-width: none;
		width: auto;
		height: 18px;
		vertical-align: middle;
	}
	#gnav .navs li .txt span {
		display: block;
		text-align: left;
		padding-left: 10px;
	}
	#gnav .navs li .txt span br {
		display: none;
	}
}



/* inSubMenu
------------------------------------*/
/* overlay */
body {
    position: relative;
}
body:after {    width: 100%;    height: 100%;    position: absolute;    background-color: rgba(0,0,0,0.4);    content: '';    left: 0;    top: 0;    z-index: -1;    opacity: 0;    transition: opacity 0.7s ease-in, z-index 0s 0.7s;}
body.open:after, body.nav_overlay:after {    opacity: 1;    z-index: 50;    height:100vh;    position: fixed;    backdrop-filter: blur(5px);    transition: opacity 0.7s ease-in, z-index 0s 0s;    -webkit-backdrop-filter: blur(5px);}

/* inSubMenu */
#gnav .inSubBtn {
	position: static;
}
.type02 #gnav .navs {
	position: relative;
	height: 46px;
	letter-spacing: 0;
	margin-top: 76px;
	width: 100%;
	/* border-top: 2px solid #999; */
}

@media only screen and (min-width: 960px) {
	#gnav div.inSubMenu { 
		display: none;
		overflow: hidden;
		transition: all 0.3s ease-in-out;
		transform: translateY(-20px);
		opacity: 0;
	}
	
	#gnav .nav_open div.inSubMenu {
		display: flex;
		transform: translateY(0);
		opacity: 1;
	}

	/* PC用オーバーレイ - 遅延なし */
	body:after {
		transition: opacity 0s, z-index 0s;
	}
	body.nav_overlay:after {
		transition: opacity 0s, z-index 0s;
	}
}

@media only screen and (max-width: 959px) {
	#gnav div.inSubMenu {
		display: none;
	}
}
@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

/*#gnav .inSubMenu:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #dcdcdc;
}*/
#gnav .inSubMenu .inSubMenuTtl {
	font-weight: 700;
	width: 15vw;
	/* max-width: 1050px; */
	margin-left: 3vw;
	margin-right: auto;
	background-color: #fff;
	/* flex-grow: 1; */
	min-height: 200px;
}
#gnav .inSubMenu .inSubMenuTtl > a {
	padding: 4px 10px;
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 1.2rem;
	text-align: center;
	position:relative;
	padding: 5px;
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
	z-index:10;
}

@media only screen and (min-width:960px) {

/* メガメニューアニメーション効果（提案D） */
#gnav .inSubMenu .inSubMenuTtl {
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#gnav .inSubMenu .inSubMenuTtl:hover {
	transform: scale(1.03);
	box-shadow: 0 0 20px rgba(190, 62, 52, 0.3);
}

#gnav .inSubMenu .inSubMenuTtl > a {
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 1.13rem;
	color: var(--primary-color);
	letter-spacing: 0.1em;
	position: relative;
	padding-top: 21px;
	line-height: 1.2;
}

#gnav .inSubMenu .inSubMenuTtl > a::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 2px;
	background-color: var(--primary-color);
}





#gnav .inSubMenu .inSubMenuTtl > a:after {
	content: '';
	background-image: url("../img/pc/page/navi_sample_img2.png");
	background-size: 70%;
	background-position: center bottom;
	background-repeat:no-repeat;
	width:100%;
	height: 100%;
	display:block;
	position:absolute;
	bottom: 8px;
	z-index:-1;
}

#gnav #gNavHealth .inSubMenu .inSubMenuTtl > a:after {
	background-image: url("../img/pc/page/navi_sample_img5.png");
}

#gnav #gNavForm .inSubMenu .inSubMenuTtl > a:after {
	background-image: url("../img/pc/page/navi_sample_img4.png");
}

#gnav #gNavApplication .inSubMenu .inSubMenuTtl > a:after {
	background-image: url("../img/pc/page/navi_sample_img4.png");
}

#gnav #gNavBenefit .inSubMenu .inSubMenuTtl > a:after {
	background-image: url("../img/pc/page/navi_sample_img3.png");
}
}

#gnav .navs .inSubMenuLst li:nth-last-of-type(2) {
	border-right: none;
}

#gnav .inSubMenuLst{margin-left: 2vw; width: 80vw;}
#gnav .inSubMenu ul {
	display: flex;
	flex-wrap: wrap;
	/*border-top: #dcdcdc solid 1px;*/
	/* width: 85vw; */
	/* max-width: 1050px; */
	/* margin-left: 2vw; */
	/* margin-right: auto; */
	margin-bottom: 10px;
}
#gnav .inSubMenu li {
	display: flex;
	align-items: center;
	/* background-color: #fff; */
	margin: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	flex-basis: calc(75vw / 5);
	max-width: calc(75vw / 5);
	border-radius:4px;
}

#gnav .inSubMenu .inSubMenuTtl_sub {
    font-weight: 700;
    color: var(--primary-color);
    /* background-color: var(--primary-color); */
    display: block;
    /* padding: 2px 15px; */
    font-size: 14px;
    position: relative;
    margin-right: 32px;
    border-bottom: 3px solid var(--secondary-color);
}

#gnav .inSubMenu .inSubMenuTtl_sub:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px var(--primary-color);
	bottom: -3px;
	width: 20%;
}

@media only screen and (max-width:959px) {
	#gnav .inSubMenu .inSubMenuTtl_sub {
	margin-right:inherit;
	}
}


#gnav .inSubMenu li a small {
font-size: 100%;
font-weight:600;
}

#gnav .inSubMenu li a:hover {
opacity:0.6;
}

#gnav .inSubMenu li a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8px 24px 8px 24px;
	text-align: left;
	line-height: 1.2;
	color: #333;
	font-weight: 600;
	word-break: break-word;
}
#gnav .inSubMenu li a:before {
	position: absolute;
	top: 53%;
	left: 8px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-top: var(--primary-color) solid 2px;
	border-right: var(--primary-color) solid 2px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}

@media only screen and  (min-width: 960px){
#gnav .inSubMenu {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	display: none;
	background: #efedea;
	top: 54px;
	text-align: left;
	/*width: 100%;
	left: 0;*/
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 20px 0;
	min-height: 280px;
}

#gnav .inSubMenu .megamenu-close {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

#gnav .inSubMenu .megamenu-close:hover {
	background: #f0f0f0;
	transform: rotate(90deg);
}

#gnav .inSubMenu .megamenu-close:before,
#gnav .inSubMenu .megamenu-close:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background: var(--primary-color);
}

#gnav .inSubMenu .megamenu-close:before {
	transform: rotate(45deg);
}

#gnav .inSubMenu .megamenu-close:after {
	transform: rotate(-45deg);
}

.col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
}

@media only screen and (max-width:959px) {
		#gnav .navs {
		float: none;
		width: auto;
		border-top: none;
		display: block !important;
	}

    #gnav .navs ul {width: 100%; margin-left: 0;}

	#gnav .navs li,
	#gnav .navs li:last-child {
		border: none;
		border-bottom: none;
		height: auto;
		padding: 0 8px;
		margin: 8px 0px;
		position: relative;
	}
	#gnav .navs li a {
		display: flex;
		width: 100%;
		padding: 18px 16px;
		height: auto;
		margin: 0;
		color: #333;
		font-size: 17px;
		min-height: 44px;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		transition: all 0.3s ease;
		flex-direction: column;
	}
	#gnav .navs li a:hover,
	#gnav .navs li a:active {
		background-color: #fff;
		box-shadow: 0 4px 16px rgba(38, 135, 8, 0.2);
		transform: translateY(-2px);
	}
	#gnav .navs li a:focus {
		outline: none;
	}
	#gnav .navs li a:focus-visible {
		outline: 2px solid var(--primary-color);
		outline-offset: 2px;
	}
	#gnav .navs li .icon,
	#gnav .navs li .txt {
		display: table-cell;
		margin: 0;
		vertical-align: middle;
		border: none;
	}
	#gnav .navs li .txt {
		color: var(--primary-color);
	}
#gnav .navs > ul > li:nth-last-of-type(2) span.txt{border:none;}

	
	#gnav .navs li .txt span {
		display: block;
		text-align: center;
	}
	#gnav .navs li .txt span br {
		display: none;
	}

	#gnav .navs li + li .txt span:before {
    border-right: none;
	}
	#gnav .inSubMenu li {
	flex-basis: 100%;
	max-width: 100%;
	}

	#gnav .inSubBtn {
		position: static;
	}
	#gnav .inSubBtn > a {
		position: relative;
	}
	#gnav .inSubBtn > a:before {
		position: absolute;
		top: 50%;
		right: 15px;
		display: block;
		content: '';
		width: 8px;
		height: 8px;
		margin-top: -5px;
		border-bottom: var(--primary-color) solid 2px;
		border-right: var(--primary-color) solid 2px;
		transition: all 0.3s ease;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	}
	#gnav .inSubBtn a.on:before {
		margin-top: -3px;
		transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
	}
	#gnav .inSubMenu {
		position: static;
		width: auto;
		height: auto;
		padding: 5px 10px;
		/* background-color: #ddd; */
		background-image: linear-gradient(0deg, #eee 0%, #ffffff 100%);
	}
	#gnav .inSubMenu:before {
		display: none;
	}
	#gnav .inSubMenu .inSubMenuTtl {
		padding: 8px 0 0 0px;
		font-size: 14px;
		width: auto;
		text-align: left;
		color: #333;
		background-color: inherit;
		margin-left: auto;
		min-height: inherit;
	}
	#gnav .inSubMenu .inSubMenuTtl > a {
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: var(--primary-color);
		width: auto;
		margin: 0 auto;
		color: #fff;
		background-image: none;
		font-size: 16px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	}
	#gnav .inSubMenu .inSubMenuTtl > a:hover,
	#gnav .inSubMenu .inSubMenuTtl > a:active {
		background-color: var(--primary-color) !important;
		color: #fff !important;
		opacity: 0.9 !important;
	}
#gnav .inSubMenu .inSubMenuTtl > a:before {
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-top: #fff solid 2px;
	border-right: #fff solid 2px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
	
	#gnav .inSubMenu ul {
		display: flex;
		border-top: none;
		width: auto;
		margin: 5px 0;
	}
	#gnav .inSubMenu li {
		display: block;
	}
	#gnav .inSubMenu li,
	#gnav .inSubMenu li:last-child {
		width: 100%;
		border: none;
		background-color: transparent;
		margin-bottom: 8px;
	}
	#gnav .inSubMenu li + li {
		border-top: none !important;
	}
	#gnav .inSubMenu li a {
		width: 100%;
		padding: 14px 40px 14px 20px;
		font-size: 15px;
		color: #333;
		min-height: 44px;
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
		transition: all 0.3s ease;
	}
	#gnav .inSubMenu li a:hover,
	#gnav .inSubMenu li a:active {
		background-color: #fff;
		box-shadow: 0 2px 8px rgba(38, 135, 8, 0.15);
		transform: translateX(4px);
	}
	#gnav .inSubMenu li a:focus {
		outline: none;
	}
	#gnav .inSubMenu li a:focus-visible {
		outline: 2px solid var(--primary-color);
		outline-offset: 2px;
	}

	#spMenu, #spMenu-text {
		display: block;
	}

.bOutline #gnav .navs li#gNavOutline > a,
.bBenefit #gnav .navs li#gNavBenefit > a,
.bHealth #gnav .navs li#gNavHealth > a,
.bCheckup #gnav .navs li#gNavCheckup > a,
.bApplication #gnav .navs li#gNavApplication > a,
.bForm #gnav .navs li#gNavForm > a, 
.bQuestion #gnav .navs li#gNavQuestion > a {
	color: #333;
	}
#gnav .inSubMenu li a:before {
	position: absolute;
	top: 55%;
	right: 15px;
	left:auto;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-top: var(--primary-color) solid 2px;
	border-right: var(--primary-color) solid 2px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
#gnav .inSubMenuLst{margin-left: 0;width: inherit;}

#gnav .inSubMenu .inSubMenuTtl > a:after {
	background-image:none;
}

}

/* spMenu
------------------------------------*/
#spMenu {
	position: absolute;
	top: 0;
	right: 7px;
	display: none;
	width: 55px;
	height: 100%;
	cursor: pointer;
	z-index: 15;
}
#spMenu span,
#spMenu:before,
#spMenu:after {
	position: absolute;
	top: 38%;
	left: 50%;
	display: block;
	content: '';
	width: 32px;
	height: 2px;
	margin-left: -15px;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
#spMenu span {
	margin-top: -2px;
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}
#spMenu:before {
	margin-top: -11px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
}
#spMenu:after {
	margin-top: 7px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
}
/* ハンバーガーアイコン → X字アニメーション */
.open #spMenu span {
	opacity: 0;
	transform: translateX(20px);
	-webkit-transform: translateX(20px);
}
.open #spMenu:before {
	margin-top: -2px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
.open #spMenu:after {
	margin-top: -2px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}

#spMenu-text {
    position: absolute;
    right: 16px;
    top: 60%;
    display: none;
    font-size: 10px;
    font-weight: 700;
    z-index: 5;
}

	div:has(.s-open) {
		#spMenu, #spMenu-text {
		display: none;
	}
	}


@media only screen and (max-width:959px) {
	#spMenu, #spMenu-text {
		display: block;
	}
}


/* sp-close
------------------------------------*/
#sp-close, #spClose-text {
	display: none;
}

@media only screen and (max-width:959px) {
#sp-close, #spClose-text {
	display: block;
}

.type02	#gnav .navs {
    margin-top: 20px;
    position: relative;
    overflow-y: auto;
    height: calc( 100vh - 130px );
    display: block;
    visibility: visible;
}

.type02	#gnav .navs > ul {
    padding-bottom:80px;
    display: block;
    visibility: visible;
}

/* モバイル時の.navsが確実に表示されるように */
#gnav .navs {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.open #gnav .navs {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



	#sp-close {
		position: absolute;
		top: 0;
		right: 5px;
		width: 55px;
		height: 100%;
		cursor: pointer;
		z-index: -1;
		pointer-events: none;
transition: z-index 0s 1s, pointer-events 0s 1s;
	}
	.open #sp-close {
		z-index: 110;
		pointer-events: auto;
transition: z-index 0s 0s, pointer-events 0s 0s;
	}
	
	.open #spClose-text {
	right: 16px;
	z-index: 105;
transition: z-index 0s 0s, right 0s 0s;
	}
    
	#sp-close span,
    #sp-close:before,
	#sp-close:after {
		position: absolute;
		top: 38%;
		left: 50%;
		display: block;
		content: '';
		width: 32px;
		height: 2px;
		margin-left: -15px;
		background-color: var(--primary-color);
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	}

	/* 初期状態：三本線 */
    #sp-close span {
		margin-top: -2px;
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}

	#sp-close:before {
		margin-top: -11px;
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}

	#sp-close:after {
		margin-top: 7px;
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}

	/* .openの時：×に変化 */
	.open #sp-close span {
		opacity: 0;
		transform: translateX(20px);
		-webkit-transform: translateX(20px);
	}

	.open #sp-close:before {
		margin-top: -2px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	}

	.open #sp-close:after {
		margin-top: -2px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
	}
	
	#spClose-text  {
    position: absolute;
    right: -80px;
    top: 60%;
    display: block;
    font-size: 10px;
    font-weight: 700;
    z-index: 5;
transition: z-index 0s 1s, right 0s 1s;
}
}

#spMenu-text,
#spClose-text {
font-family: -apple-system, BlinkMacSystemFont, Arial, "sans-serif";
color:#222;
}

/* overlay
------------------------------------*/
#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 90;
	transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}



/*--------------------------------------------------

 container

--------------------------------------------------*/
#container {
	padding: 22px 0 0;
	background-image: linear-gradient(22.5deg, rgba(210, 180, 140, 0.04) 0%, rgba(210, 180, 140, 0.04) 29%,rgba(255, 248, 235, 0.02) 29%, rgba(255, 248, 235, 0.02) 37%,rgba(180, 150, 110, 0.04) 37%, rgba(180, 150, 110, 0.04) 55%,rgba(255, 250, 240, 0.02) 55%, rgba(255, 250, 240, 0.02) 69%,rgba(200, 170, 130, 0.04) 69%, rgba(200, 170, 130, 0.04) 71%,rgba(255, 252, 245, 0.02) 71%, rgba(255, 252, 245, 0.02) 100%),linear-gradient(67.5deg, rgba(190, 160, 120, 0.04) 0%, rgba(190, 160, 120, 0.04) 14%,rgba(180, 150, 110, 0.04) 14%, rgba(180, 150, 110, 0.04) 40%,rgba(220, 190, 150, 0.02) 40%, rgba(220, 190, 150, 0.02) 48%,rgba(255, 245, 230, 0.02) 48%, rgba(255, 245, 230, 0.02) 60%,rgba(185, 155, 115, 0.04) 60%, rgba(185, 155, 115, 0.04) 95%,rgba(255, 250, 240, 0.02) 95%, rgba(255, 250, 240, 0.02) 100%),linear-gradient(135deg, rgba(220, 190, 150, 0.02) 0%, rgba(220, 190, 150, 0.02) 6%,rgba(255, 252, 245, 0.02) 6%, rgba(255, 252, 245, 0.02) 18%,rgba(190, 160, 120, 0.04) 18%, rgba(190, 160, 120, 0.04) 27%,rgba(180, 150, 110, 0.04) 27%, rgba(180, 150, 110, 0.04) 49%,rgba(195, 165, 125, 0.04) 49%, rgba(195, 165, 125, 0.04) 76%,rgba(220, 190, 150, 0.02) 76%, rgba(220, 190, 150, 0.02) 100%),linear-gradient(90deg, #ffffff,#ffffff);
	/*
background-color:rgba(255,255,255,0.5);
background-blend-mode:lighten;
*/
}
.main-columns {
	/* padding-top: 20px; */
}
@media only screen and (max-width:959px) {
	#container {
		padding: 100px 4px 0 4px;
	}
}
@media only screen and (max-width:767px) {
	#container {
    padding: 90px 10px 0 10px;
    margin-bottom: 0;
    background-color: #fff;
    background-image: none;
 }
	.main-columns {
		padding-top: 0;
		/* margin-bottom: 40px; */
	}
}

/* side-area
------------------------------------*/
.side-area {
	padding-left: 32px;
}
.side-area .widget-box .ttl {
	display: table;
	width: 100%;
	padding: 17px 10px 17px 20px;
	color: #fff;
	font-weight: 700;
	line-height: 1.3;
	background-color: var(--primary-color);
	border-radius: 8px 8px 0 0;
}


.side-area .widget-box .ttl:before {
	font-family: 'icomoon';
	content: "\e9bb";
	color:#fff;
	margin-right:5px;
	font-weight: 500;
}



.side-area .widget-box .ttl a {
color: #fff;
text-decoration:none;
}

.side-area .widget-box .ttl > * {
	display: inline-block;
	/* vertical-align: middle; */
}
.side-area .widget-box .ttl.icon > *:first-child {
	width: 42px;
}
.side-area .widget-box .ttl.icon {
	padding: 10px 10px 10px 20px;
}
.side-area.bg-none {
	background: transparent;
}
@media only screen and (max-width:767px) {
.side-area {
	display:block;
	padding-left: 0;
	margin-top: 50px;
}

.side-area ul.parts-widget-list01 {
	display:flex;
	flex-wrap: wrap;
	padding: 16px 0px;
	border: none;
}
.side-area ul.parts-widget-list01 li {
    flex-basis: 33%;
}

.side-area ul.parts-widget-list01 li a:before {
    position: absolute;
    top: 1.3rem;
    left: 0;
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    border-top: #aaa solid 1px;
    border-right: #aaa solid 1px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.side-area ul.parts-widget-list01 li a small {
    margin-left: 0;
    font-size: inherit;
}
	.side-area .widget-box .ttl {
		display: block;
		padding: 10px 0;
		text-align: center;
	}
	.side-area .widget-box .ttl > * {
		display: inline-block;
		font-size: 15px;
}

}
.side-secure {
	margin-top: 25px;
	text-align: center;
}
@media only screen and (max-width:767px) {
	.side-secure {
		display: none;
	}
}

/*--------------------------------------------------

 font-size

--------------------------------------------------*/
.f15 {
	font-size: 1.5rem;
}
.f14 {
	font-size: 1.4rem;
}



/*--------------------------------------------------

 footer

--------------------------------------------------*/
#footer {
	position: relative;
	padding-top: 15px;
	background: #BE3E34;
}
#footer .fsecur {
	display: none;
}
#footer .fnav {
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 700;
}
#footer .fnav ul {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	padding: 25px;
}
#footer .fnav li {
	display: block;
	margin: 0 8px;
	line-height: 1;
}
#footer .fnav li a {
	display: block;
	color: #fff;
	font-size: .875rem;
	text-decoration: none;
	font-weight: 700;
	/* font-family: "Roboto Condensed", sans-serif; */
}
#footer .flogo {
	margin: 40px auto;
	text-align: center;
	line-height: 0;
}
#footer #copyright {
	padding: 14px 0;
	font-size: 13px;
	text-align: center;
	background-color: #EEEEEE;
	/* font-family: -apple-system, BlinkMacSystemFont, "游ゴシック", "Yu Gothic", sans-serif; */
}
@media only screen and (max-width:767px) {
	#footer {
		padding-top: 0;
	}
	#footer .fsecur {
		display: none;
		width: 50px;
		margin: 0 auto 10px;
        }
	#footer .fnav {
    margin: 0 auto 20px;
    padding-top: 0;
 }
    #footer .fnav ul {
    margin: 0 auto 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* flex-grow: 1; */
		justify-content: flex-start;
    }   
    
	#footer .fnav li {
		margin: 0;
		line-height: 1.2;
		text-align: left;
		flex-basis: 50%;
		max-width: 50%;
		border-bottom: 1px solid #ddd;
		flex-grow: 0;
	}

	#footer .fnav li:nth-child(2n-1) {
		border-right: 1px solid #ddd;
	}

	#footer .fnav li a {
		font-size: .75rem;
		padding: 1em;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#footer .flogo {
		margin: 20px 10px;
		text-align: center;
	}
	#footer .flogo img {
		max-width: 215px;
	}
	#footer #copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}


#pagetop {
	position: fixed;
	bottom: -110px;
	right: 0;
	z-index: 80;
	transition: 0.3s;
}
#pagetop.up {
	bottom: 0;
}
#pagetop.up.stop {
	position: fixed;
	bottom: 0;
	/* top: 100px; */
}
/*#pagetop > div {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	padding: 20px 10px;
}*/
#pagetop a {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	margin: 15px;
	background: url(../img/pc/page/pagetop.png) no-repeat center center;
	background-size: 100% auto;
	opacity: 0.7;
	filter: grayscale(1);
}


@media only screen and (max-width:767px) {
	#pagetop.up.stop {
	top: inherit;
	position: fixed;
	}
	#pagetop a {
		width: 50px;
		height: 50px;
	}
}


/*--マージン確保--*/
p + div,
p + table {
  margin-top: 2rem;
}


/*--Print--*/
@media print {
#header-include, #header2-include, #header {height: 90px;}
	#gnav,
	#spMenu,
	#spMenu span,
	#spMenu:before,
	#spMenu:after,
	#switch_css,
	#pagetop {
		display: none;
	}
	#container:after {
    content: '';
    display: block;
    height: 30px;
	}
}



/*--------------------------------------------------

index card

--------------------------------------------------*/
.index-cards .row > div {
	margin: 12px;
	flex-basis: calc((100% - 96px) / 4);
	max-width: calc((100% - 96px) / 4);
	flex-grow: 1;
	flex-shrink: 0;
	border:none;
	box-shadow: 0 1px 8px rgba(0,0,0,0.1);
	border-radius: 8px;
}

.index-cards .row > div p.card-text {
	font-size: clamp(0.875rem, 0.852rem + 0.11vw, 0.938rem);
}

@media only screen and (max-width:1199px) {
.index-cards .row > div {
	/* margin: 12px; */
	flex-basis: calc((100% - 80px) / 3);
	max-width: calc((100% - 80px) / 3);
}	
} 

@media only screen and (max-width:767px) {
.index-cards .row > div {
	/* margin:10px; */
	flex-basis: calc((100% - 48px) / 2);
	max-width: calc((100% - 48px) / 2);
}
}

@media only screen and (max-width:565px) {
.index-cards .row > div {
	margin: 12px 24px;
	flex-basis: calc(100% - 48px);
	max-width: calc(100% - 48px);
}
}


.parts-breadcrumb li:first-child a:before {
	content: "\e900";
	font-family: 'icomoon';
	margin-right:4px
}

.index-cards .row > div.streched:hover {
		box-shadow: 0 1px 12px rgba(102,102,255,0.5);
}


.stretched-link::after{
  position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)
}

.streched .text-link{
  position: relative; z-index: 2;
}


/* 退職後の健康管理
--------------------------------------------------*/

.parts-table-02.retirement {border-top: 4px solid #c8e3ff; border-left: none; border-bottom: 4px solid #c8e3ff;}
.parts-table-02.retirement tr th, .parts-table-02.retirement tr td {background-color: #fff; border: none;} 
.parts-table-02.retirement tr:nth-child(even) th, .parts-table-02.retirement tr:nth-child(even) td {background-color: #eff7ff;}
.parts-table-02.retirement th img {max-width: 100px; height: auto;}
.post_retirement_wrap {display: flex;}
.post_retirement_wrap p img {max-width: 200px; height: auto; margin: 0 0 0 2em;}
.post_retirement_wrap.reverse {flex-direction: row-reverse;}
.post_retirement_wrap.reverse p img {max-width: 200px;height: auto;margin: 0 4em 0 0;}

.parts-table-02.retirement02 thead th {background-color: #166ac5; color: #fff; text-align: center;}

@media only screen and (max-width:768px) {
.post_retirement_wrap, .post_retirement_wrap.reverse {flex-direction: column;}
.post_retirement_wrap p:has(img) {margin: 1em auto;}
.post_retirement_wrap p img, .post_retirement_wrap.reverse p img {margin: 0;}
}

.index-cards.retirement_wrap02 .row > div {
	margin: 10px auto;
	flex-basis: calc((100% - 48px) / 2);
	max-width: calc((100% - 48px) / 2);
}

@media only screen and (max-width:565px) {
.index-cards.retirement_wrap02 .row > div {
	margin:10px 20px;
	flex-basis:calc(100% - 40px);
	max-width:calc(100% - 40px);
}
}
.index-cards.retirement_wrap02 .card-title {
  display: block;
  padding: 10px 14px;
  color: #fff;
  /* font-size: 1.8rem; */
  font-weight: 700;
  text-decoration: none;
  border: #166ac5 solid 1px;
  background-color: #166ac5;
}

.index-cards.retirement_wrap02 .row > div {
	border: #166ac5 solid 2px;
}
.index-cards.retirement_wrap02 .card-body {position: relative;overflow: hidden;margin: 0 20px;}
.index-cards.retirement_wrap02 .card-body .list-group {margin-top: 1em;margin-bottom: .5em;}
.index-cards.retirement_wrap02 .card-body img {
   border-radius: 50%;
}


/*--------------------------------------------------

 fat_footer

--------------------------------------------------*/

#fat_footer {
	position: relative;
	padding-top: 30px;
	border-top: var(--primary-color) solid 3px;
	/* background-color: #f9f8f4; */
}
#fat_footer .fsecur {
	display: none;
}
#fat_footer .fnav {
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 700;
}
#fat_footer .fnav li {
	display: inline-block;
	margin-right: 20px;
	line-height: 1.2;
}
#fat_footer .fnav li a {
	display: block;
	color: #535353;
	font-size: .813rem;
	text-decoration: none;
	font-weight: 500;
}
#fat_footer .fnav li a:hover {
	opacity:0.6;
}

#fat_footer .flogo {
	margin: 40px auto;
	text-align: center;
	line-height: 0;
}
#fat_footer #copyright {
	padding: 14px 0;
	font-size: 13px;
	text-align: center;
	background-color: #2c4100;
	color: #fff;
}
@media only screen and (max-width:959px) {
	#fat_footer {
		padding-top: 0;
		/* border-top: none; */
	}
	#fat_footer .fsecur {
		display: none;
		width: 50px;
		margin: 0 auto 10px;
        }
	#fat_footer .fnav {
    margin: 0 auto 0px;
    padding-top: 0;
    /* display: none; */
 }
    #fat_footer .fnav ul {
    margin: 0 auto 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* flex-grow: 1; */
    }   
    
	#fat_footer .fnav li {
		margin: 0;
		line-height: 1.2;
		text-align: left;
		flex-basis: 50%;
		max-width: 50%;
		border-bottom: 1px solid #ddd;
		flex-grow: 0;
	}

	#fat_footer .fnav li:nth-child(2n-1) {
		border-right: 1px solid #ddd;
	}

	#fat_footer .fnav li a {
		padding: 1em;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#fat_footer .flogo {
		margin: 20px 10px;
		text-align: center;
	}
	#fat_footer .flogo img {
		max-width: 215px;
	}
	#fat_footer #copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}


.f_footer_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.f_footer_wrap .f_footer {
	display:flex;
	flex-basis:calc(100% / 5);
	max-width:calc(100% / 5);
}

.f_footer ul {display: flex;flex-direction: column;}
.f_footer ul li { padding: 10px 0;}
#fat_footer .f_footer li.parent a{color: var(--primary-color);font-size: 1rem;margin-bottom: 1rem;}
#fat_footer .f_footer li.parent a::before {
  font-family: 'icomoon';
  content: "\e92e";
  color: var(--primary-color);
  margin-right: 10px;
  font-weight:400;
  font-size: 1em;
}


#fat_footer .f_footer_wrap .fnav2 {
	display:none;
}

@media only screen and (max-width:959px) {
	.f_footer_wrap {margin: auto;}
	.f_footer_wrap .f_footer {display:none;}
	#fat_footer .f_footer_wrap .fnav2 {
		display:flex;
		margin-bottom:0;
		width: 100%;
		}

}

/* bg_onetime_popup styles */
/* body.open_popup {
    overflow: hidden;
} */

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    max-width: 650px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.open_popup .onetime_popup {
    opacity: 1;
}

.onetime_popup_title {
    position: relative;
    padding: .5em;
    margin: 0px;
    background-color: #eb6e32;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity 0.3s;
}

.onetime_popup_title_close:hover {
    opacity: 0.7;
}

.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 20px;
    height: 3px;
    background-color: #fff;
    content: "";
}

.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 2em;
    /* text-align: center; */
    font-size: 1.125rem;
    line-height: 1.8;
}

.onetime_popup_content p {
    margin: 0;
    color: #333;
}

/* レスポンシブ対応 */
@media only screen and (max-width: 767px) {
    .onetime_popup {
        width: 90%;
        max-width: 400px;
        height: 90vh;
        overflow: auto;
    }
    
    .onetime_popup_title {
        /* padding: 1.2em 50px; */
        /* font-size: 1.13rem; */
    }
    
    .onetime_popup_content {
        padding: 2em 1.5em;
        font-size: 1rem;
        /* overflow: auto; */
    }
}


/* ダークモード用色指定
--------------------------------------------------*/

#Search-btn-Area .parts-tab-body {background-color:#f5f5f5;}
#Search-btn-Area .parts-box-btns .row > div { background-color:#fff;}

/*--News title--*/
.newsList li a,
.news-topics .index-btn a{
	color:#535353;
}

.newsList li {
	border-bottom: #dfdddd dotted 1px;
}

/*--------------------------------------------------
アクセシビリティ
--------------------------------------------------*/

/* スクリーンリーダー専用テキスト */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/*--------------------------------------------------
inSubMenu ホバー効果の改善（ガラス風エフェクト - グラスモーフィズム）
--------------------------------------------------*/

#gnav .inSubMenu li a {
	position: relative !important;
	transition: all 0.3s ease !important;
	border-radius: 6px !important;
	border: 1px solid transparent !important;
	margin-left: 0 !important;
	margin-right: 8px !important;
}

#gnav .inSubMenu li a:hover {
	background: #fff !important;
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
	border: 1px solid #FCD4D2 !important;
	box-shadow: 0 4px 16px rgba(190, 62, 52, 0.2) !important;
	color: #BE3E34 !important;
	opacity: 1 !important;
}
