@charset "utf-8";
/* CSS Document */

/* google webfont */
@import "//fonts.googleapis.com/css?family=Oswald";
@import "//fonts.googleapis.com/css?family=Roboto";
@import url('https://fonts.googleapis.com/css?family=Roboto:900');
 	
/* ****************************************************************************************************
   * 全体
**************************************************************************************************** */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 300;
  src: local('NotoSerifCJKjp'),
       url('../../_font/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSerifCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 600;
  src: local('NotoSerifCJKjp'),
       url('../../_font/NotoSerifCJKjp-SemiBold.woff') format('woff'),
       url('../../_font/NotoSerifCJKjp-SemiBold.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 900;
  src: local('NotoSerifCJKjp'),
       url('../../_font/NotoSerifCJKjp-Black.woff') format('woff'),
       url('../../_font/NotoSerifCJKjp-Black.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 300;
  src: local('NotoSansCJKjp'),
       url('../../_font/NotoSansCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSansCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 600;
  src: local('NotoSansCJKjp'),
       url('../../_font/NotoSansCJKjp-SemiBold.woff') format('woff'),
       url('../../_font/NotoSansCJKjp-SemiBold.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: local('NotoSansCJKjp'),
       url('../../_font/NotoSansCJKjp-Bold.otf') format('opentype');
}

/* ****************************************************************************************************
   * フォント設定
**************************************************************************************************** */

.font-serif {
  font-family: 'NotoSerifCJKjp', "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
}
.font-sans {
  font-family: 'NotoSansCJKjp', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.font-oswald {
  font-family: 'Oswald',"Helvetica Neue",Helvetica,Arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.font-roboto {
  font-family: 'Roboto',"Helvetica Neue",Helvetica,Arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.body .list.column .page-nav.column {
}


/* ****************************************************************************************************
   * 共通
**************************************************************************************************** */

@media screen and (min-width:736px) {
  [sp] {
    display: none;
  }
}

@media (min-width:1100px) {
  [sp] {
    position: fixed !important;
    top: -100%;
    left: -100%;
  }
}
@media (min-width:1101px) {
  [sp-nav] {
    position: fixed !important;
    top: -100%;
    left: -100%;
  }
}

@media (max-width:1100px) {
  [pc] {
    display: none !important;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.br-pc {
  display: block;
}

}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.br-sp {
  display: block;
}

}


/* ****************************************************************************************************
   * common
**************************************************************************************************** */

.body {
  max-width: 1200px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

[class*="layout-flex"] {
  display: flex;
  flex-wrap: wrap;
/*  justify-content: space-between;*/
/*  align-content: space-between;*/
  align-items: stretch;
}

/* IE対策*/
img[src$=".svg"] {
    width: 100%;
}

.layout-2 {
  display: flex;
  justify-content: space-between;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.layout-2 {
  display: block;
}

}


/* ****************************************************************************************************
   * inview
**************************************************************************************************** */

.inview {
  overflow: hidden;
}

.inview [class*="inview-"] {
  opacity: 0;
  transition: transform 1s 0.25s,opacity 1s 0.25s;
}

.inview .inview-slideleft {
  transform: translateX(-100%);
}

.inview .inview-slideright {
  transform: translateX(100%);
}

.inview .inview-slideup {
  transform: translateY(30px);
}

.inview.inview-active [class*="inview-"] {
  opacity: 1;
  transform: translate(0,0);
}

@keyframes fadein {
from {
    opacity: 0;
    transform: translateX(-50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}

}

/* ****************************************************************************************************
   * waypoints
**************************************************************************************************** */

.img-left{
  overflow: hidden;
  position: relative;
}
.img-left__img{
  display: block;
  opacity: 0;
  position: relative;
  transition:all .5s .3s ease; 
  z-index: 0;
}
.img-left:before {
  background: /*#333*/#fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition:all .8s 0s ease; 
  width: 100%;
  z-index: 1;     
}

.img-contact {
  overflow: hidden;
  position: relative;
}
 
.img-contact__img{
  display: block;
  opacity: 0;
  position: relative;
  transition:all .5s .3s ease; 
  z-index: 0;
}
 
.img-contact:before {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition:all .8s 0s ease; 
  width: 100%;
  z-index: 1;     
}

.text-up {
  opacity: 0;
/*  padding:0 60px;*/
  transition: all .5s .5s ease;
}
 
/*アニメーションするプロパティを設定します*/
.img-left.active img{
  opacity: 1;
}
.img-left.active:before{
  transform: translateX(100%);        
}
.img-contact.active img{
  opacity: 1;
}
.img-contact.active:before{
  transform: translateX(100%);        
}
.text-up.active{
  opacity: 1;
}

/* ****************************************************************************************************
   * ヘッダー
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#header {
  height: /*100px*/143px;
  z-index: 3;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#header {
  height: 47px;
}

#header.fixed {
  position: fixed;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ
/* ------------------------------------------------------------------------------------------------- */

#header .logo {
  display: table-cell;
  width: 40%;
}

#header .logo a {
  color: #fff;
  font-size: 31px;
  font-weight: bold;
  line-height: 1.0;
}

#header .logo a span {
  display: block;
  font-size: 20px;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1300px) {

#header .logo {
  display: table-cell;
  width: 35%;
}

#header .logo a {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.0;
}

#header .logo a span {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#header .logo {
  display: block;
  width: 100%;
}
#header .logo a {
  color: #000;
  font-size: 18px;
  margin-left: 0;
}

#header .logo img {
	height: 43px;
	padding: 2px 0;
}
}

