@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */

.header_pc_inner .header_bnr,
.header_nav_sp .header_sp_upr .header_bnr,
footer .footerU .blk4{
	opacity: 1!important;
}

.header_pc_inner .header_bnr:hover,
.header_nav_sp .header_sp_upr .header_bnr:hover,
footer .footerU .blk4:hover{
	opacity: 0.5!important;
}


.pre_wrap {
	_display: none;
}



*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


.pc_only{
	display: block
}

.sp_only{
	display: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

html * {
  visibility: hidden;
}

html.wf-active * {
  visibility: visible;
}

/*==Noto Sans JP==*/
/*Regular*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* Bold */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
}
/*==Zen Maru Gothic==*/
/*Regular*/
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/ZenMaruGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
} /*Medium*/
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/ZenMaruGothic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: bold;
}
body {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: #373737;
  line-height: 1;
  font-family:YakuHanJP,  "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  min-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; 
  min-height: 100vh;
}

header {
  width: 100%;
  height: 93px;
}

.header_pc_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_pc_inner .header_title {
  max-width: 350px;
}
.header_pc_inner .header_title a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_pc_inner .header_title img {
  width: auto;
  max-height: 100%;
}
.header_pc_inner .header_bnr {
  max-width: 288px;
  margin-left: 20px;
}
.header_pc_inner .header_bnr a {
  display: block;
}

.header_nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 0px;
  height: 93px;
}

.header_nav_upr {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_nav_upr .period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.header_nav_upr .period_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  letter-spacing: 0.008em;
}
.header_nav_upr .period_title {
  font-size: 1rem;
  margin-right: 10px;
  color: #3393a1;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: #e78098;
  text-underline-offset: 4px;
}

.header_nav_lwr {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  max-width: 645px;
}
.header_nav_lwr .nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.header_nav_lwr .nav_items .nav_item {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
	padding-right: 5px;
	letter-spacing: -0.5px;
}
.header_nav_lwr .nav_items .nav_item:not(.active):hover {
  /* background-color: rgba(255, 255, 255, 0.8);*/
}
.header_nav_lwr .nav_items .nav_item.kenkyu.on p {
  color: #e78098;
}
.header_nav_lwr .nav_items .nav_item.kenkyu:hover {
  /* background-color: rgba(255, 255, 255, 0.8); */
  cursor: pointer;
}
.header_nav_lwr .nav_items .nav_item.kenkyu:hover p,
.header_nav_lwr .nav_items .nav_item.kenkyu:hover a {
  color: #e78098;
}
.header_nav_lwr .nav_items .nav_item:hover p,
.header_nav_lwr .nav_items .nav_item:hover a {
  color: #e78098;
}
.header_nav_lwr .nav_items .nav_item:not(.active).is-active {
  background-color: rgba(255, 255, 255, 0.8);
}
.header_nav_lwr .nav_items .nav_item.active a,
.header_nav_lwr .nav_items .nav_item.active p {
  color: #e78098;
}
.header_nav_lwr .nav_items .nav_item a,
.header_nav_lwr .nav_items .nav_item .navbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header_nav_lwr .nav_items .nav_item a::before,
.header_nav_lwr .nav_items .nav_item .navbtn::before {
  content: "";
  display: inline;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: 6px;
  background: url("../images/svg/ico_nav_menu.svg") no-repeat top center/contain;
}

/* tokubetsu */

