@charset 'UTF-8';

.pc {
  display: block;
}
.sp {
  display: none;
}
.pc_2 {
  display: inline;
}
.sp_2 {
  display: none;
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc_2 {
    display: none;
  }
  .sp_2 {
    display: inline;
  }
}
#HEADER {
  width: 100%;
  min-width: 950px;
  height: 118px;
  background-color: #fff;
  background-image: url("/img/headband_bg01.png");
  background-position: top;
  background-repeat: repeat-x;
  position: relative;
}
@media only screen and (max-width: 640px) {
  #HEADER {
    width: 100%;
    min-width: 100%;
    height: auto;
    background-image: none;
    border-top: solid 8px #d80c18;
  }
}
#HEADER .area {
  position: relative;
  width: 950px;
  height: 118px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  #HEADER .area {
    width: 100%;
    padding-top: 60px;
    height: auto;
  }
}
#HEADER h1 {
  position: absolute;
  top: 56px;
  left: 4px;
}
@media only screen and (max-width: 640px) {
  #HEADER h1 {
    top: 21px;
    left: 9px;
  }
}
@media only screen and (max-width: 640px) {
  #HEADER h1 img {
    width: 240px;
    height: auto;
  }
}
#HEADER aside {
  position: absolute;
  top: 0;
  left: 8px;
  line-height: 30px;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  #HEADER aside {
    display: none;
  }
}
#HEADER a.link_com {
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 30px;
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  #HEADER a.link_com {
    display: none;
  }
}

/*ハンバーガーメニュー*/
#header_nav{
  display: block;
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  transition: .7s;
  z-index: 1000;
  overflow-y: scroll;
}
#header_nav .home_btn{
  width: 100%;
  max-width: 400px;
  margin: 60px auto 0;
}
#header_nav .nav_menu{
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
}
#header_nav .nav_menu .nav_title{
  position: relative;
  list-style-type: none;
  font-size: 24px;
  margin: 20px 0;
  padding-left: 24px;
  transition: 0.2s;
  font-weight: bold;
  color: #d70d1a;
}
#header_nav .nav_menu .nav_title a:hover{
  color: #d70d1a;
}
#header_nav .nav_menu .nav_title::before{
  content: '▶';
  position: absolute;
  top: 16px;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-51%);
  -ms-transform: translateY(-50%);
  font-size: 16px; /*2倍サイズ*/
}
#header_nav .nav_menu .nav_menu2{
  margin: 20px 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: normal;
  gap: 5px;
}
#header_nav .nav_menu .nav_menu2 li{
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  transition: 0.2s;
  width: 32%;
}
#header_nav .nav_menu .nav_menu2 li span{
  font-size: 14px;
}
#header_nav .nav_menu .nav_menu2 li a{
  padding: 5px 15px;
}
#header_nav .nav_menu .nav_menu2 li::before{
  content: '▶';
  position: absolute;
  top: 49%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-51%);
  -ms-transform: translateY(-50%);
  font-size: 8px; /*2倍サイズ*/
}
#header_nav a{
  display: inline-block;
  text-decoration: none;
}
.nav_name{
  font-size: 24px;
  width: 90%;
  max-width: 750px;
  margin: 50px auto 0;
}
.nav_name a::before{
  content: '▶';
  position: absolute;
  top: 49%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-51%);
  -ms-transform: translateY(-50%);
  font-size: 15px; /*2倍サイズ*/
}
.nav_name a{
  position: relative;
  color: #d70d1a;
  padding: 5px 15px 5px 25px;
}
.nav_name a:hover{
  opacity: 0.7;
}

#header_hamburger {
  display: block;
  border: solid 2px #fff;
  position: fixed;
  top: 50px;
  right: 20px;
  width: 64px;
  height: 56px;
  cursor: pointer;
  transition: 1s;
  background-color: #d70d1a;
  z-index: 1000;
}
.inner_line {
  position: absolute;
  display: block;
  left: 13px;
  width: 38px;
  height: 4px;
  background-color: #ffffff;
  transition: 0.7s;
  border-radius: 50px;
}
#line1 {
  top: 14px;
}
#line2 {
  top: 26px;
}
#line3 {
  bottom: 14px;
}
.in{
  transform: translateX(-100%);
}
.line_1,.line_2,.line_3{
  background: #fff;
}
.line_1 {
  transform: rotate(-45deg);
  top: 26px!important;
}
.line_2 {
  opacity: 0;
}
.line_3 {
  transform: rotate(45deg);
  bottom: 26px!important;
}
.after{
  position: absolute;
  bottom: 100px;
  width: 300px;
  height: 200px;
  background-color: #d70d1a;

}
/*ハンバーガーメニュー*/

#LNAV {
  width: 950px;
  height: 27px;
  margin:-27px auto 0;
}
#LNAV .breadcrumb {
  text-align: right;
  min-width: 950px;
  width: 100%;
  display: inline-block;
  padding: 6px 0;
  font-size: 11px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 949px){
  #LNAV{
    width:100%;
    border-top: solid 1px #CCC;
  }
  #LNAV .breadcrumb {
    min-width: 950px;

  }

}
@media only screen and (max-width: 640px) {
  #LNAV {
    height: auto;
    margin: 0 auto;
    background: #fff;
  }
  #LNAV div.breadcrumb {
    min-width: 96%;
    width: 96%;
    margin: 0;
    text-align: left;
    padding: 4px 2%;
  }
}