/* ----------------------------------------------------------------------------------------------------
   * ヘッダー上部
/* ------------------------------------------------------------------------------------------------- */

#header .header {
  background: #fff;
}

#header .header div.body {
  max-width: 1200px;
}

#header .header .text {
  color:#333333;
  font-size: 12px;
  padding-top: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#header .header {
  display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ヘッダー内容
/* ------------------------------------------------------------------------------------------------- */

#header .contents .body {
  max-width: 1200px;
  align-items: center;
	position: relative;
    display: table;
}
#header .contents {
  position: absolute;
  top: /*0*/40px;
  left: 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
  height: 100px;
  padding: 15px 0 10px;
/*  box-shadow: 2px 0px 7px 0px #888888;*/
  box-shadow: 0 6px 3px -5px #dddddd;
}
#header .contents.fixed {
  position: fixed;
  top:0;
	height: 100px;
}
#header .nav {
  width: 100%;
  margin:0 auto;
  text-align: center;
  display: table-cell;
  vertical-align: bottom;
/*	padding-right: 9.6%;*/
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1500px) {

#header .nav {
  width: 100%;
	margin:0 auto;
	text-align: center;
	padding-right: /*13.6%*/0;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#header .nav {
  width: 100%;
	margin:0 auto;
	text-align: center;
	padding-right: 0;
}

#header .contents {
  position: fixed;
  top: 0;
  left: 0;
	padding-top: 0;
  z-index: 9999;
	background: #fff;
  width: 100%;
	height: 45px;
  box-shadow: 0 6px 3px -5px #dddddd;
}
#header .contents.fixed {
  position: fixed;
  top:0;
  height: 45px;
}

}


/* ----------------------------------------------------------------------------------------------------
   * ナビ + お問合せ + SNS
/* ------------------------------------------------------------------------------------------------- */

#header .contents .body > .body {
  max-width: 82%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1500px) {

#header .contents .body > .body {
  max-width: 85%;
  margin-left: 0;
  padding-right: 3.5%;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1300px) {

#header .contents .body > .body {
  max-width: 65%;
  margin: initial;
}

}

/* ----------------------------------------------------------------------------------------------------
   * お問合せ + SNS
/* ------------------------------------------------------------------------------------------------- */

#header .information {
  display: table-cell;
  width: 50%;
  padding-right: 10.5%;
}

#header ul.sns {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: baseline;
}

#header ul.sns li {
  margin-right: 30px;
}

#header ul.sns li:nth-child(n+2) {
  margin: 0 5px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1500px) {

#header .information {
  display: table-cell;
  width: 40%;
  padding-right: 15px;
}

