@charset "UTF-8";
/*============================================================================================================
	module css
============================================================================================================*/
/*------------------------------------------
	枠内にfitするimg
------------------------------------------*/
.imgFitBox {
  overflow: hidden;
}

.imgFitBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center;';
}

.imgFitBox.contain {
  /* fit = contain */
}

.imgFitBox.contain img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain; object-position: center;';
}

/*------------------------------------------
	hoverで拡大するimg
------------------------------------------*/
.imgLinkBox {
  display: block;
}

@media screen and (min-width: 701px) {
  .imgLinkBox img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .imgLinkBox:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
  }
  .imgLinkBox:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/*------------------------------------------
	スクロールされたらフェードイン
------------------------------------------*/
.fade-in {
  opacity: 0.1;
  -webkit-transform: translate(0, 120px);
  -ms-transform: translate(0, 120px);
  transform: translate(0, 120px);
  -webkit-transition: all 700ms;
  -moz-transition: all 700ms;
  -o-transition: all 700ms;
  transition: all 700ms;
}

.fade-in.fade-in.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (max-width: 700px) {
  .fade-in {
    -webkit-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    transform: translate(0, 80px);
  }
}

/*------------------------------------------
	flex set
------------------------------------------*/
.flex00 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 両端配置 / 高さ100%揃え */
.flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* 両端配置 / 水平中央配置 / 高さ要素次第 */
.flex02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 両端配置 / 上寄せ / 高さ要素次第 */
.flex03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 左寄せ / 上寄せ / 高さ100%揃え */
.flex04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* 左寄せ / 上寄せ / 高さ要素次第 */
.flex05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 左寄せ / 水平中央配置 / 高さ要素次第 */
.flex06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 中央配置 / 高さ100%揃え */
.flex07 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 余白均等配置 / 高さ100%揃え */
.flex08 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* 中央配置 / 水平中央配置 / 高さ要素次第 */
.flex0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*------------------------------------------
	secTit
------------------------------------------*/
.secTit {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
	line-height: 2.2em;
}
.secTit_big {
	font-size:32px;
}