.header_nav_lwr .nav_items .nav_item.tokubetsu:hover {
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.header_nav_lwr .nav_items .nav_item.tokubetsu:hover p,
.header_nav_lwr .nav_items .nav_item.tokubetsu:hover a {
    color: #555555;
}

.header_nav_lwr .nav_items .menu_contents li:hover {
    background-color: rgba(231, 128, 152, 0.5);
}

.header_nav_lwr .nav_items .menu_contents li:hover a {
    background-color: rgba(231, 128, 152, 0.5);
    color: #fff !important;
}

.header_nav_lwr .nav_items .menu_contents li.spe a,
.header_nav_lwr .nav_items .menu_contents li.spe span{
	padding:0 10px;
}

.header_nav_lwr .nav_items .menu_contents li.spe span:before{
	content: none;
}

/* tokubetsu */

.header_nav_lwr .nav_items .menu_contents {
  z-index: 7777;
  position: absolute;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  top: 93px;
  margin: auto;
  left: 0;
  right: 0;
  width: 1080px;
  padding: 34px 0 9px;
}
.header_nav_lwr .nav_items .menu_contents .mega_close {
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 30px;
  top: 10px;
  right: 10px;
  background: url("../images/svg/ico_close.svg") no-repeat center center/30px 30px;
}
.toppage .header_nav_lwr .nav_items .menu_contents {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header_nav_lwr .nav_items .menu_contents > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.header_nav_lwr .nav_items .menu_contents li {
  border: 1px solid #e78098;
  border-radius: 5px;
  width: 195px;
  height: 80px;
	padding:7px;
	line-height: 1.3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0 30px 26px;
}
.header_nav_lwr .nav_items .menu_contents li > a {
  font-size: 0.9375rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_nav_lwr .nav_items .menu_contents li:hover {
  background-color: rgba(231, 128, 152, 0.5);
}
.header_nav_lwr .nav_items .menu_contents li.ico > a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.toppage .header_nav_lwr .nav_items .menu_contents li.ico > a {
  color: #555555 !important;
}
.toppage .header_nav_lwr .nav_items .menu_contents li.ico:hover > a {
  color: #e78098 !important;
}
.header_nav_lwr .nav_items .menu_contents li a > img {
  display: block;
  max-height: 100%;
}
.header_nav_lwr .nav_items .menu_contents li a::before {
  display: none;
}
.header_nav_lwr .nav_items .menu_contents li:last-child {
  margin-right: auto;
}

.header_nav_sp {
  display: none;
}
.header_nav_sp .header_sp_upr {
  height: 52px;
  overflow: hidden;
}
.header_nav_sp .header_sp_upr .header_title {
  margin: 0;
  padding: 0;
  display: block;
  max-width: 254px;
  width: calc(100% - 140px);
  float: left;
  height: 100%;
}
.header_nav_sp .header_sp_upr .header_title a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_nav_sp .header_sp_upr .header_title img {
  max-height: 51px;
  width: auto;
  vertical-align: top;
}
.header_nav_sp .header_sp_upr .header_bnr {
  min-width: 0;
  width: 140px;
  float: right;
}
.header_nav_sp .header_sp_upr .header_bnr a {
  display: block;
}
.header_nav_sp .nav_items_sp {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 44px;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_nav_sp .nav_items_sp .nav_item_sp {
  margin: 0;
  padding: 0;
  background-color: #a3bb80;
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  max-width: 25%;
  min-width: 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  overflow: hidden;
	text-align: center;
}
.header_nav_sp .nav_items_sp .nav_item_sp > a,
.header_nav_sp .nav_items_sp .nav_item_sp > span{
  color: #fff;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.header_nav_sp .nav_items_sp .nav_item_sp.is-active {
  background-color: #fff;
  color: #e78098;
}
.header_nav_sp .nav_items_sp .nav_item_sp .navbtn {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_nav_sp .nav_items_sp .nav_item_sp br {
  _display: none;
}
.header_nav_sp .nav_items_sp .nav_item_sp + .nav_item_sp {
  border-left: 1px solid #B2CA90;
}
.header_nav_sp .nav_items_sp .menu_contents {
  z-index: 7777;
  position: absolute;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  top: 96px;
  margin: auto;
  left: 0;
  right: 0;
  padding: 0;
}
.header_nav_sp .nav_items_sp .menu_contents > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
}
.header_nav_sp .nav_items_sp .menu_contents li {
  height: 53px;
  width: 50%;
  border-bottom: 1px solid #a3bb80;
}
.header_nav_sp .nav_items_sp .menu_contents li:nth-of-type(even) {
  border-left: 1px solid #a3bb80;
}
.header_nav_sp .nav_items_sp .menu_contents li:last-child:nth-of-type(odd) {
  width: calc(50% + 1px);
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  border-right: 1px solid #a3bb80;
}
.header_nav_sp .nav_items_sp .menu_contents li > a {
  color: #555555;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_nav_sp .nav_items_sp .menu_contents li > a > img {
  display: block;
  max-height: 100%;
}
.header_nav_sp .nav_items_sp .menu_contents li.ico a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

footer {
  margin-top: auto;
}
footer .footerU {
	position: relative;
  background: #a3bb80 url(../images/footer_u.jpg) repeat-x top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 170px;
  font-weight: bold;
}

footer .footerU .foottxt{
	text-align: center;
	font-weight: bold;
	color:#3393a1;
	font-size:22px;
	line-height: 1.5;
	    position: absolute;
    top: 19%;
	letter-spacing: -1px;
}

footer .footerU .footerUL {
  color: #fff;
  width: 100%;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 25px 0 50px;
  height: 133px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.875rem;
}
footer .footerU .blk1 {
  width: 120px;
}
footer .footerU .blk2 {
      min-width: 462px;
    margin-right: 20px;
}
footer .footerU .blk2 .title {
  padding-bottom: 1em;
	font-weight: 500;
}
footer .footerU .blk3 {
  min-width: 139px;
	margin-right: 20px;
}
footer .footerU .blk4 {
  margin-left: 8px;
  overflow: hidden;
}
footer .footerU .blk4 img {
  display: block;
}
footer .footerU .ft_nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footerU .ft_nav_items.dircol {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .footerU .ft_nav_items .ft_nav_item {
  margin-bottom: 12px;
}
footer .footerU .ft_nav_items .ft_nav_item a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	font-size: 15px;
	font-weight: 500;
}
footer .footerU .ft_nav_items .ft_nav_item a:hover,
footer .footerU .ft_nav_items2 .ft_nav_item2 a:hover{
color: #e78098
}
footer .footerU .ft_nav_items .ft_nav_item a::before {
  content: "";
  display: inline;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  margin-right: 5px;
  background: url("../images/svg/ico_nav_menu.svg") no-repeat top center/contain;
}
footer .footerU .ft_nav_items2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footerU .ft_nav_items2.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	width: 462px;
}
footer .footerU .ft_nav_items2.sp {
  display: none;
}
footer .footerU .ft_nav_items2 .ft_nav_item2 {
 /* -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;*/
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;

  padding-bottom: 0.8em;
  letter-spacing: 0.01em;
}
footer .footerU .ft_nav_items2 .ft_nav_item2 a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	font-size: 15px;
	font-weight: 500;
}
footer .footerU .ft_nav_items2 .ft_nav_item2 a::before {
  content: "";
  display: inline;
  width: 6px;
  height: 6px;
  margin-top: 2px;
  margin-right: 3px;
  background: url("../images/svg/ico_nav_tri.svg") no-repeat top center/contain;
}
footer .footerL {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  background-color: #fff;
  height: 127px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footerL a {
  margin-right: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #555555;
}

/* Clearfix */
.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix::after {
  clear: both;
}

a {
  text-decoration: none;
}

.disp_pc {
  display: block;
}

.disp_sp {
  display: none;
}

.gagetop {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

body {
  background: url("../images/top_bg.jpg") no-repeat top center;
}
.webp body {
  background: url("../images/top_bg.webp") no-repeat top center;
}

.content {
  max-width: 2400px;
  margin: 0 auto;
  width: 100%;
}

main {
  margin: 0 auto;
  width: 100%;
}

/*** secMv ***/
.secMv {
  position: relative;
  width: 1100px;
  margin: 0 auto;
  height: 700px;
}
.secMv .facility {
  height: 100%;
  position: relative;
}
.secMv .facility li {
  position: absolute;
}

.secMv .facility li:hover {
	opacity: 0.7
}

.secMv .facility li .btn {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.secMv .facility li .txt {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 1.2;
}
.secMv .facility li .ttl {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: bold;
  padding-bottom: 6px;
  color: #936c4c;
}
.secMv .facility li#videos { /* 施設周遊編 */
  width: 197px;
  height: 197px;
  right: 260px;
  top: 120px;
  background: url(../images/video_2.png) no-repeat center center/100% auto;
}
.secMv .facility li#videos .txt {
  width: 240px;
  right: -18px;
  top: -80px;
  left: initial;
	font-weight: bold;
}
.secMv .facility li#videos .ttl {
	position: relative;
  color: #3393a1;
  font-size: 1.1875rem;
  padding-left: 0px;
}

.secMv .facility li#videos .ttl:before {
	content: '';
	position: absolute;
	background: url("../images/video_point1.png") left top no-repeat;
	width:25px;
	height:33px;
	left: 29px;
    top: -13px;
}

.secMv .facility li#videos .intro.disp_pc {
  font-size: 16px;
  padding-left: 10px;
  margin-top: 0px;
	    font-weight: bold;
}
.secMv .facility li#videos2 { /* 施設周遊編 */
  width: 197px;
  height: 197px;
  right: 16px;
  top: 120px;
  background: url(../images/facility_1.png) no-repeat center center/100% auto;
}
.secMv .facility li#videos2 .txt {
  width: 240px;
  right: -19px;
  top: -80px;
  left: initial;
  font-weight: bold;
}
.secMv .facility li#videos2 .ttl {
	position: relative;
  color: #3393a1;
  font-size: 1.1875rem;
  padding-left: 0px;
}