#header ul.sns li {
  display: inline-block;
}

#header ul.sns li a {
  display: flex;
  align-items: end;
  border:none !important;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1300px) {

#header .information {
  display: none;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#header .information {
  display: block;
  width: 100%;
  padding: 0;
}

#header ul.sns li {
  margin-right: 0;
}
#header ul.sns li:first-child {
  width: 100%;
  border-top: 1px solid #f2f2f2;
}

#header ul.sns li a {
  padding:0.75em !important;
}

}

/* ****************************************************************************************************
   * ドロップダウン
**************************************************************************************************** */

#header .nav ul.dropdown {
/*  width: 100%;*/
  display: table;
  font-size: 0;
  margin-right: 0;
  margin-left: auto;
}
#header .nav ul.dropdown > li {
  position: relative;
  z-index: 1;
  display: /*table-cell*/inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 15px;
}
#header .nav ul.dropdown li::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 30px;
  background-color: #aaaaaa;
}

#header .nav ul.dropdown li:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #aaaaaa;
}

#header .nav ul.dropdown > li > a {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 5px 30px 1em;
  color: #111111;
  font-weight: bold;
}
#header .nav ul.dropdown > li > a:hover,
#header .nav ul.dropdown > li[current] > a {
  color:#00aae7;
}


#header .nav ul.dropdown > li > a:after {
  content: '';
  position: absolute;
  display: block;
  height: 4px;
  background: #00aae7;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.2s left, 0.2s right;
}
#header .nav ul.dropdown > li > a:hover:after,
#header .nav ul.dropdown > li[current] > a:after {
  left: 0;
  right: 0;
  opacity: 1;
}
#header .nav ul.dropdown ul {
  position: absolute;
  left: 1px;
  min-width: 200px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  margin-top: 3px;
}
#header .nav ul.dropdown ul li:first-child::before,
#header .nav ul.dropdown ul li::after {
  display: none;
}

#header .nav ul.dropdown ul li a {
  display: block;
  text-decoration: none;
  padding: 0.75em 1em;
  background: #fff;
  border: 1px solid #00aae7;
  margin-top: -1px;
}
#header .nav ul.dropdown ul li a:hover {
  background: #d9eff7;
}


@media (max-width:1100px) {

#header .nav ul.dropdown {
  width: 100%;
  display: table;
	font-size: 0;
	margin-top: 0px;
}
  #header .nav ul.dropdown ul {
    margin-top: 0;
  }
  #header .nav ul.dropdown > li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    width: 100%;
    padding: 0;
    font-size: 14px;
	}

/* ----------------------------------------------------------------------------------------------------
   * 下層メニュー
/* ------------------------------------------------------------------------------------------------- */

  #header .nav ul.dropdown li.parent {
    display: block;
    border-right: 0 !important;
    border-bottom: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown li.parent a {
    width: calc( 100% - 50px );
  }
  #header .nav ul.dropdown li.parent:after {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #848473;
    border-bottom: 2px solid #848473;
    transform: rotate(45deg);
		background: none;
  }
  #header .nav ul.dropdown li.parent.active:after {
    top: 20px;
    transform: rotate(-135deg);
  }
  #header .nav ul.dropdown ul {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
/*    margin-bottom: -0.75em;*/
  }
  #header .nav ul.dropdown > li > ul > li > a{
    border-top: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown ul li {
    border: none;
    padding: 0;
  }
  #header .nav ul.dropdown ul li a {
    padding-left: 2em;
    border: 0;
  }
  #header .nav ul.dropdown > li > a:after {
    content: none;
  }
  #header .nav ul.dropdown > li > a {
    height: auto;
    text-align: left;
    padding: 0.75em;
    border-radius: 0;
    margin-top: 0;
  }
#header .nav ul.dropdown > li[current] > a,
#header .nav ul.dropdown li a:hover {
}



#header .nav ul.dropdown li::after {
  display: none;
}
#header .nav ul.dropdown li:first-child::before {
  display: none;
}


  #header .nav ul.dropdown > li > a {
    display: block;
    text-align: left;
    padding: 1em;
    color:#000;
  }
