@charset "UTF-8";

html, body {
  width: 100%;
}
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  position: relative;
  font-size: 16px;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img{
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
a:hover > img {
  opacity: 0.8;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.br_pc{
  display: block;
}
.br_sp{
  display: none;
}
@media screen and (max-width: 896px) {
  .br_pc{
    display: none;
  }
  .br_sp{
    display: block;
  }
}

/* ---------------------------------
 zen-old-mincho : google font
--------------------------------- */
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

/* ---------------------------------
 object_fit_img
--------------------------------- */
img.object_fit_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

/* ---------------------------------
 wrapper
--------------------------------- */
.wrapper {
  width: 100%;
  max-width:100%;
  margin: 0 auto;
}

/* ---------------------------------
 main
--------------------------------- */
main{
  width: 100%;
}

/* ---------------------------------
 header & navi
--------------------------------- */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding: 5px 30px;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

@media (min-width: 1025px) {
  header {
    padding: 10px 30px;
  }
  header.change-color {
    /* background-color: rgba(255,255,255,0.6); */
    background-color: #fff;
  }
  header.change-color .menu-link{
    color: #000;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: 15px 30px;
  }
}
.header-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
.header-logo {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0;
}
.header-logo .header-logo_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-logo .header-logo_area h1{
  width: 50%;
  max-width: 200px;
}
.header-logo .header-logo_area .logo_nishigaki{
  width: 27%;
  max-width: 200px;
  margin-left: 3%;
}
.header-logo .header-logo_area .logo_br{
  width: 17%;
  max-width: 200px;
  margin-left: 3%;
}
@media (max-width: 768px) and (orientation: landscape) {
  .header-logo {
    width: 30%;
  }
}
.logo-link {
  display: block;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
.logo-link:hover {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding-right: clamp(30px, 8vw, 60px);
    padding-bottom: clamp(30px, 8vw, 60px);
    padding-left: clamp(30px, 8vw, 60px);
    transition-duration: 300ms;
    transform: translateX(200%);
    overflow: auto;
    /* ナビメニューの背景色を変えたい時 */
    background-color: rgba(0, 0, 0, 0.7);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
}
@media (min-width: 1025px) {
  .nav-menu {
    padding-top: 0 !important;
  }
}
@media (min-width: 1025px) {
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: clamp(20px, 2.0833333333333335vw, 40px);
  }
}

@media (max-width: 1024px) {
  .menu-item {
    /* 各ナビメニューの下線を変えたい時 */
    border-style: none;
  }
}

.menu-link {
  display: block;
  color: #fff;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.menu-link:hover {
  opacity: 0.6;
}

.nav-menu.active .menu-link {
  color: #fff;
}

@media (max-width: 1024px) {
  .menu-link {
    font-size: clamp(14px, 1.0416666666666667vw, 20px);
    padding-top: clamp(10px, 2.6666666666666665vw, 20px);
    padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
    text-align: center;
    /* ナビメニューの文字色を変えたい時 */
    color: #000;
  }
}

@media (min-width: 1025px) {
  .menu-link {
    font-size: clamp(14px, 1.0416666666666667vw, 20px);
  }
}
.hamburger-button {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: clamp(13px, 3.466666666666667vw, 26px);
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}
.hamburger-lines {
  position: relative;
  width: clamp(40px, 10.666666666666666vw, 90px);
  height: clamp(13px, 3.466666666666667vw, 26px);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
@media (max-width: 1024px) {
  .hamburger-lines {
    width: clamp(40px, 10.666666666666666vw, 90px);
    height: clamp(13px, 3.466666666666667vw, 26px);
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .hamburger-lines {
    width: clamp(30px, 7.496251874062969vw, 50px);
    height: clamp(15px, 2.998500749625187vw, 20px);
  }
}
.hamburger-lines.active {
  height: 1px;
}
.hamburger-lines .line {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: clamp(1px, .26666666666666666vw, 2px);
  margin: auto;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  /* ハンバーガーメニューの線の色を変えたい時 */
  background-color: #fff;
}
.hamburger-lines.active .line {
  /* ハンバーガーメニューオープン時の線の色を変えたい時 */
  background-color: #fff;
}
.hamburger-lines .line:nth-child(1) {
  top: 0;
}
.hamburger-lines .line:nth-child(2) {
  bottom: 0;
}
@media (min-width: 1025px) {
  /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
  .hamburger-button {
    display: none;
  }
}

/* ---------------------------------
 mainVisual
--------------------------------- */
#mainVisual{
  width: 100%;
  position: relative;
  background: #555;
  overflow: hidden;
}
/* swiper */
@-webkit-keyframes zoomUp {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}
@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}
#mainVisual .swiper-container{
  position: relative;
}
#mainVisual .swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height:100vh;
}
#mainVisual .swiper-slide-active .swiper-img,
#mainVisual .swiper-slide-duplicate-active .swiper-img,
#mainVisual .swiper-slide-prev .swiper-img { /* ８秒かけて拡大させる */
    -webkit-animation: zoomUp 8s linear 0s;
    animation: zoomUp 8s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
