@charset "utf-8";

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

　　Base Setting

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


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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "segoe UI", "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.5em;
  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: inherit;
}

a:hover,
a:focus {
  color: inherit;
}

/* -- Custom Color -- */

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

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

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

.bg-default-light {
  background-color: #fafafa;
}

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

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

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

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

.txt-base-light,
a.txt-base-light,
a.txt-base-light:hover,
a.txt-base-light:focus {
  color: #333;
}

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

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

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

/* Primary */
.txt-primary,
a.txt-primary,
a.txt-primary:hover,
a.txt-primary:focus {
  color: #16a6b6;
}

.bg-primary {
  background-color: #16a6b6;
}

.txt-primary-light,
a.txt-primary-light,
a.txt-primary-light:hover,
a.txt-primary-light:focus {
 /* color: #2ea7e0;*/
	color: #DB0A0E;
}

.bg-primary-light {
  background-color: #eef8fa;
}

.txt-primary-light2,
a.txt-primary-light2,
a.txt-primary-light2:hover,
a.txt-primary-light2:focus {
  color: #008ccf;
}

.bg-primary-light2 {
  background-color: #008ccf;
}

.txt-primary-dark,
a.txt-primary-dark,
a.txt-primary-dark:hover,
a.txt-primary-dark:focus {
  color: #085dad;
}

.bg-primary-dark {
  background-color: #085dad;
}

.txt-primary-dark2,
a.txt-primary-dark2,
a.txt-primary-dark2:hover,
a.txt-primary-dark2:focus {
  color: #003a8f;
}

.bg-primary-dark2 {
  background-color: #003a8f;
}

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

.bg-accent {
  background-color: #ee6557;
}

.txt-accent-light,
a.txt-accent-light,
a.txt-accent-light:hover,
a.txt-accent-light:focus {
  color: #eb6d9a;
}

.bg-accent-light {
  background-color: #eb6d9a;
}

.txt-accent-dark,
a.txt-accent-dark,
a.txt-accent-dark:hover,
a.txt-accent-dark:focus {
  color: #e74291;
}

.bg-accent-dark {
  background-color: #e74291;
}

.txt-accent2,
a.txt-accent2,
a.txt-accent2:hover,
a.txt-accent2:focus {
  color: #f08300;
}

.bg-accent2 {
  background-color: #f08300;
}

/* Sub */
.txt-sub,
a.txt-sub,
a.txt-sub:hover,
a.txt-sub:focus {
  color: #65981d;
}

.bg-sub {
  background-color: #65981d;
}

.txt-sub-light,
a.txt-sub-light,
a.txt-sub-light:hover,
a.txt-sub-light:focus {
}

.bg-sub-light {
}

.txt-sub-dark,
a.txt-sub-dark,
a.txt-sub-dark:hover,
a.txt-sub-dark:focus {
  color: #00894f;
}

.bg-sub-dark {
  background-color: #00894f;
}

/* -- 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;
}


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

.media-sp {
  display: none;
}


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

a {
  text-decoration: none;
}

a,
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;
}

a:hover {
  text-decoration: underline;
}


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

.form-control {
  height: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select-input,
textarea {
  border-radius: 0;
  padding: 5px;
  font-size: .9em;
  font-family: "segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

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 {
  min-width: 200px;
  height: 30px;
  padding: 0;
}


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

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

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

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


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

#header {
  width: 100%;
  min-width: 1100px;
  min-height: 135px;
  background: #fff;
}

.gt768 #header {
  left: 0 !important;
}

#header .inner {
  position: relative;
  max-width: 100%;
}

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

#header #logo {
  position: relative;
  z-index: 52;
  float: left;
  margin-right: 20px;
  margin-left: 20px;
}

#header #logo a {
  display: block;
}

#header #logo a:hover {
  opacity: .8;
}

/* -------- Site Title -------- */

#header .site-ttl {
  height: 79px;
  margin-left: 180px;
  margin-bottom: 23px;
  padding: 20px 10px 15px;
  border-bottom: 1px solid #ccc;
}

#header .site-ttl h2,
#header .site-ttl p {
  position: relative;
  z-index: 2;
}

#header .site-ttl p {
  padding-top: 5px;
  font-size: .9em;
  letter-spacing: .08em;
}

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

#header #sitemenu {
  font-weight: bold;
}

/* -- Menu Button -- */

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

/* -- Menu Content -- */

#header #sitemenu #menu {
}

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

#header #gnav {
}

#header #gnav .menu-list {
  position: relative;
  font-size: .92em;
}