#header .nav ul.dropdown > li > a:after {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  background: #00aae7;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.2s left, 0.2s right;
}
#header .nav ul.dropdown > li > a:hover:after,
#header .nav ul.dropdown > li[current] > a:after {
  left: 0;
  right: 0;
  opacity: 1;
}
    
  /* icon */
  .icon-menu-trigger {
    display: block !important;
    position: absolute;
    top:0;
    right: 0;
    width: 45px;
    height: 0;
    padding-top: 45px;
    background: #00aae7;
    -webkit-appearance: none;
    border: none;
  }
  .icon-menu-trigger:before,
  .icon-menu-trigger:after,
  .icon-menu-trigger span:before {
    content: '';
    position: absolute;
    left: 20%;
    display: block;
    width: 60%;
    height: 0;
    padding-top: 2px;
    background: #fff;
  }
  .icon-menu-trigger:before {
    top: 29%;
    transition: 0.2s top, 0.2s transform;
  }
  .icon-menu-trigger:after {
    top: 47%;
    transition: 0.2s opacity;
  }
  .icon-menu-trigger span:before {
    top: 66%;
    transition: 0.2s top, 0.2s transform;
  }
  
  /* active */
  .icon-menu-trigger.nav-active:before {
    top: 50%;
    transform: rotate(135deg);
  }
  .icon-menu-trigger.nav-active:after {
    opacity: 0;
  }
  .icon-menu-trigger.nav-active span:before {
    top: 50%;
    transform: rotate(45deg);
  }

/* ----------------------------------------------------------------------------------------------------
   * グローバルメニューアクティブ時の動き
/* ------------------------------------------------------------------------------------------------- */

  #wrapper {
    position: relative;
    left: 0;
    transition: 0.2s left;
    border-right: 1px solid #f2f2f2;
  }
  #wrapper.nav-active {
    left: -290px;
  }
  #sp-nav {
    position: fixed;
    top: 47px;
    right: -290px;
    bottom: 0;
    z-index: 9999;
    width: 290px !important;
    background: #fff;
    overflow-y: auto;
    transition: 0.2s right;
  }
  #wrapper.nav-active {
    right: 0;
  }
  .nav-active #header .nav {
    right: 0;
  }

}

/* ****************************************************************************************************
   * パンくず
**************************************************************************************************** */

#breadcrumb {}

#breadcrumb div.body {
  max-width: 1200px !important;
  padding: 0 !important;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
#breadcrumb ol,
#breadcrumb ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#breadcrumb ol {
  letter-spacing: -0.4em;
    margin-bottom: 20px;
}
#breadcrumb ol li {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: normal;
  vertical-align: middle;
  display: inline-block;
}
#breadcrumb ol li::after {
  content: '>';
  margin: 0 10px 0 10px;
}
#breadcrumb ol li:last-child::after {
  content: none;
}
#breadcrumb ol li a {
  text-decoration: none;
	color:#00aae7;
}
#breadcrumb ol li a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#breadcrumb {
  padding:0 20px;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#breadcrumb {
  padding:0 20px;
}

#breadcrumb div.body {
  max-width: 1200px;
	padding:20px 10px;
}

#breadcrumb ol {
  letter-spacing: -0.4em;
	margin-top: 15px;
	padding-left: 0px;
}

}

/* ****************************************************************************************************
   * ページナビ
**************************************************************************************************** */

#page-nav {
  background: #f0f0f0;
}

#page-nav .body {
  max-width: 1000px !important;
}

#page-nav ul {
  display: table;
	margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
	align-items: center;
}

#page-nav ul li {
  width: 150px;
	margin: 0 auto;
  position: relative;
  display: table-cell;
	vertical-align: middle;
  text-align: center;
	color:#999999;
  border-bottom: 0;
  transition: 0.2s color,0.2s all;
}

#page-nav ul li:hover,
#page-nav ul li[current] {
  background: #fff;
	color:#000;
}

#page-nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
	padding:30px 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#page-nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
	padding:20px 0;
}

}

