@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : common.css
 author     : Ability Consultant
 style info : 基本・共通設定
=================================================================== */
/* Font-family - English */
#header .box_header, #hnav .box_hnav {
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  #header .box_header, #hnav .box_hnav {
    width: 95%;
  }
}

#btn_close:after, #header .box_header .box_top:after, #header .box_header .gnav:after, #hnav .box_hnav:after {
  content: "";
  display: table;
  clear: both;
}

/* -----------------------------------------------------------
	基本設定、リンクカラーなど
----------------------------------------------------------- */
html {
  font-size: small;
  line-height: 1.5;
}

body {
  color: #222222;
  background: #fff;
  -webkit-text-size-adjust: none;
  font-size: 108%;
}
.ie body {
  font-size: 105%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 100%;
  }
}
body a {
  color: #3c3c3c;
}
body a:link, body a:visited, body a:active {
  text-decoration: underline;
}
.mouse body a:hover, .touch body a.touchstart {
  text-decoration: none;
  color: #555555;
}
body img {
  max-width: 100%;
  -webkit-touch-callout: none;
}

body, pre, input, textarea, select {
  font-family: "Times New Roman", serif;
}

input, select, textarea {
  font-size: 100%;
}

html.ie8 .view_tab,
html.ie8 .view_tab_sp,
html.ie8 .view_sp {
  display: none !important;
}
html.ie8 #page {
  min-width: 1200px !important;
  margin: auto;
  font-size: 100% !important;
}

@media only screen and (min-width: 1025px) {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
@media print {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
.ie8 body .view_tab-sp, .ie8 body .view_tab {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media print {
  body .view_sp {
    display: none !important;
  }
}
.ie8 body .view_sp {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab, body .view_tab {
    display: none !important;
  }
}

.mouse .over {
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}
.mouse .over:hover, .touch .over.touchstart {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.touch .over {
  -webkit-tap-highlight-color: transparent;
}
.touch .over.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#btn_close span,
#btn_menu {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5) url(../images/common/ic_menu.png) no-repeat center center;
  background-size: 55%;
  cursor: pointer;
  z-index: 400;
  text-indent: -999999px;
  width: 50px;
  height: 50px;
}
@media only screen and (min-width: 420px) {
  #btn_close span,
  #btn_menu {
    width: 70px;
    height: 70px;
  }
}
@media print {
  #btn_close span,
  #btn_menu {
    width: 70px;
    height: 70px;
  }
}
.ie8 #btn_close span, .ie8
#btn_menu {
  width: 70px;
  height: 70px;
}
@media only screen and (min-width: 620px) {
  #btn_close span,
  #btn_menu {
    width: 100px;
    height: 100px;
  }
}
@media print {
  #btn_close span,
  #btn_menu {
    width: 100px;
    height: 100px;
  }
}
.ie8 #btn_close span, .ie8
#btn_menu {
  width: 100px;
  height: 100px;
}
#btn_close span.active,
#btn_menu.active {
  display: none;
}

#btn_close {
  margin: 0 0 20px;
}
#btn_close span {
  position: static;
  background: rgba(255, 255, 255, 0.5) url(../images/common/ic_menu_open.png) no-repeat center center;
  background-size: 55%;
  float: right;
}

.btn_top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 80px;
  height: 80px;
}
@media only screen and (max-width: 1024px) {
  .btn_top {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
  }
}
.btn_top a {
  display: block;
  height: 100%;
  background: transparent url(../images/common/btn_top.jpg) no-repeat center center;
  background-size: 100%;
  text-indent: -999999px;
}

