@charset "UTF-8";

body {
  font-feature-settings: "palt" 1;
}

.sp {
  display: none;
}

.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pos {
  position: relative;
}

.cap_txt {
  position: absolute;
  bottom: 6px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.cap_R {
  right: 10px;
}

.cap_L {
  left: 10px;
}

.cap_W {
  color: #fff;
}

.cap_B {
  color: #000;
}

.cap_ShaB {
  text-shadow: 0 0 5px #000;
}

.cap_ShaW {
  text-shadow: 0 0 5px #fff;
}

.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

img {
  width: 100%;
}

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

.inner_1000 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner_700 {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}


.inner_550 {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}

.blue {
  color: #1b4673;
}

.din {
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.16em;
}

.en {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

/*===========
inview_fade
===========*/
.fadeIn {
  opacity: 0;
  /* transform: translate(0, 50%); */
  transform: translate(0, 10%);
  transition: 1s;
}

.fadeIn.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  /* transition: 2s; */
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* normal_fade */
.fade_Box {
  transition: 1s;
  opacity: 0;
}

.fade_Box.animated {
  opacity: 1;
}

/* load_fade */
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 3s;
}

/* header */
header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 6px 14px 0px rgba(109, 162, 189, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header.scroll {
  background: rgba(255, 255, 255, 0.7);
}

.head_Block {
  justify-content: space-between;
  align-items: flex-end;
  /* align-items: center; */
}

.head_Block h1 {
  width: 341px;
  margin: 0 auto 0 30px;
  box-sizing: border-box;
}

.head_Block h1 a {
  display: block;
  width: 100%;
}

.h_nav {
  justify-content: flex-end;
  align-items: center;
}

.h_nav li {
  height: 100%;
  margin-left: 20px;
}

.h_nav li.res {
  margin-left: 1px;
}

.h_nav p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.h_nav li.hnav00 {
  padding: 16px 0;
}

.h_nav li.hnav00 a {
  display: block;
  max-width: 240px;
  width: 100%;
}

.h_nav li.hnav01 {
  display: inline-block;
  padding: 11px 0;
}

.h_nav li.hnav01 a {
  display: block;
  width: 100%;
  padding: 8px 0;
  transition: 0.3s;
  text-align: right;
}

.h_nav li.hnav01 p {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.h_nav .req a {
  display: block;
  position: relative;
  width: 120px;
  height: 80px;
  /* color: #f2dfaf; */
  background-color: #263666;
  box-sizing: border-box;
  transition: 0.3s;
  text-align: right;
}

.h_nav .res a {
  display: block;
  position: relative;
  width: 120px;
  height: 80px;
  color: #fff;
  background-color: #7c191d;
  box-sizing: border-box;
  transition: 0.3s;
}

.h_nav .req a p,
.h_nav .res a p {
  display: block;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.h_nav a:hover {
  opacity: 0.6;
}

#gnav {
  width: 100%;
}

.gnav_list {
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
}

.gnav_list li {
  position: relative;
  /* width: calc(100% / 10); */
  font-size: 14px;
  line-height: 1;
}

.gnav_list li::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}

.gnav_list li:first-child::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}

.gnav_list a {
  display: block;
  position: relative;
  padding: 14px 20px;
  text-align: center;
  box-sizing: border-box;
  transition: 0.3s;
}

.gnav_list a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 3px;
  background: #263666;
  opacity: 0;
  transition: 0.3s;
}

.gnav_list a:hover::before {
  width: 100%;
  opacity: 1;
}

.gnav_list li.redev_link {
  position: relative;
}

.gnav_list li.redev_link ul {
  position: absolute;
  left: 0;
  height: 1px;
  bottom: 0;
  margin-top: -1px;
  width: 300%;
  opacity: 0;
  transition: 0.3s;
  background: #1a2346;
  pointer-events: none;
}

.gnav_list li.redev_link ul li {
  color: #fff;
}

.gnav_list li.redev_link ul li:first-child {
  border-bottom: 1px solid #fff;
}

.gnav_list li.redev_link ul li:nth-child(2):before {
  display: none;
}

