@charset "UTF-8";
/* CSS Document */
/* ========== ▼ ベース ▼ ==========*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
  font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', '游ゴシック体', 'Noto Sans Japanese', sans-serif;
  background-color: #fff;
}
time {
  font-family: 'Open Sans', sans-serif;
}
a {
  text-decoration: none;
  transition: all  0.3s ease;
}
a img {
  transition: all  0.3s ease;
}
section {
  width: 96%;
  margin: 0 2%;
}
/* ---------- form-elements ---------- */
input[type="text"] ,
input[type="password"] {
  height: 26px;
  text-indent: .5em;
  color: rgba(0,0,0,.9);
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 2px;
  background-color: rgba(255,255,255,1);
}
input[type="text"]:focus {
  outline: 0;
  border: 1px solid rgba(63,143,255,1);
}
input.readonly {
  background-color: rgba(0,0,0,.1);
}
input.readonly:focus {
  background-color: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.2);
}
input::-webkit-input-placeholder {
  color: #ccc;
  line-height: 1.3em;
}
input::-moz-placeholder {
  color: #ccc;
  line-height: 1.3em;
}
input:-ms-input-placeholder {
  color: #ccc;
  line-height: 1.3em;
}
/* ---------- select ---------- */
select {
  height: 26px;
  margin: 0 1% 0 1%;
  box-sizing: border-box;
  font-size: 1em;
  text-indent: .5em;
  color: rgba(0,0,0,1);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0 2px 2px 0;
  background-color: rgba(255,255,255,1);
  cursor: pointer;
}
/* ========== ▼ ヘッダ ▼ ==========*/
header {
  width: 100%;
  height: 100px;
  border-top: 3px solid rgb(0,70,140);
  overflow: hidden;
}
header .inner {
  width: 980px;
  height: 97px;
  margin: 0 auto;
}
header .logo {
  width: 162px;
  margin: 20px 0 0 0;
  overflow: hidden;
  float: left;
}
header .logo a {
  width: 162px;
  display: block;
}
header .logo a:hover img {
  opacity:0.8;
  filter:alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}