/* -----------------------------------------------------------
	.con_menu_sp
----------------------------------------------------------- */
.con_menu_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.con_menu_sp .box_menu_sp {
  overflow-y: scroll;
  height: 100%;
  padding: 0 2.5% 50px;
}
.con_menu_sp .box_menu_sp ul li {
  border-top: 1px solid #666666;
  text-align: center;
}
.con_menu_sp .box_menu_sp ul li > a {
  display: block;
  text-decoration: none;
  color: #222;
  font-size: 90%;
  font-family: "Times New Roman", serif;
  line-height: 100%;
  padding: 1em 0;
}
.con_menu_sp .box_menu_sp ul li.rsv, .con_menu_sp .box_menu_sp ul li.tel {
  border: 0;
  padding: .5em 0;
}
.con_menu_sp .box_menu_sp ul li.rsv .btn_rsv a, .con_menu_sp .box_menu_sp ul li.tel .btn_rsv a {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 1em 1.5em;
}
.con_menu_sp .box_menu_sp ul li.rsv .btn_rsv a span, .con_menu_sp .box_menu_sp ul li.tel .btn_rsv a span {
  font-size: 129%;
}
.con_menu_sp .box_menu_sp ul li.rsv span, .con_menu_sp .box_menu_sp ul li.tel span {
  font-family: "Times New Roman", serif;
}
.con_menu_sp .box_menu_sp ul li.rsv span.tel_txt, .con_menu_sp .box_menu_sp ul li.tel span.tel_txt {
  font-size: 115%;
}
.con_menu_sp .box_menu_sp ul li.rsv span.tel_num, .con_menu_sp .box_menu_sp ul li.tel span.tel_num {
  font-size: 150%;
}
.con_menu_sp.active {
  width: 100%;
}

/* -----------------------------------------------------------
	#page
----------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  #page {
    font-size: 100% !important;
  }
}
@media print {
  #page {
    font-size: 100% !important;
  }
}
.ie8 #page {
  font-size: 100% !important;
}

/* -----------------------------------------------------------
	#header
----------------------------------------------------------- */
#header {
  position: absolute;
  width: 100%;
  z-index: 200;
}
#header .box_header .box_top h1 {
  float: left;
  width: 50%;
  font-family: "Times New Roman", serif;
  font-size: 100%;
  margin: 20px 0;
  line-height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top h1 {
    margin: 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top h1 {
    margin: 10px 0;
  }
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top h1 {
    width: 35%;
  }
}
#header .box_header .box_top .topnav {
  float: right;
  width: 50%;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .topnav {
    width: 65%;
  }
}
#header .box_header .box_top .topnav .nav {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav {
    margin-right: 4px;
  }
}
#header .box_header .box_top .topnav .nav li {
  display: inline-block;
  margin: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav li {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav li {
    margin: 0 5px;
  }
}
#header .box_header .box_top .topnav .nav li a {
  font-family: "Times New Roman", serif;
  color: #222222;
  font-size: 129%;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav li a {
    font-size: 115%;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav li a {
    font-size: 108%;
  }
}
#header .box_header .box_top .topnav .nav li a i {
  font-size: 123%;
}
#header .box_header .box_top .topnav .nav li span {
  font-family: "Times New Roman", serif;
}
#header .box_header .box_top .topnav .nav li span.tel_txt {
  font-size: 129%;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav li span.tel_txt {
    font-size: 115%;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav li span.tel_txt {
    font-size: 108%;
  }
}
#header .box_header .box_top .topnav .nav li span.tel_num {
  font-size: 172%;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav li span.tel_num {
    font-size: 143%;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav li span.tel_num {
    font-size: 129%;
  }
}
#header .box_header .box_top .topnav .nav li.contact {
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .topnav .nav li.contact {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .topnav .nav li.contact {
    margin-right: 4px;
  }
}
#header .box_header .box_top .topnav .nav li.fb {
  margin: 0;
}
#header .box_header .box_top .lang {
  display: inline-block;
  background: rgba(0, 51, 102, 0.33);
  position: relative;
}
#header .box_header .box_top .lang .sub {
  line-height: 100%;
  text-align: center;
  padding: 15px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .lang .sub {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .lang .sub {
    padding: 5px;
  }
}
#header .box_header .box_top .lang .sub span {
  color: #fff;
  font-size: 115%;
  font-family: "Times New Roman", serif;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .lang .sub span {
    font-size: 108%;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .lang .sub span {
    font-size: 100%;
  }
}
#header .box_header .box_top .lang .sub span:after {
  content: '\f0d7';
  font-family: Fontawesome;
  font-size: 86%;
  margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
  #header .box_header .box_top .lang .sub span:after {
    font-size: 79%;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .lang .sub span:after {
    font-size: 72%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .lang .sub span:after {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .lang .sub span:after {
    margin-left: 5px;
  }
}
#header .box_header .box_top .lang .sub:hover {
  opacity: .7;
}
#header .box_header .box_top .lang ul {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 0;
  background: rgba(0, 51, 102, 0.33);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#header .box_header .box_top .lang ul li a {
  display: block;
  height: 100%;
  text-align: left;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .box_top .lang ul li a {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .box_top .lang ul li a {
    padding: 5px;
  }
}
#header .box_header .box_top .lang ul li a:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
}
#header .box_header .box_top .lang:hover ul {
  height: 150px;
}
#header .box_header .gnav {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .gnav {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .gnav {
    padding: 10px;
  }
}
#header .box_header .gnav .logo {
  float: left;
  width: 21.69643%;
}
#header .box_header .gnav ul {
  float: right;
  width: 75.89286%;
  text-align: right;
}
#header .box_header .gnav ul li {
  display: inline-block;
  margin: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .box_header .gnav ul li {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  #header .box_header .gnav ul li {
    margin: 0 5px;
  }
}
#header .box_header .gnav ul li > a {
  display: block;
  text-decoration: none;
  color: #222;
}
#header .box_header .gnav ul li > a:hover {
  color: #660000;
}
#header .box_header .gnav ul li:last-child {
  margin-right: 0;
}

#hnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
}
#hnav .box_hnav {
  padding: 20px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #hnav .box_hnav {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #hnav .box_hnav {
    padding: 10px;
  }
}
#hnav .box_hnav .logo {
  float: left;
  width: 21.69643%;
}
#hnav .box_hnav ul {
  float: right;
  width: 75.89286%;
  text-align: right;
}
#hnav .box_hnav ul li {
  display: inline-block;
  margin: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #hnav .box_hnav ul li {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  #hnav .box_hnav ul li {
    margin: 0 5px;
  }
}
#hnav .box_hnav ul li > a {
  display: block;
  text-decoration: none;
  color: #222;
}
#hnav .box_hnav ul li > a:hover {
  color: #660000;
}
#hnav .box_hnav ul li:last-child {
  margin-right: 0;
}

/* -----------------------------------------------------------
	#contents
----------------------------------------------------------- */
/* -----------------------------------------------------------
	#footer
----------------------------------------------------------- */
#footer .box_footer {
  background: #f4f4f1;
  text-align: center;
  padding: 50px 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .box_footer {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer {
    padding: 25px 0;
  }
}
#footer .box_footer ul {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .box_footer ul {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer ul {
    margin-bottom: 40px;
  }
}
#footer .box_footer ul li {
  display: inline-block;
}
#footer .box_footer ul li:after {
  display: inline-block;
  content: '|';
}
#footer .box_footer ul li a {
  font-family: "Times New Roman", serif;
  display: inline-block;
  font-size: 136%;
  padding: 0 30px;
  line-height: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer .box_footer ul li a {
    font-size: 122%;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer ul li a {
    font-size: 108%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .box_footer ul li a {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer ul li a {
    padding: 0 15px;
  }
}
#footer .box_footer ul li:first-child:before {
  display: inline-block;
  content: '|';
}
#footer .box_footer p {
  font-family: "Times New Roman", serif;
}
#footer .box_footer p.sub {
  font-size: 179%;
  line-height: 100%;
  margin: 0 0 25px;
}
@media only screen and (max-width: 1024px) {
  #footer .box_footer p.sub {
    font-size: 143%;
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer p.sub {
    font-size: 129%;
    margin: 0 0 15px;
  }
}
#footer .box_footer p.txt {
  font-size: 115%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .box_footer p.txt {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer p.txt {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer p.txt .tel {
    margin-top: 20px;
  }
}
#footer .box_footer p.btn_rsv {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .box_footer p.btn_rsv {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer p.btn_rsv {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .box_footer p.btn_rsv a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 1em 1.5em;
  }
  #footer .box_footer p.btn_rsv a span {
    font-size: 129%;
  }
}
#footer .box_footer p.fb a i {
  font-size: 215%;
}
#footer #copyright {
  text-align: center;
  color: #fff;
  background: #333333;
  font-size: 100%;
  font-family: "Times New Roman", serif;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  #footer #copyright {
    font-size: 65%;
    padding: 10px 5%;
    text-align: left;
  }
}

/* -----------------------------------------------------------
	下層共通スタイル
----------------------------------------------------------- */
/* -----------------------------------------------------------
	テーブル
----------------------------------------------------------- */
.dm {
  color: #FF0400 !important;
}