.secMv .facility li#videos2 .ttl:before {
	content: '';
	position: absolute;
	background: url("../images/video_point2.png") left top no-repeat;
	width:30px;
	height:37px;
	left: 36px;
    top: -16px;
}

.secMv .facility li#videos2 .intro.disp_pc {
  font-size: 16px;
  padding-left: 10px;
  margin-top: 0px;
}
.secMv .facility li:nth-child(3) { /* 体力研究編 */
  width: 205px;
  height: 257px;
  left: 0px;
  bottom: 0px;
  background: url(../images/bt_kanban_01.png) no-repeat center center/contain;
}

.secMv .facility li:nth-child(3) a{
	display: block;
	width: 205px;
  height: 257px;
}

.secMv .facility li:nth-child(4) { /* 暑熱研究編 */
  width: 199px;
  height: 294px;
  left: 229px;
  bottom: -29px;
  background: url(../images/bt_kanban_02.png) no-repeat center center/contain;
}

.secMv .facility li:nth-child(4) a{
	display: block;
	width: 199px;
  height: 294px;
}

.secMv .facility li:nth-child(5) { /* 姿勢研究編 */
  width: 199px;
  height: 283px;
  left: 452px;
    bottom: -22px;
  background: url(../images/bt_kanban_03.png) no-repeat center center/contain;
}

.secMv .facility li:nth-child(5) a{
	display: block;
	width: 199px;
  height: 283px;
}

.secMv .facility li:nth-child(6) { /* 振動研究編 */
  width: 199px;
  height: 278px;
  left: 677px;
  bottom: -34px;
  background: url(../images/bt_kanban_04.png) no-repeat center center/contain;
}

.secMv .facility li:nth-child(6) a{
	display: block;
	width: 199px;
  height: 278px;
}

.secMv .facility li:nth-child(7) { /*「労働衛生」とは？ */
  width: 199px;
  height: 260px;
  right: 0px;
  top: 439px;
  background: url(../images/bt_kanban_05.png) no-repeat center center/contain;
}

.secMv .facility li:nth-child(7) a{
	display: block;
	 width: 199px;
    height: 260px;
}

/*** secMain ***/
.secMain {
  width: 100%;
  margin: 0 auto;
  padding: 110px 0 40px;
  background-color: #f7e7cd;
}

@media only screen and (max-width: 767.98px) {
	
.secMain {
  padding: 140px 0 40px;
}
	
.secMain.pickup,
	.secMain.kenkyu{
  padding: 60px 0 40px;
}

	
}

