@charset "utf-8";

/* =============================================================

    Base Setting

============================================================= */


/*  Overall Setting
--------------------------------------------- */

html {
  overflow-y: auto;
}

html,
body {
  height: 100%;
}

body {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "游明朝", "YuMincho", "HG明朝E", "メイリオ", Meiryo, 'Noto Serif JP', Verdana, sans-serif;
  font-size: 16px;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

/*  Color Setting
-------------------------- */

/* -- Common Color -- */

body {
  color: #000;
}

a {
  color: #1a0dab;
}

a:hover,
a:focus {
  color: #1a0dab;
}

/* -- Custom Color -- */

/* Default */
.txt-default,
a.txt-default,
a.txt-default:hover,
a.txt-default:focus {
  color: #222 !important;
}

.bg-default {
  background-color: #222 !important;
}

.txt-default-light,
a.txt-default-light,
a.txt-default-light:hover,
a.txt-default-light:focus {
  color: #ccc !important;
}

.bg-default-light {
  background-color: #f6f6f6 !important;
}

.bg-default-light2 {
  background-color: #eee !important;
}

.txt-default-dark,
a.txt-default-dark,
a.txt-default-dark:hover,
a.txt-default-dark:focus {
  color: #000 !important;
}

.bg-default-dark {
  background-color: #000 !important;
}

/* Base */
.txt-base,
a.txt-base,
a.txt-base:hover,
a.txt-base:focus {
  color: #666 !important;
}

.bg-base {
  background-color: #666 !important;
}

.txt-base-light,
a.txt-base-light,
a.txt-base-light:hover,
a.txt-base-light:focus {
  color: #888 !important;
}

.bg-base-light {
  background-color: #888 !important;
}

.txt-base-dark,
a.txt-base-dark,
a.txt-base-dark:hover,
a.txt-base-dark:focus {
  color: #333 !important;
}

.bg-base-dark {
  background-color: #333 !important;
}

/* Primary */
.txt-primary,
a.txt-primary,
a.txt-primary:hover,
a.txt-primary:focus {
  color: #022d92 !important;
}

.bg-primary {
  background-color: #022d92 !important;
}

/* Primary Light */
.txt-primary-light,
a.txt-primary-light,
a.txt-primary-light:hover,
a.txt-primary-light:focus {
  color: #3755a2 !important;
}

.bg-primary-light {
  background-color: #f0f3fc !important;
}

/* Primary2 */
.txt-primary2,
a.txt-primary2,
a.txt-primary2:hover,
a.txt-primary2:focus {
  color: #1d2090 !important;
}

.bg-primary2 {
  background-color: #1d2090 !important;
}

/* Primary3 */
.txt-primary3,
a.txt-primary3,
a.txt-primary3:hover,
a.txt-primary3:focus {
  color: #0070a1 !important;
}

.bg-primary3 {
  background-color: #0070a1 !important;
}

.bg-primary3-light {
  background-color: #f1f9fb !important;
}

/* Accent */
.txt-accent,
a.txt-accent,
a.txt-accent:hover,
a.txt-accent:focus {
  color: #df1300 !important;
}

.bg-accent {
  background-color: #df1300 !important;
}

.bg-accent-light {
  background-color: #fff6f6 !important;
}

.txt-accent-dark,
a.txt-accent-dark,
a.txt-accent-dark:hover,
a.txt-accent-dark:focus {
  color: #b91115 !important;
}

/* Accent2 */
.txt-accent2,
a.txt-accent2,
a.txt-accent2:hover,
a.txt-accent2:focus {
  color: #d8528c !important;
}

.bg-accent2 {
  background-color: #d8528c !important;
}

.bg-accent2-light {
  background-color: #fff5f9 !important;
}

/* Accent3 */
.txt-accent3,
a.txt-accent3,
a.txt-accent3:hover,
a.txt-accent3:focus {
  color: #ffadab !important;
}

.bg-accent3 {
  background-color: #ffadab !important;
}


/* -- Form Color -- */

.form-control,
.search-input {
  border-radius: 0;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  color: #333;
}

.form-control:focus,
.search-input:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 4px rgba(136, 136, 136, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 4px rgba(136, 136, 136, .6);
}

/* -- Placeholder Color -- */

:placeholder-shown {
  color: #999;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

/* -- Text Select Color -- */

::selection {
  background: rgba(0, 0, 0, .075);
  color: #4d4949;
}

::-moz-selection {
  background: rgba(0, 0, 0, .075);
  color: #4d4949;
}

/*  Switch Display
-------------------------- */

.media-sp {
  display: none;
}

@media screen and (min-width: 768px) {

  .media-sp {
    display: none !important;
  }

}

/*  Link Setting
-------------------------- */

a {
  text-decoration: none;
}

a,
a:before,
a:after,
a img {
  transition: opacity .3s ease-in-out,
    color .3s ease-in-out,
    background-color .3s ease-in-out,
    border-color .3s ease-in-out,
    text-shadow .3s ease-in-out,
    text-weight .3s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  text-decoration: none;
}


/*  Form Setting
-------------------------- */

.form-control {
  height: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select,
textarea {
  border-radius: 0;
  border-color: #ccc;
  padding: 5px;
  font-size: .9em;

}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 8px;
  padding: 0;
  font-size: 1.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  transition: border-color .3s ease-in-out;
}

select,
select[multiple],
select[size] {
  min-width: 20px;
  height: 32px;
  padding: 0 5px;
  background-color: #fff;
  vertical-align: middle;
}


/*  Container Setting
--------------------------------------------- */

#container {
  position: relative;
  width: 100% !important;
  min-width: 1256px;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  background: #fff;
}

#container.display-pc {
  width: 100% !important;
  position: relative !important;
  right: auto !important;
}