/* ----------------------------------------------------------------------------------------------------
   * 内容が5つ
/* ------------------------------------------------------------------------------------------------- */

.flex-5 {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

  .page-nav ul.flex-5 li a {
    font-size: 14px;
  }
}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------
   * 共通
/* ---------------------------------------------------------------------------------------------- */

.visual .slideshow {
  padding-bottom: 30px;
}

.visual .slideshow .slick-slide {
  height: auto;
  overflow: hidden;
  padding: 0 20px;
  transition: 0.2s transform;
/*  margin: 40px;*/
}

.visual .slideshow .slick-slide img {
  width: 100%;
  opacity: 0.5;
  transition: 0.25s opacity;
}

.visual .slideshow .slick-slide.slick-active img {
  opacity: 1;
}

.visual .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  border-radius: 50px;
  border: none;
  transition: 0.2s opacity;
  margin-top: -25px;
}

.visual .slick-arrow:hover {
  opacity: 0.8;
}

.visual .slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #00aae7;
  border-right: 3px solid #00aae7;
  transform: rotate(45deg);
  margin-top: -5px;
  margin-left: -10px;
}

.visual .slick-arrow.slick-prev {
  left: 13.5%;
}

.visual .slick-arrow.slick-prev:before {
  transform: rotate(-135deg);
  margin-left: -5px;
}

.visual .slick-arrow.slick-next {
  right: 13.5%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1280px) {

.visual .slick-arrow.slick-prev {
  left: 8.5%;
}

.visual .slick-arrow.slick-next {
  right: 8.5%;
}

}

@media (max-width:736px) {
  .visual {
  }
  .visual .slideshow {
  padding-top: 10px;
  padding-bottom: 10px;
  }
  .visual .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .visual .slick-arrow.slick-prev {
    left: 5%;
  }
  .visual .slick-arrow.slick-next {
    right: 5%;
  }
  .visual .slideshow .slick-slide {
    margin: 5px;
    padding: 0;
  }
}

/* -------------------------------------------------------------------------------------------------
   * キャッチコピー
/* ---------------------------------------------------------------------------------------------- */

.visual {
  position: relative;
/*  margin-top: 40px;*/
}

.visual .catch {
  position: absolute;
  top: 48%;
  left: 5%;
  right: 5%;
  text-align: center;
  transform: translateY(-50%);
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.visual {
  position: relative;
/*  margin-top: 20px;*/
}

.visual .catch {
  position: absolute;
  top: 48%;
  left: 5%;
  right: 5%;
  text-align: center;
  transform: translateY(-50%);
  margin-top: 0;
}

.visual .catch img {
  width: 50%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.visual {
  position: relative;
  margin-top: 0;
  }
.visual .catch {
  position: absolute;
  top: 48%;
  left: 5%;
  right: 5%;
  text-align: center;
  transform: translateY(-50%);
  margin-top: 0;
}
.visual .catch img {
  width: 80%;
  margin: 0 auto;
  }
}

/* ****************************************************************************************************
   * body#layout-lower　visual
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body#layout-lower
.visual {
  background: #d9eff7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding-top: 0;
}

body#layout-lower
.visual div {
  position: relative;
}

body#layout-lower
.visual h1.title {
  font-size: 30px;
  font-weight: bold;
}

body#layout-lower
.visual div.body {
  max-width:1280px !important;
	padding-top: 165px !important;
}

body#layout-lower
.visual div img {
  width: 100%;
}

body#layout-lower
.visual::after {
  display: none;
}

@media (max-width:1100px) {

body#layout-lower
.visual {
  padding-top: 0;
  margin-top: 0;
  height: 150px;
}
body#layout-lower
.visual h1.title {
  font-size: 25px;
  font-weight: bold;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

body#layout-lower
.visual {
  padding-top: 0;
  margin-top: 0;
  height: 80px;
  }
}

/* ****************************************************************************************************
   * 地図
**************************************************************************************************** */

iframe {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

iframe {
  height: 250px;
}

}

/* ****************************************************************************************************
   * サイドメニュー
**************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#side {
  width: 270px;
}

#side div.body {
  margin-top: 0 !important;
  margin-bottom: 60px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#side {
  width: 100%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#side {
  width: 100%;
}

#side div.body {
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 30px;
  }

/* 下層*/
body#layout-lower
#side {
  margin-top: 0;
  }
}