.secMain .overlayWrap,
.secTool .overlayWrap{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.secMain .ovlyArea {
  position: relative;
}
.secMain .ovlyArea .sp_img {
  display: none;
}
.secMain .overlay {
  position: absolute;
  top: 0;
  z-index: 100;
  z-index: 7778;
  width: 100%;
  height: 100%;
  display: none;
  background: #f7e7cd url("../images/cause_ovly_bg.jpg") no-repeat center center/contain;
}
.secMain .overlay .closebtn {
  cursor: pointer;
  position: absolute;
  top: 9%;
  right: 4%;
  width: 110px;
  height: 90px;
  background: url("../images/svg/closebtn.svg") no-repeat center center/contain;
}
.secMain .overlay .ovly_flx {
  display: none;
  width: 100%;
  height: 100%;
}
.secMain .overlay .side_img {
  width: 50%;
}
.secMain .overlay .side_img img {
  display: block;
  width: 100%;
}
.secMain .overlay .side_text {
  width: 50%;
  height: 100%;
  padding: 145px 75px 110px 75px;
}
.secMain .overlay .side_text .inner {
  height: 100%;
}

.secMain .overlay .side_text h3 a{
  background-color: #e78098;
  width: 140px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 100vh;
  margin-left: 60px;
	border:solid 2px #e78098;
}

.secMain .overlay .side_text h3 a:hover{
	border:solid 2px #e78098;
	background-color: #fff;
	color:#e78098;
}

.secMain .overlay .side_text_conts {
  height: 100%;
  padding-top: 55px;
  font-size: 1rem;
}
.secMain .overlay .side_text_conts h4 {
  color: #e78098;
  font-size: 2.5rem;
  margin-bottom: 30px;
	font-weight: 500;
}
.secMain .overlay .side_text_conts h5 {
  padding-bottom: 30px;
}
.secMain .overlay .side_text_conts h5 .blue {
  margin-right: 10px;
  background-color: #3393a1;
  border-radius: 5px;
  color: #fff;
  font-size: 0.875rem;
  padding: 2px 10px;
}
.secMain .overlay .side_text_conts .desc {
  line-height: 1.5;
  padding-bottom: 35px;
}
.secMain .overlay .side_text_conts .pk {
  color: #e78098;
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 12px;
}
.secMain .overlay .side_text_conts .conts_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.secMain .overlay .side_text_conts .conts_flx a{
	color:#E78098;
	text-decoration: underline;
	font-weight: 500;
}

.secMain .overlay .side_text_conts .conts_flx a:hover{
	text-decoration: none;
}

.secMain .overlay .side_text_conts .conts_flx > div {
  width: 50%;
}
.secMain .overlay .side_text_conts .conts_flx .conts_img {
  background-color: rgba(127, 255, 212, 0.317);
}
.secMain .overlay .side_text_conts .conts_flx .conts_img img {
  display: block;
  width: 100%;
}
.secMain .overlay .side_text_conts .conts_flx .conts_img_desc {
  padding: 0 0.8em;
  line-height: 1.5;
}
.secMain .ovlyTitle,
.secMv2 .ovlyTitle,
.secTool .ovlyTitle{
  display: block;
  margin: 0 auto;
  color: #936c4c;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
	width:calc(100% - 20px);
}

.secMain .ovlyTitle span{
	background: #e78098;
	border-radius:3px;
	padding:5px 10px;
	color:#fff;
	font-size:16px;
	font-weight: bold;
	display: inline-block;
    margin-bottom: 10px;
}

.secMain .causes {
  width: 100%;
  height: 765px;
  position: relative;
  background: #f7e7cd url("../images/top_causes_bg.png") no-repeat center center/700px auto;
	background-position: 230px 110px;
}
.secMain .cause {
  width: 260px;
  height: 130px;
  cursor: pointer;
  position: absolute;
}

.secMain .cause:hover img{
	opacity: 0.5
}

.secMain .cause img {
  max-height: 100%;
}
.secMain .cause .absotxt {
  font-size: 1.25rem;
  color: #e78098;

  position: absolute;
  right: 30%;
  top: 50%;
	    border-radius: 2em;
    background: #fffbf4;
    padding: 9px 30px 9px 18px;
    font-weight: 500;
}

.secMain .cause:hover .absotxt{
	color:#f9b1c0;
}

.secMain .cause .absotxt:after {
	content: '';
	position: absolute;
	background: url("../images/icn_grass.png") right center no-repeat;
	width:14px;
	height:14px;
	top: 12px;
    right: 11px;
}

.secMain .cause:hover .absotxt:after{
	opacity: 0.5
}


.secMain .cause.heat {
  right: 8%;
    top: 19%;
}
.secMain .cause.heat .absotxt {
  right: 22%;
  top: 48%;
}

.secMain .cause.radiation {
  top: 8%;
  left: 18.5%;
}
.secMain .cause.radiation .absotxt {
  right: 15%;
    top: 46%;
}
.secMain .cause.overexertion {
      top: 10%;
    left: 23%;
}
.secMain .cause.overexertion .absotxt {
  right: 23%;
    top: 45%;
}
.secMain .cause.vibration {
  top: 25%;
    left: 5%;
}
.secMain .cause.vibration .absotxt {
  right: 5%;
    top: 45%;
}
.secMain .cause.cardio {
  top: 75%;
    left: 29%;
}
.secMain .cause.cardio .absotxt {
  right: -17%;
    top: 45%;
}
.secMain .cause.workload {
  top: 52%;
    left: 7%;
}
.secMain .cause.workload .absotxt {
  right: 8%;
    top: 43%;
}
.secMain .cause.stress {
  top: 63%;
    right: 3%;
}
.secMain .cause.stress .absotxt {
  right: 9%;
    top: 47%;
}
.secMain .cause.chemicals {
  top: 40%;
    right: 2%;
}
.secMain .cause.chemicals .absotxt {
      right: 0%;
    top: 47%;
}

/*** secTool ***/
h2.secTitle {
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: #e78098;
  text-decoration-thickness: 4px;
  text-underline-offset: 2px;
  line-height: 1;
  /*padding-bottom: 37px;*/
	margin-bottom:30px;
}

.secDesc {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.3;
}
.secDesc br {
  display: none;
}

.secTool {
  background: #fff url(../images/secToolBgt.jpg) no-repeat top center;
  padding-top: 30px;
  margin-bottom: 60px;
}
.secTool .toolsWrap {
  max-width: 1000px;
  width: calc(100% - 20px);
  margin: 100px auto 0;
}
.secTool .toolsWrap .tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.secTool .toolsWrap .tool + .tool {
  margin-top: 87px;
}
.secTool .toolsWrap .toolImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  margin-right: 40px;
}
.secTool .toolsWrap .toolImg img {
  display: block;
  width: 100%;
}
.secTool .toolsWrap .toolTxt {
  max-width: 730px;
}
.secTool .toolsWrap .toolTxt h3 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}
.secTool .toolsWrap .toolTxt h3 + p {
  margin-top: 12px;
}
.secTool .toolsWrap .toolTxt p {
  font-size: 1.0625rem;
  line-height: 1.3;
}
.secTool .toolsWrap .toolTxt p + a {
  margin-top: 20px;
}
.secTool .toolsWrap .toolTxt a {
	position: relative;
  padding: 11px 33px 11px 15px;
  line-height: 1;
  border-radius: 100vh;
  background-color: #e78098;
  color: #fff;
  /*font-size: 0.875rem;*/
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	border:solid 2px #e78098;
}

.secTool .toolsWrap .toolTxt a:hover {
	background-color: #fff8;
	color:#e78098;
}

.secTool .toolsWrap .toolTxt a::after {
	position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  display: inline-block;
  background: url(../images/svg/ico_nav_menu.svg) no-repeat center center/contain;
	top: 9px;
right: 7px;
}

.secGaiyou {
  padding-top: 100px;
  margin: 0 auto 50px;
  max-width: 812px;
  width: calc(100% - 20px);
  /*font-size: 1rem;*/
}
.secGaiyou h2.secTitle {
  font-size: 2.125rem;
  letter-spacing: 0.15em;
}
.secGaiyou .profile-flex {
  width: 100%;
  margin: 37px auto 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.secGaiyou .profile-flex .gyou {
  width: 100%;
  padding: 0;
  margin: 0;
	/*font-size: 15px!important;*/
}
.secGaiyou .profile-flex .gyou ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
}
.secGaiyou .profile-flex .gyou ul > li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 120px;
  background-color: #f7e7cd;
  font-weight: bold;
  padding: 0 10px;
}
.secGaiyou .profile-flex .gyou ul > li:nth-child(2) {
  padding-left: 22px;
  margin-left: 2px;
  background-color: #fef8ef;
}
.secGaiyou .profile-flex .gyou ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 5px;
  min-width: 0;
}

.secGaiyou .profile-flex .gyou ul > li a{
	color:#E78098;
	text-decoration: underline;
}

.secGaiyou .profile-flex .gyou ul > li a:hover{
	text-decoration: none;
}

.secGaiyou .profile-flex .gyou + .gyou {
  margin-top: 2px;
}
@media only screen and (max-width: 2560px) {
  body {
    margin: 0;
  }
}
@media only screen and (max-width: 1100px) {
  body {
    margin: 0;
  }
  .header_nav_lwr .nav_items .menu_contents li > a {
    font-size: 0.75rem;
  }
  footer .footerU .footerUL {
    font-size: 0.75rem;
  }
  footer .footerU .blk2 {
    margin-right: 30px;
  }
  footer .footerU .ft_nav_items2 .ft_nav_item2 {
    padding-bottom: 10px;
  }
  body {
    background: url("../images/top_bg_1100.jpg");
    background-repeat: no-repeat;
  }
  .webp body {
    background: url("../images/top_bg_1100.webp");
    background-repeat: no-repeat;
  }
}