.gnav_list li.redev_link:hover {
  /*cursor: pointer;*/
}

.gnav_list li.redev_link:hover ul {
  opacity: 1;
  border: 1px solid #fff;
  height: auto;
  bottom: inherit;
  pointer-events: all;
}

.gnav_list .redev_link a.redev_main_link_none {
  pointer-events: none;
}

.gnav_list .redev_link a::before {
  display: none;
}

.gnav_list .redev_link ul li a::before {
  display: none !important;
}

.gnav_list li:nth-child(2) ul li {
  transition: 0.3s;
}

.gnav_list li:nth-child(2) ul li:hover {
  background: #5d939f;
}

/* カレント設定 */
#indexP .gnav_list li:nth-child(1) a::before,
#concept .gnav_list li:nth-child(2) a::before,
#location .gnav_list li:nth-child(3) a::before,
#design .gnav_list li:nth-child(4) a::before,
#landplan .gnav_list li:nth-child(5) a::before,
#plan .gnav_list li:nth-child(6) a::before,
#modelroom .gnav_list li:nth-child(7) a::before,
#equipment .gnav_list li:nth-child(8) a::before,
#smart .gnav_list li:nth-child(9) a::before,
#brand .gnav_list li:nth-child(10) a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: #263666;
  opacity: 1;
  transition: 0.3s;
}

/* newアイコン */
/* .gnav_list li:nth-child(5)::before,
.gnav_list li:nth-child(6)::before,
.gnav_list li:nth-child(7)::before,
.gnav_list li:nth-child(8)::before,
.gnav_list li:nth-child(9)::before {
  display: inline-block;
  content: "NEW";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 5px;
  color: #fff;
  background-color: #7c0000;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  box-sizing: border-box;
} */

/* 非表示設定 */
/* .gnav_list li:nth-child(5) a,
.gnav_list li:nth-child(7) a,
.gnav_list li:nth-child(8) a,
.gnav_list li:nth-child(9) a {
  pointer-events: none;
  opacity: 0.3;
} */

#sp_Menu {
  display: none;
}

/* footer */
footer {
  width: 100%;
  background: #f7f5ef;
}

.company_Area {
  padding: 80px 0 40px 0;
}

.company_Area > .flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.company_Block {
  justify-content: center;
  align-items: flex-start;
  margin: 30px auto 0;
}

.company_Block a {
  display: block;
  width: 100%;
  height: 100%;
}

.company_Block p {
  font-size: 12px;
}

.company_Block span {
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid #000;
  font-size: 10px;
  text-align: center;
  box-sizing: border-box;
}

.com01 {
  max-width: 451px;
}

.com01 p {
  line-height: 1.7;
}

.com01 p:not(:first-of-type) {
  margin-top: 8px;
}

.com01 span {
  margin: 5px 0 0;
}

.com02 {
  max-width: 281px;
  width: 90%;
  margin-right: 30px;
}

.com02 p {
  opacity: 0;
}

.com03 {
  max-width: 220px;
  width: 90%;
}

.com03 p {
  padding: 0 0 8px;
}

.foot_Tel {
  width: 100%;
  text-align: center;
}

.foot_Tel h4 {
  padding: 0 0 5px;
  font-size: 16px;
  line-height: 1;
}

.foot_Tel .flex {
  justify-content: center;
  align-items: center;
}

.foot_Tel a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.foot_Tel a i {
  display: block;
  width: 48px;
  padding-top: 18px;
  margin-right: 0px;
}

.foot_Tel a p {
  font-size: 50px;
  line-height: 1;
}

.foot_Tel .flex > p {
  margin-left: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.nav_Block {
  width: 100%;
  padding: 10px 0;
  background-color: #263666;
}

#foot_Nav .gnav_list {
  justify-content: center;
  align-items: center;
  width: 96%;
  margin: 0 auto;
}

#foot_Nav .gnav_list li {
  position: relative;
  color: #fff;
  width: auto;
  font-size: 12px;
  line-height: 1;
}

#foot_Nav .gnav_list li::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

