@charset "UTF-8";
/*===================================
共通
===================================*/
img{ width: 100%;}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.inner_1070 { /*注釈と同じ幅*/
  max-width: 1070px;
  width: 90%;
  margin: 0 auto;
}
.inner_1000 {
  max-width: 1000px;
  width: 90%;
  margin: 100px auto 0;
}
.cap_Txt {
  position: absolute;
  font-size: 10px;
  bottom: 5px;
  letter-spacing: 0.1em;
}
.cap_R { right: 5px;}
.cap_L { left: 5px;}
.cap_W { color: #fff;}
.cap_B { color: #333;}
.cap_G { color: #8a8a8a;}
.cap_ShW { text-shadow: 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;}
.cap_ShB { text-shadow: 2px 0 2px #000, -2px 0 2px #000, 0 2px 2px #000, 0 -2px 2px #000;}

.pc { display: block;}
.sp { display: none;}

sup {
  font-size: 10px;
  vertical-align: top;
}
.f-60{font-size: 60%;}
.f-70{font-size: 70%;}
.f-80{font-size: 80%;}
.f-90{font-size: 90%;}
.f-110{font-size: 110%;}
.f-120{font-size: 120%;}
.f-130{font-size: 130%;}
.f-140{font-size: 140%;}
.f-150{font-size: 150%;}
.f-160{font-size: 160%;}
.f-170{font-size: 170%;}
.f-180{font-size: 180%;}
.f-190{font-size: 190%;}
.f-200{font-size: 200%;}
.f-210{font-size: 210%;}
.f-220{font-size: 220%;}
.f-230{font-size: 230%;}
.f-240{font-size: 240%;}

a[href^="tel:"] {
  pointer-events: none;
}

.entry_Btn {
  display: block;
  width: 376px;
  transition: .3s;
}
.entry_Btn:hover {
  opacity: .7;
}

/*===================================
header
===================================*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: .5s;
  background: url(../img/hdr_bg.jpg) no-repeat center center / 100% 100%;
  opacity: 0.9;
}
header > div.flex{
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 0;
}
header > div.flex > div{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width:95%;
  margin: 0 0 0 auto;
}
header > div.flex h1{
  width: 22%;
  margin-right: 2%;
}
header > div.flex h1 a{
  display: block;
  width: 100%;
  transition: 0.3s;
}
header > div.flex h1 a:hover{ opacity: 0.7;}
.h_right{
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 15px;
}
.upper_list {
  display: flex;
  align-items: center;
  /*margin: 0 20px 0 0;*/
}
.upper_list li {
}
.upper_list li:not(:first-child) {
  margin: 0 0 0 20px;
  /*margin: 0 0 0 10px;*/
}
.upper_list a {
  font-size: 10px;
  transition: 0.3s;
  color: #000;
  display: flex;
  align-items: center;

  /*background: #8a897e;*/
  color: #fff;
}
.upper_list a.entry {
  background: #b7b08c;
  padding: 1.2em 2em;
  min-width: 110px;
  box-sizing: border-box;
  justify-content: center;
}
.upper_list a.arw::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-right: 0.75em;
}
.upper_list a:hover {
  opacity: 0.5;
}

.upper_btn {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.upper_btn li{
  width: 100px;
}
.upper_btn li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 1px solid #fff;
  width: 100%;
  padding: 10px 0 13px;
  text-align: center;
  transition: 0.3s;
  box-sizing: border-box;
}
.upper_btn li a span {
  position: relative;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  line-height: 1.0;
  transition: 0.3s;
  z-index: 3;
}

.request_Btn{
  background: rgb(60,70,130);
  background: linear-gradient(0deg, rgba(60,70,130,1) 0%, rgba(80,90,150,1) 100%);
}
.reserve_Btn{
  background: rgb(150,120,80);
  background: linear-gradient(0deg, rgba(150,120,80,1) 0%, rgba(170,150,120,1) 100%);
}

.bgleft:before{
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background:#fff;/*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.request_Btn.bgleft:hover span{ color: rgb(60,70,130);}
.reserve_Btn.bgleft:hover span{ color: rgb(150,120,80);}


/* メニュー */
#menuArea {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
#menuArea li {
  height: 40px;
  padding-top: 3%;
  margin: 0 14px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
#menuArea #menu {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  color: #000;
  z-index: 9999;
  text-align: center;
  cursor: pointer;
}
#menuArea #menu .bar {
  width: 36px;
  height: 14px;
  display: block;
  margin: 0 auto 8px;
  position: relative;
}
#menuArea #menu,
#menuArea #menu .bar span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#menuArea #menu .bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
#menuArea #menu .bar span:nth-of-type(1) { top: -6px; }
#menuArea #menu .bar span:nth-of-type(2) { top: 3px; }
#menuArea #menu .bar span:nth-of-type(3) { bottom: 0px; }

#menuArea #menu.active .bar span:nth-of-type(1) {
  -webkit-transform: translateY(9.5px) rotate(-315deg) scale(.8);
  transform: translateY(9.5px) rotate(-315deg) scale(.8);
}
#menuArea #menu.active .bar span:nth-of-type(2) {
  width: 30px;
  height: 30px;
  background-color: transparent;
}
#menuArea #menu.active .bar span:nth-of-type(3) {
  -webkit-transform: translateY(-9.5px) rotate(315deg) scale(.8);
  transform: translateY(-9.5px) rotate(315deg) scale(.8);
}
#menuArea #menu p {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