@media only screen and (max-width: 640px) {
  #header_hamburger {
    top: 16px;
    right: 6px;
    width: 50px;
    height: 40px;
    cursor: pointer;
    transition: 1s;
    background-color: #d70d1a;
    z-index: 1000;
  }
  .inner_line {
    left: 11px;
    width: 28px;
    height: 3px;
  }
  #line1 {
    top: 10px;
  }
  #line2 {
    top: 18px;
  }
  #line3 {
    bottom: 10px;
  }
  .line_1 {
    transform: rotate(-45deg);
    top: 19px!important;
  }
  .line_2 {
    opacity: 0;
  }
  .line_3 {
    transform: rotate(45deg);
    bottom: 18px!important;
  }
}
@media only screen and (max-width: 640px) {
  #header_nav .home_btn{
    width: 70%;
    margin: 26px auto 0 18px;
  }
  #header_nav .home_btn a img{
    width: 100%;
  }
  #header_nav .nav_menu{
    line-height: 1.6;
  }
  #header_nav .nav_menu .nav_title{
    font-size: 18px;
    /* margin: 0; */
    margin: 20px 0;
  }
  #header_nav .nav_menu .nav_title::before{
    top: 12px;
  }
  #header_nav .nav_menu .nav_menu2{
    margin: 0;
  }
  #header_nav .nav_menu .nav_menu2 li{
    width: 90%;
    /* font-size: 16px; */
    font-size: 14px;
    line-height: 1.8;
    margin-right: 20px;
  }
  .nav_name{
  	font-size: 18px;
    margin: 20px auto 0;
    padding-bottom: 30px;
  }
}
header .btn_comtop_sp {
  background: #6d6d6d;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6d6d6d), color-stop(100%, #373737));
  background-image: -webkit-linear-gradient(top, #6d6d6d, #373737);
  background-image: -moz-linear-gradient(top, #6d6d6d, #373737);
  background-image: -o-linear-gradient(top, #6d6d6d, #373737);
  background-image: linear-gradient(top, #6d6d6d, #373737);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF6D6D6D', endColorstr='#FF373737');
  border: solid 1px #c6c6c6;
  display: table-cell;
  vertical-align: middle;
  width: 51px;
  height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 3px 0 3px;
  position: absolute;
  top: 8px;
  right: 9px;
  color: #fff;
  font-size: 8px;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: #cccccc 0px 0px 5px;
  -moz-box-shadow: #cccccc 0px 0px 5px;
  box-shadow: #cccccc 0px 0px 5px;
  overflow: hidden;
}

/* footer */
footer {
  background-color: #272727;
  position: relative;
}
@media only screen and (max-width: 640px) {
  footer {
  }
}
footer .area {
  width: 100%;
  min-width: 950px;
  color: #fff;
  font-size: 10px;
  line-height: 17px;
  position: relative;
  width: 950px;
  height: 73px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  footer .area {
    width: 100%;
    min-width: 100%;

    width: 100%;
  }
}
footer .area .xing {
  position: absolute;
  top: 22px;
  left: 8px;
}
@media only screen and (max-width: 640px) {
  footer .area .xing {
    top: 11px;
    left: 15px;
  }
}
footer .area small {
  position: absolute;
  margin: 0;
  right: 10px;
  top: 20px;
  text-align: right;
  display: block;
}
@media only screen and (max-width: 640px) {
  footer .area small {
    font-size: 8px;
    top: 41px;
    right: 15px;
    bottom: 10px;
  }
}
.footer {
  min-width: 930px;
  padding: 10px;
  font-size: 80%;
  line-height: 1.4;
  background: #fff;
  background-image: url("/img/bg_footer.gif");
  border-top: solid 3px #fff;
}
.footer .f_block {
  width: 940px;
  margin: 15px auto;
}
.f_clear {
  clear: left;

}
@media only screen and (max-width: 640px) {
  .footer {
    min-width: 100%;
    box-sizing: border-box;
  }
  .footer .f_block {
    width: 100%;
    margin-top: 0;
  }
}
.footer ul {
  overflow: hidden;
  margin: 0 0 20px;
  padding: 0;
}
.footer ul li {
  float: left;
  margin-right: 5px;
}
@media only screen and (max-width: 640px) {
  .footer ul li {
    margin-bottom: 2px;
    margin-right: 0;
    padding: 10px 10px 10px 20px;
    float: none;
    background: url(/img/icon_arrow.gif) no-repeat 10px center white;
  }
  .footer ul li span {
    display: none;
  }
}
.footer ul li a {
  color: #2f2f2f;
  font-size: 1.3em;
}
.footer ul li a:hover {
  color: #666666;
}
.footer .caution img {
  float:left;
}
.footer .caution {
  margin: 15px 0;
  vertical-align:top
}
.footer small {
  display: block;
  margin: 5px auto;
  text-align: center;
}


#SNS {
  width: 100%;
  margin-top: -70px;
}
#SNS ul{
  display: block;
  padding: 10px 0;
  line-height: 1;
  font-size: 0;
  text-align: center;
}
#SNS ul li{
  display: inline-block;
}
#SNS ul li+li{
  margin-left: 10px;
}
#SNS ul li a{
  display: block;
}
#SNS ul li a img{
  display: block;
  width: 35px;
  height: 35px;
}

