@charset "utf-8";
/* ===============================================
# common
=============================================== */
*{
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%; /* 10px */
  overflow-y: scroll;
}
@media screen and (min-width :769px) and (max-width :1077px){
  html {
    overflow: scroll;
    width: 1077px;
  }
}
body{
  padding: 0;
  word-wrap : break-word;
  overflow-wrap : break-word;
  color: #000;
  background-color: #fff;  
  font-size: 16px;
  font-size: 1.6rem;
  /*font-family: "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, sans-serif;*/
  font-family: "游ゴシック Medium", "Yu Gothic Medium","游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-animation: PageIn 1.3s ease 0s 1 normal;
  animation: PageIn 1.3s ease 0s 1 normal;
  line-height: 1.875;
  -webkit-text-size-adjust: 100%;
}
@keyframes PageIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes PageIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
}
main{
  display: block;
}
.inner{
  position: relative;
}
a,
a:visited{
  text-decoration: none;
  color: #000;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}
img[src*=".svg"] {
  width: 100%;
}
.for_pc{
  display: block;
}
.for_sp{
  display: none;
}
span.for_pc,
br.for_pc,
img.for_pc{
  display: inline;
}
span.for_sp,
br.for_sp,
img.for_sp{
  display: none;
}
.clear{
  clear: both;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.flex{
  display: -webkit-box;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}
@media print,screen and (min-width :769px){
  .tellink{
    pointer-events: none;
  }
  .flex_pc{
    display: -webkit-box;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width :768px){
  body{
    font-size:14px;
    font-size:1.4rem;
    line-height: 1.538;
  }
  img{
    width: 100%;
    height: auto;
  }
  .for_pc{
    display: none;
  }
  .for_sp{
    display: block;
  }
  span.for_pc,
  br.for_pc,
  img.for_pc{
    display: none;
  }
  span.for_sp,
  br.for_sp,
  img.for_sp{
    display: inline;
  }
}

/*
 マウスオーバー
----------------------------------------------------------- */
.ov{
  display:block;
}
.over{
  display:block;
}
@media screen and (min-width : 769px){
  .ov,
  .over{
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  .ov:hover{
    opacity: .6;
    text-decoration: none;
  }
}

/* ===============================================
# ヘッダー　PC
=============================================== */
header.for_pc .inner{
  max-width: 1920px; 
  width: 100%;
}
header.for_pc .menu_top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 1px 1px 9px 0px rgba(6,92,80,0.16);
}
header.for_pc .menu_top .area_top{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header.for_pc h1{
  width: 16%;
  max-width: 270px;
  height: 100%;
  text-align: right;
  padding: 20px 1.5%;
}
header.for_pc h1 .top_logo{
  width: 150px;
  margin-bottom: 10px;
}
header.for_pc h1 .top_ttl{
  width: 124px;
  margin-left: 26px;
}
header.for_pc nav{
  display: block;
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
header.for_pc nav ul li{
  margin: 0 1.2em;
}
header.for_pc nav ul li.ico{
  position: relative;
  overflow: hidden;
}
header.for_pc nav ul li a{
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-size: 1.5rem; 
  padding: 50px 0 45px;
  color: #00b097;
}
header.for_pc nav ul li.bg_gr,header.for_pc nav ul li.bg_or{
  margin: 0;
}
header.for_pc nav ul li.bg_gr a{
  background: #079883;
  color: #fff;
  padding: 50px 1.2em 45px;
}
header.for_pc nav ul li.bg_or a{
  background: #ff4620;
  color: #fff;
  padding: 50px 1.2em 45px;
}
header.for_pc nav ul li.ico::after,
header.for_pc nav li:not(.ico) a:after{
  content: '';
  display: block;
  position: absolute;  
  bottom:0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background-color: #079883;
  transform-origin: left center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; 
  transform: translateX(-104%);
}
header.for_pc nav ul li.bg_gr.ico::after,
header.for_pc nav ul li.bg_or.ico::after,
header.for_pc nav li.bg_gr:not(.ico) a:after,
header.for_pc nav li.bg_or:not(.ico) a:after{
  background-color: #fff;
}
header.for_pc nav ul li.ico.active,
header.for_pc nav ul li.ico:hover::after,
header.for_pc nav ul li:not(.ico).active > a::after,
header nav ul li:not(.ico):hover > a::after{
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
header.for_pc nav ul li.ico{
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flex;  
  display: -webkit-flex;
  display: flex;  
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header.for_pc nav li.ico a{
  width: 60px;
  padding: 32px 0 2px;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
}
header.for_pc nav ul li.ico:nth-child(n+2) a{
  border-left: solid 1px #c9c9c9;
}
@media screen and (min-width :768px) and (max-width :1120px){
  header.for_pc .inner {
    margin-top: 125px;
  }
  header.for_pc .menu_top {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 1080px;
    z-index: 99;
  } 
  header.for_pc nav ul li{
    margin: 0 0.5em;
  }
  header.for_pc nav ul li a{
    font-size: 14px;
    font-size: 1.4rem;
  }
  header.for_pc nav ul li.bg_gr a{
    padding: 50px 0.5em 45px;
  }
  header.for_pc nav ul li.bg_or a{
    padding: 50px 0.5em 45px;
  }
}
@media screen and (min-width :1120px) and (max-width :1340px){
  header.for_pc nav ul li{
    margin: 0 0.6em;
  }
  header.for_pc nav ul li a{
    font-size: 14px;
    font-size: 1.4rem;
  }
  header.for_pc nav ul li.bg_gr a{
    padding: 50px 0.6em 45px;
  }
  header.for_pc nav ul li.bg_or a{
    padding: 50px 0.6em 45px;
  }
}

/* ===============================================
# ヘッダー　SP
=============================================== */
/* 共通 */
header.for_sp .scroll_area {
  display: none;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
}
header.for_sp .area_bottom {
  background-color: #fff;
  height:calc(100vh - 50px);
  min-height: 510px;
}
header.for_sp　.area_bottom nav.top {
  padding-bottom: 30px;
}
header.for_sp .area_bottom nav.top ul>li  a {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00b097;
  border-top: 2px solid rgb(20,182,159,0.1);
  padding: 16px 20px 14px;
  background: url(../images/ico_nv_arrow.svg) no-repeat right 10% center;
  background-size: 13px;
}
header.for_sp .area_bottom nav.top ul>li.bg_gr{
  background: #079883;
}
header.for_sp .area_bottom nav.top ul>li.bg_gr a {
  color: #fff;
  background: url(../images/ico_nv_arrow_w.svg) no-repeat right 10% center;
  background-size: 13px;
}
header.for_sp .area_bottom nav.top ul>li:last-child {
  border-bottom: 1px solid #00b097;
}
/* TOP用（menu_top）*/
header.for_sp .menu_top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
header.for_sp .menu_top .area_top .btn_menu {
  position: relative;  
  width: 100%;
  height: 50px;
  cursor: pointer;
  background-color:rgba(255,255,255,0.0);
  transition: background-color 0.3s;
}
header.for_sp .menu_top .area_top .btn_menu h1{
  width: 160px;
  float: left;
}
header.for_sp .menu_top .area_top .btn_menu .ico_menu{
  display: block;
  position: fixed;  
  width: 100%;
  height: 50px;
  cursor: pointer;
  background-color:rgba(255,255,255,0.0);
  padding: 13px 20px;
}
header.for_sp .menu_top .area_top .btn_menu .ico_menu.close{
  display: none;
  position: fixed;
  width: 100%;
  height: 50px;
  cursor: pointer;
  background-color:rgba(255,255,255,1.0);
  padding: 13px 20px;
}
header.for_sp .menu_top .area_top .btn_menu .ico_menu .ico_menu_btn{
  display: inline-block;
  float: right;   
  width: 40px;
}
/* 下層用（menu_second）*/
header.for_sp .menu_second{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 1px 1px 3px 0px rgb(6 92 80 / 16%);
}
header.for_sp .menu_second .area_top .btn_menu {
  position: relative;  
  width: 100%;
  height: 50px;
  background-color:#fff;
  transition: background-color 0.3s;
}
header.for_sp .menu_second .area_top .btn_menu h1{
  width: 130px;
  float: left;
  margin-top:-3px;   
  cursor: pointer;
}
header.for_sp .menu_second .area_top .btn_menu .ico_menu{
  display: block;
  position: fixed;  
  width: 100%;
  height: 50px;
  background-color:rgba(255,255,255,0.0);
  padding: 13px 20px;
}
header.for_sp .menu_second .area_top .btn_menu .ico_menu.close{
  display: none;
  position: fixed;
  width: 100%;
  height: 50px;
  cursor: pointer;
  background-color:rgba(255,255,255,1.0);
  padding: 13px 20px;
}
header.for_sp .menu_second .area_top .btn_menu .ico_menu .ico_menu_btn{
  display: inline-block;
  float: right;   
  width: 40px;  
  cursor: pointer;
}
header.for_sp .menu_second .kifu_btm_hd a{
  background: #ff4620;
  color: #fff;
  padding: 15px 15px;
  display: inline-block;
  float: right;
  width: 102px;
  margin: -13px 20px 0 0;
}

/* ===============================================
# フッター
=============================================== */
footer .termsLink {
  max-width: 1920px;
  margin-left: 40px;
  margin-top: 10px;
}
footer .termsLink ul li {
  display: inline-block;
}
footer .termsLink ul li a {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 11px 20px 9px 10px;
  display: block;
  background: url(../images/ico_arrow.svg) no-repeat left center;
}
footer .info_footer{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  margin-top: 30px;
  margin-bottom: 10px;  
  position: relative;
}
footer .info_footer .area_top{
  width: 285px;  
  min-width: 300px;
  float: left;
  border-right: 1px solid #ccc;
  text-align: center;
}
footer .info_footer .area_top h1{
  margin: 0 auto;
  padding: 0px 10px;
}
footer .info_footer .area_top h1 img{
  width: 85%;
}
footer .info_footer .area_mid{
  -webkit-box-flex: 1;
  flex: 1;
  padding-left: 45px;
  line-height: 1.6;
    min-width: 434px;
}
footer .info_footer .area_mid .ttl{  
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}
/* 住所と電話 */
footer .info_footer .area_mid .add{
  margin-bottom: 15px;
}
footer .info_footer .area_mid .add .mail{
  padding-left: 40px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 35px;
  background: url(../images/ico_add_mail.svg) no-repeat left center;
  background-size: 35px 35px;
}
footer .info_footer .area_mid .add .tel{
  font-family: 'Roboto Condensed', sans-serif;
}
footer .info_footer .area_mid .add .mail a{
  color: #00b197 !important;
}
/* 事務取扱時間 */
footer .info_footer .area_mid .data .ttl_data{
  margin-left: -10px;
  font-weight: bold;
}
footer .info_footer .area_mid .data .ttl_data p{
  line-height: 1.4;
}
/* フッターメニュー */
footer .info_footer .area_btm {
  width: 700px;
  margin-top: 8px;
  margin-bottom: 80px;
}
footer .info_footer .area_btm .nav_footer{
  display:-webkit-box;
  display:flex;
	-webkit-box-pack: end;
	justify-content: flex-end;  
  flex-wrap: wrap;
}
footer .info_footer .area_btm ul.menu{
  padding-right: 40px;
}
footer .info_footer .area_btm ul.menu > li {
  margin-bottom: 12px;
}
footer .info_footer .area_btm ul.menu > li > a {
  display: inline-block;
  background: url(../images/ft/ico_arrow_ft.svg) no-repeat left top;
  line-height: 1;  
  padding-left: 20px;
}
footer .info_footer .area_btm ul.menu > li > ul {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
footer .info_footer .area_btm ul.menu > li > ul > li {
  margin-top: 3px;
}
footer .info_footer .area_btm ul.menu > li > ul > li > a {
  color: #676767;
}
footer .info_footer .btn_official p a {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: block;
  background: #00b097 url(../images/ico_targetTopWhite.svg) no-repeat 275px center;  
  padding: 10px 40px 10px 15px;
  width: 310px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
footer .info_footer .btn_official p p a,
footer .info_footer .btn_official p p a:hover,
footer .info_footer .btn_official p p a:focus {
  color: #fff;
  text-decoration:none;
}

@media screen and (max-width :1298px) and (min-width :769px){
  footer .info_footer .btn_official p a {
    bottom: 0;
    right: auto;
  }  
  footer .info_footer .area_btm .nav_footer ul.menu{
    width: 55%;
    padding-right: 10px;
  } 
  footer .info_footer .area_btm .nav_footer ul.menu:nth-child(2){
    width: 45%;
  }   
  footer .info_footer .area_btm .nav_footer ul.menu:last-child{
    width: 100%;
  }  
}
@media screen and (max-width :768px){
  footer .info_footer {
    display: block;
    margin-top: 50px;
    margin-bottom: 15px;
  }
  footer .info_footer .area_top{
    width: 100%;
    float: none;
  }
  footer .info_footer .area_top h1{
    width: 220px;  
    margin-left: 20px;  
    padding: 0;
  }
  footer .info_footer .area_top h1 img{
    width: 100%;
  }
  footer .info_footer .area_mid{
    width: 100%;
    margin: 30px 23px;
    padding: 0 12px;
    border-left: 1px solid #ccc;
  }
  footer .info_footer .area_mid .ttl{  
    font-size: 18px;
    font-size: 1.8rem;
  }
  footer .info_footer .area_mid .add{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.0;
  }
  footer .info_footer .area_mid .add .tel{
    font-size: 13px;
    font-size: 1.3rem;
    font-family: 'Roboto Condensed', sans-serif;
  }
  footer .info_footer .area_mid .add .mail{
    padding-left: 30px;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 23px;
    background-size: 23px 23px;
    margin-top: 4px;
  }  
  footer .info_footer .area_mid .data{
    line-height: 1.8;
  }  
  footer .info_footer .area_btm {
    width: 100%;
    position: unset;
    margin-top: 8px;
  }
  footer .nav_footer{
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
    /*padding-top: 15px;*/
    border-top: 1px solid #ccc;
  }
  footer .info_footer .area_btm .nav_footer{
    display: block;
  }
  footer .info_footer .area_btm ul.menu {
    float: none;
    padding-right: 0;
  }
  footer .info_footer .area_btm ul.menu > li {
    margin-bottom: 0;
    /*padding-bottom: 15px;
    padding-left: 20px;*/ 
    border-bottom: 1px solid #ccc;  
  }
  footer .info_footer .area_btm ul.menu > li > a {
  background: url(../images/ft/ico_arrow_ft.svg) no-repeat left 15px center;
  }
  footer .info_footer .area_btm ul.menu > li > a {
    background-size: 13px;  
    padding: 15px 40px;  
    display: block;
  }
  footer .info_footer .btn_official {
    display: block;
    width: 100%;
    bottom: 0;
    right: auto;    
  }
  footer .info_footer .btn_official p a {
    position: static;
    background: #00b097 url(../images/ico_targetTopWhite.svg) no-repeat 245px center;
    padding: 15px 40px 15px 15px;
    width: 270px;
    margin: 0 auto;
  }
}

/*---------------------------------------------------------
 コピーライト
----------------------------------------------------------- */
footer .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  padding: 11px 0 20px;
  line-height: 1.1;
  color: #676767;
}
@media screen and (max-width :768px){
  footer .copyright {
    padding: 12px 0 37px;
    font-size: 10px;
    font-size: 1.0rem;
  }    
}