#mainVisual .swiper-img {
  background-size: cover; 
  background-position: center center;
  height:100vh;
}
#mainVisual .swiper-text{
  position: absolute;
  z-index: 10;
  color: #fff;
  width: 80%;
  top: 50%;
  left: 10%;
}
#mainVisual .swiper-text h2.cover_catchcopy{
  font-size: 2.0rem;
  text-shadow: #000 0 0 10px,#000 0 0 10px;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}
#mainVisual .swiper-text h3.cover_name{
  text-shadow: #000 0 0 10px,#000 0 0 10px;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}
#mainVisual .swiper-text a.cover_more{
  display: block;
  width: 50%;
  max-width: 150px;
  text-align: center;
  background-color: rgba(0,0,0,0.8);
  padding: 8px 24px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
}
#mainVisual .swiper-text a.cover_more:hover{
  background-color: rgba(0,0,0,0.5);
}
@keyframes zoomUp { /* ズームアップで1.15倍させる指定 */
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
#mainVisual .swiper-slide-active>div.cover,
#mainVisual .swiper-slide-duplicate-active>div.cover,
#mainVisual .swiper-slide-prev>div.cover{
  animation: zoomUp 10s linear 0s 1 normal both;
}
#mainVisual .swiper-pagination-bullet {
  background-color: black;
}
@media screen and (max-width: 896px) {
  #mainVisual{
    height:700px;
  }
  #mainVisual .swiper-slide {
    height:700px;
  }
  #mainVisual .swiper-img {
    height:700px;
  }
  #mainVisual .swiper-text{
    width: 90%;
    top: auto;
    bottom:50px;
    left: 5%;
  }
  #mainVisual .swiper-text h2.cover_catchcopy{
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
  }
  #mainVisual .swiper-text h3.cover_name{
    font-size: 1.0rem;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
  }
}

/* ---------------------------------
 about
--------------------------------- */
#about{
  width: 100%;
  background-color: #151515;
  background-image: url('../img/about_bg.png');
  background-attachment: fixed;
  background-position: top left;
  background-repeat:no-repeat;
  background-size: 100% auto;
}
#about .about_inner{
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
  color: #fff;
}
#about .about_en{
  color: #CC4047;
  font-weight: bold;
  margin-bottom: 30px;
}
#about h2.about_h2{
  font-size: 2.0rem;
  margin-bottom: 50px;
}
#about h2.about_h2 span.h2_span{
  width: auto;
  position: relative;
}
#about h2.about_h2 span.br_span{
  margin-left: 10px;
}
#about h2.about_h2 span.h2_span::before{
    content: "";
    position: absolute;
    top: 0px;
    left: -120px;
    width: 105px;
    height: 47px;
    background-image: url('../img/about_h2_left.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
#about h2.about_h2 span.h2_span::after{
    content: "";
    position: absolute;
    top: 0px;
    right: -120px;
    width: 105px;
    height: 47px;
    background-image: url('../img/about_h2_right.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
#about p{
  line-height: 2.5;
}
#about .h2_sp_frame{
  display: none;
}
@media screen and (max-width: 896px) {
  #about .about_inner{
    padding: 75px 0;
  }
  #about h2.about_h2{
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  #about h2.about_h2 span.br_span{
    margin-left: 0;
    display: block;
  }
  #about h2.about_h2 span.h2_span::before{
      content: none;
  }
  #about h2.about_h2 span.h2_span::after{
      content: none;
  }
  #about .h2_sp_frame{
    display: block;
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
  #about .h2_sp_frame img{
    width: 40%;
  }
  #about p{
    line-height: 1.7;
  }
}

