@charset "UTF-8";
/* ------------------------------
 reset - width: all
------------------------------ */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  letter-spacing: 2px;
}

main, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input::-webkit-input-placeholder, input:-moz-placeholder, textarea::-webkit-input-placeholder, textarea:-moz-placeholder {
  color: #888;
}

input[type="button"], input[type="submit"], input[type="search"], input[type="reset"] {
  -webkit-appearance: none;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------
 Drawer
------------------------------ */
.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 160px;
  /* 変更　ドロワー幅 */
  height: 100%;
  color: #ffffff;
  /* 変更　文字色 */
  background-color: #ffffff;
  /* 変更　背景色 */
  background: rgba(0, 0, 0, 0.6);
  /* 追記　継承させない背景透過処理 */
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: .75rem;
  padding-left: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer-menu li {
  height: 30px;
  line-height: 30px;
  border-bottom: 2px solid #000000;
  text-align: left;
}

.drawer-menu li:hover {
  border-bottom: 2px solid #00848E;
  opacity: 1.0 !important;
  filter: alpha(opacity=100) !important;
}

.drawer-menu li a {
  width: 160px;
  height: 30px;
  padding-left: 15px;
  color: #ffffff;
  line-height: 30px;
  font-size: 11px;
  text-align: left;
  text-decoration: none;
  display: block;
}

.drawer-menu li a:hover {
  opacity: 1.0 !important;
  filter: alpha(opacity=100) !important;
}

.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}

.drawer--right .drawer-nav {
  right: -16.25rem;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 10.25rem;
  /* 変更　×ボタンの位置 */
}

.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  right: 0;
  display: block;
  width: 44px;
  height: 40px;
  margin: 5px 5px 0 0;
  padding-top: 8px;
  /* リンク範囲 */
  padding-bottom: 20px;
  /* リンク範囲 */
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: #fff;
  border-radius: 4px;
}

.drawer-hamburger:hover {
  cursor: pointer;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00848E;
  /* ドロワーボタン色変更 */
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  /* 1本目-2本目間隔*/
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
  /* 2本目-3本目間隔 */
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }
  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }
  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }
  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}

.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 .75rem;
  /*text-align: center;*/
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu li {
    float: left;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}

.drawer-dropdown-menu {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  -o-transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}

/* ------------------------------
 common - width: all
------------------------------ */
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.op {
  display: block !important;
}

.opm {
  display: block !important;
}

.oms {
  display: none !important;
}

.os {
  display: none !important;
}