.pre_wrap {
    position: absolute;
    width: 35%;
    height: 33%;
    z-index: 10;
    top: 31%;
    left: 20.5%;
}
.pre_wrap .kanban {
    height: 100%;
    position: absolute;
    width: 100%;
}
.pre_wrap .kanban .pre_bt {
    width: 100%;
    height: 100%;
    background: url(../images/bt_kanban.png) no-repeat center top;
}

.pre_wrap .kanban .pre_bt.phase2 {
    width: 100%;
    height: 100%;
    background: url(../images/bt_kanban_2.png) no-repeat center top;
}

.pre_wrap .kanban .pre_bt a {
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    right: 0;
    position: absolute;
}

@media only screen and (max-width: 767.98px) {
  body {
    margin: 0;
    min-width: initial;
  }
  header {
    height: auto;
  }
	
	.pc_only{
	display: none;
}

.sp_only{
	display: block
}

	
  .header_pc_inner {
    display: none;
  }
  .header_nav_sp {
    display: block;
    height: 96px;
    overflow: hidden;
    background-color: #fff;
  }
  footer .footerU {
    background: #abc386 url(../images/footer_u_sp.jpg) repeat-x top center/100% auto;
    padding-top: 45vw;
  }
  footer .footerU .footerUL {
    padding: 0;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
	
	footer .footerU .foottxt {
    font-size: 19px;
    top: 6%;
}
	
  footer .footerU .blk1 {
    width: 100%;
    padding: 0px;
    border-bottom: 1px solid #c3d8a3;
  }
  footer .footerU .blk2 {
    min-width: initial;
    width: 100%;
    padding: 13px 10px 8px 17px;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #c3d8a3;
  }
  footer .footerU .blk2 .title {
    padding-bottom: 20px;
	  font-size: 15px;
  }
  footer .footerU .blk3 {
    width: 100%;
    padding: 0;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #c3d8a3;
  }
  footer .footerU .blk4 {
    margin: 15px auto 14px;
  }
  footer .footerU .ft_nav_items .ft_nav_item {
    font-size: 0.625rem;
  }
  footer .footerU .ft_nav_items .ft_nav_item {
    margin-bottom: 0;
    padding: 14px 10px;
    line-height: 1;
  }
  footer .footerU .ft_nav_items .ft_nav_item a::before {
    margin-right: 14px;
  }
	
footer .footerU .ft_nav_items .ft_nav_item a {
	font-size:15px;
	}
	
  footer .footerU .ft_nav_items .ft_nav_item + .ft_nav_item {
    border-top: 1px solid #c3d8a3;
  }
  footer .footerU .ft_nav_items2.pc {
    display: none;
  }
  footer .footerU .ft_nav_items2.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footerU .ft_nav_items2 {
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    -ms-flex: 20% 0 0px;
        flex: 20% 0 0;
  }
  footer .footerU .ft_nav_items2 .ft_nav_item2 {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-bottom: 9px;
	  padding-left: 10px;
  }
  footer .footerL {
    height: auto;
    padding: 24px 80px 2em 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    letter-spacing: 0.04em;
  }
  footer .footerL a {
    margin-bottom: 12px;
  }
  footer .footerL p {
    line-height: 1.3;
  }
  .gagetop {
    bottom: 20px;
  }
  .gagetop.age {
    bottom: 80px;
  }
  body {
    background: #F7E7CD url("../images/top_bg_sp.jpg") no-repeat top 96px center/100% auto;
  }
  .webp body {
    background: #F7E7CD url("../images/top_bg_sp.webp") no-repeat top 96px center/100% auto;
  }
	
	.secMv {
  width: 100%;
  height: 180vw;
}
	
.pre_wrap {
    position: absolute;
    width: 100%;
    height: 15%;
    z-index: 10;
    top: 51%;
	left:inherit;
}
.pre_wrap .kanban {
    height: 100%;
    position: absolute;
    width: 100%;
}
.pre_wrap .kanban .pre_bt {
    width: 100%;
    height: 100%;
    background: url(../images/bt_spkanban.png) no-repeat center right 7%/contain;
}
.pre_wrap .kanban .pre_bt.phase2 {
    width: 100%;
    height: 100%;
    background: url(../images/bt_spkanban_2.png) no-repeat center right 7%/contain;
}
.pre_wrap .kanban .pre_bt a {
    display: block;
    width: 53%;
    height: 100%;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    right: 0;
    position: absolute;
}
	
	
  .secMv {
    width: 100%;
    height: 180vw;
  }
  .secMv .facility li {
    position: absolute;
  }
  .secMv .facility li .btn {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
  }
  .secMv .facility li .txt {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1.2;
  }
  .secMv .facility li .ttl {
    width: auto;
    font-size: 4vw;
    font-weight: bold;
    padding-bottom: 0;
    color: #936c4c;
  }
  .secMv .facility li .intro {
    font-size: 3.7vw;
    padding-top: 6px;
  }
  .secMv .facility li#videos{ /* 施設周遊編 */
    width: 100%;
    height: 27vw;
    right: initial;
    left: 0;
    top: 20%;
    background: url(../images/video_sp_2.png) no-repeat center left 7%/contain;
  }
  .secMv .facility li#videos .txt {
    width: auto;
    right: 0;
    top: 50%;
    bottom: initial;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
    left: 34%;
    text-align: left;
  }
  .secMv .facility li#videos .ttl {
    color: #3393a1;
    font-size: 5vw;
    letter-spacing: 0.1em;
    padding-left: 0;
	  display: inline-block;
  }
	
.secMv .facility li#videos .ttl:before {
	content: none;
	}
	
.secMv .facility li#videos .ttl:after {
	content: '';
	position: absolute;
	background: url("../images/video_point1.png") right top no-repeat;
	width:25px;
	height:33px;
	right: -33px;
    top: -13px;
}
	
.secMv .facility li#videos2{ /* 施設周遊編 */
    width: 100%;
    height: 27vw;
    right: initial;
    left: 0;
    top: 36%;
    background: url(../images/facility_sp_1.png) no-repeat center left 7%/contain;
  }
  .secMv .facility li#videos2 .txt {
    width: auto;
    right: 0;
    top: 50%;
    bottom: initial;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
    left: 34%;
    text-align: left;
  }
  .secMv .facility li#videos2 .ttl {
    color: #3393a1;
    font-size: 5vw;
    letter-spacing: 0.1em;
    padding-left: 0;
	  display: inline-block;
  }	

	.secMv .facility li#videos2 .ttl:before {
	content: none;
	}
	