#about .about_list{
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
#about .about_list .about_list_box{
  width: 48%;
  margin: 30px 0;
  height: 400px;
  background-color: #555;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
#about .about_list .about_list_box img {
  transition: transform .6s ease;
}
#about .about_list .about_list_box:hover img {
  transform: scale(1.1);
}
#about .about_list .about_list_box p {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  z-index: 2;
  font-weight: bold;
  font-size: 1.3rem;
}
/* マスク */
#about .about_list .about_list_box::before {
  background: rgba(0, 0, 0, .5);
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease;
  width: 100%;
  z-index: 1;
}
#about .about_list .about_list_box:hover::before {
  opacity: 1;
}
#about .about_list .about_list_box::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
}

@media screen and (max-width: 896px) {
  #about .about_list{
    margin-top: 50px;
  }
  #about .about_list .about_list_box{
    width: 100%;
    margin: 15px 0;
    height: 200px;
  }
  #about .about_list .about_list_box p {
    font-size: 1.0rem;
  }
}

/* ---------------------------------
 scene
--------------------------------- */
#scene{
  width: 100%;
  background-color: #F9F6F2;
  padding: 150px 0;
}
#scene .scene_title{
  width: 94%;
  text-align: center;
  margin-bottom: 50px;
}
#scene .scene_title .scene_en{
  color: #CC4047;
  font-weight: bold;
  margin-bottom: 30px;
}
#scene .scene_title h2.scene_h2{
  font-size: 2.0rem;
}
@media screen and (max-width: 896px) {
  #scene{
    padding: 75px 0;
  }
  #scene .scene_title{
    margin-bottom: 30px;
  }
  #scene .scene_title h2.scene_h2{
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

#scene .scene_list_box{
  width: 100%;
  position: relative;
}
#scene .scene_list_mt{
  margin-top: 150px;
}
#scene .scene_list_box .scene_list_img{
  width: 70%;
}
#scene .scene_list_box .scene_list_txt{
  width: 35%;
  padding: 50px;
  min-height: 400px;
  background-color: rgba(255,255,255,0.9);
  position: absolute;
  right: 0;
  bottom: 0;
}
#scene .scene_list_box .scene_list_txt h3{
  width: 100%;
  color: #B58D4B;
  margin: 0 0 15px 0;
  text-align: center;
}
#scene .scene_list_box .scene_list_txt h4{
  width: 100%;
  font-size: 1.7rem;
  margin: 0 0 30px 0;
  text-align: center;
}
#scene .scene_list_box .scene_list_txt p{
  line-height: 2.0;
}
@media screen and (max-width: 1200px) {
  #scene .scene_list_mt{
    margin-top: 100px;
  }
  #scene .scene_list_box .scene_list_txt{
    width: 45%;
    padding: 30px;
    min-height: initial;
  }
}
@media screen and (max-width: 1000px) {
  #scene .scene_list_mt{
    margin-top: 50px;
  }
  #scene .scene_list_box .scene_list_img{
    width: 100%;
  }
  #scene .scene_list_box .scene_list_txt{
    width: 100%;
    padding: 20px;
    min-height: initial;
    position: initial;
  }
  #scene .scene_list_box .scene_list_txt h3{
    margin: 0 0 10px 0;
  }
  #scene .scene_list_box .scene_list_txt h4{
    width: 100%;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
  }
  #scene .scene_list_box .scene_list_txt p{
    line-height: 1.7;
  }
}

/* ---------------------------------
 lineup
--------------------------------- */
#lineup{
  width: 100%;
  background-color: #151515;
  padding: 150px 0;
  overflow: hidden;
}
#lineup .lineup_inner{
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
#lineup .lineup_en{
  color: #CC4047;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
#lineup h2.lineup_h2{
  font-size: 2.0rem;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 896px) {
  #lineup{
    padding: 75px 0;
  }
  #lineup h2.lineup_h2{
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
/* lineup_box ----------- */
#lineup .lineup_box{
  width: 100%;
  padding: 40px 40px 40px 40px;
  background-color: #fff;
  margin-bottom: 100px;
}
/* ページ内リンク位置調整用 */
.lineup_margin{
  width: 100%;
  padding-top: 90px;
  margin-top: -90px;
}
#lineup .lineup_box .lineup_header{
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}
.lineup_name{
  width: 60%;
}
.lineup_name h3{
  text-align: left;
  margin: 0;
}
.lineup_menu{
  width: 40%;
}

