@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap);

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #231815;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 856px) {
    body {
      font-size: 3.73vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #0470B6;
}
a:visited {
  color: #0470B6;
}
a:hover {
  text-decoration: none;
  color: #0470B6;
}
a:active {
  color: #0470B6;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
  font-weight: 500;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
}
.ff01 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 856px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow:hidden;
  margin: 0 auto;
}
#contents {
  line-height: 1.9;
}
#contents a:hover img{
  opacity: 0.70;
}
.inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 856px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
      line-height: 1.8;
    }
    .inner {
      width:100%;
      max-width: 100%;
      padding-left: 3.5vw;
      padding-right: 3.5vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
.hd_inner {
  width: 100%;
  height: 80px;
  padding: 10px 0;
  background: rgba(255,255,255,0.95)
}
.hd_logo_wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 370px;
  height: 150px;
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #231815!important;
  transition: all 0.2s ease-in-out 0s;
}
.hd_logo img {
  transition: all 0.2s ease-in-out 0s;
}
.hd_logo {
  display: block;
}
.site_copy {
  margin-top: 8px;
}
.hd_nav {
  align-items: center;
  height: 100%;
  padding-right: 50px;
  transition: all 0.2s ease-in-out 0s;
}

.hd_menu {
  padding-right: 22px;
  margin-top: 10px;
}
.hd_menu li {
  position: relative;
}
.hd_menu li::before {
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  content: "";
  width: 1px;
  height: 16px;
  background: #231815;
}
.hd_menu li:last-child::after {
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  content: "";
  width: 1px;
  height: 16px;
  background: #231815;
}
.hd_menu li a {
  text-decoration: none;
  color: #231815;
  display: block;
  padding: 0 24px;
}
.hd_menu li a:hover {
  text-decoration: underline;
}

.hd_contact a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  width: 180px;
  line-height: 40px;
  background-color: #000;
  transition: all 0.2s ease-in-out 0s;
}
.hd_contact a:hover {
  background-color: #333;
}
.hd_tel a span {
  display: inline-block;
  background: url("../img/common/ico/ico_call01.svg") 0 center no-repeat;
  background-size: 14px auto;
  padding-left: 25px;
}
.hd_mail {
  margin-left: 10px;
}
.hd_mail a span {
  background: url("../img/common/ico/ico_mail01.svg") 0 center no-repeat;
  background-size: 18px auto;
  padding-left: 28px;
}
  @media screen and (max-width: 1159px) {
    .hd_logo_wrap {
      width: 280px;
      height: 120px;
    }
    .hd_logo img {
      width: 240px;
      height: auto;
    }
    .site_copy {
      font-size: 1.5rem;
    }
    .hd_nav {
      padding-right: 20px;
    }
  }
  @media screen and (max-width: 1049px) {
    .hd_nav {
      display: block;
    }
    .hd_menu {
      padding-right: 0;
      margin-top: 10px;
    }
    .hd_contact a {
      width: 156px;
      line-height: 35px;
    }
  }
  @media screen and (max-width: 856px) {
    .hd_inner {
      height: 16.35vw;
      padding: 0;
    }
    .hd_logo_wrap {
      width: auto;
      height: 100%!important;
      background: none;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-left: 3.27vw;
    }
    .hd_logo img {
      width: 45vw;
      transition: all 0.2s ease-in-out 0s;
    }
    .hd_logo {
      display: block;
    }
    .site_copy {
      display: block!important;
      font-size: 2.66vw;
      margin: 0 0 0 2.33vw;
    }
  }

.hd_estate a {
  background-color: #ED851D!important;
}
.hd_estate a:hover {
  filter: brightness(1.1);
}
.hd_estate a span {
  display: inline-block;
  background: url("../img/common/ico/ico_shop01.png") 0 center no-repeat;
  background-size: 22px auto;
  padding-left: 28px;
}

.hd_fix .hd_logo_wrap {
  height: 80px;
}
.hd_fix .site_copy {
  display: none;
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  background: #231815;
  color: #fff;
  text-align: center;
  padding: 75px 0 40px;
}
.ft_logo {
  margin-bottom: 55px;
}
.ft_menu {
  margin-bottom: 55px;
}
.ft_menu li {
  margin: 0 13px;
}
.ft_menu li a {
  text-decoration: none;
  color: #fff;
}
.ft_menu li a:hover {
  text-decoration: underline;
}
.copyright {
  font-size: 1.4rem;
}
  @media screen and (max-width: 856px) {
    #footer {
      padding: 17.52vw 0 27.68vw;
    }
    .ft_logo {
      margin-bottom: 9.33vw;
    }
    .ft_logo img {
      width: 64.48vw;
      height: auto;
    }
    .ft_menu {
      flex-wrap: wrap;
      margin-bottom: 9.33vw;
      padding: 0 5vw;
    }
    .ft_menu li {
      margin: 0 3.5vw;
    }
    .ft_menu li a {
      display: inline-block;
      line-height: 2.2;
      font-size: 3.27vw;
    }
    .copyright {
      font-size: 3.27vw;
    }
  }

