@charset "utf-8";
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "リュウミン R-KL", '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  color: #fff;
  background: #fff;
}
.Title { font-family: A1 Mincho }

html { font-size: 62.5%; } 
img { display: block; }

.w920 {
  max-width: 920px;
  margin: 0 auto;
}
.w750 {
  max-width: 750px;
  margin: 0 auto;
}
.w350 {
  max-width: 350px;
  margin: 0 auto;
}
.w250 {
  max-width: 250px;
  margin: 0 auto;
}

.bgw{
  background: #fff;
}
.bd_gray {
  border-top: 50px solid #ebebeb;
}
.font_wh {
  color: #fff;
}
hr.red_line {
  border-top: 2px solid #fff;
}

div.aligncenter {
  margin: 0 auto !important;
}
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 56px;
  z-index: 99999;
  background: transparent;
}
.header_inner {
  position: relative;
  padding: 0;

}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 10px;
  padding-left: 20px;
}
nav {
  display: block !important;
  padding-top: 10px;
}
div#TelBlok {
  text-align: right;
  padding: 0 20px 0 0;
  margin: 0;
  background: #fff;
  font-weight: bold;
}
div#TelBlok a{
  color: #202f55;
  font-size: 200%;
  font-feature-settings: "palt" 1;
}
div#TelBlok p{
  color: #202f55;
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: bold;
  font-feature-settings: "palt" 1;
}
.nablink li a {
  padding:10px;
  display:block;
  position:relative;
  text-align:center;
  text-decoration: none;
  transition-duration: 0.3s;
}
.nablink li a:hover {
  opacity: .6;
  transition-duration: 0.3s;
}
.nablink li a.nw {
  padding:10px;
  display:block;
  position:relative;
  text-align:center;
  text-decoration: none;
}
/*
.nablink li a:before,
.nablink li a:after {
  content:"";
  display:block;
  position:absolute;
  left:100%;
  right:100%;
  height:2px;
  background-color:#ffd700;
  -webkit-transition:left 0.2s ease, right 0.2s ease;
  -moz-transition:left 0.2s ease, right 0.2s ease;
  -o-transition:left 0.2s ease, right 0.2s ease;
  transition:left 0.2s ease, right 0.2s ease;
}
*/
.nw {
/*  border-top:2px solid #fff;*/
  border-bottom: 2px solid #ffd700;
  color: #ffd700;
  font-weight: 600;
  padding: 8px 10px;
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
}
/*
.nablink li a:before {
  bottom:0;
}

.nablink li a:after {
  top:0;
}

.nablink li a:hover:before,
.nablink li a:hover:after {
  left:0;
  right:0;
}
*/
a.btw{
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  transition: .4s;
  letter-spacing: 1px;
}
a.btw:hover{
  color: #fff;
  background: #fff;
  transition: .4s;
}
a.btr{
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  transition: .4s;
  letter-spacing: 1px;
  text-decoration: none;
}
a.btr:hover{
  color: #fff;
  background: #fff;
  border: 1px solid #fff;
  transition: .4s;
}
div.mv {
  max-width: 1200px;
  margin: 85px auto 50px;
}
@media only screen and (max-width: 916px) {
  .logo{
    padding-top: 5px;
    padding-left: 5px;
  }
  .nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: #202f55;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
    background: #202f55;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .nav_item:last-child {
    padding: 0 14px;
    margin-top: 10px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #fff;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 8px;
  }
  .hamburger_border_center {
    top: 18px;
  }
  .hamburger_border_bottom {
    top: 28px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */

@media only screen and (min-width: 916px) {
  .header {
    /*height: 80px;*/
    background: #FFF;
  }
  .header_inner{
    /*max-width: 1200px;*/
    width: 100%;
    /*padding: 20px 30px 5px;*/
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding-top: 15px;
  }
  .nav_list{
    text-align: right;
    margin: 0;
    padding: 0 20px 0 0;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    /*padding-left: 20px;*/
    vertical-align: middle;
    background: #202f55;
  }
  .nav_list li a{
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: 3px;
    font-feature-settings: "palt" 1;
  }
  .nav_list li:nth-child(6) a{
    background: #fff;
    color: #000;
  }
  .nav_list li:last-child {
    padding-left: 0;
  }
  /*.nav_list li:last-child a {
    padding-left: 0;
  }*/
}/* pc */


.pcbr {
  display: block;
}
.tabbr {
  display: none;
}
.spbr {
  display: none;
}
.spbr_all {
  display: none;
}
section.items {
  background: #fff;
}
h7 {
  width: 244px;
  margin: 0 auto;
}
h7 img{
  width: 100%;
}
.mails{
  max-width: 768px;
  margin: 80px auto 30px;
  padding: 30px 10px;
  border-radius: 10px;
}
.mailtxt {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.linkbt {
  max-width: 550px;
  margin: 0 auto;
}
.linkbt a{
  transition-duration: 0.3s;
  display: block;
}
.linkbt a:hover{
  opacity: 0.7;
  transition-duration: 0.3s;
}
ul.sns{
  margin: 0 auto 80px;
  width: 210px;
  padding: 0;
  overflow: hidden;
}
ul.sns li{
  list-style: none;
  width: 90px;
  float: left;
}
ul.sns li:first-child{
  padding-left: 10px;
  padding-right: 5px;
}
ul.sns li:last-child{
  padding-left: 5px;
  padding-right: 10px;
}


footer {
  background: #202f55;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
  color: #fff;
}
.LinkBlock {
  max-width: 756px;
  margin: 0 auto 30px;
  padding: 0;
  overflow: hidden;
}
.LinkBlock a{
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 2px;
  display: block;
  transition-duration: 0.3s;
  font-feature-settings: "palt" 1;
  margin-bottom: 20px;
}
.LinkBlock a:hover{
  opacity: 0.7;
  transition-duration: 0.3s;
}

p.f_logo {
  max-width: 65px;
  margin: 0 auto 30px;
}
div.SNSBlock {
  width: 250px;
  margin: 40px auto;
}
.SNSBlock h3 {
  font-size: 1.8rem;
  letter-spacing: 8px;
}
.SNSBlock a{
  display: block;
  transition-duration: 0.3s;
}
.SNSBlock a:hover{
  opacity: 0.7;
  transition-duration: 0.3s;
}
p.Copyright {
  margin-top: 50px;
}
.property_title p.subtext {
  text-align: center;
}
.access .accesstitle {
  background: #fff;
  text-align: center;
  padding: 5px 10px;
  color: #202f55;
  font-weight: bold;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}
.access h4 {
  text-align: left;
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 0;
}
.access p {
  text-align: left;
  color: #fff;
  padding-top: 10px;
  letter-spacing: 1px;
  font-feature-settings: "palt" 1;
}
a.link_t{
  color: #fff;
  text-decoration: underline;
}
a.link_t:hover{
  opacity: 0.7;
  transition-duration: 0.3s;
}
.map {
  width: 100%;
  height: auto;
  overflow: hidden;
/*  position: relative;
  padding-top: 30%;*/
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
h3#Company_Name {
  background: #fff;
  text-align: center;
  padding: 5px 10px;
  color: #202f55;
  font-weight: bold;
  font-size: 1.75rem;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}
a.bt_more {
  position: relative;
  display: block;
  max-width: 350px;
  border: 1px solid #000;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.6rem;
  padding: 15px 10px;
  color: #000;
  background: transparent;
  vertical-align: middle;
  letter-spacing: 4px;
}
a.bt_more::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 20px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #000;
  display: inline-block;
  width: 0;
  height: 0;
}
a.bt_more:hover{
  transition-duration: 0.3s;
  color: #fff;
  text-decoration: none;
  border: 1px solid #000;
  background: #000;
}
a.bt_more:hover::after {
  border-color: transparent transparent transparent #fff;
}


a.bt_content {
  position: relative;
  display: block;
  max-width: 350px;
  border: 1px solid #fff;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.6rem;
  padding: 15px 10px;
  color: #fff;
  background: transparent;
  vertical-align: middle;
  letter-spacing: 4px;
  background: #fff;
  color: #000;
}
a.bt_content::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 20px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #000;
  display: inline-block;
  width: 0;
  height: 0;
}
a.bt_content:hover{
  transition-duration: 0.3s;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  background: #000;
}
a.bt_content:hover::after {
  border-color: transparent transparent transparent #fff;
}