/* lineup_tab ------------ */
.lineup_tab01, .lineup_tab02, .lineup_tab03, .lineup_tab04 {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin: 0 !important;
  list-style: none;
  padding-inline-start: 0;
}
.lineup_tab01__item, .lineup_tab02__item, .lineup_tab03__item, .lineup_tab04__item {
  flex: 1;
  font-weight: bold;
}
.lineup_tab01__link, .lineup_tab02__link, .lineup_tab03__link, .lineup_tab04__link {
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 10px;
}
.lineup_tab01__link:before, .lineup_tab02__link:before, .lineup_tab03__link:before, .lineup_tab04__link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background-color: #CC4047;
  transition: all 0.4s ease-out;
}
.lineup_tab01__link:after, .lineup_tab02__link:after, .lineup_tab03__link:after, .lineup_tab04__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #CC4047;
  transition: all 0.4s ease-out;
}
.lineup_tab01__link.on:before, .lineup_tab02__link.on:before, .lineup_tab03__link.on:before, .lineup_tab04__link.on:before {
  width: 50%;
}
.lineup_tab01__link.on:after, .lineup_tab02__link.on:after, .lineup_tab03__link.on:after, .lineup_tab04__link.on:after {
  width: 50%;
}
.lineup_tab01-body, .lineup_tab02-body, .lineup_tab03-body, .lineup_tab04-body {
  width: 100%;
}
.lineup_tab01-body__item, .lineup_tab02-body__item, .lineup_tab03-body__item, .lineup_tab04-body__item {
  width: 100%;
  margin: 30px 0;
  /* display: none; */
  visibility: hidden;
  height: 0;
}
.lineup_tab01-body__item.on, .lineup_tab02-body__item.on, .lineup_tab03-body__item.on, .lineup_tab04-body__item.on {
   /* display: block; */
  visibility: visible;
  height: auto;
}
@media screen and (max-width: 896px) {
  #lineup .lineup_box{
    padding: 20px;
    margin-bottom: 50px;
  }
  .lineup_name{
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: #778ca3 solid 1px;
  }
  .lineup_menu{
    width: 100%;
  }
}

/* tab_facility ----------- */
.tab_facility_inner{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}
.tab_facility_inner .tab_facility_photo{
  width: 50%;
}
.tab_facility_inner .tab_facility_item{
  width: 50%;
  padding-left: 5%;
}
.tab_facility_inner .tab_facility_item h4.facility_catch{
  width: 100%;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}
table.facility_table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: solid 1px #778ca3;
}
table.facility_table th, table.facility_table td {
 padding: 15px 10px;
 border-bottom: solid 1px #778ca3;
 text-align: left;
}
table.facility_table th{
  width: 20%;
}
table.facility_table td{
  width: 80%;
}