/* -------------------------------------------------------------------------------------------------
   * バナー
/* ---------------------------------------------------------------------------------------------- */

#side-1 ul.bnr {}

#side-1 ul.bnr li {
  position: relative;
  display: table;
  background: #00aae7;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
}

#side-1 ul.bnr li a {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  color:#fff;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
  padding: 20px 10px;
}

#side-1 ul.bnr li a span {
  font-size: 16px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* ----------------------------------------------------------------------------------------------------
   * アイコン
/* ------------------------------------------------------------------------------------------------- */

#side-1 ul.bnr li a::before {
  content: "";
  display: table-cell;
  vertical-align: middle;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  padding-right: 10px;
}

#side-1 ul.bnr li:nth-child(1) a::before {
  background: url("../../_images/index/side-icon-3.png") no-repeat;
}

#side-1 ul.bnr li:nth-child(2) a::before {
  background: url("../../_images/index/side-icon-1.png") no-repeat;
}
#side-1 ul.bnr li:nth-child(3) a::before {
  background: url("../../_images/index/side-icon-1.png") no-repeat;
}
#side-1 ul.bnr li:nth-child(4) a::before {
  background: url("../../_images/index/side-icon-2.png") no-repeat;
}

/* -------------------------------------------------------------------------------------------------
   * ナビ
/* ---------------------------------------------------------------------------------------------- */

#side-1 ul.nav {
  border:10px solid #d9eff7;
  border-radius: 10px;
  padding: 10px;
}

#side-1 ul.nav li {
  position: relative;
  border-bottom: 2px dotted #aaaaaa;
  padding-left: 1.5em;
  padding-bottom: 10px;
  margin-top: 10px;
}
#side-1 ul.nav li:first-child {
  margin-top: 0;
}
#side-1 ul.nav li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  background: url("../../_images/_common/icon-mark-2.png") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

/* 産業保健関係助成金*/
#side-1 ul.nav li:nth-child(2)::after,ul.nav li:nth-child(3)::after, ul.nav li:nth-child(4)::after, ul.nav li:nth-child(5)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  background: url("../../_images/_common/icon-mark-1.png") no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
}

#side-1 ul.nav li a {
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

/* 産業保健関係助成金*/
#side-1 ul.nav li:nth-child(2)::after,ul.nav li:nth-child(3)::after, ul.nav li:nth-child(4)::after, ul.nav li:nth-child(5)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  background: url("../../_images/_common/icon-mark-1.png") no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
}

}

/* 動画ページ*/
.pdf::before{
  font-family: "Font Awesome 5 Free";
  content: '\f1c1';
  font-size: 18px;
  font-weight: 400;
  margin-right: 4px;
  color:#e60033;
}
.shiryou::before{
  font-family: "Font Awesome 5 Free";
  content: '\f0c6';
  font-size: 16px;
  font-weight: 900;
  margin-right: 4px;
  color:#74686B;
}



/* ****************************************************************************************************
   * フッター
**************************************************************************************************** */

#footer {
  position: relative;
}

#footer .footer {
  background: #00aae7;
  padding-top: 30px;
  padding-bottom: 10px;
}

#footer .footer div.body {
  max-width: 1100px !important;
}

#footer .contents {
  background: #d9eff7;
}

#footer .contents div.body {
  max-width: 1000px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#footer {
  position: relative;
}
#footer .footer {
  background: #00aae7;
  padding-top: 0;
  padding-bottom: 0;
}
#footer .footer div.body {
  max-width: 100% !important;
  padding: 0 !important;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ナビ
/* ------------------------------------------------------------------------------------------------- */

#footer .nav {
  width: 100%;
  letter-spacing: -0.5em;
  font-size: 15px;
  color:#fff;
}