@media screen and (max-width: 700px) {
  .secTit {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*------------------------------------------
	txtLink
------------------------------------------*/

.btnViewD {
	display: inline-block;
	line-height: 20px;
	margin-top: 40px;
}
.btnViewD i{
	width:22px;
	display: inline-block;
	margin-left: 5px;
}

.txtLink {
  display: block;
  font-size: 16px;
  text-align: center;
  /*padding-bottom: 25px;*/
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 700px) {
  .txtLink {
    padding-bottom: 10px;
    border-bottom-width: 1px;
    max-width: 80%;
  }
}

@media screen and (min-width: 701px) {
  .txtLink:hover {
    opacity: 1;
  }
}

.txtLink span {
  display: block;
  font-size: 16px;
  letter-spacing:8px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: -25px;
  position: relative;
  overflow: hidden;
  /*height: 50px;*/
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

@media screen and (max-width: 700px) {
  .txtLink span {
    margin-bottom: -10px;
  letter-spacing:4px;
  }
}

.txtLink span.readmore {
  background: url(../img/txt/PC_btn_01.png) center center no-repeat;
  background-size: auto 13px;
}

.txtLink span.visitwebsite {
  background: url(../img/txt/PC_btn_02.png) center center no-repeat;
  background-size: auto 13px;
}

.txtLink span.visitinstagram {
  background: url(../img/txt/PC_btn_03.png) center center no-repeat;
  background-size: auto 13px;
}

.txtLink span::before {
  background: #283238;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 701px) {
  .txtLink span:hover::before {
    width: calc(100% - 100px);
  }
}


/*------------------------------------------
	pageTopBox
------------------------------------------*/
.pageTopBox {
  padding: 115px 0;
}

.pageTopBox .txtBox {
  max-width: 500px;
  margin: 0 auto;
  text-align: justify;
}


.pageTopBox .txtLink {
  margin-top: 30px;
}

@media screen and (max-width: 700px) {
  .pageTopBox {
    padding: 70px 0 65px;
  }
  .pageTopBox .txtBox {
    padding: 0 25px;
    max-width: none;
  }
  .pageTopBox .txtLink {
    margin-top: 55px;
  }
}

/*------------------------------------------
	informationBox
------------------------------------------*/
.informationBox {
  background: #fff;
  border-top: 1px solid #EDEDED;
  position: relative;
}

.informationBox .imgBox {
  width: 30%;
  width: calc((50% - 480px) + 240px);
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}

.informationBox .informationIn {
  padding: 73px 0 120px;
  width: 75%;
  width: calc(100% - ((50% - 480px) + 240px));
}

.informationBox .secTit {
  text-align: left;
  margin-left: 50px;
  margin: 0 auto 50px 55px;
}

.informationBox .list {
  padding: 22px 0;
  margin: 0 auto 0 55px;
  border-top: 1px solid #EDEDED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.informationBox .list:last-of-type {
  margin-bottom: 65px;
  border-bottom: 1px solid #EDEDED;
}

.informationBox .list .date {
  color: #999;
  font-size: 12px;
  min-width: 125px;
}

.informationBox .list .txt {
  font-size: 12px;
  padding-right: 30px;
}

.informationBox .list a {
  display: block;
  padding-right: 30px;
}

@media screen and (max-width: 700px) {
  .informationBox {
    padding-bottom: 120px;
    border: none;
  }
  .informationBox .imgBox {
    position: static;
    width: 100%;
    margin-bottom: 70px;
  }
  .informationBox .imgBox img {
    height: auto;
    font-family: inherit;
  }
  .informationBox .inner {
    padding: 0;
  }
  .informationBox .informationIn {
    padding: 0;
    width: 100%;
  }
  .informationBox .secTit {
    margin: 0 auto 30px 25px;
  }
  .informationBox .list {
    padding: 12px 0 18px;
    margin-left: 25px;
    display: block;
  }
  .informationBox .list a {
    padding-right: 0;
  }
  .informationBox .list:last-of-type {
    margin-bottom: 52px;
  }
  .informationBox .list .date {
    min-width: 100%;
  }
  .informationBox .list .txt {
    font-size: 13px;
  }
}

/*============================================================================================================
	index
============================================================================================================*/
/*------------------------------------------
	loading
------------------------------------------*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
  background: #000E43;
}

#loader-bg #loader {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
}

#loader-bg #loader img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: flash 2s infinite linear;
  -webkit-animation: flash 2s infinite linear;
  -moz-animation: flash 2s infinite linear;
  width:110px;
}
@media screen and (max-width: 700px) {
#loader-bg #loader img {
  width:80px;
}
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}

/* 初期値 */
.home .header {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.home .btnVideo {
  opacity: 0;
  bottom: -30px;
  position: relative;
}

.home .headerPickup {
  right: 100%;
  opacity: 0;
}

.home .navBtnOpen,
.home .btnReserve {
  opacity: 0;
  right: -90px;
}

.home .spLogo {
  opacity: 0;
  left: -100%;
}

.home .reserveBoxTop .btnWrap.sp {
  opacity: 0;
}

/*------------------------------------------
	you tube
------------------------------------------*/
/* 背景 */
#bgMovie {
  width: 100%;
  height: 100vh;
  top: 0;
  opacity: 0;
  position: absolute;
}

/* popup */
.mfp-fade.mfp-bg.mfp-ready,
.mfp-wrap {
  z-index: 9999 !important;
}

/*------------------------------------------
	header
------------------------------------------*/
.home .header .headerLogo {
  margin: 0 auto 10px;
}

/*------------------------------------------
	btmarea
------------------------------------------*/
.home .btmarea .imgBox {
  position: relative;
}

.home .btmarea .imgBox .logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 700px) {
  .home .btmarea .imgBox .logo {
    width: 70px;
  }
}

.homeBox01, .homeBox02, .homeBox03, .informationBox, .homeBox04, .homeBox05, .gsBox, .accessBox01 {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 700px) {
  .homeBox01, .homeBox02, .homeBox03, .informationBox, .homeBox04, .homeBox05, .gsBox, .accessBox01 {
    width: 100%;
  }
}

/*------------------------------------------
	homeBox01
------------------------------------------*/
.homeBox01 {
  padding: 200px 0 180px;
  position: relative;
}

.homeBox01:before {
  content: "";
  display: block;
  width: 50%;
  height: 63%;
  background: #F7F7F7;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.homeBox01 .imgBox {
  width: 37%;
  float: right;
  text-align: right;
  position: relative;
  z-index: 2;
}

.homeBox01 .txtBox {
  width: 39%;
  float: left;
  margin: -10px auto 0 55px;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.homeBox01 .txtBox .secTit {
  text-align: left;
}

@media screen and (max-width: 700px) {
  .homeBox01 {
    padding: 80px 0 120px;
  }
  .homeBox01:before {
    width: 100%;
    height: 30%;
    height: 54vw;
  }
  .homeBox01 .imgBox {
    float: none;
    width: 100%;
    height: 180px;
    height: 46vw;
    margin-bottom: 30px;
  }
  .homeBox01 .txtBox {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

/*------------------------------------------
	homeBox02
------------------------------------------*/
.homeBox02 .subBox {
  padding: 280px 0 240px;
  position: relative;
}

.homeBox02 .subBox .imgBox {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 65%;
  width: calc((50% - 480px) + 720px);
}

.homeBox02 .subBox .imgBox img {
  width: 100%;
}

.homeBox02 .subBox .txtBox {
  padding: 50px 55px 60px;
  background: rgba(247, 247, 247, 0.95);
  width: 50%;
  min-height: 480px;
  text-align: justify;
  position: relative;
  z-index: 2;
}

.homeBox02 .subBox .txtBox .secTit {
  text-align: left;
  margin-bottom: 35px;
}

.homeBox02 .subBox .txtBox .txt {
  margin-bottom: 100px;
}

.homeBox02 .subBox .txtBox .txtLink {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
}

@media screen and (min-width: 701px) {
  .homeBox02 .subBox .txtBox .txtLink:hover {
    color: #fff;
    opacity: 1;
  }
}

.homeBox02 .subBox .txtBox .txtLink span {
  display: block;
  padding-bottom: 25px;
  margin-bottom: -25px;
  position: relative;
  overflow: hidden;
}

.homeBox02 .subBox .txtBox .txtLink span::before {
  background: #283238;
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

@media screen and (min-width: 701px) {
  .homeBox02 .subBox .txtBox .txtLink span:hover::before {
    bottom: 0;
  }
}

.homeBox02 .subBox:nth-of-type(odd) .imgBox {
  left: 0;
}

.homeBox02 .subBox:nth-of-type(odd) .txtBox {
  margin-left: auto;
}

.homeBox02 .subBox:nth-of-type(even) .imgBox {
  right: 0;
}

.homeBox02 .subBox:nth-of-type(even) .txtBox {
  margin-right: auto;
}

@media screen and (max-width: 700px) {
  .homeBox02 .subBox {
    padding: 0 0 120px;
  }
  .homeBox02 .subBox .imgBox {
    padding-left: 25px;
    margin: 0 auto 30px;
    background: #f7f7f7;
    position: static;
    width: 100%;
  }
  .homeBox02 .subBox .txtBox {
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: none;
  }
  .homeBox02 .subBox .txtBox .secTit {
    margin: 0 auto 20px !important;
  }
  .homeBox02 .subBox .txtBox .txt {
    margin-bottom: 49px;
  }
  .homeBox02 .subBox .txtBox .txtLink {
    position: static;
    max-width: none;
  }
}

/*------------------------------------------
	homeBox04
------------------------------------------*/
.homeBox04 {
  padding-top: 20px;
  background: #fff;
  border-top: 1px solid #EDEDED;
}

.homeBox04 .bgImg {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .homeBox04 {
    padding-top: 0;
    border-top: none;
  }
}

/*------------------------------------------
	homeBox05
------------------------------------------*/
.homeBox05 {
  padding: 180px 0 200px;
  position: relative;
}

.homeBox05:before {
  content: "";
  display: block;
  width: 50%;
  height: 63%;
  background: #F7F7F7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.homeBox05 .imgBox {
  width: 37%;
  float: left;
  margin-left: 60px;
  position: relative;
  z-index: 2;
}

.homeBox05 .txtBox {
  width: 38%;
  float: right;
  margin: -10px 55px 0 0;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.homeBox05 .txtBox .secTit {
  text-align: left;
  margin-bottom: 40px;
}

.homeBox05 .txtBox .txt {
  margin-bottom: 60px;
}

@media screen and (max-width: 700px) {
  .homeBox05 {
    padding: 80px 0 110px;
  }
  .homeBox05:before {
    width: 100%;
    height: 30%;
    height: 54vw;
  }
  .homeBox05 .imgBox {
    float: none;
    width: 100%;
    margin: 0 auto 35px;
  }
  .homeBox05 .txtBox {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .homeBox05 .txtBox .secTit {
    text-align: center;
    margin-bottom: 20px;
  }
  .homeBox05 .txtBox .txt {
    margin-bottom: 45px;
  }
}

/*------------------------------------------
	instagram
------------------------------------------*/
.instagram {
  margin-bottom: 200px;
}

.instagram .secTit {
  margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
  .instagram {
    margin-bottom: 120px;
  }
  .instagram .secTit {
    margin-bottom: 30px;
  }
}

#instafeed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 85px;
}

#instafeed .instaBox {
  width: 25%;
}

#instafeed .instaBox a {
  display: block;
  height: 100%;
}

@media screen and (max-width: 700px) {
  #instafeed {
    margin-bottom: 43px;
    overflow: hidden;
  }
  #instafeed .instaBox {
    width: 46%;
    margin: 0 2% 4%;
  }
  #instafeed .instaBox:nth-of-type(7), #instafeed .instaBox:nth-of-type(8) {
    display: none;
  }
}

/*============================================================================================================
	rooms
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.rooms .header {
  background: url(../img/img/img_room_top.png) no-repeat center;
  background-size: cover;
}

/*------------------------------------------
	roomsNav
------------------------------------------*/
.roomsNav {
  max-width: 960px;
  margin: 115px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.roomsNav .item {
  width: 25%;
  text-align: center;
  border-left: 1px solid #E0E0E0;
}

.roomsNav .item:first-of-type {
  border-left: none;
}

.roomsNav .item a {
  display: block;
  padding: 10px 0 25px;
  background: url(../img/ico/ico_arrow02.png) no-repeat center bottom 5px;
}

@media screen and (min-width: 701px) {
  .roomsNav .item a:hover {
    padding: 7px 0 28px;
    background-position: center bottom;
  }
}

@media screen and (max-width: 700px) {
  .roomsNav {
    display: block;
    margin: 55px 0 0 20px;
  }
  .roomsNav .item {
    width: 100%;
    text-align: left;
    border-left: none;
    border-bottom: 1px solid #E0E0E0;
  }
  .roomsNav .item a {
    padding: 14px 0 14px 40px;
    background: url(../img/ico/ico_arrow03.png) no-repeat left center;
    background-size: 20px;
  }
}

/*------------------------------------------
	roomInfo / slider
------------------------------------------*/
.roomInfoWrap {
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .roomInfoWrap {
    width: calc(100% - (50% - 480px));
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 700px) {
  .roomInfoWrap {
    width: 100%;
  }
}

.roomInfo {
  margin-bottom: 150px;
}

.roomInfo .imgBox {
  margin-bottom: 10px !important;
}

.roomInfo .imgBox .item {
  top: 0 !important;
}

.roomInfo .txtBoxWrap {
  max-width: 960px;
  padding: 0 60px;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.roomInfo .txtBoxWrap .nameBox {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.roomInfo .txtBoxWrap .nameBox .name {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.roomInfo .txtBoxWrap .txtBox {
  width: 43%;
}

.roomInfo .txtBoxWrap .txtBox .caution {
  color: #999;
  font-size: 12px;
  margin-top: 15px;
}

@media screen and (max-width: 700px) {
  .roomInfo {
    margin-bottom: 70px;
  }
  .roomInfo .imgBox {
    margin-bottom: 15px !important;
  }
  .roomInfo .txtBoxWrap {
    display: block;
    padding: 0 25px;
  }
  .roomInfo .txtBoxWrap .nameBox {
    margin-bottom: 20px;
  }
  .roomInfo .txtBoxWrap .nameBox .name {
    font-size: 20px;
    margin-bottom: 0;
  }
  .roomInfo .txtBoxWrap .txtBox {
    width: 100%;
  }
}

/*	slider-pro
---------------------------*/
.roomInfoWrap .sp-image {
  margin-top: 0 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.roomInfoWrap .sp-slides-container {
  margin-bottom: 15px;
}

.roomInfoWrap .sp-buttons {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 0 50px;
  text-align: left;
  z-index: 2;
}

.roomInfoWrap .sp-buttons .sp-button {
  width: 6px;
  height: 6px;
  border: none;
  margin: 0 8px;
  background: #E0E0E0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.roomInfoWrap .sp-buttons .sp-button.sp-selected-button {
  -webkit-transform: scale(1.6);
  -ms-transform: scale(1.6);
  transform: scale(1.6);
  background: #333;
}

.roomInfoWrap .sp-horizontal .sp-arrows {
  max-width: 960px;
  height: 60px;
  top: auto;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -40px;
}

.roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow {
  width: 60px;
  height: 100%;
  background: #283238 url(../img/ico/ico_arrow04.png) center no-repeat;
  background-size: 11px;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow:hover {
  background-position: 40% center;
}

.roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow:before, .roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow:after {
  content: none;
}

.roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow.sp-previous-arrow {
  right: 121px;
  left: auto;
}

.roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow.sp-next-arrow {
  right: 60px;
}

@media screen and (max-width: 700px) {
  .roomInfoWrap .sp-slides-container {
    margin: 0 0 5px 25px;
  }
  .roomInfoWrap .sp-buttons {
    text-align: center;
    padding: 0;
  }
  .roomInfoWrap .sp-horizontal .sp-arrows {
    bottom: 0;
    height: 40px;
  }
  .roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow {
    width: 40px;
    background-size: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow.sp-previous-arrow {
    right: auto;
    left: 0;
  }
  .roomInfoWrap .sp-horizontal .sp-arrows .sp-arrow.sp-next-arrow {
    right: 0;
  }
  .roomInfoWrap .slider-pro img.sp-image, .roomInfoWrap .slider-pro img.sp-thumbnail {
    max-width: 100%;
  }
}

/*------------------------------------------
	gsBox
------------------------------------------*/
.gsBox {
  background: #fff;
  border-top: 1px solid #EDEDED;
  position: relative;
}

.gsBox .imgBox {
  width: 30%;
  width: calc((50% - 480px) + 240px);
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}

.gsBox .gsBoxIn {
  padding: 73px 180px 90px 55px;
  width: 75%;
  width: calc(100% - ((50% - 480px) + 240px));
}

.gsBox .secTit {
  text-align: left;
  margin-bottom: 40px;
}

.gsBox .list .tit {
  font-size: 16px;
  margin-bottom: 10px;
}

.gsBox .list .txt {
  margin-bottom: 40px;
}

.gsBox .list .txt:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 700px) {
  .gsBox {
    border: none;
    padding-bottom: 90px;
    margin-top: 40px;
  }
  .gsBox .imgBox {
    position: static;
    width: 100%;
    margin-bottom: 70px;
  }
  .gsBox .imgBox img {
    height: auto;
    font-family: inherit;
  }
  .gsBox .gsBoxIn {
    padding: 0;
    width: 100%;
  }
  .gsBox .secTit {
    margin-bottom: 40px;
  }
  .gsBox .list .txt {
    margin-bottom: 20px;
  }
}


/*============================================================================================================
	apart_home
============================================================================================================*/


.rooms .header.apa_home_header {
  background: url(../img/img/img_home_top02.png) no-repeat center;
	background-size: cover;
}
.rooms .header.apa_townguide_header {
  background: url(../img/img/img_townguide_top.png) no-repeat center;
	background-size: cover;
}


.apa_home .roomInfo {
    margin-bottom: 100px;
}

.apa_home .roomInfo .imgBox .item {
	max-width: 960px;
	margin-bottom:100px;
}

.apa_home .roomInfo .txtBoxWrap .secTit {
	text-align: left;
	font-size: 24px;
	line-height: 1.8em;
}

.linkGmap {
	margin-bottom:	200px;
}


.townguideAccessBox {
	max-width: 1080px;
  margin: 0 auto 250px;
}
.tgacBox {}
.tgacBox .imgBox {
	width: 50%;
	float: left;
}
.tgacBox .txtBox {
	background-color:#000E43;
	color:#fff;
	width: 50%;
	float: left;
	padding: 70px 100px;
	text-align: center;
}
.tgacBox1.tgacBox .imgBox {
	float: right;
}
.tgacBox1.tgacBox .txtBox {
	float: left;
}

.tgacBox .txtBox .secTit {}
.tgacBox .txtBox .txt {
	margin-bottom: 20px;
}
.tgacBox .txtBox .link {}




.apaAboutBox {
	margin-bottom:220px;
	
}
.apaAboutBox .titleBox {
	text-align: center;
}
.apaAboutBox .txtBox {
	width: 49%;
	float: right;
}
.apaAboutBox .txtBox:first-of-type {
		float: left;
}
.apaAboutBox .titleBox {
	margin-bottom: 80px;
}
.apaAboutBox .titleBox dt img {
	width:66px;
	margin-bottom:30px;
}
.apaAboutBox .titleBox dd {
	font-size:20px;
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
}
.apaAboutBox .txtInner {
	padding:40px;
	text-align: justify;
}
.apaAboutBox .linkBox {
	text-align:center;
	margin-top:30px;
	font-family: 'Roboto', sans-serif;
}
.apaAboutBox .linkBox.gray {
color:#999;
}
.apaAboutBox .link {
}





.borderB {
	    border-bottom: #ededed 1px solid;
}
.pageTopBox.borderB {
    padding: 125px 0 190px;
}

.apa_rooms .apaAboutBox {
	    margin-top: 100px;
	margin-bottom: 50px;
}
.apa_rooms .apaAboutBox .txtBox dl {
	background-color: #f7f7f7;
	margin: 0px 0px 1px 0px;
	padding: 12px 30px;
	font-family: 'Roboto', sans-serif;
}
.apa_rooms .apaAboutBox .txtBox dt {
	font-size:20px;
}
.apa_rooms .apaAboutBox .txtBox dd {
	font-size:16px;
}
.photogalleryBox { 
padding-bottom:50px;
}
.townguideBox .textRight {
text-align:right;
	width: 100%;
	color:#757575;
}



.secTitMb0 {
	margin-bottom: 0px;	
}
.townguideTitle {
	padding-bottom: 80px;
}
.townguideBox figure {
	margin: 0px;
	width: 49%;
	text-align: center;
	margin-bottom: 50px;
}
.townguideBox figcaption {
	margin-top: 20px;
}
.townguideBoxBottom {
	margin-bottom: 150px;
}

.planBox {
    text-align: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.planBox figure {
    margin: 0px;
    width: 33%;
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
}
.planBox figcaption {
    margin-top: 20px;
}


.planBox2 figure {
    margin: 0px;
    text-align: center;
    margin-bottom: 50px;
}
.planBox2 figcaption {
    margin-top: 20px;
}
.gaiyouBox {
background-color:#f7f7f7;
padding:60px 120px;
}

.gaiyouBox dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
border-top:1px solid #E0E0E0;
    margin: 0;
    padding: 25px 0px;
}
.gaiyouBox dl dt{
width:30%;
color:#999999;
}
.gaiyouBox dl dd{
width:70%;
}
.gaiyouBox dl dd a {
text-decoration:underline;
}
.bikouTxt {
font-size:12px;
}
.gaiyouWrapper .textRight {
text-align:right;
color:#757575;
margin-top:40px;
font-size:12px;
}





@media screen and (max-width: 700px) {

	
.rooms .header.apa_home_header {
  background: url(../img/img/img_home_top02_sp.png) no-repeat center;
	background-size: cover;
}
	
	
.apa_home .roomInfo .txtBoxWrap .secTit {
	text-align: center;
	font-size: 20px;
}
.txt {
    font-size: 14px;
}
.apa_home .roomInfo .imgBox .item {
    margin-bottom: 50px;
}
.apa_home .roomInfo .txtBoxWrap {
		text-align: center;
	}
.apa_home .roomInfo .txtBoxWrap .nameBox {
	padding-bottom: 50px;
  margin-bottom: 50px;
	border-bottom: #ededed 1px solid;
}
.apa_home .roomInfo .txtBoxWrap .txtBox {
}	
	.linkGmap {
    margin-bottom: 100px;
}
	.apa_home .roomInfo {
    margin-bottom: 50px;
}
.contents .townguideAccessBox.inner  {
    padding: 0px;
}
.tgacBox1.tgacBox .imgBox {
    float: none;
}

.tgacBox .imgBox {
    width: 100%;
    float: none;
}
.tgacBox1.tgacBox .txtBox {
    float: none;
}

.tgacBox .txtBox {
    width: 100%;
    float: none;
	    padding: 70px 25px;
}
.townguideAccessBox {
    margin: 0 auto 100px;
}
.apaAboutBox .titleBox dt img {
    width: 40px;
    margin-bottom: 10px;
}
	.apaAboutBox .titleBox dd {
    font-size: 14px;
}
	.apaAboutBox .titleBox {
    margin-bottom: 40px;
}
.apaAboutBox .txtBox:first-of-type {
    float: none;
}
.apaAboutBox .txtBox {
    width: 100%;
    float: none;
}
.apaAboutBox .txtInner {
    padding: 40px 0px;
}
.apaAboutBox {
    margin-bottom: 50px;
    padding :0 20px;
}
	
	
	
	
.apa_rooms .apaAboutBox {
    margin-top: 0px;
}
	.contents .apaAboutBox .inner {
		padding: 0 0px;
	}
.apaAboutBox .txtInner {
    padding: 60px 0px;
}
.townguideBox .textRight {
    text-align: center;
	font-size: 12px;
}
	
	
.townguideTitle {
    padding-bottom: 40px;
}
	
	.townguideBox	.flex01 {
		display: block;
}
.townguideBox figure {
    width: 100%;
	    margin-bottom: 20px;
}
.townguideBox figcaption {
    margin-top: 10px;
    font-size: 14px;
}
	
	
	.access .contents {
		padding-top: 0px;
	}
 	
		.access .accessBox01 {
    padding: 0px 0 130px;
}
	
	
	.access .accessBox01 .mapBox {
		padding-left: 0px;
	}
	


.planBox figure {
    width: 49%;
}




.pageTopBox.borderB.gaiyouWrapper {
    padding: 40px 20px 40px;
}

.gaiyouBox {
padding:30px 20px;
}

.gaiyouBox dl{
  display: block;
}
.gaiyouBox dl dt{
width:100%;
}
.gaiyouBox dl dd{
width:100%;
}
.gaiyouWrapper .textRight {
text-align:center;
margin-top:20px;
font-size:10px;
}







	
	
}


/*============================================================================================================
	conceptroom
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.conceptroom .header {
  background: url(../img/img/img_conceptroom_top.png) no-repeat center;
  background-size: cover;
}

/*============================================================================================================
	restaurant
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.restaurant .header {
  background: url(../img/img/img_restaurant_top.png) no-repeat center;
  background-size: cover;
}

/*------------------------------------------
	pageTopBox
------------------------------------------*/
.restaurant .pageTopBox {
  padding-bottom: 180px;
}

@media screen and (max-width: 700px) {
  .restaurant .pageTopBox {
    padding-bottom: 80px;
  }
}

/*------------------------------------------
	restaurantBox01
------------------------------------------*/
.restaurantBox01 {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.restaurantBox01 img {
  width: 49%;
  margin-bottom: 2%;
}

@media screen and (max-width: 700px) {
  .restaurantBox01 {
    display: block;
    padding-bottom: 60px !important;
  }
  .restaurantBox01 img {
    width: 100%;
    margin-bottom: 15px;
  }
}

/*============================================================================================================
	chocolate
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.chocolate .header {
  background: url(../img/img/img_chocolate_top.png) no-repeat center;
  background-size: cover;
}

/*------------------------------------------
	pageTopBox
------------------------------------------*/
.chocolate .pageTopBox {
  padding-bottom: 180px;
}

@media screen and (max-width: 700px) {
  .chocolate .pageTopBox {
    padding-bottom: 80px;
  }
}

/*------------------------------------------
	chocolateBox01
------------------------------------------*/
.chocolateBox01 {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.chocolateBox01 img {
  width: 49%;
  margin-bottom: 2%;
}

@media screen and (max-width: 700px) {
  .chocolateBox01 {
    display: block;
    padding-bottom: 60px !important;
  }
  .chocolateBox01 img {
    width: 100%;
    margin-bottom: 15px;
  }
}

/*============================================================================================================
	information
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.archive .header, .single .header {
  opacity: 1;
  height: auto;
  min-height: 100%;
  border-bottom: 1px solid #EDEDED;
}

.archive .header .pcLogo, .single .header .pcLogo {
  width: 100%;
  max-width: 960px;
  margin: 25px auto;
}

.archive .header .pcLogo img, .single .header .pcLogo img {
  width: 33px;
}

.archive .header .navBtnOpen, .single .header .navBtnOpen {
  background: none !important;
}

.archive .header .navBtnOpen span, .single .header .navBtnOpen span {
  background: #283238;
}

@media screen and (max-width: 700px) {
  .archive .header, .single .header {
    height: 52px;
  }
}

/*------------------------------------------
	contents
------------------------------------------*/
.archive .contents, .single .contents {
  padding-top: 50px;
  margin: 0 auto;
  overflow: hidden;
}

.archive .contents .main, .single .contents .main {
  width: 62%;
  width: calc(100% - 360px);
  float: left;
}

.archive .contents .side, .single .contents .side {
  width: 25%;
  width: 240px;
  float: right;
}

@media screen and (max-width: 700px) {
  .archive .contents, .single .contents {
    padding-top: 0;
  }
  .archive .contents .inner, .single .contents .inner {
    padding: 0;
  }
  .archive .contents .main, .single .contents .main {
    width: 100%;
    float: none;
    margin-bottom: 25px;
    border-bottom: 1px solid #EDEDED;
  }
  .archive .contents .side, .single .contents .side {
    width: 100%;
    float: none;
    margin-bottom: 80px;
  }
}

/*------------------------------------------
	side
------------------------------------------*/
.side .sideTtl {
  font-size: 20px;
  margin-bottom: 15px;
}

.side .recentlyList {
  margin-bottom: 50px;
}

.side .recentlyList a {
  display: block;
  padding-bottom: 23px;
}

.side .recentlyList .date {
  display: block;
  color: #999;
  font-size: 12px;
}

.side .recentlyList .txt {
  font-size: 12px;
}

.side .linkList {
  margin-bottom: 50px;
}

.side .linkList .item {
  font-size: 12px;
}

.side .linkList a {
  padding: 5px 0;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.side .linkList .num {
  color: #9E9E9E;
  margin-left: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 700px) {
  .side {
    padding: 0 0 0 25px;
  }
  .side .sideTtl {
    margin-bottom: 22px;
  }
  .side .recentlyList {
    margin-bottom: 25px;
    border-top: 1px solid #EDEDED;
  }
  .side .recentlyList .item {
    line-height: 2;
    border-bottom: 1px solid #EDEDED;
  }
  .side .recentlyList a {
    padding: 10px 20px 10px 0;
  }
  .side .recentlyList .txt {
    font-size: 14px;
  }
  .side .linkList {
    margin-bottom: 25px;
    border-top: 1px solid #EDEDED;
  }
  .side .linkList .item {
    border-bottom: 1px solid #EDEDED;
  }
  .side .linkList a {
    padding: 15px 20px 15px 0;
  }
  .side .linkList .date {
    font-size: 16px;
  }
  .side .linkList .num {
    font-size: 14px;
  }
}

/*------------------------------------------
	informationColumn
------------------------------------------*/
.informationColumn {
  margin-bottom: 120px;
}

.informationColumn .imgBox_main {
  margin-bottom: 30px;
}

.informationColumn .imgBox_main img {
  width: 100%;
}

.informationColumn .imgBox_sub {
  text-align: center;
  margin: 50px auto;
}

.informationColumn .imgBox_sub img + img {
  margin-top: 20px;
}

.informationColumn .columnTtl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.informationColumn .meta {
  color: #999;
  font-size: 12px;
  margin-bottom: 25px;
}

.informationColumn .meta .date {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #999;
}

.informationColumn .txt {
  margin-bottom: 25px;
}

.informationColumn dt {
  font-weight: bold;
  position: relative;
  padding-left: 17px;
}

.informationColumn dt:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #283238;
  position: absolute;
  top: 7px;
  left: 0;
}

.informationColumn dd {
  margin-bottom: 23px;
}

.informationColumn .link {
  display: table;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 1px solid #000;
}

.informationColumn .link a {
  position: relative;
}

.informationColumn .link a:before {
  content: "\02192";
  margin-right: 5px;
}

@media screen and (max-width: 700px) {
  .informationColumn {
    padding: 0 25px;
    margin-bottom: 80px;
  }
  .informationColumn .imgBox_main {
    margin: 0 -25px 35px;
  }
  .informationColumn .imgBox_sub {
    margin: 30px auto 35px;
  }
  .informationColumn .imgBox_sub img + img {
    margin-top: 15px;
  }
  .informationColumn .columnTtl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .informationColumn .txt {
    line-height: 2;
    margin-bottom: 30px;
  }
}

/*------------------------------------------
	pagination
------------------------------------------*/
.pagination {
  line-height: 1;
  text-align: center;
  margin-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination a {
  display: block;
}

.pagination .prev, .pagination .next {
  font-size: 20px;
  font-weight: bold;
}

.pagination .prev a, .pagination .next a {
  background-repeat: no-repeat;
  background-size: 11px;
}

.pagination .prev a {
  padding-left: 30px;
  background-image: url(../img/ico/ico_arrow06.png);
  background-position: left center;
}

.pagination .next a {
  padding-right: 30px;
  background-image: url(../img/ico/ico_arrow07.png);
  background-position: right center;
}

.pagination .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination .num li {
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

@media screen and (max-width: 700px) {
  .pagination {
    max-width: 350px;
    width: 90%;
    margin: 0 auto 70px;
  }
  .pagination .prev, .pagination .next {
    font-size: 16px;
  }
  .pagination .prev a, .pagination .next a {
    background-size: 7px;
  }
  .pagination .prev a {
    padding-left: 15px;
  }
  .pagination .next a {
    padding-right: 15px;
  }
  .pagination .num li {
    font-size: 12px;
    width: 25px;
  }
}

/*============================================================================================================
	access
============================================================================================================*/
/*------------------------------------------
	header
------------------------------------------*/
.access .header .pageTtl {
  color: #283238;
}

/*------------------------------------------
	accessBox01
------------------------------------------*/
.accessBox01 {
  padding: 550px 0 120px;
  position: relative;
}

.accessBox01 .mapBox {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 65%;
  width: calc((50% - 480px) + 720px);
}

.accessBox01 .mapBox #map {
  width: 100%;
  height: 520px;
  background-color: grey;
}

.accessBox01 .mapBox #map iframe {
  width: 100%;
  height: 520px;
  display: block;
}

.accessBox01 .txtBox {
  padding: 50px 50px 60px 60px;
  background: rgba(247, 247, 247, 1);
  width: 50%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.accessBox01 .txtBox .secTit {
  text-align: left;
  margin-bottom: 35px;
}

.accessBox01 .txtBox .txt {
  margin-bottom: 30px;
	font-size: 12px;
}
.accessBox01 .txtBox .txt:first-of-type {
		font-size: 14px;
}
.accessBox01 .txtBox .txtLink {
  margin: 50px auto 0;
  width: 90%;
}

@media screen and (max-width: 700px) {
  .accessBox01 {
    padding: 75px 0 130px;
  }
  .accessBox01 .mapBox {
    padding-left: 25px;
    margin: 0 auto 30px;
    background: #f7f7f7;
    position: static;
    width: 100%;
  }
  .accessBox01 .mapBox #map {
    position: relative;
    padding-bottom: 72%;
    height: 0;
    overflow: hidden;
  }
  .accessBox01 .mapBox #map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .accessBox01 .txtBox {
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: none;
  }
  .accessBox01 .txtBox .secTit {
    margin: 0 auto 25px !important;
  }
  .accessBox01 .txtBox .txt {
    margin-bottom: 30px;
  }
  .accessBox01 .txtBox .txtLink {
    position: static;
    max-width: none;
    margin-top: 40px;
  }
}

/*------------------------------------------
	accessBox02
------------------------------------------*/
.accessBox02 {
  background: #EDEDED;
	    border-top: #ededed 1px solid;
}

.accessBox02 .access01 {
  padding: 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.accessBox02 .inner {
  padding: 80px 60px 120px;
  background: #fff url(../img/bg/bg_line.png) center;
}

.accessBox02 .methodWrap {
  margin: 55px auto 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.accessBox02 .method {
  width: 29%;
}

.accessBox02 .method .ttl {
  text-align: center;
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.accessBox02 .method .ttl:before {
  content: "";
  width: 60px;
  height: 1px;
  background: #283238;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.accessBox02 .method .txt {
  font-size: 12px;
}

.accessBox02 .method .txt + .txt {
  margin-top: 20px;
}

.accessBox02 .subTtl {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 35px;
}
.accessBox02 .notice {
text-align:center;
    color: #999;
    margin-top:80px;
    font-size:12px;
}

.accessBox02 .websiteLink {
    text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.accessBox02 .websiteLink .item {
  width: 23.5%;
  text-align: center;
    display: inline-block;
}

.accessBox02 .websiteLink .item a {
  display: block;
  padding: 8px;
  border-radius: 2px;
  border: 1px solid rgba(20, 38, 78, 0.6);
  background-color: #fff;
  background-position: 20px center;
  background-repeat: no-repeat;
}

.accessBox02 .websiteLink .item a:hover {
  opacity: 1;
  border-color: #000E43;
  letter-spacing: 3px;
}

.accessBox02 .websiteLink .item.train a {
  background-image: url(../img/ico/ico_train.png);
  background-size: 14px;
}

.accessBox02 .websiteLink .item.bus a {
  background-image: url(../img/ico/ico_bus.png);
  background-size: 15px;
}

@media screen and (max-width: 700px) {
  .accessBox02 .inner {
    width: auto;
    margin: 0 15px;
    padding: 50px 0 110px;
    background: #fff;
  }
  .accessBox02 .methodWrap {
    display: block;
    margin: 40px auto 35px;
  }
  .accessBox02 .method {
    padding: 0 35px 30px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #F7F7F7;
  }
  .accessBox02 .method .ttl {
    padding-bottom: 10px;
  }
  .accessBox02 .method .txt {
    font-size: 14px;
  }
  .accessBox02 .method .txt + .txt {
    margin-top: 30px;
  }
  .accessBox02 .websiteLink {
    display: block;
    padding: 0 35px;
  }
  .accessBox02 .websiteLink .item {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .accessBox02 .websiteLink .item a {
    padding: 6px;
  }
}

/*# sourceMappingURL=style.css.map */