@charset "utf-8";

/*------------------------------
  共通のCSS
------------------------------*/

html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
}

#wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}

h2 {
  font-size: 7rem;
  font-weight: 500;
  color: #016C6C;
}

h3 {
  font-size: 3rem;
  line-height: 1.8;
}

h4 {
  font-size: 2.7rem;
  line-height: 1.7;
}

h5 {
  font-size: 2.2rem;
  line-height: 2rem;
}

/*共通のボタン*/

.btn_more {
  background: url(../../images/ic_btn_arrow.png) no-repeat 160px;
  background-color: rgba(255,255,255,0);
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
	font-weight: 700;
  color: #333;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #333;
}

.btn_more:hover {
  background: url(../../images/ic_btn_arrow_fff.png) no-repeat 160px;
  background-color: #016C6C;
  border-color: #016C6C;
  color: #fff;
}

.btn_more::before,
.btn_more::after {
	position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
	z-index: -1;
	display: block;
	content: '';
}

.btn_more::before {
  right: 0;
}

.btn_more::after {
  left: 0;
}

.btn_more,
.btn_more::before,
.btn_more::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.btn_more:hover::before,
.btn_more:hover::after {
	width: 0;
  background-color: rgba(255,255,255,1);
}


.btn_new_window {
  background: url(../../images/ic_new_window_gr.png) no-repeat 150px;
  background-color: rgba(255,255,255,0);
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #333;
}

.btn_new_window:hover {
  background: url(../../images/ic_new_window_wh.png) no-repeat 150px;
  background-color: #016C6C;
  border-color: #016C6C;
  color: #fff;
}

.btn_new_window::before,
.btn_new_window::after {
	position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
	z-index: -1;
	display: block;
	content: '';
}

.btn_new_window::before {
  right: 0;
}

.btn_new_window::after {
  left: 0;
}

.btn_new_window,
.btn_new_window::before,
.btn_new_window::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.btn_new_window:hover::before,
.btn_new_window:hover::after {
	width: 0;
  background-color: rgba(255,255,255,1);
}


/*------------------------------
  フェードイン
------------------------------*/

.js-fadein {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1.5s;
}
.js-fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}



/*--------------------
  ヘッダ
--------------------*/

header {
  background: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  min-width: 1000px;
  height: 100px;
  margin: 0 auto;
  z-index: 2;
}

header a {
  color: #333;
  font-weight:600; 
  text-decoration: none;
  position: relative;
}

header .logo_header {
  font-size: 2.6rem;
  float: left;
  height: 100px;
  line-height: 100px;
  margin: 0 0 0 30px;
  
}

header .logo_header ul li {
  font-weight: 500;
  float: left;
  margin-right: 20px;
}


header .logo_header ul li h1 a {
  background: url("../../images/logo_header.png") no-repeat center center;
  display: block;
  width: 148px;
  height: 48px;
  margin-top: 26px;
  box-sizing: border-box;
}
/*

header .logo_header img {
  display: block;
}
*/

#menu_list {
  float: right;
  margin-right: 30px;
}

#menu_list li {
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 30px 30px 30px 0;
}

.menu_list_link a {
  display: block;
  position: relative;
  transition: .2s;
}

.menu_list_link a::after {
	background-color: #016C6C;
  position: absolute;
	bottom: 0px;
	left: 50%;
  content: '';
	width: 0;
	height: 4px;
	transition: .2s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.menu_list_link a:hover::after {
	width: 100%;
}

/*エントリーボタン*/

#menu_list .entry_btn {
  padding: 25px 0;
  position: relative;
  height: 50px;
  line-height: 50px;
}

.entry_btn a {
  color: #fff;
  text-align: center;
  display: inline-block;
  width: 150px;
	border: 2px solid #016C6C;
	position: relative;
	z-index: 2;
}

.entry_btn a:hover {
	background-color: #fff;
	color: #016C6C;
	border-color: #016C6C;
}
.entry_btn a::before,
.entry_btn a::after {
	background: #016C6C;
  position: absolute;
	top: 0;
	display: block;
	width: 50%;
	height: 100%;
	z-index: -1;
	content: '';
}

.entry_btn a,
.entry_btn a::before,
.entry_btn a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.entry_btn a::before {
	right: 0;
}
.entry_btn a::after {
	left: 0;
}
.entry_btn a:hover::before,
.entry_btn a:hover::after {
	background: none;
	width: 0;
}

.entry_btn img {
  position: absolute;
  top: 44px;
  right: 13px;
  z-index: 2;
}

/*--------------------*/
/* スマホのトグルメニュー */
/*--------------------*/

/* ハンバーガーアイコン */
.menu_sp_toggle {
  display: block;
  float: right;
  margin: 0 3% 0 0;
}