header .hbox {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

header .hbox .left {
  width: 303px;
  float: left;
}

header .hbox .left a {
  width: 100%;
  padding: 30px 0 25px;
  display: block;
}

header .hbox .left a img {
  width: 100%;
  display: block;
}

header .hbox .right {
  width: 750px;
  padding-top: 38px;
  float: right;
  position: relative;
}

header .hbox .right .contact01 {
  width: 252px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

header .hbox .right .contact01 img {
  width: 100%;
  display: block;
}

header .hbox .right .t01 {
  margin-bottom: 19px;
  font-size: 12px;
  letter-spacing: 1px;
}

header .hbox .right .gnav ul {
  text-align: center;
  font-size: 0;
}

header .hbox .right .gnav ul li {
  height: 60px;
  margin: 0 8px;
  padding: 15px 0;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

header .hbox .right .gnav ul li.has:hover .submenu {
  display: block;
}

header .hbox .right .gnav ul li a,
header .hbox .right .gnav ul li p {
  height: 30px;
  line-height: 30px;
  padding: 0 6px 0 8px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-bottom: 1px solid #fff;
}

header .hbox .right .gnav ul li a:hover,
header .hbox .right .gnav ul li p:hover {
  opacity: 1;
  color: #00848E;
  border-bottom: 1px solid #00848E;
}

header .hbox .right .gnav ul li .submenu {
  width: 240px;
  overflow: hidden;
  padding: 15px 0;
  position: absolute;
  top: 60px;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 100;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: none;
}

header .hbox .right .gnav ul li .submenu a {
  padding-left: 30px;
  font-size: 13px;
  text-align: left;
  display: block;
  letter-spacing: 1px;
  border: none;
}

header .hbox .right .gnav ul li .submenu a:first-child {
  padding-left: 15px;
}

header .hbox .right .gnav ul li .submenu a:hover {
  background-color: #fff;
}

.imgbg {
  margin-bottom: 50px;
  background-color: #000;
  position: relative;
}

.imgbg .bar {
  height: 60px;
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.imgbg .bar .barbox {
  width: 100%;
  max-width: 1100px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  vertical-align: top;
}

.imgbg .bar .barbox .breadcrumb {
  height: 14px;
  padding-top: 23px;
  font-size: 0;
}

.imgbg .bar .barbox .breadcrumb a {
  height: 14px;
  padding: 0 15px;
  text-decoration: none;
  line-height: 14px;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
}

.imgbg .bar .barbox .breadcrumb a:hover {
  opacity: 1;
  color: #00848E;
}

.imgbg .bar .barbox .breadcrumb img {
  padding-top: 1px;
  vertical-align: top;
}

.imgbg .bar .barbox .logo03 {
  display: block;
  position: absolute;
  top: 24px;
  right: 30px;
}

.imgbg .obj {
  width: 100%;
  max-width: 1500px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.imgbg .obj .ofi {
  width: 100%;
  max-width: 1500px;
  height: 400px;
  margin: 0 auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container main .title02 {
  margin-bottom: 35px;
  padding: 0 20px;
  text-align: center;
  font-size: 23px;
  font-weight: bold;
}

.container main .title02 span {
  padding: 0 5px;
  font-size: 30px;
  font-weight: bold;
  color: #00848E;
}

.contactbox {
  width: 90%;
  max-width: 900px;
  margin: 70px auto;
  padding: 30px 10px;
  border: 2px solid #00848E;
}

.contactbox .txt01 {
  margin-bottom: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #00848E;
}

.contactbox .txt02 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  vertical-align: bottom;
}

.contactbox .txt02 span {
  font-weight: bold;
  color: #00848E;
}

.contactbox .contactbtn {
  width: 400px;
  height: 60px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #00848E;
  border: 2px solid #00848E;
  display: block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contactbox .contactbtn:hover {
  color: #00848E;
  background-color: #fff;
}

footer {
  padding: 30px 0 100px;
  background-color: #222;
}

footer .fbox {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

footer .fbox .fb {
  width: 500px;
  float: left;
}

footer .fbox .fb .txt04 {
  height: 25px;
  margin-bottom: 15px;
  line-height: 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 4px;
}

footer .fbox .fb .fb-page {
  width: 100%;
  height: 450px;
}

footer .fbox .fb .fb-page span {
  height: 450px !important;
}

footer .fbox .fb .fb-page span iframe {
  height: 450px !important;
}

footer .fbox .right {
  width: 560px;
  padding-top: 40px;
  float: right;
}

footer .fbox .right .bnr01 {
  width: 100%;
  margin-bottom: 120px;
  display: block;
}

footer .fbox .right .bnr01 img {
  width: 100%;
  display: block;
}

footer .fbox .right ul {
  margin-bottom: 20px;
  text-align: center;
  font-size: 0;
}

footer .fbox .right ul li {
  margin-bottom: 15px;
  height: 14px;
  line-height: 14px;
  display: inline-block;
  border-right: 1px solid #666;
}

footer .fbox .right ul li:last-child {
  border-right: none;
}

footer .fbox .right ul li a {
  height: 14px;
  padding: 0 15px;
  line-height: 14px;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  display: inline-block;
}

footer .fbox .right .logo02 {
  width: 269px;
  margin: 0 auto 20px;
  display: block;
}

footer .fbox .right .logo02 img {
  width: 100%;
  display: block;
}

footer .fbox .right .txt05 {
  margin-bottom: 10px;
  line-height: 200%;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

footer .fbox .right .txt05 a {
  color: #fff;
}

footer .fbox .right .txt06 {
  line-height: 200%;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

footer .fadelink {
  width: 58px;
  height: 58px;
  display: block;
  position: fixed;
  right: 20px;
  bottom: 100px;
}

footer .fadelink img {
  width: 100%;
  display: block;
}

/* ------------------------------
 common - width < $max-width-1
------------------------------ */
@media screen and (max-width: 1140px) {
  .op {
    display: none !important;
  }
  .opm {
    display: block !important;
  }
  .oms {
    display: block !important;
  }
  .os {
    display: none !important;
  }
  header .hbox {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  header .hbox .left {
    width: 303px;
    padding-left: 20px;
    float: left;
  }
  header .hbox .left a {
    width: 100%;
    padding: 30px 0 25px;
    display: block;
  }
  header .hbox .left a img {
    width: 100%;
    display: block;
  }
  header .hbox .right {
    width: calc(100% - 320px);
    padding-top: 38px;
    float: right;
    position: relative;
  }
  header .hbox .right .contact01 {
    width: 200px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  header .hbox .right .contact01 img {
    width: 100%;
    display: block;
  }
  header .hbox .right .t01 {
    margin-bottom: 19px;
    font-size: 12px;
    letter-spacing: 1px;
    display: none;
  }
  header .hbox .right .gnav {
    max-width: 440px;
  }
  header .hbox .right .gnav ul {
    padding-top: 16px;
    text-align: left;
    font-size: 0;
  }
  header .hbox .right .gnav ul li {
    height: 30px;
    margin: 0 8px;
    padding: 0;
    display: inline-block;
    position: relative;
    vertical-align: top;
  }
  header .hbox .right .gnav ul li.has:hover .submenu {
    display: block;
  }
  header .hbox .right .gnav ul li a,
  header .hbox .right .gnav ul li p {
    height: 30px;
    line-height: 30px;
    padding: 0 6px 0 8px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-bottom: 1px solid #fff;
  }
  header .hbox .right .gnav ul li a:hover,
  header .hbox .right .gnav ul li p:hover {
    opacity: 1;
    color: #00848E;
    border-bottom: 1px solid #00848E;
  }
  header .hbox .right .gnav ul li .submenu {
    width: 220px;
    overflow: hidden;
    padding: 15px 0px;
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: none;
  }
  header .hbox .right .gnav ul li .submenu a {
    padding-left: 25px;
    font-size: 12px;
    text-align: left;
    display: block;
    letter-spacing: 1px;
    border: none;
  }
  header .hbox .right .gnav ul li .submenu a:first-child {
    padding-left: 10px;
  }
  .imgbg {
    background-color: #000;
    position: relative;
  }
  .imgbg .bar {
    height: 60px;
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
  }
  .imgbg .bar .barbox {
    width: 100%;
    max-width: 1100px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    vertical-align: top;
  }
  .imgbg .bar .barbox .breadcrumb {
    height: 14px;
    padding-top: 23px;
    font-size: 0;
  }
  .imgbg .bar .barbox .breadcrumb a {
    height: 14px;
    padding: 0 15px;
    text-decoration: none;
    line-height: 14px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
  }
  .imgbg .bar .barbox .breadcrumb a:hover {
    opacity: 1;
    color: #00848E;
  }
  .imgbg .bar .barbox .breadcrumb img {
    padding-top: 1px;
    vertical-align: top;
  }
  .imgbg .bar .barbox .logo03 {
    display: block;
    position: absolute;
    top: 24px;
    right: 30px;
  }
  .imgbg .obj {
    width: 100%;
    max-width: 1200px;
    height: 320px;
    margin: 0 auto;
    position: relative;
  }
  .imgbg .obj .ofi {
    width: 100%;
    max-width: 1200px;
    height: 320px;
    margin: 0 auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  .container {
    width: calc(100% - 40px);
  }
  .contactbox {
    width: 90%;
    max-width: 900px;
    margin: 70px auto;
    padding: 30px 10px;
    border: 2px solid #00848E;
  }
  .contactbox .txt01 {
    margin-bottom: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #00848E;
  }
  .contactbox .txt02 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 27px;
    font-weight: bold;
  }
  .contactbox .txt02 span {
    font-weight: bold;
    color: #00848E;
  }
  .contactbox .contactbtn {
    width: 420px;
    height: 60px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #00848E;
    border: 2px solid #00848E;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .contactbox .contactbtn:hover {
    color: #00848E;
    background-color: #fff;
  }
  footer {
    padding: 50px 0 100px;
    background-color: #222;
  }
  footer .fbox {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  footer .fbox .fb {
    width: 500px;
    margin: 0 auto 50px;
    float: none;
  }
  footer .fbox .fb .txt04 {
    height: 25px;
    margin-bottom: 15px;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 4px;
  }
  footer .fbox .fb .fb-page {
    width: 100%;
    height: 450px;
  }
  footer .fbox .fb .fb-page span {
    height: 450px !important;
  }
  footer .fbox .fb .fb-page span iframe {
    height: 450px !important;
  }
  footer .fbox .right {
    width: 560px;
    padding-top: 0;
    margin: 0 auto;
    float: none;
  }
  footer .fbox .right .bnr01 {
    width: 100%;
    margin-bottom: 50px;
    display: block;
  }
  footer .fbox .right .bnr01 img {
    width: 100%;
    display: block;
  }
  footer .fbox .right ul {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0;
  }
  footer .fbox .right ul li {
    margin-bottom: 15px;
    height: 14px;
    line-height: 14px;
    display: inline-block;
    border-right: 1px solid #666;
  }
  footer .fbox .right ul li:last-child {
    border-right: none;
  }
  footer .fbox .right ul li a {
    height: 14px;
    padding: 0 15px;
    line-height: 14px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    display: inline-block;
  }
  footer .fbox .right .logo02 {
    width: 269px;
    margin: 0 auto 20px;
    display: block;
  }
  footer .fbox .right .logo02 img {
    width: 100%;
    display: block;
  }
  footer .fbox .right .txt05 {
    margin-bottom: 10px;
    line-height: 200%;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }
  footer .fbox .right .txt06 {
    line-height: 200%;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }
  footer .fadelink {
    width: 58px;
    height: 58px;
    display: block;
    position: fixed;
    right: 20px;
    bottom: 100px;
  }
  footer .fadelink img {
    width: 100%;
    display: block;
  }
}

/* ------------------------------
 common - width: < $max-width-2
------------------------------ */
@media screen and (max-width: 780px) {
  .op {
    display: none !important;
  }
  .opm {
    display: none !important;
  }
  .oms {
    display: block !important;
  }
  .os {
    display: block !important;
  }
  header .hbox {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  header .hbox .left {
    width: 200px;
    padding-left: 20px;
    float: left;
  }
  header .hbox .left a {
    width: 100%;
    padding: 15px 0 10px;
    display: block;
  }
  header .hbox .left a img {
    width: 100%;
    display: block;
  }
  header .hbox .right {
    display: none;
  }
  .imgbg {
    margin-bottom: 30px;
    background-color: #000;
    position: relative;
  }
  .imgbg .bar {
    display: none;
  }
  .imgbg .obj {
    width: 100%;
    max-width: 900px;
    height: 240px;
    margin: 0 auto;
    position: relative;
  }
  .imgbg .obj .ofi {
    width: 100%;
    max-width: 900px;
    height: 240px;
    margin: 0 auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  .container {
    width: calc(100% - 20px);
  }
  .container main .title02 {
    margin-bottom: 20px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
  .container main .title02 span {
    padding: 0 2px;
    font-size: 18px;
    font-weight: bold;
    color: #00848E;
  }
  .contactbox {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 10px;
    border: 2px solid #00848E;
  }
  .contactbox .txt01 {
    margin-bottom: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #00848E;
  }
  .contactbox .txt02 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
  .contactbox .txt02 span {
    font-weight: bold;
    color: #00848E;
  }
  .contactbox .contactbtn {
    width: 310px;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 34px;
    letter-spacing: 0px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #00848E;
    border: 2px solid #00848E;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .contactbox .contactbtn:hover {
    color: #00848E;
    background-color: #fff;
  }
  footer {
    padding: 30px 0 50px;
    background-color: #222;
  }
  footer .fbox {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  footer .fbox .fb {
    width: 94%;
    max-width: 500px;
    margin: 0 auto 30px;
    float: none;
  }
  footer .fbox .fb .txt04 {
    height: 25px;
    margin-bottom: 15px;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 4px;
  }
  footer .fbox .fb .fb-page {
    width: 100%;
    height: 250px;
  }
  footer .fbox .fb .fb-page span {
    height: 250px !important;
  }
  footer .fbox .fb .fb-page span iframe {
    height: 250px !important;
  }
  footer .fbox .right {
    width: 94%;
    max-width: 560px;
    padding-top: 0;
    margin: 0 auto;
    float: none;
  }
  footer .fbox .right .bnr01 {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
  footer .fbox .right .bnr01 img {
    width: 100%;
    display: block;
  }
  footer .fbox .right ul {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0;
  }
  footer .fbox .right ul li {
    margin-bottom: 15px;
    height: 14px;
    line-height: 14px;
    display: inline-block;
    border-right: none;
  }
  footer .fbox .right ul li:last-child {
    border-right: none;
  }
  footer .fbox .right ul li a {
    height: 14px;
    padding: 0 15px;
    line-height: 14px;
    text-decoration: none;
    font-size: 10px;
    color: #fff;
    display: inline-block;
  }
  footer .fbox .right .logo02 {
    width: 200px;
    margin: 0 auto 20px;
    display: block;
  }
  footer .fbox .right .logo02 img {
    width: 100%;
    display: block;
  }
  footer .fbox .right .txt05 {
    margin-bottom: 10px;
    line-height: 200%;
    text-align: center;
    font-size: 10px;
    color: #fff;
  }
  footer .fbox .right .txt06 {
    line-height: 200%;
    text-align: center;
    font-size: 10px;
    color: #fff;
  }
  footer .fadelink {
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    right: 20px;
    bottom: 40px;
  }
  footer .fadelink img {
    width: 100%;
    display: block;
  }
}

/* ------------------------------
 common - width: < $max-width-3
------------------------------ */
@media screen and (max-width: 480px) {
  .imgbg {
    background-color: #000;
    position: relative;
  }
  .imgbg .bar {
    display: none;
  }
  .imgbg .obj {
    width: 100%;
    max-width: 600px;
    height: 160px;
    margin: 0 auto;
    position: relative;
  }
  .imgbg .obj .ofi {
    width: 100%;
    max-width: 600px;
    height: 160px;
    margin: 0 auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
}