a.bt_content02 {
  position: relative;
  display: block;
  max-width: 350px;
  border: 1px solid #fff;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.6rem;
  padding: 15px 10px;
  color: #000;
  background: transparent;
  vertical-align: middle;
  letter-spacing: 4px;
  background: #000;
  color: #fff;
}
a.bt_content02::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 20px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
}
a.bt_content02:hover{
  transition-duration: 0.3s;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  background: #fff;
}
a.bt_content02:hover::after {
  border-color: transparent transparent transparent #000;
}
.br_sp {
  display: block;
}
.br_pc {
  display: none;
}
@media only screen and (max-width: 914px) {
  .br_sp {
    display: none;
  }
  .br_pc {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .br_sp {
    display: none;
  }
  .br_pc {
    display: block;
  }
  .map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
  .property_title p.subtext {
    text-align: left;
  }
}
.pagetop {
  display: none;
  position: fixed;
  right: 17px;
  z-index: 99999;
}

.pagetop.fixed {
  position: fixed;
  bottom: 9px;
}
.mailtop {
  display: none;
  position: fixed;
  right: 10px;
  z-index: 99999;
}
.mailtop.fixed {
  position: fixed;
  bottom: 85px;
  display: block;

}
.mailtop a{
  transition-duration: 0.3s;
  display: block;
}
.mailtop a:hover{
  opacity: 0.7;
  transition-duration: 0.3s;
}
.LinkBlock a.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #fff;
  text-decoration: none;
}
.LinkBlock a.arrow_s:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}
div.BannerBlock {
  max-width: 786px;
  margin: 0 auto;
}
div.BannerBlock div a{
  max-width: 232px;
  margin: 20px auto;
  display: block;
}
div.fix_bt{
  display: block;
  position: fixed;
  top:60px;
  right: 5px;
  z-index: 900;
}
div.fix_bt a{
  padding-top: 10px;
  display: block;
}
@media (max-width: 1199px) {
  .pagetop.fixed {
    bottom: 4px;
  }
  .mailtop.fixed {
    bottom: 85px;
  }
}

@media (max-width: 474px) {

  .pagetop.fixed {
    bottom: 4px;
  }
  .mailtop.fixed {
    bottom: 62px;
  }
}