@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;
}

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 #FFDC00;
  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: #FFDC00;
  /* ドロワーボタン色変更 */
}

.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
------------------------------ */
html,
body {
  min-width: 1100px;
}

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

.op {
  display: block !important;
}

.os {
  display: none !important;
}

* {
  letter-spacing: 2px;
}

header .top {
  width: 1100px;
  height: 150px;
  margin: 0 auto;
  padding-left: 10px;
}

header .top h1 {
  width: 304px;
  margin-top: 26px;
  float: left;
}

header .top h1 .logo {
  width: 100%;
  display: block;
}

header .top h1 .logo img {
  width: 100%;
  display: block;
}

header .top .right {
  width: 445px;
  margin-top: 52px;
  float: right;
}

header .top .right .tel_pc,
header .top .right .tel_sp {
  width: 215px;
  margin-bottom: 15px;
  display: block;
  float: left;
}

header .top .right .tel_pc img,
header .top .right .tel_sp img {
  width: 100%;
  display: block;
}

header .top .right .tel_sp {
  display: none;
}

header .gnav {
  height: 82px;
  background-color: #000;
  border-bottom: 25px solid #FFDC00;
}

header .gnav ul {
  width: 1100px;
  margin: 0 auto;
}

header .gnav ul li {
  width: calc(1100px / 6);
  float: left;
}

header .gnav ul li a {
  width: 100%;
  height: 57px;
  line-height: 55px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 57px;
  display: block;
}

header .gnav ul li a:hover {
  opacity: 1;
  color: #000;
  background-color: #FFDC00;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

main {
  padding: 60px 0;
}

main .title {
  width: 260px;
  height: 33px;
  margin: 0 auto 55px;
  text-align: center;
  line-height: 31px;
  position: relative;
  font-size: 22px;
  font-weight: bold;
  vertical-align: top;
}

main .title .left {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

main .title .right {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

footer {
  width: 1100px;
  margin: 0 auto;
  padding: 45px 20px 60px;
}

footer .contactbtn {
  width: 900px;
  height: 138px;
  margin: 0 auto 70px;
  text-decoration: none;
  text-align: center;
  line-height: 122px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 5px;
  color: #000;
  background-color: #FFDC00;
  border: 7px solid #000;
  display: block;
  position: relative;
}

footer .contactbtn img {
  margin-top: -21px;
  display: block;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

footer .contactbtn:hover img {
  right: 20px;
}

footer .menu {
  margin-bottom: 30px;
  text-align: center;
}

footer .menu li {
  margin: 0 25px;
  display: inline-block;
}

footer .menu li a {
  padding: 0 20px;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

footer .bnrlink {
  width: 400px;
  margin: 0 auto 20px;
  display: block;
}

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

footer .t01 {
  text-align: center;
  font-size: 14px;
  margin-bottom: 5px;
}

footer .tel_pc {
  width: 300px;
  margin: 0 auto 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: block;
}

footer .tel_sp {
  display: none;
}

footer .copy {
  text-align: center;
  font-size: 12px;
}

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

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

/* ------------------------------
 common - width: < $max-width-1
------------------------------ */
@media screen and (max-width: 700px) {
  html,
  body {
    min-width: 0;
  }
  .op {
    display: none !important;
  }
  .os {
    display: block !important;
  }
  * {
    letter-spacing: 1px;
  }
  header .top {
    width: 100%;
    height: auto;
  }
  header .top h1 {
    width: 150px;
    margin: 10px 0 10px 20px;
    float: none;
  }
  header .top .right {
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
    float: none;
  }
  header .top .right .tel_sp,
  header .top .right a {
    width: 120px;
    margin: 0 5px;
    display: inline-block !important;
    float: none;
  }
  header .top .right .tel_sp img,
  header .top .right a img {
    width: 100%;
    display: block;
  }
  header .top .right .tel_pc {
    display: none;
  }
  header .gnav {
    height: 10px;
    border-bottom: 5px solid #FFDC00;
  }
  header .gnav ul {
    display: none;
  }
  main {
    padding: 40px 0;
  }
  main .title {
    width: 220px;
    height: 25px;
    margin: 0 auto 30px;
    line-height: 24px;
    font-size: 16px;
  }
  main .title .left {
    height: 25px;
    top: 10px;
  }
  main .title .right {
    height: 25px;
    top: 10px;
  }
  footer {
    width: 100%;
    margin: 0 auto;
    padding: 25px 20px 40px;
  }
  footer .contactbtn {
    width: 100%;
    max-width: 400px;
    height: 48px;
    margin: 0 auto 30px;
    padding-right: 10px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #000;
    background-color: #FFDC00;
    border: 3px solid #000;
    display: block;
    position: relative;
  }
  footer .contactbtn img {
    height: 15px;
    margin-top: -8px;
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  footer .contactbtn:hover img {
    right: 10px;
  }
  footer .menu {
    max-width: 320px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }
  footer .menu li {
    margin: 0 5px;
    display: inline-block;
  }
  footer .menu li a {
    padding: 0 5px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
  }
  footer .bnrlink {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
  }
  footer .t01 {
    text-align: center;
    font-size: 12px;
    margin-bottom: 0;
  }
  footer .tel_pc {
    display: none;
  }
  footer .tel_sp {
    width: 200px;
    margin: 0 auto 30px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: block;
  }
  footer .copy {
    font-size: 10px;
  }
  footer .fadelink {
    width: 35px;
    height: 35px;
    display: block;
    position: fixed;
    right: 10px;
    bottom: 40px;
  }
  footer .fadelink img {
    width: 100%;
    display: block;
  }
}