.c_pagetop {
  overflow: hidden;
}
.c_pagetop a {
  background-image: url("/img/btn_c_pagetop.gif");
  background-position: 10px center;
  background-repeat: no-repeat;
  margin: 15px 0 10px 0;
  padding: 5px 10px 5px 30px;
  height: 16px;
  float: right;
  display: block;
  color: #9a9a9a;
  background-color: #f9f9f9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.c_pagetop a:hover {
  color: #000;
  background-position: 10px 3px;
}
.pagetop {
  width: 950px;
  overflow: hidden;
  margin: 20px auto;
}
.pagetop a {
  background-image: url("/img/btn_pagetop.png");
  background-position: center 5px;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  float: right;
  display: block;
  text-indent: -5000px;
}
.pagetop a:hover {
  background-position: center top;
}
@media only screen and (max-width: 640px) {
  .pagetop {
    width: 100%;
  }
}

/*css変更140423*/
.footer #container {
  width: 100%;
  overflow: hidden;
}
.footer #container-inner {
  margin: 0 -10px 0 0;
  /zoom: 1;/* for IE6,7 */
}
.footer #container-inner div {
  width: 148px;
  margin: 0 10px 0 0;
  float: left;
}
.footer #container-inner div.con01{
  width: 170px;
}
.footer #container-inner div.con02{}
.footer #container-inner div.con03{
  width: 120px;
}
.footer #container-inner div.con04{}
.footer #container-inner div.con05{}
.footer #container-inner div.con06{}
.footer #container-inner div dl{
  margin: 0;
  padding: 0;
}
.footer #container-inner div dt{
  font-weight:bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #CCC;
}
.footer #container-inner div.con01 dt{
  border-bottom: 2px solid #a4bcff;
}
.footer #container-inner div.con02 dt{
  border-bottom: 2px solid #a6e783;
  letter-spacing:-1px;
}
.footer #container-inner div.con03 dt{
  border-bottom: 2px solid #17375e;
}
.footer #container-inner div.con04 dt{
  border-bottom: 2px solid #ff7e94;
}
.footer #container-inner div.con05 dt{
  border-bottom: 2px solid #8bccf5;
}
.footer #container-inner div.con06 dt{
  border-bottom: 2px solid #ffd843;
}
.footer #container-inner div.con07 dt{
  border-bottom: 2px solid #dd66ff;
}
.footer #container-inner div.con08 dt{
  border-bottom: 2px solid #aaa;
}
.footer #container-inner div.con09 dt{
  border-bottom: 2px solid #aaa;
}

/* 20141114 */
.footer #container-inner div.con04 dt.wii_f {
  border-bottom: 2px solid #8bccf5;
  margin-top:2em;
}
.footer #container-inner div dd{
  margin: 0;
  padding: 0;
}
.footer #container-inner div.con01 dd{
  letter-spacing:-1px;
}
.footer #container-inner div dd small{
  text-align: left;
}
.footer #container-inner div dd ul li{
  line-height: 20px;
  float: none;
  list-style: disc inside none;
}
.footer #container-inner div dd ul li a{
  font-size: 10px;
}
@media only screen and (max-width: 640px) {
  .footer #container-inner div,
  .footer #container-inner div.con01,
  .footer #container-inner div.con03{
    width: 100%;
  }
  .footer #container-inner div dt,
  .footer #container-inner div dd ul li a{
    font-size: 13px;
  }
  .footer #container-inner div dd{
    background-color: #ffffff;
    padding: 10px;
    margin-bottom: 15px;
  }
  .footer #container-inner div dd ul{
    margin: 0;
    padding: 0;
  }
  .footer #container-inner div dd ul li{
    background: none;
    padding: 0 15px 0 0;
    }}

    /* 20141030_DIVE */
    div[class="con03"] {
      display:none;
    }

/* -----------------------------------------------------
/*  SNS調整 2016/01/13
/* -------------------------------------------------- */
/* 20150917_沖縄 */
.logo {
  width: 950px;
  margin: 30px auto 0 auto;
  text-align: center;

}
@media only screen and (max-width: 640px) {
  .logo {
    width: auto;
  }
}
.logo span {
  padding-top: 10px;
  display: inline-block;
  font-size: 0.9em;
}
.logo a {
  margin: 10px 10px 10px 0px;
  border: 0;
}
.logo a img {
  vertical-align: middle;
}


/*汎用機能比較バナー*/
.btnfunction{
  margin: 20px auto;
}
.btnfunction a{
  display: block;
}
.btnfunction a:hover{
  opacity: 0.7;
}
.btnfunction a img{
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .btnfunction a img{
    width: 95%;
  }
}