.menu_sp_toggle img{
  vertical-align: middle;
  width: 22px;
  height: 18px;
}

/* トグルメニュー */
.menu_sp {
  display: none;
  background: rgba(0,0,0,0.9);
  color: #fff;
  text-align: center;
  font-size: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}


.menu_sp_list a:hover {
  text-decoration: underline;
}

.menu_sp_list li {
  margin: 55px 0;
}

.menu_sp_list li:first-child {
  margin-top: 130px;
}

.menu_sp_list li a {
  font-weight: 500;
  color: #fff;
}

.menu_sp_list li:last-child a {
  color: #016C6C;
}

.menu_sp_list li span {
  display: block;
  font-size: 1.2rem;
  margin-top: 20px;
}


.menu_sp .logo_header a {
  color: #fff;
}

/* クローズボタン */
.menu_sp_toggle_close {
  float: right;
  height: 100px;
  line-height: 100px;
  margin-right: 30px;
}

.menu_sp_toggle_close img {
  width: 21px;
  height: 21px;
}

.menu_sp .logo_header {
  float: left;
  height: 100px;
  line-height: 100px;
  margin: 0 0 0 30px;
}

.menu_sp .logo_header ul li {
  font-size: 2.6rem;
  float: left;
  margin-right: 20px;
}


.menu_sp .logo_header img {
  vertical-align: middle;
}


.menu_sp .logo_header ul li:first-child a {
  background: url("../../images/logo_header.png") no-repeat center center;
  display: block;
  width: 148px;
  height: 48px;
  margin-top: 26px;
  box-sizing: border-box;
}

/*トグル用メニューとハンバーガーアイコンをPCのときは非表示*/
.menu_sp_toggle {
  display: none;
}

#menu_sp {
  display: none;
}



/*--------------------
  コンテンツ
--------------------*/

#contents {
  background-color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

#contents section {
  
}

section h2 {
  margin-bottom: 50px;
}

section h2 span {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.2;
  display: block;
  margin-top: 26px;
}



/*--------------------
  フッター
--------------------*/

footer {
  font-size: 1.2rem;
  position: relative;
  width: 100%;
  margin: 120px auto 0 auto;
}

footer a:hover {
  text-decoration: underline;
}

.top_btn {
  background: url("../../images/ic_btn_top.png") center center no-repeat #f6f6f6;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 80px;
  cursor: pointer;
}
.top_btn img {
  width: 37px;
  height: 18px;
  margin-top: 31px;
}

#ft_nav {
  background: #016C6C;
}

#ft_nav>ul {
  float: left;
  position: relative;
  left:50%;
}

#ft_nav>ul>li {
  float: left;
  left: -50%;
  position: relative;
  margin: 60px 40px;
}

#ft_nav>ul>li>ul>li {
  margin-bottom: 14px;
}

#ft_nav>ul>li>ul>li:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}

#ft_nav>ul>li>ul>li:nth-child(2) {
  background: #fff;
  width: 15px;
  height: 2px;
  margin-bottom: 20px;
}

#ft_nav>ul>li>ul>li:last-child {
  margin-bottom: 0;
}

footer a {
  color: #fff;
}

#copyright {
  background: #414040;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  height: 60px;
  line-height: 60px;
}


/*------------------------------
  タブレット(レスポンシブ)
------------------------------*/


@media only screen and ( max-width: 959px) {
/* ヘッダーとフッターのみ考慮 */
  
  /*--------------------
    ヘッダー
  --------------------*/
  header {
    min-width: 100%;
  }

  #menu_list {
    display: none;
  }

  /* ハンバーガーアイコン */
  .menu_sp_toggle {
    display: block;
    height: 100px;
    line-height: 100px;
    margin-right: 30px;
  }
  
  /*--------------------
    フッター
  --------------------*/
  footer {
    text-align: center;
  }
  
  .top_btn {  
    background: url("../../images/sp_ic_btn_top.png") center center no-repeat #f6f6f6;
    height: 65px;
  }
  .top_btn img {
    width: 19px;
    height: 9px;
    margin-top: 28px;
  }  
  
  #ft_nav>ul>li>ul>li:nth-child(2),
  #ft_nav>ul>li>ul>li:nth-child(3),
  #ft_nav>ul>li>ul>li:nth-child(4),
  #ft_nav>ul>li>ul>li:nth-child(5),
  #ft_nav>ul>li>ul>li:nth-child(6),
  #ft_nav>ul>li>ul>li:nth-child(7)
  {
    display: none;
  }

  #ft_nav>ul>li {
    float:none;
    margin: 45px 0;
  }

  #ft_nav>ul>li>ul>li {
    margin-bottom: 14px;
  }

  #ft_nav>ul>li>ul>li:first-child {
    font-size: 2rem;
    margin-bottom: 0;
  }
  
  #copyright {
  }
}