#header #gnav ul {
  letter-spacing: -.40em;
  text-align: center;
}

#header #gnav li {
  float: left;
  position: relative;
  z-index: 5;
  letter-spacing: normal;
  vertical-align: middle;
}

#header #gnav li:hover {
  cursor: pointer;
}

#header #gnav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  line-height: 1.4;
  text-decoration: none;
}

#header #gnav li a span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
}

/* Hover Line */
#header #gnav li a span:after,
#header #gnav .current a span:after {
  transition: all .42s linear;
  position: absolute;
  right: 100%;
  left: 100%;
  bottom: -5px;
  z-index: -1;
  height: 2px;
  background: #16a6b6;
  content: "";
}

#header #gnav li:hover span:after,
#header #gnav .current a span:after {
  right: 1px;
  left: 1px;
}

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

/* ---- Sub Menu ---- */

/* -- Sub Menu List -- */

#header #gnav .menu-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 180px;
  margin-left: -90px;
  padding: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  font-size: .88em;
  text-align: center;
  letter-spacing: -.02em;
  line-height: 1.55;
}

#header #gnav .menu-sub ul {
  position: relative;
  padding: 0;
  background: #fff;
}

#header #gnav .menu-sub li {
  display: block;
  float: none;
  width: 100%;
  border-top: 1px dotted #fff;
}

#header #gnav .menu-sub li.media-sp {
  display: none;
}

#header #gnav .menu-sub li:first-child,
#header #gnav .menu-sub li.media-sp + li {
  border-top: none;
}

#header #gnav .menu-sub li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 14px 5px;
  letter-spacing: -.02em;
  line-height: 1.55;
}

#header #gnav .menu-sub li a:hover {
  opacity: .4;
}

/* -- Sub Menu Open -- */

.gt768 #header #gnav .menu-sub {
  display: block;
  transition: opacity .4s ease-in-out;
  opacity: 0;
  overflow: hidden;
  height: 0;
}

.gt768 #header #gnav .menu-list > ul > li:hover .menu-sub {
  display: block !important;
  opacity: 1;
  overflow: visible !important;
  height: auto;
}

/* ------ User Navi ------ */

#header #usernav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#header #usernav .inner {
  text-align: right;
}

#header #usernav .inner > * {
  position: relative;
  z-index: 2;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

/* ---- Social ---- */

.social-list.column {
  padding-right: 30px;
}

.social-list.column dt,
.social-list.column dd,
.social-list.column li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.social-list.column dt {
  padding-right: 12px;
}

.social-list.column > ul {
  margin: 0;
}

.social-list.column > ul > li {
  width: auto;
  padding: 0 4px;
}

.social-list.column li a {
  display: block;
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.social-list.column li a:hover {
  opacity: .7;
}

.social-list .icn-tw a {
  background-image: url(/common/img/social-icn-tw.png);
  background-size: 16px;
  background-image: url(/common/img/social-icn-tw-ie8.png)\9;
  background-color: #73cbef;
}

.social-list .icn-fb a {
  background-image: url(/common/img/social-icn-fb.png);
  background-size: 9px;
  background-image: url(/common/img/social-icn-fb-ie8.png)\9;
  background-color: #4f79bc;
}

.social-list li a span {
  display: none !important;
}

/* ---- User Navi List ---- */

#header .usernav-list {
  width: 190px;
}

#header .usernav-list ul {
  margin: 0;
}

#header .usernav-list li {
  padding: 0;
}

#header .usernav-list li a {
  display: block;
  height: 79px;
  background-repeat: no-repeat;
  background-position: center 12px;
  padding-top: 45px;
  font-size: .76em;
  font-weight: bold;
}

#header .usernav-list .icn-contact a {
  background-image: url(/common/img/icn-contact.png);
  background-image: url(/common/img/icn-contact-ie8.png)\9;
  background-size: 23px;
  background-position: center 15px;
}

#header .usernav-list .icn-faq a {
  background-image: url(/common/img/icn-faq.png);
  background-image: url(/common/img/icn-faq-ie8.png)\9;
  background-size: 28px;
}

/* ------ Site Contact ------ */

#header .site-contact {
  float: right;
  font-size: .85em;
}

#header .site-contact dt {
  padding-bottom: 4px;
  font-size: 1.05em;
}

#header .site-contact dd {
  letter-spacing: -.02em;
}

/* -------- Scroll Navi (onlyPC) -------- */

.gt768 #header.scroll .inner {
  max-width: 1100px;
  padding: 10px 0 0;
}