.inner {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.main-content-inner {
  width: 100% !important;
}


/*  Header Setting
--------------------------------------------- */

#header {}

#header-top {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  box-shadow: 2px 2px 2px rgba(221, 221, 221, .8);
}

.display-pc #header-top {
  left: 0 !important;
}

#header-top .inner {
  position: relative;
  padding: 24px 0 20px;
}

#header a,
#header a:hover {
  text-decoration: none;
  color: inherit;
}

#header p,
#header ul {
  margin-bottom: 0;
  padding-left: 0;
}

/* -------- Site Logo -------- */

#logo {
  float: left;
  z-index: 100;
  width: 228px;
  background: #fff;
  text-align: center;
}

#logo h1 {
  margin: 0;
}

#logo a {
  display: block;
  padding: 0;
  background: #fff;
}

#logo a:hover {
  opacity: .6;
}

#logo img {
  vertical-align: -6px;
}

/* -------- Site Menu -------- */

#sitemenu {
  padding: 0;
  font-size: 1em;
  font-weight: bold;
}

/* -- Menu Button -- */

#sitemenu #menu-btn {
  display: none;
}

/* -- Menu Content -- */

#sitemenu #menu {}

/* ------ Global Navi ------ */

.gnav {
  float: right;
  font-size: 1em;
}

.gnav ul {
  margin-top: 0;
  padding: 15px 0 0;
  letter-spacing: -.40em;
  text-align: center;
}

.gnav li {
  float: left;
  position: relative;
  letter-spacing: normal;
  vertical-align: middle;
  border-right: 1px solid #000;
}

.gnav li:first-child {
  border-left: 1px solid #000;
}

.gnav li:hover {
  cursor: pointer;
}

.gnav li a {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 26px;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 0.9;
}

.gnav li a span {
  position: relative;
  z-index: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* Hover Line */
.gnav li a span:after,
.gnav .current a span:after {
  transition: all .42s linear;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: -1;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  content: "";
}

.gnav li:hover span:after,
.gnav .current a span:after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.gnav .current a span:after {
  transition: none;
}


/* ------ menu social ------ */

.menu-social {
  display: none;
}

/* -- Animation -- */

.display-pc #header.scroll #logo a,
.display-pc #header.scroll #gnav {
  top: -200px;
  top: 0\9;
  animation: hdrfx 1s ease 0s 1 forwards;
}

/* IE10 */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .display-pc #header.scroll #logo a,
  .display-pc #header.scroll #gnav {
    top: -200px;
  }
}

@keyframes hdrfx {
  100% {
    top: 0;
  }
}

.display-pc #header-top {
  position: absolute;
}

.display-pc #header.scroll #header-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1140px;
  z-index: 8;
}

.display-pc #header.scroll #header-top .inner {
  padding-top: 15px;
  padding-bottom: 15px;
}


/* -- Animation -- */

.display-pc #header.scroll #header-top {
  top: -200px;
  top: 0\9;
  animation: hdrfx 0.8s ease 0s 1 forwards;
}

/* IE10 */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .display-pc #header.scroll #header-top {
    top: -200px;
  }
}

@keyframes hdrfx {
  100% {
    top: 0;
  }
}

#header-bottom {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  padding-top: 90px;
  background: #ebeced;
  font-size: 0.9em;
  letter-spacing: 0.02em;
}

#header-bottom .inner {
  padding: 15px 0;
  text-align: right;
}

#header-bottom .txt-link a:hover {
  text-decoration: underline;
}

#header-default {
  height: 140px;
}

#header-logo {
  height: 90px;
}

.txt-link-line a {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #000;
  line-height: 1;
}

.txt-link-line a:first-child {
  border-left: 1px solid #000;
}

/*  Content Settings
--------------------------------------------- */

#content {
  overflow: hidden;
}

.content-inner {
  background: #f5f6f9;
  padding: 62px 0 150px;
}

.content-inner__frame {
  padding: 55px 70px;
  background: #fff;
}

/*  Footer Setting
--------------------------------------------- */

#footer {
  position: relative;
  z-index: 0;
  width: 100%;
  color: #fff;
  background: #000;
}

#footer .inner {
  padding: 45px 0 40px;
  text-align: center;
}

#footer ul {
  margin-bottom: 0;
  padding-left: 0;
}

#footer a,
#footer a:hover {
  color: inherit;
}

/* ---- Footer Info ---- */