#footer .nav ul.item {
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#footer .nav ul.item li {
  position: relative;
  padding-left: 1.25em;
  margin-right: 20px;
  margin-bottom: 20px;
}

#footer .nav ul.item li::before {
  content: "";
  display: inline-block;
  background: url("../../_images/_common/icon-mark-3.png") no-repeat;
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 6px;
  left: 0;
}

#footer .nav ul.item > li a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

#footer .nav ul.item > li a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#footer .nav {
  width: auto;
  letter-spacing: -0.5em;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#footer .nav {
  width: auto;
  letter-spacing: -0.5em;
  padding: 20px 10px 0;
}

#footer .nav ul.item li {
  width: 100%;
  position: relative;
  padding-left: 1.25em;
  margin-right: 20px;
  margin-bottom: 20px;
}

}

/* ----------------------------------------------------------------------------------------------------
   * サイトマップ
/* ------------------------------------------------------------------------------------------------- */
/* スマホ　サイトマップ非表示*/
#footer .actab input {
  display: none;
}
#footer .actab label {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#footer .actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
}
#footer .actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
#footer .actab label {
	font-weight: bold;
	line-height: 3;
	position: relative;
	text-align: center;
	display: block;
	cursor: pointer;
	background: #00aae7;
    border-bottom: 1px solid #fff;
}
#footer .actab .actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: /*max-height 0.35s*/.5s;
	transition: /*max-height 0.35s*/.5s;
	color: #333333;
}
#footer .actab .actab-content p {
	margin: 1em;
}
/* :checked */
#footer .actab input:checked ~ .actab-content {
	/*max-height: 20em;*/
	max-height: 85em;
}
/* Icon */
#footer .actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
#footer .actab input[type=checkbox] + label::after {
	content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    margin-top: -6px;
    transform: rotate(45deg);
		color:#fff;
}
#footer .actab input[type=checkbox]:checked + label::after {
    top: 57%;
    transform: rotate(225deg);
}
#footer .actab a {
  display: inline !important;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ
/* ------------------------------------------------------------------------------------------------- */

#footer .logo {
  display: inline-block;
  margin-top: 40px;
  margin-right: 30px;
  text-align: center;
  color:#222222;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.0;
}
#footer .logo p span {
  display: block;
  font-size: 25px;
  line-height: 1.4;
}

#footer .logo p span.color {
  display: inline;
  color:#ec6941;
}

#footer .logo a:hover {
  opacity: 0.7;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#footer .logo {
  margin-top: 20px;
  text-align: center;
  color:#222222;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.0;
}
#footer .logo p span {
  display: block;
  font-size: 22px;
  line-height: 1.4;
}

#footer .logo p span.color {
  display: inline;
  color:#ec6941;
}

#footer .logo a:hover {
  opacity: 0.7;
}

}

/* ----------------------------------------------------------------------------------------------------
   * 住所
/* ------------------------------------------------------------------------------------------------- */

#footer address {
  display: inline-block;
  font-size: 14px;
}

/* ----------------------------------------------------------------------------------------------------
   * コピーライト
/* ------------------------------------------------------------------------------------------------- */

#footer .copyright {
  font-size: 14px;
  text-align: center;
  padding: 10px 0 20px;
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#footer .copyright {
  font-size: 14px;
  text-align: center;
  padding: 10px 0 20px;
  margin-top: 40px;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ページトップ
/* ------------------------------------------------------------------------------------------------- */

#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
	z-index: 999;
}
#pagetop a {
  background: rgba(255,255,255,0.8);
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  display: block;
  border:1px solid #f2f2f2;
}
#pagetop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pagetop a:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 4px #00aae7;
  border-left: solid 4px #00aae7;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
  margin-top: -4px;
  transition: 0.2s right;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#pagetop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  font-size: 77%;
	z-index: 999;
}
#pagetop a {
  background: rgba(255,255,255,0.8);
  text-decoration: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  text-align: center;
  display: block;
  border:1px solid #f2f2f2;
}
#pagetop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pagetop a:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #00aae7;
  border-left: solid 2px #00aae7;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
  margin-top: -4px;
  transition: 0.2s right;
}

}