#gNav{
  width: 90%;
  z-index: 99;
  transition: all 0.6s;
}
#gNav ul{
  width: 100%;
}
#gNav .nav_List{
  justify-content: space-between;
  justify-content: flex-end;
}
#gNav .nav_List li{
  position: relative;
  text-align: center;
  width: calc(100%/10);
}
#gNav .nav_List li::after{
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  background: #b4b4b5;
  top: 0;
}
#gNav .nav_List li:first-child::before{
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  background: #b4b4b5;
  top: 0;
}
#gNav .nav_List li a{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: clamp(11px,0.8vw,13px);
  letter-spacing: 0.02em;
  transition: 0.3s;
  align-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
#gNav .nav_List li a::after{
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #c8c099;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
#gNav .nav_List li a:hover::after{ width: 70%;}
#gNav .nav_List li a span {
  padding: 0.25em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gNav .nav_List li a span small.sp {
  display: inline-block;
}

#gNav .con_btn_Area{
  justify-content: center;
  padding-top: 20px;
  max-width: 800px;
}
#gNav .con_btn_Area li{ width: 100%;}
#gNav .con_btn_Area .request_Btn,
#gNav .con_btn_Area .reserve_Btn,
#gNav .con_btn_Area .online_Btn{
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 300px;
  padding: 15px 0;
}
#gNav .con_btn_Area .request_Btn,
#gNav .con_btn_Area .reserve_Btn{ margin-bottom: 10px;}

/* ナビゲーション リンククローズ */
/* .gNav .nav_List li:nth-child(8) a
{
  opacity: 0.3;
  pointer-events: none;
} */
/*NEW*/
#gNav .nav_List li:nth-child(2)::before,
#gNav .nav_List li:nth-child(4)::before,
/*#gNav .nav_List li:nth-child(5)::before, */
/*#gNav .nav_List li:nth-child(6)::before,*/
#gNav .nav_List li:nth-child(7)::before,
#gNav .nav_List li:nth-child(8)::before,
#gNav .nav_List li:nth-child(9)::before {
content: "NEW";
position: absolute;
top: -4px;
left: 50%;
transform: translate(-50%,-50%);
display: block;
color: #fff;
font-size: 10px;
padding: 0.2em 1em;
background: #9f211b;
z-index: 1;
}

/* カレント */
#top #gNav .nav_List li:nth-child(1) a::after,
#design #gNav .nav_List li:nth-child(2) a::after,
#resort #gNav .nav_List li:nth-child(3) a::after,
#vr #gNav .nav_List li:nth-child(4) a::after,
#location #gNav .nav_List li:nth-child(5) a::after,
#plan #gNav .nav_List li:nth-child(7) a::after,
#quality #gNav .nav_List li:nth-child(8) a::after,
#online #gNav .nav_List li:nth-child(9) a::after,
#brand #gNav .nav_List li:nth-child(10) a::after,
#map #gNav .nav_List li:nth-child(11) a::after,
#outline #gNav .nav_List li:nth-child(12) a::after { width: 70%;}