.gt768 #header #logo a {
  transition: top .4s ease-in-out,opacity .4s ease-in-out;
  background: url(/common/img/logo-scroll.png) no-repeat;
}

.gt768 #header.scroll #logo a {
  position: fixed;
  top: 0;
  z-index: 55;
  overflow: hidden;
  width: 100%;
  width: 330px;
  height: 55px;
  margin-top: 10px;
  padding: 0;
}

.gt768 #header #logo a img {
  transition: none;
  opacity: 1;
}

.gt768 #header.scroll #logo a img {
  opacity: 0;
  width: 61px;
}

.gt768 #header.scroll #gnav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  box-shadow: 2px 2px 2px rgba(221,221,221,.8);
  background: #fff;
}

.gt768 #header.scroll #gnav .menu-list:after {
  display: block; 
  clear: both; 
  visibility: hidden;
  height: 0; 
  font-size: 0;
  content: "."; 
}

.gt768 #header.scroll #gnav .menu-list > ul {
  display: block;
  min-width: 1100px;
  padding-left: 380px;
}

.gt768 #header.scroll #gnav .menu-list > ul > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}

.gt768 #header.scroll #gnav .menu-list > ul > li > a,
.gt768 #header.scroll #gnav .menu-list > ul > li > p > a {
  padding: 25px 20px;
}

/* -- Animation -- */

.gt768 #header.scroll #logo a,
.gt768 #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) {
  .gt768 #header.scroll #logo a,
  .gt768 #header.scroll #gnav {
    top: -200px;
  }
}


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


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

#content {
}

/*  Content Top
----------------------------------- */

#content-top {
}

/*  Content Main
----------------------------------- */

#content-main {
}

#content-main > .inner {
  padding-top: 20px;
  padding-bottom: 80px;
}

/*  2 Column Setting
----------------------------------- */

/* ---- Main ---- */

#main {
  float: left;
  width: 770px;
}

/* ---- Side ---- */

#side {
  float: right;
  width: 290px;
}


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

#footer {
  background: #fff;
  color: #666;
}

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

#footer-top,
#footer-bottom {
  border-top: 1px solid #ccc;
}

#footer-top .inner {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  letter-spacing: -.40em;
}

#footer-bottom .inner {
}

/* ---- Footer Contact ---- */

.footer-contact {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 24%;
  padding-right: 25px;
  background: #fff;
  font-size: .82em;
  vertical-align: middle;
  letter-spacing: -.06em;
  text-align: left;
}

.footer-contact dt {
  padding-bottom: 10px;
  font-weight: bold;
}

.footer-contact dt span {
  display: block;
  padding-top: 15px;
}

.footer-contact dd {
  line-height: 1.8;
}

.footer-contact .link-tel {
  font-size: 1.1em;
  font-weight: bold;
}

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

.footer-nav {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 76%;
  border-left: 1px solid #ccc;
  font-size: .88em;
  vertical-align: middle;
  letter-spacing: normal;
}

.footer-nav > ul {
  margin-left: 0;
  text-align: left;
  letter-spacing: -.40em;
}

.footer-nav > ul > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 0 0 20px 36px;
  text-align: left;
  vertical-align: top;
  letter-spacing: -.03em;
}

.footer-nav a {
  display: block;
  padding: 0 5px;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: .6;
}

.footer-nav dt {
  padding-bottom: 10px;
  font-weight: bold;
}

.footer-nav dd {
  font-size: .92em;
  line-height: 1.7;
}

.footer-nav dd li {
  padding-top: 4px;
}

.footer-nav dd li:first-child {
  padding-top: 0;
}

/* ---- Footer Link ---- */

.footer-link {
}

.footer-link .social-list a {
  background-color: #16a6b6;
}

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

#copyright {
  display: block;
  clear: both;
  padding-top: 12px;
  font-size: .75em;
  line-height: 1.6;
}

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

#pagetop {
  display: none;
  z-index: 10;
  width: 42px;
  height: 42px;
  margin-left: 0;
  padding: 0 !important;
}

.gt768 #pagetop {
  position: fixed;
  top: auto !important;
  right: 20px;
  left: auto;
  bottom: 20px;
}

#pagetop a {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #16a6b6;
}

#pagetop a:before,
#pagetop a:after {
  transition: border-color .4s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -25px;
  margin-left: -18px;
  border-width: 18px;
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-radius: 100%;
  content: "";
}

#pagetop a:after {
  margin-top: -20px;
  border-bottom-color: #16a6b6;
}

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

#pagetop a span {
  display: none;
}


/*  オーバーレイ 共通設定
--------------------------------------------- */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