header .logo p {
  padding: .3em 0 0 0;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
  color: rgba(0,0,0,.8);
}
header .logo a img {
  width: 100%;
}
header nav {
  margin: 28px 0 0 0;
  float: left;
  overflow: hidden;
}
header nav ul {
  width: 100%;
}
header nav li {
  margin: 0 1.5em;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
  float: left;
}
header nav li a {
  padding: 1em 0 .3em 0;
  color: rgba(0,0,0,.8);
  border-bottom: 0px solid rgb(0,70,140);
  display: block;
}
header nav li a:hover {
  color: rgb(0,70,140);
  border-bottom: 2px solid rgb(0,70,140);
  display: block;
}
header .contact {
  width: 195px;
  float: right;
  text-align: center;
  overflow: hidden;
}
header .contact .mail {
  font-size: 1.3em;
  text-align: center;
}
header .contact .mail a {
  width: 100%;
  padding: .4em 0 .5em 0;
  color: #fff;
  background-color: rgb(0,70,140);
  border-radius: 0 0 4px 4px;
  display: block;
}
header .contact .mail a:hover {
  background-color: rgb(208,0,11);
}
header .contact .mail a i {
  margin: 0 .2em 0 0;
  font-size: 1.3em;
}
header .contact a.tel {
  margin: .2em 0;
  font-size: 2.8em;
  font-style: italic;
  font-weight: 700;
  color: rgb(208,0,11);
  display: block;
}
header .contact span {
  width: 100%;
  padding: 0 0 0 .5em;
  font-size: 1.1em;
  font-weight: 700;
  text-align: justify;
}
/*========== page-image ==========*/
.page-img {
  width: 100%;
  height: 245px;
  background-image: url(../commonImage/page-yokohama.png);
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}
.page-img h1 {
  margin: 150px 0 0 0;
  font-size: 3.4em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.page-img span {
  margin: 10px 0 0 0;
  font-size: 2em;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  text-align: center;
  display: block;
}
/*========== topic-path ==========*/
.topic-path {
  width:100%;
  overflow: hidden;
  margin: 0 auto 30px auto;
  background-color: rgb(243,243,243);
}
.topic-path ol {
  width: 98%;
  max-width: 960px;
  margin: 0 auto;
}
.topic-path ol li {
  display: inline;
  list-style-type: none;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 3.6em;
}
.topic-path ol li:before {
  /* liの前に記号追加 */
  content: " > ";
}
.topic-path ol li:first-child:before {
  /* 最初のliだけcontentを消す */
  content:"";
}
/* ========== ▼ page-logo ▼ ==========*/
.page-logo {
  width: 980px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid #ccc;
}
.page-logo img {
  width: 160px;
  height: auto;
}
.page-logo span {
  padding: .5em 0 0 0;
  font-size: 1.4em;
  font-weight: 700;
  color: #222;
  display: block;
}
/* ========== ▼ contents ▼ ==========*/
.contents {
  width: 980px;
  margin: 0 auto;
  padding: 0 0 40px 0;
  overflow: hidden;
}
/* ========== ▼ contact-box ▼ ==========*/
.contact-box {
  width: 700px;
  height: 220px;
  margin: 20px auto 60px auto;
  padding: 15px 0;
  border: 5px solid rgb(27,98,161);
  font-family:'Noto Sans Japanese';
  box-sizing: border-box;
  background-image: url(../commonImage/contact-box-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.contact-box h3 {
  position: absolute;
  left: 15px;
  top: 30px;
  z-index: 10;
  padding: 0;
  font-size: 2.5em;
  color: #222;
  text-align: left;
}
.contact-box p {
  position: absolute;
  left: 18px;
  top: 55px;
  font-size: 1.3em;
  color: #222;
  text-align: left;
}
.contact-box dl {
  width: 470px;
  position: absolute;
  left: 15px;
  top: 85px;
}
.contact-box dt,
.contact-box dd {
  height: 30px;
  margin: 0 0 5px 0;
  float: left;
}
.contact-box dt {
  width: 70px;
  font-size: 2em;
  font-weight: 500;
  text-align: right;
  line-height: 35px;
  color: #222;
}
.contact-box dd {
  width: 390px;
  padding: 0 0 0 10px;
  font-size: 3.2em;
  font-weight: 700;
  font-style: italic;
  color: rgb(208,0,11);
}
.contact-box dd a {
  color: rgb(208,0,11);
}
.contact-box dd span {
  font-size: .4em;
  font-style: normal;
  font-weight: normal;
  color: #aaa;
}
.contact-box a.link {
  width: 410px;
  padding: 10px 0;
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 20px;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: rgb(30,109,171);
  border-radius: 4px;
  display: block;
}
.contact-box a.link:hover {
  background-color: rgb(208,0,11);
}
.contact-box img {
  position: absolute;
  bottom: 0;
  right: 5px;
  z-index: 1;
}
/* ========== ▼ フッター ▼ ==========*/
footer {
  width: 100%;
  background-color: rgb(243,243,243);
  background-image: url(../commonImage/footer-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.map-wrap {
  width: 100%;
  background-color: rgb(243,243,243);
  background-image: url(../commonImage/footer-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}
/*アクセス*/
.access {
  width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.access h3 {
  padding: 2.6em 0 1.5em 0;
  font-size: 2.2em;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.access img {
  width: 100%;
  height: auto;
}
.access p {
  padding: 2em;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 2em;
  color: #222;
  text-align: center;
}
.access a.gmap {
  width: 350px;
  margin: 0 auto 40px auto;
  padding: .6em 0;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 2em;
  color: #333;
  border: 4px solid rgb(0,70,140);
  box-sizing: border-box;
  text-align: center;
  display: block;
}
.access a.gmap:hover{
  background-color: rgba(255,255,255,1);
  color: #333;
}
.hvr-icon-drop:before {
  right: 3.3em;
  font-size: 1.5em;
  color: #aaa;
}
footer nav {
  width: 100%;
  background-color: rgb(0,70,140);
  overflow: hidden;
}
footer nav ul {
  width: 890px;
  margin: 0 auto;
  overflow: hidden;
}
footer nav ul li {
  float: left;
  padding: 1em .6em 1em 0;
  font-size: 1.3em;
  color: #fff;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: 1.5em;
}
footer nav ul li:after {
  content: "|";
  padding: 0 0 0 .6em;
}
footer nav ul li:last-child:after {
  content: none;
}
footer nav ul li a {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
footer nav ul li a:hover {
  color: rgba(255,255,255,.7);
}
footer address {
  width: 100%;
  background-color: rgb(221,221,221);
  overflow: hidden;
}
footer address .com-info {
  width: 700px;
  margin: 0 auto;
  padding: 15px 0 0 0;
  text-align: center;
}
footer address .com-info img{
  width: 138px;
}
footer address .com-info span {
  padding: .8em 0;
  font-size: 1.8em;
  font-weight: 700;
  color: #222;
  display: block;
}
footer address .com-info p {
  padding: 0;
  font-size: 1.3em;
  font-weight: 700;
  color: #222;
}
footer small {
  width: 100%;
  padding: 1em 0 1em 0;
  background-color: rgb(221,221,221);
  font-size: 1.3em;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  text-align: center;
  overflow: hidden;
  display: block;
}

/* IMAGE LIGHTBOX SELECTOR */
#imagelightbox
{
  cursor: pointer;
  position: fixed;
  z-index: 10000;

  -ms-touch-action: none;
  touch-action: none;

  -webkit-box-shadow: 0 0 1em rgba( 0, 0, 0, .1 ); /* 50 */
  box-shadow: 0 0 1em rgba( 0, 0, 0, .1 ); /* 50 */
}

/* ACTIVITY INDICATION */
#imagelightbox-loading,
#imagelightbox-loading div
{
  border-radius: 50%;
}
#imagelightbox-loading
{
  width: 2.5em; /* 40 */
  height: 2.5em; /* 40 */
  background-color: #444;
  background-color: rgba( 0, 0, 0, .5 );
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em; /* 10 */
  margin: -1.25em 0 0 -1.25em; /* 20 */

  -webkit-box-shadow: 0 0 2.5em rgba( 0, 0, 0, .75 ); /* 40 */
  box-shadow: 0 0 2.5em rgba( 0, 0, 0, .75 ); /* 40 */
}
#imagelightbox-loading div
{
  width: 1.25em; /* 20 */
  height: 1.25em; /* 20 */
  background-color: #fff;

  -webkit-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading
{
  from { opacity: .5; -webkit-transform: scale( .75 ); }
  50%  { opacity: 1;  -webkit-transform: scale( 1 ); }
  to   { opacity: .5; -webkit-transform: scale( .75 ); }
}
@keyframes imagelightbox-loading
{
  from { opacity: .5; transform: scale( .75 ); }
  50%  { opacity: 1;  transform: scale( 1 ); }
  to   { opacity: .5; transform: scale( .75 ); }
}

/* OVERLAY */
#imagelightbox-overlay
{
  background-color: #fff;
  background-color: rgba( 0, 0, 0, .65 );
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* "CLOSE" BUTTON */
#imagelightbox-close
{
  width: 2.5em; /* 40 */
  height: 2.5em; /* 40 */
  text-align: left;
  background-color: #666;
  border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 2.5em; /* 40 */
  right: 2.5em; /* 40 */
  border: 0;

  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}
#imagelightbox-close:hover,
#imagelightbox-close:focus
{
  background-color: #111;
}
#imagelightbox-close:before,
#imagelightbox-close:after
{
  width: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}
#imagelightbox-close:before
{
  -webkit-transform: rotate( 45deg );
  -ms-transform: rotate( 45deg );
  transform: rotate( 45deg );
}
#imagelightbox-close:after
{
  -webkit-transform: rotate( -45deg );
  -ms-transform: rotate( -45deg );
  transform: rotate( -45deg );
}

/* CAPTION */
#imagelightbox-caption
{
  text-align: center;
  color: #444;
  font-size: 1.6em;
  background-color: rgba(255,255,255,.8);
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.625em; /* 10 */
}

/* NAVIGATION */
#imagelightbox-nav
{
  background-color: #444;
  background-color: rgba( 0, 0, 0, .5 );
  border-radius: 20px;
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: 3.75em; /* 60 */
  padding: 0.313em; /* 5 */

  -webkit-transform: translateX( -50% );
  -ms-transform: translateX( -50% );
  transform: translateX( -50% );
}
#imagelightbox-nav button
{
  width: 1em; /* 20 */
  height: 1em; /* 20 */
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.313em; /* 5 */
}
#imagelightbox-nav button.active
{
  background-color: #fff;
}

/* ARROWS */
.imagelightbox-arrow
{
  width: 3.75em; /* 60 */
  height: 7.5em; /* 120 */
  background-color: #444;
  background-color: rgba( 0, 0, 0, .5 );
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -3.75em; /* 60 */
  border: 0;
  display: none;
}
.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus
{
  background-color: #666;
  background-color: rgba( 0, 0, 0, .75 );
}
.imagelightbox-arrow:active
{
  background-color: #111;
}
.imagelightbox-arrow-left
{
  left: 2.5em; /* 40 */
}
.imagelightbox-arrow-right
{
  right: 2.5em; /* 40 */
}
.imagelightbox-arrow:before
{
  width: 0;
  height: 0;
  border: 1em solid transparent;
  content: '';
  display: inline-block;
  margin-bottom: -0.125em; /* 2 */
}
.imagelightbox-arrow-left:before
{
  border-left: none;
  border-right-color: #fff;
  margin-left: -0.313em; /* 5 */
}
.imagelightbox-arrow-right:before
{
  border-right: none;
  border-left-color: #fff;
  margin-right: -0.313em; /* 5 */
}
#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow
{
  -webkit-animation: fade-in .25s linear;
  animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in
{
  from  { opacity: 0; }
  to    { opacity: 1; }
}
@keyframes fade-in
{
  from  { opacity: 0; }
  to    { opacity: 1; }
}

@media only screen and (max-width: 41.250em) /* 660 */
{
  #container
  {
    width: 100%;
  }
  #imagelightbox-close
  {
    top: 1.25em; /* 20 */
    right: 1.25em; /* 20 */
  }
  #imagelightbox-nav
  {
    bottom: 1.25em; /* 20 */
  }
  .imagelightbox-arrow
  {
    width: 2.5em; /* 40 */
    height: 3.75em; /* 60 */
    margin-top: -2.75em; /* 30 */
  }
  .imagelightbox-arrow-left
  {
    left: 1.25em; /* 20 */
  }
  .imagelightbox-arrow-right
  {
    right: 1.25em; /* 20 */
  }
}

@media only screen and (max-width: 20em) /* 320 */
{
  .imagelightbox-arrow-left
  {
    left: 0;
  }
  .imagelightbox-arrow-right
  {
    right: 0;
  }
}
.com-footer{
  overflow: hidden;
  background-color: #fff;
}
.com-ftinner {
  width: 960px;
  margin: 0 auto;
  padding: 15px 0;
  overflow: hidden;
}

.com-logo {
  float: left;
  width: 200px;
  overflow: hidden;
}
.com-logo img {
  width: 100%;
  height: auto;
}
.com-add {
  float: left;
  margin: 0 0 0 40px;
  padding: 0;
  font-size: 14px;
  line-height: 1.4em;
  text-align: left;
  overflow: hidden;
}
.com-add a {
  text-decoration: none;
  color: #666;
}

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

  html, body {
    margin: 0px;
    padding: 0px;
  }

  body {
    font-family: Helvetica, "游ゴシック", "Yu Gothic", sans-serif;
    background: url(image/body_bg.png) repeat;
  }

  /******** ↓ Footer Menu ↓ ********/

  .spOnly{
    display:none;
  }

  .bkLogo {
    background-image: url("img/body_bg.png");
  }

  .ownAnchor {
    color: #cd001b;
  }

  .punctuation {
    height: 15px;
    width: 100%;
    background-color: #d1001c;
  }

  .footer_row {
    width: 100%;
    min-width: 980px;
    border-bottom: 1px solid #b5b5b5;
    background-color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 20px 0 20px 0;
  }

  .footer_row table {
    margin: auto;
  }

  .footer_row a {
    font-size: 13px;
    color: #231815;
  }

  .footer_row span {
    font-size: 11px;
  }

  #footerImage {
    height: 94px;
    width: 100%;
    background-image: url("../commonImage/footer_logo.png");
    background-size: 640px;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 980px;
  }
  #footerImage a {
    height: 94px;
    width: 100%;
    display: block;
  }
  .footer_row .footer_anchor {
    padding: 0px 20px 0px 20px;
    border-left: 2px solid #000;
  }

  .footer_row .footer_anchor:first-child {
    border-style: none;
  }
  /******** ↑ Footer Menu ↑ ********/
}
@media screen and (max-width: 640px) {

  html, body {
    margin: 0px;
    padding: 0px;
  }

  body {
    font-family: Helvetica, "游ゴシック", "Yu Gothic", sans-serif;
  }

  /******** ↓ Footer Menu ↓ ********/
  .pcOnly{
    display:none;
  }

  .punctuation {
    height: 15px;
    width: 100%;
    background-color: #d1001c;
  }

  .spfooterImage {
    height: auto;
    width: 100%;
  }

  .footer_row {
    font-size: 10px;
    border-bottom: 1px solid #b5b5b5;
    text-align: left;
    padding: 20px 5px 20px 5px;
  }

  .footer_row .footer_anchor {
    padding: 0px 5px 0px 5px;
    border-left: 1px solid #000;
    color: rgb(34, 24, 21);
  }

  .footer_row .footer_anchor:first-child {
    border-style: none;
  }

  .spfooter tr td {
    border-right: 1px solid #000;
    padding: 5px 0;
  }

  .spfooter tr td:last-child {
    border-right: none;
  }
  /******** ↑ Footer Menu ↑ ********/
}