/*===================================
content_Wrap
===================================*/

.brand_Wrap {
  margin: 60px auto 50px;
}
.brand_Wrap a {
  display: block;
  position: relative;
  aspect-ratio: 770/280;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.brand_Wrap a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 770/280;
  background: url(../img/btn_brand_bg.jpg) center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.brand_Wrap a::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 770/280;
  background: #000;
  opacity: .6;
  mix-blend-mode: multiply;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.brand_Wrap a .brand_LinkBtn--inner {
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.brand_LinkBtn--inner .btn_ttl {
  font-size: min(2.4vw,30px);
  color: #b7b08c;
  letter-spacing: 0.38em;
  margin: 0 0 1.0em;
}
.brand_LinkBtn--inner .btn_copy {
  font-size: min(1.7vw,20px);
  letter-spacing: 0.1em;
  margin: 0 0 1.75em;
}
.brand_LinkBtn--inner .btn_more {
  width: fit-content;
  letter-spacing: 0.1em;
  padding: 0 2.0em 0.5em 0.5em;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
}
.brand_LinkBtn--inner .btn_more::before {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.brand_LinkBtn--inner .btn_more::after {
  content: "";
  display: block;
  background: #fff;
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(50deg);
  transform-origin: right bottom;
}

.brand_Wrap a:hover::before {
  transform: scale(1.1);
}
.brand_Wrap a:hover::after {
  opacity: .3;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  left: 50%;
  padding: 0 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.modal__content a {
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 15px;
  letter-spacing: 4px;
  border: solid 1px #fff;
  padding: 10px 20px 10px 25px;
}
.modal__content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/*===================================
footer
===================================*/
footer {
  text-align: center;
  position: relative;
}
footer .gNav {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
footer .gNav .nav_List {
  justify-content: center;
  font-size: 11px;
  padding: 1.8em 0;
}
footer .gNav .nav_List li {
  padding: 0 1em;
}
footer .gNav .nav_List li:not(:first-child) {
  border-left: 1px solid #000;
}
footer .gNav .nav_List li a {
  color: #000;
}
footer .bg {
  background: #dbdbdb;
  padding: 70px 0 ;
}
footer p {
  font-size: 14px;
}
footer .footer_link {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}
footer .footer_link li p {
  font-size: 11px;
  text-align: left;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
footer .footer_link li:not(:last-child) { margin-right: 7%; }
footer .footer_link li:nth-child(1) img{ width: 198px;}
footer .footer_link li:nth-child(2) img{ width: 253px;}
footer .footer_link li:nth-child(3) img{ width: 282px;}

.footer_tel {
  padding:50px 0;
  letter-spacing: 0.05em;
  text-align: center;
}
.footer_tel p:first-of-type {
  letter-spacing: 0.18em;
}
.footer_tel p:last-of-type {
  font-size: 12px;
  line-height: 1.93;
  letter-spacing: 0.18em;
}
.footer_tel a[href^="tel:"] {
  display: block;
  width: fit-content;
  font-size: min(6vw,70px);
  color: #b7b08c;
  margin: 15px auto;
  letter-spacing: 0.1em;
}
.footer_tel .entry_Btn {
  margin: 0 auto 50px;
}


footer .copyright { margin-top: 30px;}
footer .copyright p { font-size: 12px; color: #fff;}

footer .f-brand_wrap {
  background: #293855;
  padding: 30px 0;
}
footer .f-brand_wrap figure {
  max-width: 200px;
  margin: 0 auto;
}

footer .footer_Bnr {
  max-width: 440px;
  margin: 0 auto 50px;
}
footer .footer_Bnr a {
  transition: .3s;
}
footer .footer_Bnr a:hover {
  transition: .3s;
  opacity: .5;
}


/* pagetop
-------------------------------- */
#pageTop {
  cursor: pointer;
  font-size: 12px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 20px 20px 17px;
/*  background: #123359;*/
/*  border: #e2e2e2 1px solid;*/
background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}
#pageTop a {
  display: block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: .3s;
}

/*===================================
下層ページ
===================================*/

.more--btn {
  font-size: 15px;
  color: #fff;
  position: relative;
  display: block;
  padding: 0.5em 1.25em;
  width: fit-content;
  margin: 0 auto;
}
.more--btn .arw {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  transition: .3s;
}
.viewMore--btn_box {
  background: #bbb28c;
  color: #fff;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 20px;
  margin: 0 auto;
  padding: 10px 10px 10px 15px;
  letter-spacing: 0.1em;
  font-size: 13px;
  transition: .3s;
}
.viewMore--btn_box .more--btn {
  margin: 0;
  font-size: 13px;
}
.viewMore--btn_box:hover {
  opacity: .6;
}

/* 注釈 */
.ftr_notes .notes_Wrap {
  padding: 100px 0 80px;
}
.notes_Wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.notes_Wrap li {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: justify;
  text-indent: 0;
  padding-left: 1em;
  margin-bottom: 3px;
}
.notes_Wrap li::before{
  position: absolute;
  content: "※";
  font-size: 12px;
  top: 0;
  left: 0;
}

.notes_Wrap li.loan {
padding-left: 0;
}
.notes_Wrap li.loan::before{
  display: none;
}


/*=========================================================================================================
tab
=========================================================================================================*/
@media screen and (min-width: 768px) and (max-width: 1024px){

  /*===================================
  header
  ===================================*/
  .h_right {
    margin: 0 0 10px;
  }
  .upper_list {
    margin: 0 10px 0 0;
  }
  .upper_list li:not(:first-child) {
    margin: 0 0 0 10px;
  }
  .upper_btn li {
    width: 90px;
  }
  #gNav .nav_List {
    flex-wrap: wrap;
  }
  #gNav .nav_List li {
    width: calc(100% / 5);
    margin: 2px 0;
    min-height: 28px;
  }
  #gNav .nav_List li:nth-child(6)::before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    background: #b4b4b5;
    top: 0;
  }
  #gNav .nav_List li a::after {
    bottom: -2px;
  }
  #gNav .nav_List li a:hover::after{ width: 70%;}



  /*===================================
  content_Wrap
  ===================================*/


  /*===================================
  footer
  ===================================*/

  footer .footer_link li:nth-child(1) img{ width: 158px;}
  footer .footer_link li:nth-child(2) img{ width: 202px;}
  footer .footer_link li:nth-child(3) img{ width: 225px;}

}

/*=========================================================================================================
sp
=========================================================================================================*/
@media screen and (max-width: 767px) {

  .pc { display: none;}
  .sp { display: block;}

  a[href^="tel:"] {
    pointer-events: auto;
  }
  .entry_Btn {
    max-width: 82%;
  }

  /*===================================
  header
  ===================================*/
  header.scrl {
/*    background: rgba(0, 0, 0, .7);*/
  }
  header > div.flex {
    padding: 12px 0;
  }
  header > div.flex h1{
    width: 30%;
    min-width: 100px;
  }
  .h_right .request_Btn,
  .h_right .reserve_Btn,
  .h_right .online_Btn{ display: none;}
  #gNav{
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    z-index: 99;
    transition: all 0.6s;
  }
  #gNav.panelactive{ top: 0;}
  #gNav ul {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  #gNav .nav_List {
    padding-top: 64px;
    flex-wrap: wrap;
  }
  #gNav .nav_List li{
    width: calc(100%/2);
    padding: 0;
    border-bottom: 1px solid #fff;
  }
  #gNav .nav_List li:nth-child(-n+2) {
    border-top: 1px solid #fff;
  }
  #gNav .nav_List li:nth-child(odd) {
    border-right: 1px solid #fff;
  }
  #gNav .nav_List li::after,
  #gNav .nav_List li:first-child::before{
    content: none;
  }
  /*#gNav .nav_List li:last-child {
    width: 100%;
    border-right: none;
  }*/

  #gNav .nav_List li a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 14px;
    padding: 1.5em 0;
    letter-spacing: 0.15em;
    transition: 0.3s;
    line-height: 1.0;
    box-sizing: border-box;
  }
  #gNav .nav_List li a span {
    display: block;
    padding: 0;
  }
  #gNav .nav_List li a::after{
    content: none;
  }

  #gNav .con_btn_Area{
    display: none;
  }
  #menuArea {
    top: 20px;
    right: 20px;
  }
  #menuArea li {
    margin: 0;
  }

  /*new*/
  #gNav .nav_List li:nth-child(2)::before,
  #gNav .nav_List li:nth-child(4)::before,
  /*#gNav .nav_List li:nth-child(5)::before, */
  /*#gNav .nav_List li:nth-child(6)::before,*/
  #gNav .nav_List li:nth-child(7)::before, 
  #gNav .nav_List li:nth-child(8)::before, 
  #gNav .nav_List li:nth-child(9)::before {
    content: "NEW";
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
  }

  /* ナビゲーション リンククローズ */
  /* .gNav .nav_List li:nth-child(8) a
  {
    opacity: 1;
  }
  .gNav .nav_List li:nth-child(8) a span
  {
    opacity: 0.4;
  } */

  /* カレント */
  #top #gNav .nav_List li:nth-child(1) a,
  #design #gNav .nav_List li:nth-child(2) a,
  #resort #gNav .nav_List li:nth-child(3) a,
  #vr #gNav .nav_List li:nth-child(4) a,
  #location #gNav .nav_List li:nth-child(5) a,
  #plan #gNav .nav_List li:nth-child(7) a,
  #quality #gNav .nav_List li:nth-child(8) a,
  #online #gNav .nav_List li:nth-child(9) a,
  #brand #gNav .nav_List li:nth-child(10) a,
  #map #gNav .nav_List li:nth-child(11) a,
  #outline #gNav .nav_List li:nth-child(12) a
  {
    background: rgb(200 192 153 / 50%);
  }

  /*.下固定*/
  .sp_btm_nav {
    display: flex;
    position: fixed;
    bottom: 0;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #b5b6b6;
    height: 60px;
    z-index: 10;
    border-top: #fff 1px solid;
  }
  .sp_btm_nav li {
     width: calc((100% - 0.01%) / 4) !important;
    position: relative;
  }
  .sp_btm_nav li:nth-of-type(-n+3){ border-right: solid 1px #fff;}
  .sp_btm_nav .n_request{
    background: #b7b08c;
  }
  .sp_btm_nav .n_reserve{
    /*background: #000;*/
    background: #b7b08c;
  }
  /*.sp_btm_nav .n_reserve {
    display: none;
  }*/
  .sp_btm_nav li a {
    height: 100%;
    display: block;
    padding: 40px 0 10px;
    box-sizing: border-box;
    font-size: 10px;
    color: #fff;
    text-align: center;
    border: none;
  }
  .sp_btm_nav .n_request a,
  .sp_btm_nav .n_reserve a,
  .sp_btm_nav .n_online a { color: #fff; }

  .sp_btm_nav li[class*="n_"]::before {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    content: "";
  }
  .sp_btm_nav li.n_outline::before {
    content: url(../img/sp_outline.svg);
    width: 20px;
    height: 20px;
    top: 10px;
  }
  .sp_btm_nav li.n_request::before {
    content: url(../img/sp_req.svg);
    width: 28px;
    height: 23px;
    top: 12px;
    left: 52%;
  }
  .sp_btm_nav li.n_online::before {
    content: url(../img/sp_online.svg);
    width: 24px;
    height: 23px;
    top: 10px;
  }
  .sp_btm_nav li.n_reserve::before {
    content: url(../img/sp_res.svg);
    width: 15px;
    height: 18px;
    top: 10px;
  }
  .sp_btm_nav li.n_tel::before {
    content: url(../img/sp_tel.svg);
    width: 27px;
    height: 27px;
    top: 8px;
  }
  .sp_btm_nav li.n_menu::before {
    content: url(../img/sp_menu.svg);
    width: 24px;
    height: 17px;
    top: 13px;
  }
  .sp_btm_nav li.n_map::before {
    content: url(../img/sp_map.svg);
    width: 16px;
    height: 21px;
    top: 12px;
  }



/*===================================
content_Wrap
===================================*/

  .brand_Wrap {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 40px;
  }
  .brand_Wrap a {
    aspect-ratio: 375/175;
  }
  .brand_Wrap a::before {
    aspect-ratio: 375/175;
  }
  .brand_Wrap a::after {
    aspect-ratio: 375/175;
  }
  .brand_LinkBtn--inner .btn_ttl {
    font-size: 18px;
  }
  .brand_LinkBtn--inner .btn_copy {
    font-size: 13px;
  }
  .brand_LinkBtn--inner .btn_more {
    font-size: 12px;
  }
  .brand_LinkBtn--inner .btn_more::after {
    width: 20px;
  }
  .brand_Wrap a:hover::before {
    transform: scale(1.0);
  }
  .brand_Wrap a:hover::after {
    opacity: .6;
  }

  .modal__content {
    padding: 0 0;
    width: 100%;
  }
  .modal__content video {
    width: 100%;
  }
  .modal__content a {
    top: -64px;
    left: auto;
    right: -5px;
    font-size: 50px;
    border: none;
    padding: 0;
    transform: none;
  }

/*===================================
footer
===================================*/
  footer {
    margin: 0 0 30px;
    padding: 0 0 30px;
  }
  footer .gNav {
    border-top: none;
    border-bottom: none;
  }
  footer .gNav .nav_List {
    flex-wrap: wrap;
    font-size: 11px;
    padding: 0;
  }
  footer .gNav .nav_List li {
    width: calc((100% - 1px) / 2);
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #fff;
  }
  footer .gNav .nav_List li:not(:first-child) {
    border-left: none;
  }
  footer .gNav .nav_List li:nth-child(even) {
    border-left: 1px solid #fff;
  }
  footer .gNav .nav_List li a {
    display: block;
    width: 100%;
    padding: 1.5em 0;
    background: #666;
    color: #fff;
  }

  .footer_tel {
    padding: 0 0 40px;
  }
  .footer_tel p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #fff;
  }
  .footer_tel p:last-of-type {
    line-height: 1.6;
  }
  .footer_tel a[href^="tel:"] {
    margin: 10px auto;
    font-size: 40px;
  }
  .footer_tel .entry_Btn {
    margin: 0 auto 30px;
  }

  footer .bg {
    padding: 0 0 0.1px;
  }
  footer .footer_link {
    display: block;
    padding: 30px 0 0;
  }
  footer .footer_link li{
    margin: 0 auto 30px!important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .footer_link li:nth-child(1) img{ width: calc(165px * 1.25);}
  footer .footer_link li:nth-child(2) img{ width: calc(151px * 1.25);}
  footer .footer_link li:nth-child(3) img{ width: calc(168px * 1.25);}
  footer .footer_link li p {
    margin: 0 20px 3% 0;
  }

  footer .footer_Bnr {
    max-width: 440px;
    width: 80%;
    margin: 0 auto 30px;
  }
  footer .copyright p { font-size: 10px;}


  /* --------------------------------
  pagetop
  -------------------------------- */
  #pageTop {
    right: 0;
    bottom: 60px;
/*    padding: 20px 20px 17px;*/
    padding: 15px 15px 12px;
  }

  /*===================================
  下層ページ
  ===================================*/
  .more--btn {
    font-size: 11px;
    padding: 0.5em 1.25em;
  }
  .more--btn .arw {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    transition: .3s;
  }
  .viewMore--btn_box {
    background: #bbb28c;
    color: #fff;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 20px;
    margin: 0 auto;
    padding: 10px 10px 10px 15px;
    letter-spacing: 0.1em;
    font-size: 13px;
  }
  .viewMore--btn_box .more--btn {
    margin: 0;
  }

  .ftr_notes .notes_Wrap {
    padding: 50px 0;
  }
  .notes_Wrap li {
    font-size: 10px;
  }
  .notes_Wrap li::before {
    font-size: 10px;
  }
/*  注釈下バナー  */
  .p_bnr {
		margin-bottom: 30px;
	}
	.p_bnr a {
		width: 100%;
		margin-bottom: 20px;
	}
  .p_bnr a:last-child {
		margin-bottom: 00px;
	}
}