@media screen and (max-width: 896px) {
  .tab_facility_inner .tab_facility_photo{
    width: 100%;
  }
  .tab_facility_inner .tab_facility_item{
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  table.facility_table th{
    width: 30%;
  }
  table.facility_table td{
    width: 70%;
  }
}

/* tab_room ----------- */
.tab_room_inner{
  width: 100%;
}
.tab_room_inner .tab_room_box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  margin-bottom: 50px;
  background-color: #F9F6F2;
  padding: 40px;
}
.tab_room_inner .tab_room_box .tab_room_photo{
  width: 50%;
}
.tab_room_inner .tab_room_box .tab_room_item{
  width: 50%;
  padding-left: 5%;
}
.tab_room_inner .tab_room_box .tab_room_item h5.room_name{
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 896px) {
  .tab_room_inner .tab_room_box{
    padding: 20px;
  }
  .tab_room_inner .tab_room_box .tab_room_photo{
    width: 100%;
  }
  .tab_room_inner .tab_room_box .tab_room_item{
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

/* swiper_container --------------- */
.swiper_container{
  width: 100%;
}
.swiper_container .swiper {
  width: 100%;
}
.swiper_container .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper_container .swiper-slide-thumb-active{
  opacity: .6;
}
.swiper_container .swiper-button-next,
.swiper_container .swiper-button-prev{
  color:#fff;
  --swiper-navigation-size: 22px;
}

/* lineup_footer -------------- */
#lineup .lineup_box .lineup_footer{
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#lineup .lineup_box .lineup_footer .lineup_footer_left{
  width: 48%;
}
#lineup .lineup_box .lineup_footer .lineup_footer_left a.more_hp{
  width: 100%;
  background-color: #555;
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 20px;
  background-color: #F9F6F2;
  border: 1px solid #000;
  position: relative;
}
#lineup .lineup_box .lineup_footer .lineup_footer_left a.more_hp::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #000;
}
#lineup .lineup_box .lineup_footer .lineup_footer_left a.more_hp:hover {
	background-color: #000;
  color: #fff;
	border: 1px solid #333;
  opacity: 1;
}
#lineup .lineup_box .lineup_footer .lineup_footer_left a.more_hp:hover::after {
	border-color: #fff #fff transparent transparent;
}
#lineup .lineup_box .lineup_footer p.hp_note{
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right{
  width: 48%;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right a.more_reserve{
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(90deg, #5C1B1B, #C23939);
  position: relative;
  color: #fff;
  position: relative;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right a.more_reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #1a0404, #801a1a);
  opacity: 0;
  transition: 0.3s;
  border-radius: 20px;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right a.more_reserve::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right a.more_reserve:hover::before {
  opacity: 1;
}
#lineup .lineup_box .lineup_footer .lineup_footer_right a.more_reserve:hover::after {
	border-color: #fff #fff transparent transparent;
}

@media screen and (max-width: 896px) {
  #lineup .lineup_box .lineup_footer .lineup_footer_left{
    margin-top: 15px;
    width: 100%;
  }
  #lineup .lineup_box .lineup_footer .lineup_footer_right{
    width: 100%;
  }
  #lineup .lineup_box .lineup_footer .lineup_footer_left p.hp_note{
    font-size: 0.7rem;
  }
}

/* ---------------------------------
 footer
--------------------------------- */
footer{
  width: 100%;
  margin: 0 auto;
}
footer .footer_inner{
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
footer .footer_inner .footer_logo{
  width: 40%;
}
footer .footer_inner .footer_menu{
  width: 60%;
}
footer .footer_inner .footer_logo .footer_logo_img {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer_inner .footer_logo .footer_logo_img img{
  width: 100%;
}
footer .footer_inner .footer_logo .footer_logo_img .f_logo_mitsubishi{
  width: 44%;
}
footer .footer_inner .footer_logo .footer_logo_img .f_logo_nishigaki{
  width: 30%;
  margin-left: 3%;
}
footer .footer_inner .footer_logo .footer_logo_img .f_logo_br{
  width: 20%;
  margin-left: 3%;
}
footer .footer_inner .footer_logo .footer_operator{
  width: 100%;
  margin-top: 30px;
  font-size: 0.8rem;
}
footer .footer_inner .footer_menu ul.footer_nav{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding-left: 0;
}
footer .footer_inner .footer_menu ul.footer_nav li{
  list-style: none;
  margin: 0px 20px;
  font-weight: bold;
}
footer .footer_inner .copy{
  width: 100%;
  margin-top: 30px;
  text-align: center;
  font-size: 0.7rem;
}

@media screen and (max-width: 896px) {
  footer .footer_inner{
    width: 94%;
    padding: 25px 0 10px 0;
  }
  footer .footer_inner .footer_logo{
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_mitsubishi{
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_mitsubishi img{
    width: 70%;
  }
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_nishigaki{
    width: 47%;
    margin-left: 0;
    margin-right: 3%;
    text-align: right;
  }
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_br{
    width: 47%;
    text-align: left;
  }
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_nishigaki img,
  footer .footer_inner .footer_logo .footer_logo_img .f_logo_br img{
    width: 70%;
  }
  footer .footer_inner .footer_logo .footer_operator{
    margin-top: 20px;
  }
  footer .footer_inner .footer_menu{
    width: 100%;
  }
  footer .footer_inner .footer_menu ul.footer_nav{
    justify-content: center;
  }
}
/* 250709 add -------------- */
/* PCとSPで表示される文字を変える */
.pc_view{
  display: inline;
}
.sp_view{
  display: none;
}
@media screen and (max-width: 896px) {
  .pc_view{
    display: none;
  }
  .sp_view{
    display: inline;
  }
}