.footer-info {
  margin: 25px 0 40px;
}

.footer-info .txt-open {
  font-size: 0.9em;
}

.footer-info .ttl-main {
  margin: 0.2em 0 0.5em;
  font-size: 1.32em;
  font-weight: bold;
}

.footer-info .txt-address {
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-info .txt-address+.txt-address {
  margin-top: 30px;
}

.footer-info .txt-address strong {
  display: block;
  font-weight: bold;
  font-size: 1.1em;
}

.footer-info .btn-contact {
  display: inline-block;
  width: 250px;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 14px 30px;
  border: 1px solid #fff;
  color: #fff;
}

.footer-info .btn-contact:hover {
  text-decoration: none;
  background-color: #fff;
  color: #000 !important;
}

/* ---- Footer Open/Close ---- */

.ft-time {
  width: 480px;
  margin: 1.5em auto;
  padding: 0.5em 4em 1em;
  text-align: left;
  font-size: 0.85em;
  background-color: #1c1c1c;
}

.ft-time ul li {
  line-height: 1.8em;
}

.ft-time ul li span.octime {
  display: inline-block;
  width: 115px;
}

.ft-time ul li span.octime02:before {
  content: ": ";
}


/* ---- Footer bnr ---- */

.footer-bnr {
  margin-bottom: 50px !important;
}

.footer-bnr ul {
  margin-top: -18px !important;
}

.footer-bnr li {
  width: 404px !important;
  padding-top: 18px !important;
}

#footer .footer-bnr a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  background: #fff;
  width: 374px;
  height: 76px;
  color: #000;
}

#footer .footer-bnr a:hover {
  border-color: #fff;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

#footer .footer-bnr .btnGrey a {
  border-color: #625e5b;
  background: #625e5b;
  color: #fff;
  font-weight: bold;
}

#footer .footer-bnr .btnGrey a:hover {
  border-color: #fff;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-bnr a span span {
  display: block;
  font-size: 0.9em;
}


/* ---- Footer social ---- */

.footer-social {
  overflow: hidden;
}

.social-list {
  margin: 0 0 0 -4px !important;
}

.social-list li {
  width: auto !important;
  padding: 0 0 0 4px !important;
}

.social-list li a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 5px;
  border: 2px solid #333;
  background: #333;
}

.social-list li a:hover {
  border-color: #fff;
}

.social-list .icn-tw a {
  padding-top: 6px;
}

/* ---- Footer Navi ---- */

.footer-nav {
  margin-bottom: 15px;
}

.footer-nav .inner {
  padding: 20px 0;
  text-align: center;
}

.footer-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}

.footer-nav li:before {
  padding-left: 2px;
  padding-right: 5px;
  content: "|";
}

.footer-nav li:first-child:before {
  display: none;
}

.footer-nav a {
  padding: 5px;
}

.footer-nav a:hover {}


/* ---- Address ---- */

#footer-address {
  letter-spacing: .05em;
}

#footer-address h3 {
  margin: 1.8em 0 1em;
}

#footer-address h3 a {
  text-decoration: underline;
}

#footer-address .list-dl-contact {
  margin: 0 0 1.5em;
}

#footer-address .list-dl-contact li {
  padding: 0;
}

#footer-address .list-dl-contact dl dt {
  width: 80px;
  font-weight: normal;
}

#footer-address .list-dl-contact dl dd {
  padding-left: 80px;
}

/* ---- Info ---- */

#footer-info {
  margin: 0;
  padding: 35px;
  border: 1px solid #535353;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 1.8;
}

#footer-info .list {
  margin: 0;
}

#footer-info ul {
  padding-left: 1em !important;
}

#footer-info li {
  margin-top: 1.5em;
}

#footer-info li:first-child {
  margin-top: 0;
}

#footer-info li:before {
  margin-right: 8px;
  margin-left: -.8em;
  background: #fff;
  vertical-align: 4px;
}

/* ---- Copyright ---- */

#copyright {
  display: block;
  font-size: .85em;
  text-align: center;
  line-height: 1.7;
}


/* ---- Page Top ---- */

#pagetop {
  visibility: hidden;
  opacity: 0;
  display: none\9;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out, z-index .3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  z-index: -2;
  width: 46px;
  height: 46px;
}

#pagetop.show {

  position: absolute;
  top: -70px;
  right: 20px;
  bottom: auto;
  opacity: 1;
  display: block\9;
  z-index: 10;
  visibility: visible;
}

#pagetop.fxd {
  position: fixed;
  top: auto;
  right: 20px;
  bottom: 20px;
}

#pagetop a {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid #222;
  background: #222;
}

#pagetop a:before {
  display: block;
  border-radius: 1px;
  overflow: hidden;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -4px;
  margin-left: -8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

#pagetop a:hover {
  border-color: #000;
  background-color: #fff;
}

#pagetop a:hover:before {

  border-top-color: #000;
  border-right-color: #000;
}

#pagetop a span {
  display: none;
}



/*  Overlay Setting
--------------------------------------------- */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  //background: rgba(0, 0, 0, .6);
}