#foot_Nav .gnav_list li:first-child::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

#foot_Nav .gnav_list a {
  display: block;
  position: relative;
  padding: 0 15px;
  text-align: center;
  box-sizing: border-box;
  transition: 0.3s;
}

#foot_Nav .gnav_list a::before {
  content: none;
}

/* カレント設定 */
#indexP #foot_Nav .gnav_list li:nth-child(1) a::before,
#concept #foot_Nav .gnav_list li:nth-child(2) a::before,
#location #foot_Nav .gnav_list li:nth-child(3) a::before,
#design #foot_Nav .gnav_list li:nth-child(4) a::before,
#landplan #foot_Nav .gnav_list li:nth-child(5) a::before,
#plan #foot_Nav .gnav_list li:nth-child(6) a::before,
#modelroom #foot_Nav .gnav_list li:nth-child(7) a::before,
#equipment #foot_Nav .gnav_list li:nth-child(8) a::before,
#smart #foot_Nav .gnav_list li:nth-child(9) a::before,
#brand #foot_Nav .gnav_list li:nth-child(10) a::before {
  content: none;
}

/* newアイコン */
#foot_Nav .gnav_list li::before {
  content: none;
}

.copyright {
  display: block;
  width: 100%;
  padding: 20px 0 10px;
  /* border-top: 1px solid rgba(255, 255, 255, .5); */
  color: #333;
  font-size: 10px;
  text-align: center;
}

/* 注釈 */
.att_area {
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  background-color: #fff;
}

dl.yokoku {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: #000;
  font-size: 12px;
}

dl.yokoku dt {
  width: 12em;
  padding: 5px 20px;
  margin: 0 20px 0 0;
  color: #000;
  border: 1px solid #000;
  line-height: 2em;
  letter-spacing: 2px;
  text-align: center;
  box-sizing: border-box;
}

dl.yokoku dd {
  width: calc(100% - 12em);
  color: #000;
  line-height: 1.5;
  text-align: left;
}

ul.att {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 0 0 1em;
  color: #000;
  list-style-type: "※";
  box-sizing: border-box;
}

ul.att li {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.page_top {
  position: fixed;
  width: 60px;
  height: 60px;
  font-size: 15px;
  background-color: #263666;
  color: #fff;
  right: 20px;
  bottom: 50px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
}

.page_top:hover {
  opacity: 0.7;
}

.req_res_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.req_res_btn a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 300px;
  max-width: 90%;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 20px 10px;
  margin: 0 10px 0 10px;
  transition: 0.3s;
}

.req_res_btn a.request {
  background-color: #1a2346;
}

.req_res_btn a.reserve {
  background-color: #7c191d;
}

.req_res_btn a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 1400px) {
  .gnav_list li {
    font-size: 14px;
  }
  #foot_Nav .gnav_list li {
    font-size: 11px;
  }
  #foot_Nav .gnav_list a {
    padding: 0 8px;
  }
}