.sp_ft {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
  /*スマホフッターナビ*/
  @media screen and (max-width: 767px) {
    .sp_ft {
      display:none;
      opacity: 1;
      height: auto;
      position: fixed;
      left: 0;
      bottom: 0;
      z-index: 1000;
      width: 100%;
      border-bottom: none;
    }
    .ft_navi li {
      width: 100%;
    }
    .ft_estate_btn a {
      display: block;
      text-align: center;
      color: #fff;
      font-size: 5.33vw;
      width: 100%;
      font-weight: 600;
      line-height: 16vw;
      background: #ED851D;
      letter-spacing: 0.05em;
    }
    .ft_estate_btn a:hover {
      filter: brightness(1.1);
    }
    .ft_estate_btn a span {
      display: inline-block;
      background: url("../img/common/ico/ico_shop01.png") 0 center no-repeat;
      background-size: 7.6vw auto;
      padding-left: 9.33vw;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  width: 100%;
  height: 280px;
  padding-top: 100px;
  margin-bottom: 50px;
  background: url("../img/main/lower_ttl_bg.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_ttl {
  font-size: 2.6rem;
  color: #fff;
}
.page_ttl span {
  display: inline-block;
  padding-bottom: 10px;
}
.page_ttl span::before {
  position: absolute;
  left: calc(50% - 100px);
  bottom: 0;
  content: "";
  width: 200px;
  height: 1px;
  background: #fff;
}
  @media screen and (max-width: 856px) {
    #lowerVisual {
      width: 100%;
      height: 63vw;
      padding-top: 13.33vw;
      margin-bottom: 11.68vw;
      background: url("../img/main/lower_ttl_bg_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .page_ttl {
      font-size: 6vw;
    }
    .page_ttl span {
      padding-bottom: 3.33vw;
    }
    .page_ttl span::before {
      left: calc(50% - 23vw);
      width: 46vw;
    }
  }

#lowerVisual.main_estate {
  background: url("../img/estate/estate_ttl_bg.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 856px) {
    #lowerVisual.main_estate {
      background: url("../img/estate/estate_ttl_bg_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.sub_ttl01 {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.sub_ttl01 span {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  font-size: 2.6rem;
}
.sub_ttl01 span.ff01 {
  font-size: 5rem;
  padding-bottom: 12px;
}
.sub_ttl01 span::before {
  position: absolute;
  left: calc(50% - 98px);
  bottom: 0;
  content: "";
  width: 196px;
  height: 3px;
  background: #231815;
}
  @media screen and (max-width: 856px) {
    .sub_ttl01 span {
      padding-bottom: 3.33vw;
      font-size: 5.33vw;
    }
    .sub_ttl01 span.ff01 {
      padding-bottom: 2.66vw;
      font-size: 8.8vw;
    }
    .sub_ttl01 span::before {
      left: calc(50% - 19vw);
      width: 38vw;
    }
  }

.sub_ttl02 {
  position: relative;
  overflow: hidden;
  background: #231815;
  color: #fff;
  font-size: 1.8rem;
  padding: 12px 12px 12px 65px;
  margin-bottom: 35px;
}
.sub_ttl02::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 50px;
  height: 50px;
  background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #F7ED00 50.5%) no-repeat top left/100% 100%
}
  @media screen and (max-width: 856px) {
    .sub_ttl02 {
      font-size: 4.2vw;
      padding: 3vw 2.8vw 3vw 14vw;
      margin-bottom: 6.66vw;
    }
    .sub_ttl02::before {
      width: 12vw;
      height: 12vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  display:none;
}
.pagetop img {
  border: solid 1px rgba(255,255,255,0.5);
}
.pagetop a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 856px) {
    .pagetop {
      display: none!important;
    }
  }

.btn01 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 69px;
  margin: 0 auto;
  background: url("../img/common/btn01.svg") center top no-repeat;
  background-size: 480px 69px;
  font-size: 2rem;
  text-decoration: none;
  color: #231815;
}
.btn01 a:hover {
  filter: brightness(1.1);
}
.btn01 a span {
  display: inline-block;
  padding-right: 40px;
  background: url("../img/common/ico/ico_arrow01.svg") right center no-repeat;
  background-size: 12px 20px;
}
  @media screen and (max-width: 856px) {
    .btn01 a {
      width: 93.45vw;
      height: 15.68vw;
      background: url("../img/common/btn01_sp.svg") center top no-repeat;
      background-size: 93.45vw 15.68vw;
      font-size: 4.6vw;
    }
    .btn01 a span {
      padding-right: 8vw;
      background-size: 2.8vw auto;
    }
  }

.btn02 a {
  display: inline-block;
  text-decoration: none;
  color: #231815;
  font-size: 1.8rem;
  padding-right: 22px;
  background: url("../img/common/ico/ico_arrow01.svg") right center no-repeat;
  background-size: 12px 20px;
}
.btn02 a:hover {
  text-decoration: underline;
}
  @media screen and (max-width: 856px) {
    .btn02 a {
      font-size: 4.2vw;
      padding-right: 5.33vw;
      background-size: 2.8vw auto;
    }
  }

.btn03 a {
  display: inline-block;
  text-decoration: none;
  color: #231815;
  font-size: 1.6rem;
  padding-right: 22px;
  background: url("../img/common/ico/ico_arrow01.svg") right center no-repeat;
  background-size: 12px 20px;
}
.btn03 a:hover {
  text-decoration: underline;
}
  @media screen and (max-width: 856px) {
    .btn03 a {
      font-size: 3.6vw;
      padding-right: 5.33vw;
      background-size: 2.8vw auto;
    }
  }

.btn04 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 69px;
  margin: 0 auto;
  background: url("../img/common/btn02.svg") center top no-repeat;
  background-size: 377px 69px;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
}
.btn04 a:hover {
  filter: brightness(1.1);
}
.btn04 a span {
  display: inline-block;
  padding-right: 40px;
  background: url("../img/common/ico/ico_arrow02.svg") right center no-repeat;
  background-size: 12px 20px;
}
  @media screen and (max-width: 856px) {
    .btn04 a {
      width: 93.45vw;
      height: 15.68vw;
      background: url("../img/common/btn02.svg") center top no-repeat;
      background-size: 93.45vw 15.68vw;
      font-size: 4.6vw;
    }
    .btn04 a span {
      padding-right: 8vw;
      background-size: 2.8vw auto;
    }
  }


/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 856px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      position: fixed;
      z-index: 150;
      top: 0;
      right: 0;
      display: block;
      width: 16.35vw;
      height: 16.35vw;
      cursor: pointer;
      transition: .3s;
      background: #000;
    }
    .menuTrigger.open {
      position: fixed;
      top: 0;
    }
    .menuIcon_line {
      position: absolute;
      left: 50%;
      margin-left: -5vw;
      width: 10vw;
      height: 2px;
      background: #fff;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 22px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: 50%;
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 22px);
    }
    /* open */
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: calc(50%)!important;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: calc(50%)!important;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background-color: rgba(247,237,1,0.8);
      z-index: 120;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      box-sizing: border-box;
      display: table;
      width: 100%;
      height: 100%;
      padding: 23.36vw 9.34vw 9.34vw 9.34vw;
    }
    .hb_menu {
      margin-bottom: 8vw;
    }
    .hb_menu li {
      border-bottom: solid 1px #231815;
    }
    .hb_menu li a {
      display: block;
      text-align: center;
      font-size: 5.6vw;
      padding: 5.33vw;
      text-decoration: none;
      color: #231815;
    }
    .hb_contact {
      width: 63vw;
      margin: 0 auto;
    }
    .hb_contact a {
      display: block;
      text-align: center;
      color: #fff;
      text-decoration: none;
      width: 100%;
      line-height: 12.85vw;
      background-color: #000;
    }
    .hb_tel {
      margin-bottom: 6.54vw;
    }
    .hb_tel a span {
      display: inline-block;
      background: url("../img/common/ico/ico_call01.svg") 0 center no-repeat;
      background-size: 4.2vw auto;
      padding-left: 8vw;
      font-size: 4.67vw;
    }
    .hb_mail a span {
      background: url("../img/common/ico/ico_mail01.svg") 0 center no-repeat;
      background-size: 5.14vw auto;
      padding-left: 9.33vw;
      font-size: 4.2vw;;
    }
  }
  @media screen and (max-width: 649px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 16px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 16px);
    }
  }
  @media screen and (max-width: 414px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 13px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 13px);
    }
  }