.secMv .facility li#videos2 .ttl:before {
	content: '';
	position: absolute;
	background: url("../images/video_point2.png") left top no-repeat;
	width:30px;
	height:37px;
	left :121px;
    top: -16px;
}
	
  .secMv .facility li:nth-child(3) { /* 体力研究編 */
    width: 27%;
    height: 36.5vw;
    left: 5%;
    top: 69.5%;
    background: url(../images/bt_kanban_01_sp.png) no-repeat top center/100% auto;
  }
.secMv .facility li:nth-child(3) a{
	display: block;
	 width: 100%;
    height: 36.5vw;
}
  .secMv .facility li:nth-child(4) { /* 暑熱研究編 */
    width: 27%;
    height: 39.5vw;
    left: 36%;
    top: 68.5%;
    background: url(../images/bt_kanban_02_sp.png) no-repeat top center/100% auto;
  }
.secMv .facility li:nth-child(4) a{
	display: block;
	 width: 100%;
    height: 39.5vw;
}
  .secMv .facility li:nth-child(5) { /* 姿勢研究編 */
    width: 27%;
    height: 36.5vw;
    left: 68%;
    top: 69.5%;
    background: url(../images/bt_kanban_03_sp.png) no-repeat top center/100% auto;
  }

.secMv .facility li:nth-child(5) a{
	display: block;
	 width: 100%;
    height: 36.5vw;
}		
	
  .secMv .facility li:nth-child(6) { /* 振動研究編 */
    width: 27%;
    height: 37.5vw;
    left: 5%;
    top: 92%;
    background: url(../images/bt_kanban_04_sp.png) no-repeat top center/100% auto;
  }

.secMv .facility li:nth-child(6) a{
	display: block;
	 width: 100%;
    height: 37.5vw;
}	
	
  .secMv .facility li:nth-child(7) { /*「労働衛生」とは？ */
    width: 27%;
    height: 35.5vw;
    left: 38%;
    top: 92%;
    background: url(../images/bt_kanban_05_sp.png) no-repeat top center/100% auto;
  }
	