@media only screen and (max-width: 1180px) and (min-width: 1025px) {
  .gnav_list li {
    font-size: 14px;
  }

  .gnav_list a {
    padding: 14px 15px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 601px) {
  /* header */
  header {
    background: #fff;
  }

  .h_nav li {
    margin-left: 15px;
  }

  .h_nav p {
    font-size: 12px;
  }

  .h_nav li.hnav00 {
    padding: 0;
  }

  .h_nav li.hnav00 a {
    max-width: 180px;
  }

  .h_nav li.hnav01 {
    padding: 0;
  }

  .h_nav li.hnav01 a {
    padding: 5px 0;
  }

  .h_nav .req a {
    width: 90px;
  }

  .h_nav .res a {
    width: 90px;
  }

  .gnav_list {
    flex-wrap: wrap;
    width: 100%;
  }

  .gnav_list li {
    width: calc(100% / 5);
    font-size: 14px;
  }

  .gnav_list li:first-child::before {
    content: none;
  }

  .gnav_list li:nth-child(5)::after,
  .gnav_list li:nth-child(10)::after {
    content: none;
  }

  .gnav_list a {
    padding: 14px 0;
  }

  #foot_Nav .gnav_list {
    flex-wrap: wrap;
    width: 98%;
    /* padding-bottom: 20px; */
  }

  #foot_Nav .gnav_list li {
    width: calc(100% / 6);
    margin-bottom: 15px;
    font-size: 11px;
  }

  #foot_Nav .gnav_list li:nth-of-type(n + 7) {
    margin-bottom: 0;
  }

  #foot_Nav .gnav_list li:nth-child(7)::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
  }

  #foot_Nav .gnav_list a {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

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

  /* header */
  header {
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
  }

  header.scroll {
    background: rgba(255, 255, 255, 0.7);
  }

  .head_Block {
    justify-content: center;
  }

  .head_Block h1 {
    width: 70%;
    padding: 10px 0;
    margin: 0 auto 0 10px;
    text-align: center;
    margin: 0 auto;
  }

  .head_Block h1 a {
    display: block;
    width: 100%;
  }

  .h_nav {
    display: none;
  }

  #sp_Menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #90c1d0;
    border-top: 1px solid #fff;
    z-index: 999;
  }

  #sp_Menu .flex {
    justify-content: flex-start;
    align-items: flex-start;
  }

  #sp_Menu li {
    position: relative;
    width: calc(100% / 3);
    height: 60px;
    border-right: 1px solid #fff;
    box-sizing: border-box;
  }

  #sp_Menu li:last-child {
    border-right: none;
  }

  #sp_Menu i {
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 28px;
    transform: translateX(-50%);
  }

  #sp_Menu p {
    display: block;
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 100%;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
  }

  .sp_Menu01 {
    color: #fff;
    background-color: #263666;
  }

  .sp_Menu02 {
    color: #fff;
    background-color: #7c191d;
  }

  .sp_Menu03 {
    color: #fff;
    background-color: #417275;
  }

  .sp_Menu04 {
    color: #fff;
    background-color: #2d5052;
  }

  .sp_Menu04 > div {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 24px;
    height: 20px;
    transform: translateX(-50%);
  }

  .sp_Menu04 span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }

  .sp_Menu04 span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }

  .sp_Menu04 span:nth-of-type(1) {
    top: 0;
  }

  .sp_Menu04 span:nth-of-type(2) {
    top: 9px;
  }

  .sp_Menu04 span:nth-of-type(3) {
    bottom: 0;
  }

  .sp_Menu04.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  .sp_Menu04.active span:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
  }

  .sp_Menu04.active span:nth-of-type(3) {
    opacity: 0;
  }

  #gnav {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
  }

  .gnav_list {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #ddd;
  }

  .gnav_list li {
    width: 50%;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
  }

  .gnav_list li.redev_link .redev_main_link_none {
    border-bottom: 1px solid #ddd;
  }

  .gnav_list li.redev_link ul {
    position: relative;
    opacity: 1;
    height: auto;
    margin-top: 0;
  }

  .gnav_list li.redev_link ul {
    background: #fff;
    color: #000;
  }

  .gnav_list li.redev_link ul {
    width: 100%;
  }

  .gnav_list li.redev_link ul li:first-child {
    border-bottom: 1px solid #ddd;
    border-right: none;
  }

  .gnav_list li:nth-child(2) ul li:nth-child(1),
  .gnav_list li:nth-child(2) ul li:nth-child(2) {
    background: #fff;
    color: #000;
    background: #e6f2f5;
  }

  /* .gnav_list li:nth-child(2) a p {
        font-size: 14px;
    } */

  .gnav_list li:nth-child(2) ul li a p {
    position: relative;
  }

  .gnav_list li:nth-child(2) ul li a p:after {
    position: absolute;
    right: 20px;
    content: "";
    width: 7px;
    height: 7px;
    top: 4px;
    border-top: solid 1px #5f5f5f;
    border-right: solid 1px #5f5f5f;
    transform: rotate(45deg);
  }

  .gnav_list li:nth-child(2) ul li a {
    padding: 20px 0;
  }

  .gnav_list li:nth-child(2) ul li:nth-child(2) p {
    font-size: 14px;
  }

  .gnav_list li:nth-child(2) ul li:nth-child(2) p:before {
    content: "";
  }

  .gnav_list li:nth-child(even) {
    border-right: none;
  }

  .gnav_list li:nth-of-type(11),
  .gnav_list li:nth-of-type(12) {
    border-bottom: none;
  }

  .gnav_list li::after {
    content: none;
  }

  .gnav_list li:first-child::before {
    content: none;
  }

  /* .gnav_list li:last-child a p {
        font-size: 0;
    } */

  /* .gnav_list li:last-child a p:before {
        content: "現地案内図";
        font-size: 14px;
    } */

  .gnav_list a {
    display: block;
    position: relative;
    padding: 20px 0;
    text-align: center;
    box-sizing: border-box;
    transition: 0.3s;
  }

  .gnav_list a::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 3px;
    background: #263666;
    opacity: 0;
    transition: 0.3s;
  }

  .gnav_list a:hover::before {
    width: 100%;
    opacity: 1;
  }

  /* newアイコン */
  .gnav_list li::before {
    top: 0 !important;
    left: 0 !important;
    transform: initial !important;
  }

  /* カレント設定 */
  #indexP .gnav_list li:nth-child(1) a::before,
  #concept .gnav_list li:nth-child(2) a::before,
  #location .gnav_list li:nth-child(3) a::before,
  #design .gnav_list li:nth-child(4) a::before,
  #landplan .gnav_list li:nth-child(5) a::before,
  #plan .gnav_list li:nth-child(6) a::before,
  #modelroom .gnav_list li:nth-child(7) a::before,
  #equipment .gnav_list li:nth-child(8) a::before,
  #smart .gnav_list li:nth-child(9) a::before,
  #brand .gnav_list li:nth-child(10) a::before {
    width: 100%;
  }

  /* footer */
  footer {
    width: 100%;
  }

  .att_area {
    padding: 40px 0;
  }

  .company_Area {
    padding: 40px 0;
  }

  .company_Area > .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .company_Block {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    order: 2;
  }

  .com01 {
    max-width: 288px;
    margin: 0 0 10px;
  }

  .com02 {
    margin: 0 0 20px;
  }

  .com03 p {
    display: none;
  }

  .foot_Tel {
    width: auto;
    order: 1;
  }

  .foot_Tel h4 {
    font-size: 14px;
    line-height: 1.5;
  }

  .foot_Tel .flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: flex-start; */
    text-align: center;
  }

  .foot_Tel a i {
    width: 40px;
    padding-top: 12px;
  }

  .foot_Tel a p {
    font-size: 38px;
    white-space: nowrap;
  }

  .foot_Tel .flex > p {
    font-size: 11px;
    margin: 8px 0 0 0;
  }

  .nav_Block {
    display: none;
    padding: 0 0 80px;
    background-color: #fff;
  }

  #foot_Nav .gnav_list {
    display: none;
  }

  .copyright {
    color: #000;
    border-top: 1px solid #ddd;
    padding: 20px 0 70px;
  }

  .page_top {
    width: 50px;
    height: 50px;
    font-size: 13px;
    bottom: 80px;
    right: 5px;
  }

  dl.yokoku {
    flex-direction: column;
  }

  dl.yokoku dt {
    width: 100%;
    border-right: none;
    border-left: none;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 0 auto 10px;
    padding: 0 0;
    text-align: center;
  }

  dl.yokoku dd {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
  }
  .space {
    padding-left: 0.6em;
  }
  .req_res_btn {
    margin-bottom: 40px;
  }

  .req_res_btn a {
    width: 100%;
    max-width: 70%;
  }

  .req_res_btn a.request {
    margin-bottom: 20px;
  }
}

/* pc電話リンク無効化 */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* 来場予約一旦非表示 */
/* .h_nav li.res {
  display: none;
}
.req_res_btn a.reserve {
  display: none;
}

#sp_Menu li.sp_Menu02 {
  display: none;
} */