/*------------------------------
  スマートフォン(レスポンシブ)
------------------------------*/

@media only screen and ( max-width: 599px) {
  body {
  }
  
  #wrapper {
    width: 100%;
  }
  
  footer {
    width: 100%;
    margin: 0 auto;
  }
  
  h2 {
    font-size: 3rem;
    line-height: 0.8;
  }
  
  h3 {
    font-size: 1.8rem;
    line-height: 2;
  }
  
  h4 {
    font-size: 1.8rem;
    line-height: 2;
  }
  
  h5 {
    font-size: 1.2rem;
    line-height: 2;
  }

  
  /*共通のボタン*/

  .btn_more {
    font-size:2rem;
    background: url(../../images/ic_btn_arrow.png) no-repeat 95%;
    width: 100%;
    height: 63px;
    line-height: 63px;
  }
  
	/* スマホの場合ホバーの動きはなくしておく */
  .btn_more:hover {
    background: url(../../images/ic_btn_arrow.png) no-repeat 95%;
    background-color: none;
    border-color: #333;
		color: #333;
  }
	
	.btn_more::before,
	.btn_more::after {
		position: absolute;
		top: 0;
		width: auto;
		height: auto;
		z-index: -1;
		display: block;
		content: '';
	}

	.btn_more::before {
		right: 0;
	}

	.btn_more::after {
		left: 0;
	}

	.btn_more,
	.btn_more::before,
	.btn_more::after {
		-webkit-transition: all 0;
		transition: all 0;
	}

	.btn_more:hover::before,
	.btn_more:hover::after {
		width: 0;
		background-color: none;
	}


  .btn_new_window {
    font-size:2rem;
    background: url(../../images/ic_new_window_gr.png) no-repeat 95%;
    width: 100%;
    height: 63px;
    line-height: 63px;
  }
  
  
  .btn_new_window:hover {
    background: url(../../images/ic_new_window_gr.png) no-repeat 95%;
    background-color: none;
    border-color: #333;
		color: #333;
  }

	.btn_new_window::before,
	.btn_new_window::after {
		width: auto;
		height: auto;
		z-index: -1;
	}

	.btn_new_window::before {
		right: 0;
	}

	.btn_new_window::after {
		left: 0;
	}

	.btn_new_window,
	.btn_new_window::before,
	.btn_new_window::after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transition: 0s;
		transition: all 0s;
	}

	.btn_new_window:hover::before,
	.btn_new_window:hover::after {
		width: auto;
		background-color: rgba(255,255,255,0);
	}


  
  /*--------------------
    ヘッダ
  --------------------*/
  
  header {
    min-width: 100%;
    height: 65px;
    line-height: 65px;
  }

  header .logo_header {
    height: auto;
    line-height: normal;
    margin: 13px 0 0 3%;
  }
  
  header .logo_header ul li{
    font-size: 1.2rem;
    font-weight:600; 
    float: none;
    margin-right: 0;
  }
  header .logo_header ul li h1 a {
    background: url("../../images/logo_header.png") no-repeat top center;
    background-size: 85px 30px;
    display: block;
    width: 85px;
    height: 30px;
    margin-top: 0;
  }
  
  #menu_list {
    display: none;
  }

  /* ハンバーガーアイコン */
  .menu_sp_toggle {
    display: block;
    height: 65px;
    line-height: 65px;
    margin-right: 3%;
  }
  
  
  /* クローズボタン */
  .menu_sp_toggle_close {
    height: 65px;
    line-height: 65px;
    margin-right: 3%;
  }

  /* トグルメニュー内のロゴ */
  .menu_sp .logo_header {
    position: absolute;
    top: 13px;
    left: 3%;
    height: auto;
    line-height: normal;
    margin: 0;
  }
  
  .menu_sp .logo_header ul li{
    font-size:1.2rem;
    font-weight:600; 
    float: none;
    margin-right: 0;
  }
  
  .menu_sp .logo_header ul li:first-child a{
    background: url("../../images/logo_header.png") no-repeat top center;
    background-size: 85px 30px;
    display: block;
    width: 85px;
    height: 30px;
    margin-top: 0;
  }

  
  /*--------------------
    コンテンツ
  --------------------*/
  #contents {
    margin: 0 auto;
  }
  
  section h2 {
    margin-bottom: 30px;
  }

  section h2 span {
    font-size: 1.2rem;
    color: #333;
    display: block;
    margin-top: 13px;
  }


  /*--------------------
    フッター
  --------------------*/
  footer {
    /* タブレット側で設定 */
  }
  
  #copyright {
    font-size: 1rem;
  }
  
}

@media screen and (min-width: 680px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }


}

@media screen and (max-width: 680px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}