.secMv .facility li:nth-child(7) a{
	display: block;
	 width: 100%;
    height: 35.5vw;
}

  .secMain {
    padding-bottom: 0;
  }
  .secMain .ovlyArea {
    padding-bottom: 10vw;
  }
  .secMain .ovlyArea .sp_img {
    display: block;
    width: 90%;
    margin-left: 10%;
	  margin-top: 30px;
  }
  .secMain .overlay {
    background: url("../images/cause_ovly_bg_sp.jpg") no-repeat top center/100% auto;
  }
  .secMain .overlay .closebtn {
    width: 90px;
    height: 75px;
    top: 8px;
    right: 15px;
  }
  .secMain .overlay .ovly_flx {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .secMain .overlay .side_img {
    position: absolute;
    width: 50%;
    bottom: 0;
    right: 0;
  }
  .secMain .overlay .side_text {
    width: 100%;
    padding: 12vw 6vw;
  }
  .secMain .overlay .side_text h3 {
    _margin-left: 12vw;
    width: 6em;
    height: auto;
    font-size: 4vw;
    line-height: 1.5;
	  margin: 10px 0px 0 -20px;
  }
  .secMain .overlay .side_text_conts {
    padding: 6% 0 0;
    font-size: 4vw;
  }
  .secMain .overlay .side_text_conts h4 {
    font-size: 5vw;
    margin-bottom: 4%;
  }
  .secMain .overlay .side_text_conts h5 {
    padding-bottom: 3%;
  }
  .secMain .overlay .side_text_conts h5 .blue {
    font-size: 3vw;
    opacity: 0.5;
  }
  .secMain .overlay .side_text_conts .desc {
    padding-bottom: 4%;
  }
  .secMain .overlay .side_text_conts .pk {
    font-size: 3.5vw;
  }
  .secMain .overlay .side_text_conts .conts_flx {
    display: block;
  }
  .secMain .overlay .side_text_conts .conts_flx .conts_img_desc {
    padding: 5px 0 0;
    width: 55%;
    line-height: 1.3;
  }
  .secMain .ovlyTitle,
	.secTool .ovlyTitle{
    font-size: 4.7vw;
	text-align: left;
  }
  .secMain .causes {
    height: auto;
    background: #f7e7cd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 20px);
    margin: 2% auto 0;
	  background-position: 220px 110px;
  }
  .secMain .cause {
    position: static;
    height: auto;
    width: 24%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

	.secMain .cause.mb{
	padding-bottom: 15px;
	}
  .secMain .cause .absotxt {
    position: static;
    right: initial;
    top: initial;
    font-size: 4vw;
    margin-top: 5px;
	  
	  border-radius: 0;
    background: none;
    padding: 0;
	  
  }
.secMain .cause .absotxt:after {
	content: none;
}
  .secMain .cause.heat {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.radiation {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.overexertion {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.vibration {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.cardio {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.workload {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.stress {
    top: initial;
    left: initial;
    right: initial;
  }
  .secMain .cause.chemicals {
    top: initial;
    left: initial;
    right: initial;
  }
  h2.secTitle {
    font-size: 6vw;
	  font-weight: 500;
	  margin-bottom:10px;
  }
  .secDesc {
    font-size: 1rem;
  }
  .secDesc br {
    display: inline;
  }
  .secTool {
    background: #fff url(../images/secToolBgt_sp.jpg) no-repeat top center/100% auto;
    padding: 7% 10px 60px;
	  margin-bottom: 0px;
  }
  .secTool .toolsWrap {
    margin-top: 50px;
    width: 100%;
  }
  .secTool .toolsWrap .tool + .tool {
    margin-top: 32px;
  }
  .secTool .toolsWrap .toolImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    margin-right: 10px;
  }
  .secTool .toolsWrap .toolTxt h3 {
    font-size: 1rem;
  }
  .secTool .toolsWrap .toolTxt h3 + p {
    margin-top: 8px;
  }
  .secTool .toolsWrap .toolTxt p {
    line-height: 1.3;
    font-size: 15px;
  }
  .secTool .toolsWrap .toolTxt p + a {
    margin-top: 12px;
  }
  .secTool .toolsWrap .toolTxt a {
	  position: relative;
    font-size: 14px;
    padding: 9px 27px 9px 15px;
  }
  .secTool .toolsWrap .toolTxt a::after {
    width: 15px;
    height: 15px;
  }
  .secGaiyou {
    padding: 55px 10px 15px;
    /*font-size: 1rem;*/
    background: #fff;
    margin: 0;
    width: 100%;
  }
  .secGaiyou h2.secTitle {
    font-size: 1.375rem;
  }
  .secGaiyou .profile-flex {
    margin-top: 20px;
  }
  .secGaiyou .profile-flex .gyou ul > li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84px;
            flex: 0 0 110px;
    padding-left: 12px;
  }
  .secGaiyou .profile-flex .gyou ul > li:nth-child(2) {
    padding-left: 14px;
	  font-size:15px;
  }
  .secGaiyou .profile-flex .gyou ul > li {
    line-height: 1.3;
  }
}
@media only screen and (max-width: 580px) {
  body {
    margin: 0;
  }
  .disp_pc {
    display: none;
  }
  .disp_sp {
    display: block;
  }
}
@media only screen and (max-width: 420px) {
  body {
    margin: 0;
  }
  .header_nav_sp .nav_items_sp .nav_item_sp br {
    display: inline;
  }
  h2.secTitle {
    font-size: 1.25rem;
    padding-bottom: 16px;
  }
  .secGaiyou .profile-flex .gyou ul > li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .secGaiyou .profile-flex .gyou ul > li:nth-child(2) {
    /*font-size: 0.75rem;*/
    padding: 10px;
  }
}
@media only screen and (max-width: 340px) {
  body {
    margin: 0;
  }
}
/*# sourceMappingURL=../../map/top.css.map */



.shisetsu_wrap{
	display: flex;
	flex-wrap:wrap;
	gap:25px;
    width: 100%;
    margin: 100px auto 0;
}

.shisetsu_wrap .shisetsu_wrap_box1{
	width:350px;
	padding:15px 20px 25px 15px;
	background: #fff;
	border-radius:3px;
	cursor: pointer;
}

.shisetsu_wrap .shisetsu_wrap_box2{
	width:725px;
	padding:0px;
	background: #fff;
	border-radius:3px;
}

.shisetsu_wrap .shisetsu_wrap_box2 dl{
	border-bottom:solid 1px #f9e6cd;
	    overflow: hidden;
	line-height: 1.4;
}

.shisetsu_wrap .shisetsu_wrap_box2 dl dt{
	float:left;
	padding:20px;
	width:100px;
	font-weight: bold;
	font-size:16px;
}

.shisetsu_wrap .shisetsu_wrap_box2 dl dd{
	float:left;
	width:calc(100% - 100px);
	padding:20px;
	font-size:16px;
	border-left:solid 1px #f9e6cd;
}

.shisetsu_wrap .shisetsu_wrap_box1:hover{
opacity: 0.7;	
}

.shisetsu_wrap .shisetsu_wrap_box1 .head{
	display: flex;
	gap:20px;
	font-weight: bold;
	font-size:17px;
	align-items: center;
}

.shisetsu_wrap .shisetsu_wrap_box1 .head span{
	width:100px;
	border-radius:3px;
	background: #3393a1;
	text-align: center;
	line-height: 1;
	padding:10px 0;
	color:#fff;
	font-size:15px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body{
	position: relative;
	font-size:17px;
	display: flex;
	gap:19px;
	margin-top:15px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img{
position: absolute;
	left: -17px;
    top: -22px;
    width: 120px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.overwork{
	position: absolute;
	    left: -14px;
    top: -21px;
    width: 120px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.radiation{
	position: absolute;
	    left: -16px;
    top: -28px;
    width: 124px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.stress{
	position: absolute;
	    left: -16px;
    top: -28px;
    width: 124px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.heat{
	position: absolute;
	    left: -12px;
    top: -19px;
    width: 124px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.stamina{
	position: absolute;
	left: -19px;
    top: -32px;
    width: 135px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body img.eisei{
	position: absolute;
	left: 0px;
    top: 8px;
    width: 90px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body .img_area{
	width:100px;
	height:100px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body .txt_area{
	width:calc(100% - 105px);
	line-height: 1.5;
}


@media screen and (max-width: 750px) {
	
.shisetsu_wrap{
	display: block;
	flex-wrap:nowrap;
	gap:0px;
    width: calc(100% - 20px);
    margin: 7% auto 0;
}
	
.shisetsu_wrap .shisetsu_wrap_box1{
	width:100%;
	padding:15px;
	background: #fff;
	margin-bottom:15px;
}
	
.shisetsu_wrap .shisetsu_wrap_box2{
	width:100%;
	padding:0px;
	background: #fff;
	margin-bottom:15px;
}
	
.shisetsu_wrap .shisetsu_wrap_box1 .head span{
	width:100px;
	border-radius:3px;
	background: #3393a1;
	text-align: center;
	line-height: 1;
	padding:7px 0;
	color:#fff;
	font-size:14px;
}	

	
.shisetsu_wrap .shisetsu_wrap_box1 .body{
	font-size:16px;
	display: flex;
	gap:10px;
	margin-top:15px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body .img_area{
	width:100px;
	height:100px;
}

.shisetsu_wrap .shisetsu_wrap_box1 .body .txt_area{
	width:calc(100% - 105px);
	line-height: 1.5;
}
	
	
}

/*** ピックアップ ***/

.pickup_wrap{
	display: flex;
	flex-wrap:wrap;
	gap:25px;
    width: 100%;
    margin: 100px auto 0;
}

.pickup_wrap .pickup_wrap_box1{
	width:256px;
	padding:0px;
	border-radius:3px;
	cursor: pointer;
	text-align: center;
}

.pickup_wrap .pickup_wrap_box1:hover{
	opacity: 0.7;
}

.pickup_wrap .pickup_wrap_box1 .img_area{
	margin-bottom:15px;
	border-radius:3px;
}

.pickup_wrap .pickup_wrap_box1 .img_area img{
	border-radius:3px;
}

.pickup_wrap .pickup_wrap_box1 .txt_area{
font-weight: 500;
	color:#936c4c;
	line-height: 1.4;
	font-size: 16px;
}


@media screen and (max-width: 750px) {
	
.pickup_wrap{
	display: block;
	flex-wrap:nowrap;
	gap:0px;
    width: calc(100% - 20px);
    margin: 7% auto 0;
}
	
.pickup_wrap .pickup_wrap_box1{
	width:100%;
	padding:10px;
	background: #fff;
	margin-bottom:15px;
	display: flex;
	align-items: center;
	gap:10px;
	text-align: left;
}
	
.pickup_wrap .pickup_wrap_box1 .img_area{
	margin-bottom:0px;
	width:30%;
}

.pickup_wrap .pickup_wrap_box1 .txt_area{
font-weight: 500;
	color:#936c4c;
	line-height: 1.4;
	width:calc(70% - 10px);
}

	
	
}

/*** secMv ***/

.secMv2 .overlayWrap {
	position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
	height: 460px;
}

.secMv2 .ovlyTitle {
    display: block;
    margin: 0 auto;
    color: #936c4c;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
}

.secMv2 {
  _position: relative;
 _height: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 40px;
    background-color: #f7e7cd;
}
.secMv2 .facility2 {
  height: 100%;
  position: relative;
}
.secMv2 .facility2 li {
  position: absolute;
}

.secMv2 .facility2 li:hover {
	opacity: 0.7
}

.secMv2 .facility2 li .btn {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.secMv2 .facility2 li .txt {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 1.2;
}
.secMv2 .facility2 li .ttl {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: bold;
  padding-bottom: 6px;
  color: #936c4c;
}

.secMv2 .facility2 li:nth-child(1) { /* 体力研究編 */
  width: 140px;
  height: 170px;
  left: 0px;
  top: 60px;
  background: url(../images/facility_2.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(1) .txt {
  bottom: -5px;
  left: 0;
  right: 0;
}
.secMv2 .facility2 li:nth-child(2) { /* 暑熱研究編 */
  width: 140px;
  height: 170px;
      left: 190px;
    top: 80px;
  background: url(../images/facility_3.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(2) .txt {
  bottom: -5px;
  left: 0;
  right: 0;
}
.secMv2 .facility2 li:nth-child(3) { /* 姿勢研究編 */
  width: 140px;
  height: 170px;
  left: 385px;
  top: 90px;
  background: url(../images/facility_4.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(3) .txt {
  bottom: -5px;
  left: 0;
  right: 0;
}
.secMv2 .facility2 li:nth-child(4) { /* 振動研究編 */
  width: 140px;
  height: 170px;
  right: 389px;
    top: 90px;
  background: url(../images/facility_5.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(4) .txt {
  bottom: -5px;
  left: 0;
  right: 0;
}
.secMv2 .facility2 li:nth-child(5) { /*「労働衛生」とは？ */
  width: 170px;
  height: 180px;
  right: 191px;
  top: 80px;
  background: url(../images/facility_6.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(5) .txt {
  right: 0;
  left: 0;
  bottom: -19px;
}
.secMv2 .facility2 li:nth-child(5) .txt span {
  letter-spacing: -0.1em;
  margin-left: -5px;
}
.secMv2 .facility2 li:nth-child(5) .ttl {
  padding-bottom: 5px;
}
.secMv2 .facility2 li:nth-child(5) .intro {
  font-size: 14px;
  letter-spacing: 0.05em;
	font-weight: 500;
}
.secMv2 .facility2 li:nth-child(6) { /*当研究所の活動について当研究所の活動について */
  width: 200px;
  height: 185px;
  right: -11px;
  top: 60px;
  background: url(../images/facility_7.png) no-repeat center center/contain;
}
.secMv2 .facility2 li:nth-child(6) .txt {
  right: 0;
  bottom: 3px;
  left: 0;
}
.secMv2 .facility2 li:nth-child(6) .ttl {
  padding-bottom: 3px;
}
.secMv2 .facility2 li:nth-child(6) .intro {
  font-size: 14px;
  letter-spacing: 0.05em;
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	
	.secMv2 .ovlyTitle{
    font-size: 4.7vw;
		text-align: left;
  }
	
	.secMv2 .overlayWrap{
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 8vw;
}

  .secMv2 {
    width: 100%;
    height: 140vw;
	  padding: 30px 0 40px;
  }

	
  .secMv2 .facility2 li {
    position: absolute;
  }
  .secMv2 .facility2 li .btn {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
  }
  .secMv2 .facility2 li .txt {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1.2;
  }
  .secMv2 .facility2 li .ttl {
    width: 100%;
    font-size: 4vw;
    font-weight: bold;
    padding-bottom: 0;
    color: #936c4c;
  }
  .secMv2 .facility2 li .intro {
    font-size: 3.7vw;
    padding-top: 6px;
  }
  .secMv2 .facility2 li:nth-child(1) { /* 体力研究編 */
    width: 27%;
    height: 32.5vw;
    left: 5%;
    top: 56.5%;
    background: url(../images/facility_2.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(1) .txt {
    bottom: 1%;
    left: 0;
    right: 0;
  }
  .secMv2 .facility2 li:nth-child(2) { /* 暑熱研究編 */
    width: 27%;
    height: 32.5vw;
    left: 36%;
    top: 56.5%;
    background: url(../images/facility_3.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(2) .txt {
    bottom: 1%;
    left: 0;
    right: 0;
  }
  .secMv2 .facility2 li:nth-child(3) { /* 姿勢研究編 */
    width: 27%;
    height: 32.5vw;
    left: 68%;
    top: 56.5%;
    background: url(../images/facility_4.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(3) .txt {
    bottom: 1%;
    left: 0;
    right: 0;
  }
  .secMv2 .facility2 li:nth-child(4) { /* 振動研究編 */
    width: 27%;
    height: 32.5vw;
    left: 5%;
    top: 500%;
    background: url(../images/facility_5.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(4) .txt {
    bottom: 2%;
    left: 0;
    right: 0;
  }
  .secMv2 .facility2 li:nth-child(5) { /*「労働衛生」とは？ */
    width: 27%;
    height: 32.5vw;
    left: 36%;
    top: 500%;
    background: url(../images/facility_sp_6.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(5) .txt {
    width: 100%;
    right: initial;
    bottom: -43%;
    left: initial;
  }

  .secMv2 .facility2 li:nth-child(5) .ttl {
    padding-bottom: 0;
  }

  .secMv2 .facility2 li:nth-child(6) { /*当研究所の活動について当研究所の活動について */
    width: 27%;
    height: 32.5vw;
    left: 68%;
    top: 500%;
    background: url(../images/facility_sp_7.png) no-repeat top center/100% auto;
  }
  .secMv2 .facility2 li:nth-child(6) .txt {
    width: 100%;
    right: initial;
    bottom: -43%;
    left: initial;
  }
  .secMv2 .facility2 li:nth-child(6) .ttl {
    padding-bottom: 0;
  }

}



