
/* .raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
/* 
.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 */
/* 
Myriad Pro Light
font-family: "myriad-pro", sans-serif;
font-weight: 300;
font-style: normal;
Myriad Pro Light Italic
font-family: "myriad-pro", sans-serif;
font-weight: 300;
font-style: italic;
Myriad Pro Regular
font-family: "myriad-pro", sans-serif;
font-weight: 400;
font-style: normal;
Myriad Pro Italic
font-family: "myriad-pro", sans-serif;
font-weight: 400;
font-style: italic;
Myriad Pro Semibold
font-family: "myriad-pro", sans-serif;
font-weight: 600;
font-style: normal;
Myriad Pro Semibold Italic
font-family: "myriad-pro", sans-serif;
font-weight: 600;
font-style: italic;
Myriad Pro Bold
font-family: "myriad-pro", sans-serif;
font-weight: 700;
font-style: normal;
Myriad Pro Bold Italic
font-family: "myriad-pro", sans-serif;
font-weight: 700;
font-style: italic;
Myriad Pro Black
font-family: "myriad-pro", sans-serif;
font-weight: 900;
font-style: normal;
Myriad Pro Black Italic
font-family: "myriad-pro", sans-serif;
font-weight: 900;
font-style: italic;
*/
/* 
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
);
*/
@font-face {
  font-family: 'PrattNovaFine';
  src: url('../fonts/pratt-nova-fine.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PrattNovaFine';
  src: url('../fonts/pratt-nova-fine-italic.woff') format('woff');
  font-weight: normal;
  font-style:italic;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  width: 100%;
  color: #000;
  font-size: 1.6em;
  line-height: 1.4;
}
body {
  font-family: "myriad-pro", "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width:768px) {
  body {
    line-height: 1.5;
  }
}

body>.wrapper {
  position: relative;
  z-index: 100;
  background: linear-gradient(to bottom, #90c7d1 15%, #f3f3f3 20%, #fff 25%);
}

/* animation. */
section {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1.5s, transform 1s;
}

section.active {
  opacity: 1;
  transform: translateY(0px);
}
.bgheader {
  position: relative;
  z-index: 30;
  padding-bottom: 13px;
  background: url(../images/bgtri.png) center bottom no-repeat;
  background-size: auto 13px;
}
header {
  
  min-height: 495px;
  position: relative;
  width:100%;
  color: #fff;
  
}
header::before {
  position: absolute;
  display: block;
  content: '';
  width:100%;
  height: 100%;
  background-image: url(../images/banner1n.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 10;
  animation: fade 15s infinite;
  animation-delay: 0s;
}
header::after {
  position: absolute;
  display: block;
  content: '';
  width:100%;
  height: 100%;
  background-image: url(../images/banner2n.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 9;
}
@keyframes fade {
  0%   { opacity: 0; }
  45%  { opacity: 1; }
  50%  { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; }
}

header .flex {
  padding-top:10px;
  position: absolute;
  width:100%;
  height: 100%;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .flex>div {
  max-width: 267px;
  padding:0 10px;
  box-sizing: content-box;
}
header .title {
  padding:50px 0 25px;
}
header .text {
  padding: 30px 0;
}
header .text p {
  text-align: center;
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-style: italic; 
  font-size: 1.6rem;
}

header .flex2 {
  display: flex;
  height: 43px;
  max-width: 267px;
  width:100%;
  margin:0 auto;
  padding:30px 0;
  box-sizing: content-box;
}
header h1 {
  width: 101px;
  height: 100%;
  background: url(../images/logo_ana.png) left bottom no-repeat;
  background-size: 82px 38px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  border-right:solid 1px #fff;
  box-sizing: content-box;
}
header .flex2 p {
  width: 166px;
  height: 100%;
  background: url(../images/logo_tokyo.png) right bottom no-repeat;
  background-size: 148px 38px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  border-left:solid 1px #fff;
  box-sizing: content-box;
  
}
header h2 {
  width:100%;
  padding-top:23%;
  background: url(../images/luxurytokyo.png) center no-repeat;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

@media (min-width:768px) {
  .bgheader {
    padding-bottom: 26px;
    background-size: auto 26px;
  }
  header {
    min-height: 830px;
  }
  header::before {
    background-image: url(../images/banner1w.jpg);
  }
  header::after {
    background-image: url(../images/banner2w.jpg);
  }
  header span.logo_room {
    position: absolute;
    left: 35px;
    bottom:20px;
    display: block;
    width:42px;
    height: 57px;
    background: url(../images/logo_room.png) no-repeat;
    background-size: contain;
    z-index: 11;
  }
  header .flex>div {
    max-width: 628px;
  }
  header .flex2 {
    height: 85px;
    max-width: 530px;
  }
  header h1 {
    width: 202px;
    background-size: 165px 76px;
  }
  header .flex2 p {
    width: 328px;
    background-size: 297px 76px;
  }
  header .title {
    padding:40px 0 25px;
  }
  header h2 {
    padding-top:33%;
  }
  header .text p {
    font-size: 2.6rem;
  }
}

.sweepstakes {
  position: relative;
  z-index: 29;
  background: linear-gradient(to bottom, #90c7d1, #f3f3f3);
  box-sizing: content-box;
  padding-top: 50px;
  padding-bottom: 50px;
}

.sweepstakes .frame1 {
  position: relative;
  max-width:calc(100% - 25px);
  margin:0 auto;
  border:solid 5px #9c865f;
  background: url(../images/bgcity.jpg) #fff center top 100px no-repeat;
  background-size: contain;
  border-radius: 7px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  
}
.sweepstakes .cornerbox {
  width:7px;
  height: 7px;
  box-sizing: content-box;
  background: #fff;
}
.sweepstakes .cornerbox::before {
  display: block;
  content: '';
  height: 3px;
  width: 3px;
  background: #9c865f;
  border:solid 2px #fff;
  box-sizing: content-box;
}

.sweepstakes .topleft {
  position: absolute;
  top:0;
  left: 0;
  border-right:solid 1px #9c865f;
  border-bottom:solid 1px #9c865f;
  z-index: 110;
}

.sweepstakes .topright {
  position: absolute;
  top:0;
  right: 0;
  border-left:solid 1px #9c865f;
  border-bottom:solid 1px #9c865f;
  z-index: 110;
}
.sweepstakes .btmleft {
  position: absolute;
  bottom:0;
  left: 0;
  border-right:solid 1px #9c865f;
  border-top:solid 1px #9c865f;
  z-index: 110;
}
.sweepstakes .btmright {
  position: absolute;
  bottom:0;
  right: 0;
  border-left:solid 1px #9c865f;
  border-top:solid 1px #9c865f;
  z-index: 110;
}
.sweepstakes .leftline {
  position: absolute;
  top:7px;
  left: 0;
  height: calc(100% - 14px);
  width:2px;
  border-right: solid 1px #9c865f;
  
  box-sizing: content-box;
  z-index: 120;
}
.sweepstakes .topline {
  position: absolute;
  top:0;
  left:7px;
  height: 2px;
  width: calc(100% - 14px);
  border-bottom: solid 1px #9c865f;
  
  box-sizing: content-box;
  z-index: 120;
}
.sweepstakes .rightline {
  position: absolute;
  top:7px;
  right: 0;
  height: calc(100% - 14px);
  width:2px;
  border-left: solid 1px #9c865f;
  
  box-sizing: content-box;
  z-index: 120;
}
.sweepstakes .btmline {
  position: absolute;
  bottom:0;
  left:7px;
  height: 2px;
  width: calc(100% - 14px);
  border-top: solid 1px #9c865f;
  
  box-sizing: content-box;
  z-index: 120;
}
.sweepstakes .content {
  position: relative;
  top:0;
  margin:0 auto;
  width:100%;
  z-index: 105;
}
.sweepstakes p a {
  color: #00aff0;
}
@media (min-width:768px) {
  .sweepstakes {
    padding: 0 12.5px;
  }
  .sweepstakes .frame1 {
    max-width: 860px;
    border:solid 10px #9c865f;
    box-sizing: content-box;
  
    background: url(../images/bgcity.jpg) #fff center top 100px no-repeat;
    background-size: 860px auto;
    
  }
  .sweepstakes .cornerbox {
    width:14px;
    height: 14px;
    box-sizing: content-box;
    background: #fff;
  }
  .sweepstakes .cornerbox::before {
    display: block;
    content: '';
    height: 6px;
    width: 6px;
    background: #9c865f;
    border:solid 4px #fff;
    box-sizing: content-box;
  }

  .sweepstakes .leftline {
    top:14px;
    height: calc(100% - 28px);
    width:5px;
  }
  .sweepstakes .topline {
    left:14px;
    height: 5px;
    width: calc(100% - 28px);
    
  }
  .sweepstakes .rightline {
    top:14px;
    height: calc(100% - 28px);
    width:5px;
  }
  .sweepstakes .btmline {
    left:14px;
    height: 5px;
    width: calc(100% - 28px);    
  }
}
.sweepstakes .content .para1 {
  padding-top:20px;
}
.sweepstakes .content .para1 p {
  font-size: .9rem;
  text-align: center;
  color: #7d6a49;
}
.sweepstakes .toowideimg {
  padding-top:10px;
}
.sweepstakes .toowideimg h2 {
  max-width: 570px;
  width:93.03%;
  margin:0 auto;  
  transition: all 0.3s ease;
}
.sweepstakes .toowideimg h2 span {
  display: block;
  width:100%;
  padding-top:83.71%;
  background: url(../images/sweepstakes_photo_n.png) center top no-repeat;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0;
  
}
@media (min-width:768px) {
  .sweepstakes {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .sweepstakes .content {
    z-index: 125;
  }
  .sweepstakes .content .para1 {
    padding-top:40px;
  }
  .sweepstakes .content .para1 p {
    font-size: 1.8rem;
    text-align: center;
    color: #7d6a49;
  }
  .sweepstakes .toowideimg {
    padding-top:15px;
  }
  .sweepstakes .toowideimg h2 {
    max-width: 1052px;
    width:100%;
    margin: 0 auto;
  }
  .sweepstakes .toowideimg h2 span {
    display: block;
    width:100%;
    padding-top:47.34%;
    background: url(../images/sweepstakes_photo_w.png) center top no-repeat;
    background-size: contain;
    
  }
  .sweepstakes .content .para2 {
    padding-top:30px;
  }
  .sweepstakes .content .para3 {
    padding-top:15px;
  }
  .sweepstakes .content .para4 {
    padding-top:12px;
  }
}
@media (min-width:900px) {
  .sweepstakes .toowideimg h2 {
    width:105%;
    margin:0 -2.5%;
    
  }
}
@media (min-width:1000px) {
  .sweepstakes .toowideimg h2 {
    width:110%;
    margin:0 -5%;
    
  }
}
@media (min-width:1100px) {
  .sweepstakes .toowideimg h2 {
    width:122.33%;
    margin:0 -11.17%;
    
  }
}
.sweepstakes .para_wrap {
  max-width:620px;
  padding:0 25px;
  margin: 0 auto;
  box-sizing:content-box;
  line-height: 1.3;
}
.sweepstakes .para2 {
  padding-top:10px;
}
.sweepstakes .para2 p {
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  color: #7d6a49;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.sweepstakes .para3 {
  padding-top: 10px;
}
.sweepstakes .para3 p {
  font-size: 1.5rem;
  text-align: center;
}
.sweepstakes .para4 {
  padding-top: 10px;;
}
.sweepstakes .para4 p {
  font-size: 1.5rem;
  text-align: center;
}
.sweepstakes .para4 p strong {
  font-weight: 600;
  color: #9c865f;
}
.sweepstakes .list1 {
  margin-top:23px;
  padding-top:25%;
  background: url(../images/sweepstakes_list_n.jpg) center top no-repeat;
  background-size: contain;
}
.sweepstakes .list1 p {
  font-style: italic;
  color: #7d6a4c;
  text-align: center;
}
.sweepstakes .para5 {
  padding-top: 22px;
}
.sweepstakes .para5 p {
  font-size: 1.1rem;
}
.sweepstakes .para_wrap2 {
  
  max-width:620px;
  padding:0 25px;
  box-sizing:content-box;
}
.sweepstakes .para6 {
  margin-top:5px;
  padding-top:5px;
  border-top:solid 1px #d9d9d9;
  padding-bottom: 15px;
}
.sweepstakes .para6 p {
  
  font-size: 1.1rem;
}
.sweepstakes .list1 p {
  text-align: left;
}
.sweepstakes .list1 ul {
  padding-left: 15px;
  margin:0;
  padding-top: 10px;
}
.sweepstakes .list1 ul li {
  padding:3px 0;
  color: #7d6a4c;
}
.sweepstakes .list1 ul li p {
  line-height: 1.2;
}
.sweepstakes .btn {
  padding-top: 16px;
}
.sweepstakes .btn ul {
  list-style-type: none;
  padding-left: 0;
  margin:0;
}
.sweepstakes .btn ul li {
  padding:12px 0;
}
.sweepstakes .btn p a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
}
.sweepstakes .btn p a span {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
}
.sweepstakes .btn p a span em {
  font-size: 1.4rem;
  font-style: normal;
}
.sweepstakes .btn .new p a {
  background: linear-gradient(120deg, rgba(0,169,168,1) 0%, rgba(0,169,168,.8) 40%, rgba(0,169,168,.6) 50%, rgba(0,169,168,.8) 60%, rgba(0,169,168,1) 100%);
}
.sweepstakes .btn .current p a {
  background: linear-gradient(120deg, rgba(36,60,155,1) 0%, rgba(36,60,155,.8) 40%, rgba(36,60,155,.6) 50%, rgba(36,60,155,.8) 60%, rgba(36,60,155,1) 100%);
}
.sweepstakes .btn .new p a:hover {
  background: linear-gradient(120deg, rgba(0,169,168,.9) 0%, rgba(0,169,168,.7) 40%, rgba(0,169,168,.5) 50%, rgba(0,169,168,.7) 60%, rgba(0,169,168,.9) 100%);
}
.sweepstakes .btn .current p a:hover {
  background: linear-gradient(120deg, rgba(36,60,155,.9) 0%, rgba(36,60,155,.7) 40%, rgba(36,60,155,.5) 50%, rgba(36,60,155,.7) 60%, rgba(36,60,155,.9) 100%);
}
@media (min-width:768px) {
  .sweepstakes .para2 p {
    font-size: 3.2rem;
  }
  .sweepstakes .para3 p {
    font-size: 1.8rem;
  }
  .sweepstakes .para4 p {
    font-size: 1.8rem;
  }
  .sweepstakes .list1 {
    margin-top:27px;
    padding-top:20.65%;
    background: url(../images/sweepstakes_list_w.jpg) center top no-repeat;
    background-size: contain;
  }
  .sweepstakes .list1 ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding-left: 0;
  }
  .sweepstakes .list1 ul li {
    flex-basis: 28%;
    
  }
  .sweepstakes .list1 ul li p {
    text-align: center;
  }
  .sweepstakes .btn {
    padding-top: 27px;
  }
  .sweepstakes .btn ul {
    display: flex;
    justify-content: space-between;
  }
  .sweepstakes .btn ul li {
    flex-basis: 45%;
  }
  .sweepstakes .btn p a {
    height: 67px;
    line-height: 1.2;
  }
  .sweepstakes .btn p a span{
    font-size: 1.8rem;
  }
  .sweepstakes .btn p a span em {
    font-size: 1.6rem;
  }
  .sweepstakes .para5 {
    padding-top: 10px;
  }
  .sweepstakes .para5 p {
    font-size: 1.4rem;
    line-height: 1.2;
    
  }
  .sweepstakes .para_wrap2 {

    max-width:750px;
    margin: 0 auto;
    
  }
  .sweepstakes .para6 {
    margin-top:25px;
    padding-top:8px;
    padding-bottom: 30px;
  }
  
  .sweepstakes .para6 p {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.bg_tokyotower {
  background: url(../images/bg_tokyotower.jpg) center top no-repeat;
  background-size: cover;
  height: 67.74vw;
}
@media (min-width:1000px) {
  .bg_tokyotower {
    background: url(../images/bg_tokyotower.jpg) center top no-repeat;
    background-size: cover;
    height: 39.95vw;
  }
}

.story {
  background: url(../images/bg_story_line.gif) #fff right top no-repeat;
  background-size: 40% auto;
  padding-top:55px;
}
.story .para1 h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-size: 3.2rem;
  color: #9c865f;
  text-align: center;
  padding-top:35px;
  background: url(../images/icon_header_black.png) center top no-repeat;
  background-size: 9px 18px;
}
.story .para1 h2 span {
  color: #000;
}
.story .para1 h2::after {
  padding-top: 10px;
  display: block;
  content: '';
  height: 1px;
  border-bottom:solid 1px #000;
  max-width: 137px;
  margin:0 auto;
}
.story .para2 {
  padding: 20px 15px 0;
}
.story .para2 p {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.3;

}
.story .para2 p strong {
  font-weight: normal;
}
.story .para3 {
  max-width: 820px;
  margin:0 auto;
  padding:10px 15px 0;
}
.story .para3 p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  
}

@media (min-width:768px) {
  .story {
    padding-top:105px;
  }
  .story .para1 h2 {
    font-size: 7rem;
    background-size: 18px 36px;
    padding-top:60px;
  }
  .story .para1 h2::after {
    max-width: 272px;
  }
  .story .para2 {
    padding-top:50px;
  }
  .story .para2 p {
    font-size: 3.2rem;
  }
  .story .para3 {
    padding-top:15px;
  }
  .story .para3 p {
    font-size: 1.8rem;
  }
}
.swiper { 
  box-sizing: border-box;
  /* box-sizing: content-box; */
  width: 100%;
  height: 100%;
}
#swiper_wrap {
  max-width: 100%;
  margin: 0 auto;  
  padding-top:55px;
  padding-bottom: 10px;
}

.mySwiper .swiper-slide {
  height: 500px;
  box-sizing: border-box;
}

.mySwiper {
  width: 100%;
  padding-right: 10px; /* 半分だけ見える余白を作る */
}

.mySwiper .swiper-slide {
  width: 100%; /* メインのスライド幅（必要に応じて調整） */
  flex-shrink: 0;
  margin-left: 0;
}

@media (min-width:768px) {
  #swiper_wrap {
    padding-top:100px;
    padding-bottom: 10px;
  }
  .mySwiper {
    width: 100%;
    padding-right: 100px; /* 半分だけ見える余白を作る */
    
  }
  .mySwiper .swiper-slide {
    height: 500px;
    width: 95%;
  }
}
@media (min-width:992px) {
  .mySwiper .swiper-slide {
    height: 400px;
  }
}
@media (min-width:1400px) {
  .mySwiper .swiper-slide {
    height: 620px;
  }
}
.mySwiper {
  min-height: 300px;
} 

.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding:10px 0;
}

#swiper_wrap .swiper-button-prev,
#swiper_wrap .swiper-button-next {
  position: static !important; /* デフォルトの絶対位置を無効に */
  width: 22px;
  height: 22px;
  color: blue;
}

#swiper_wrap .swiper-pagination {
  position: static !important;  /* ← コレが重要！！ */
  padding-bottom: 10px;
  text-align: center;
}
#swiper_wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  width:auto;
}
:root {
    --swiper-navigation-size: 22px
}

.slidecontent {
  position: relative;
  height: 100%;
}
.mySwiper .bgimg {
  position: absolute;
  width:95.66%;
  z-index: 1;
}
.mySwiper .bgimg::before {
  display: block;
  content: '';
  width:100%;
  padding-top: 68.27%;
}

.mySwiper .textswrap {
  position: absolute;
  bottom: 0;
  
  z-index: 3;
}
.mySwiper .flextexts {
  padding:0 30px;
}
.mySwiper .textcontents {
  text-align: center;
  border:solid 1px #9c865f;
  padding:30px;
  background: rgba(255,255,255,.8);
}
.mySwiper .textcontents h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: normal;
  padding-bottom: 10px;
}
.mySwiper .textcontents p {
  font-size: 1.5rem;
  padding:5px 0;
}
.mySwiper .textcontents p a {
  padding: 0 5px 5px;
  display: inline-block;
  color: #00a9bc;
  text-decoration: none;
  background: url(../images/link_arrow.gif) center bottom no-repeat;
  background-size: contain;
  
  
}
@media (min-width:768px) {
  .mySwiper .bgimg {
    position: absolute;
    width:70.18%;
    z-index: 1;
  } 
  .mySwiper .bgimg::before {
    display: block;
    content: '';
    width:100%;
    padding-top: 56.39%;
  }
  .mySwiper .textswrap {
    right:0;
    
    width:70%;
  }
  .mySwiper .flextexts {
    padding:0;
  }
  .mySwiper .to-active .textswrap {
    animation: moveLeft 0s ease forwards;
  } 
  @keyframes moveLeft {
    0% {
      right:0;
    }
    50% {
      right:-200px;
    }
    100% {
      right:0;
    }
  }
  .from-active .textswrap {
    animation: moveLeft2 0s ease forwards;
  } 
  @keyframes moveLeft2 {
    0% {
      right:0;
    }
    50% {
      right:500px;
    }
    100% {
      right:0;
    }
  }
}

@media (min-width:1400px) {
  .mySwiper .textcontents h2 {
    font-size: 2.6rem;
    padding-bottom: 10px;
    line-height: 1.3;
  }
  .mySwiper .textcontents p {
    font-size: 1.8rem;
    padding:5px 0;
    line-height: 1.3;
  }
  .mySwiper .textswrap {
    width:50%;
    
  }
  .mySwiper .textcontents {
    padding: 60px;   
  }
}
#slide0 .bgimg::before {
  background: url(../images/slide0_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
#slide1 .bgimg::before {
  background: url(../images/slide1_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
#slide2 .bgimg::before {
  background: url(../images/slide2_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
#slide3 .bgimg::before {
  background: url(../images/slide3_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
#slide4 .bgimg::before {
  background: url(../images/slide4_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
#slide5 .bgimg::before {
  background: url(../images/slide5_bg.jpg) #fff center no-repeat;
  background-size: cover;
  opacity: 1;
}
.mySwiper .logo {
  position: absolute;
  z-index:2;
  width:150px;
  height: 27px;
  margin-left: 20px;
  margin-top:20px;
  
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0;

}
#slide0 .logo {
  background: url(../images/slide0_logo.png) center no-repeat;
  background-size: contain;
}
#slide1 .logo {
  background: url(../images/slide1_logo.png) center no-repeat;
  background-size: contain;
}
#slide2 .logo {
  background: url(../images/slide2_logo.png) center no-repeat;
  background-size: contain;
}
#slide3 .logo {
  background: url(../images/slide3_logo.png) center no-repeat;
  background-size: contain;
}
#slide4 .logo {
  background: url(../images/slide4_logo.png) center no-repeat;
  background-size: contain;
}
#slide5 .logo {
  background: url(../images/slide5_logo.png) center no-repeat;
  background-size: contain;
}
.to-active .bgimg {
  animation: zoomBg 0 ease forwards;
}
@keyframes zoomBg {
  0% {
    background-size: cover;
    opacity: 1;
  }
  100% {
    background-size: cover;
    opacity: 1;
  }
}
.from-active .bgimg {
  animation: zoomOutBg 0s ease forwards;
}
@keyframes zoomOutBg {
  0% {
    background-size: cover;
    opacity: 1;
  }
  100% {
    background-size: cover;
    opacity: 1;
  }
}

#swiper_wrap .swiper-button-prev, 
#swiper_wrap .swiper-button-next {
    color: #969696;
}
#swiper_wrap .swiper-pagination-bullet-active {
    background: #00b6ca;
}

.story .list {
  padding:20px 15px 20px;
}
.story .list ul {
  margin:0 auto;
  list-style-type: none;
  max-width: 1004px;
  width:100%;
  padding:0;
  
  flex-direction: column;
  
}
.story .list ul li {
  max-width: 470px;
  margin:0 auto;
  padding-bottom: 30px;
}
.story .list ul li p {
  max-width: 470px;
  margin:0 auto;
  width:100%;
  margin:0;
}
.story .list ul li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-top:21.27%;
  background: red;
  line-height: 0;
  height: 0;
  text-indent: -9999px;
}
.story .list ul li.bannerA a {
  background: url(../images/tokyobannera.jpg) center no-repeat;
  background-size: contain;
}
.story .list ul li.bannerB a {
  background: url(../images/tokyobannerb.jpg) center no-repeat;
  background-size: contain;
  
}
@media (min-width:768px) {
  .story .list {
    padding-bottom:90px;
  }
  .story .list ul {
    display: flex;
    justify-content:space-between;
    flex-direction: row;
  }
  .story .list ul li {
    max-width: inherit;
    margin:0;
    flex-basis: 49%;    
  }
  .story .list ul li.bannerA p {
    margin-left: 0;
    margin-right: auto;
    background: pink;
  }
  .story .list ul li.bannerB p {
    margin-left: auto;
    margin-right: 0;
    background: greenyellow;
  }
}

.access {
  background: #000;
  padding-top:55px;
  padding-left:15px;
  padding-right: 15px;
}
.access .para1 h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  padding-top:35px;
  background: url(../images/icon_header_white.png) center top no-repeat;
  background-size: 9px 18px;
}
.access .para1 h2 span {
  color: #fff;
}
.access .para1 h2::after {
  padding-top: 10px;
  display: block;
  content: '';
  height: 1px;
  border-bottom:solid 1px #fff;
  max-width: 137px;
  margin:0 auto;
}
.access .para2 {
  padding-top:20px;
}
.access .para2 p {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.3;
  color: #fff;

}
.access .para2 p strong {
  font-weight: normal;
}
.access .para3 {
  max-width: 820px;
  margin:0 auto;
  padding-top:10px;
}
.access .para3 p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  
}
.access .video {
  padding: 50px 0;
  max-width:1004px;
  width:100%;
  margin: 0 auto;
}
@media (min-width:768px) {
  .access {
    padding-top:105px;
  }
  .access .para1 h2 {
    font-size: 7rem;
    background-size: 18px 36px;
    padding-top:60px;
  }
  .access .para1 h2::after {
    max-width: 272px;
  }
  .access .para2 {
    padding-top:50px;
  }
  .access .para2 p {
    font-size: 3.2rem;
  }
  .access .para3 {
    padding-top:15px;
  }
  .access .para3 p {
    font-size: 1.8rem;
  }
  .access .video {
    padding: 80px 0 100px;
  }
}

/* sec4. */
.sec4 {
	padding-bottom: 25px;
	background: #02125b;
  position: relative;
}
.sec4 .dflex {
	display: flex;
	flex-direction: column-reverse;
	
}
.sec4 .para3 p a {
  color: #00aff0;
}
.sec4 .dflex .topbottom {
	background: url(../images/sec4bgs.jpg) center top no-repeat;
	background-size: 100%;
	padding-top:calc(67.5% + 75px);
}
.sec4 .memo a,
.sec4 .memo2 a {
	color: rgba(0,172,237,1);
	text-decoration: none;
}
.sec4 .memo a:hover,
.sec4 .memo2 a:hover {
	text-decoration: underline;
}

.sec4 .img {
	max-width: 2560px;
	width:100%;
	height: auto;
}
.sec4 .bottomtop {
	max-width: 2560px;
	width:100%;
	margin:0 auto;
}
.sec4 .dots {
	display: none;
	position: relative;
	max-width: 2560px;

	width:100%;
	height: 100%;
	z-index: 40;
	margin:0 auto;
}
.sec4 .dots a.dot1 {
	position: absolute;
	top: calc(66% - 38px);
	left: calc(27% - 38px);
}
.sec4 .dots a.dot2 {
	position: absolute;
	top: calc(80% - 38px);
	left: calc(67% - 38px);
}
.sec4 .dots a.dot3 {
	position: absolute;
	top: calc(52% - 38px);
	left: calc(48% - 38px);
}
@media (min-width:2560px){
	.sec4 .dots a.dot1 {
		position: absolute;
		top: 25.6vw;
		left: 25.6vw;
	}
	.sec4 .dots a.dot2 {
		position: absolute;
		top: 30.5vw;
		left: 64vw;
	}
	.sec4 .dots a.dot3 {
		position: absolute;
		top: 20vw;
		left:45vw;
	}
}

.sec4 .contents {
	width:100%;
	background: #02125b;
	padding:0 5%;
}
.sec4 .icon {
	max-width: 62px;
	width: 100%;
	padding:43px 0 8px;
	margin:0 auto;
}
.sec4 .icon img {
	margin: 0 auto;
}

.sec4 .popup {
	position:inherit;
	
}
.sec4 .popup .btnclose {
	display: none;
	position: absolute;
	top: -30px;
	right: -30px;
}
.sec4 .popup .main>div {
	background: #02125b;
	padding:0 5% 10px;
	width:100%;
	
}
.sec4 .popup .main img {
	width:100%;
	height:auto;
}
.sec4 .popup p {
	padding:10px 0;
	color: #fff;
	text-align: left;
	font-size: 1.6rem;

}


.sec4 .blockps {
	padding:13px 0;
}
.sec4 .blockps p strong {
	font-size: 1.6rem;
	
}
.sec4 .blockp {
	max-width: 1000px;
	box-sizing: border-box;
	padding:0 0;
	margin: 0 auto;
}
.sec4 .blockp p {
	font-size: 1.3rem;
	line-height: 1.3;
}

.sec4 .para4 {
  padding: 30px 0 53px;
}
.sec4 .para4 p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: .15rem;
  
}
.sec4 .para4 p a {
  padding: 0 5px 5px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: url(../images/link_arrow_white.gif) center bottom no-repeat;
  background-size: contain;
}
.sec4 .memo {
	display: none;
}
.sec4 .memo2 {
	padding:0 5%;
	display: block;
	
}
.sec4 .memo2 p {
	font-size: xx-small;
	line-height: 1.3;
}
@media (min-width:768px) {
  
  
  .sec4 .para4 {
    padding: 40px 0 0px;
  }
  .sec4 .para4 p {
    font-size: 1.6rem;    
  }
}
@media (min-width:1000px) {
	.sec4 {
		padding-bottom: 0;
		background:none;
	}
	.sec4 .dflex {
		display: block;
	}
	.sec4 .icon {
		width: 100%;
		padding:97px 0 30px;
	}
	.sec4 .popup {
		position:absolute;
		top: calc(22vw - 166px);
		left: calc(50% - 254px);
	}
	.sec4 .popup .btnclose {
		display: block;
	}
	.sec4 .dflex .topbottom {
		background:none;
		padding-top:0;
	}
	.sec4 .contents {
		padding:80px 0 69px;
	}
	.sec4 .icon {
		max-width: 100%;
		padding:0 0 30px;
	}
	.sec4 .blockps {
		padding:13px 0;
	}
	.sec4 .blockps p strong {
		font-size: 3.2rem;
		
	}
	.sec4 .blockp {
		max-width: 1000px;
		box-sizing: border-box;
		padding:5px 5%;
		margin: 0 auto;
	}
	.sec4 .blockp p {
		font-size: 1.6rem;
		line-height: 1.6;
	}
	.sec4 .memo {
		display: block;
	}
	.sec4 .img {
		max-width: 2560px;
		width:100%;
		height: 39.95vw;
		background: url(../images/sec4bg.jpg) no-repeat;
		background-size: cover;
	}
	.sec4 .dots {
		display: block;
	}
	.sec4 .popup p {
    font-size: 1.3rem;

  }
	.sec4 .popup .main>div {
		background: #fff;
		padding:10px;
		width:468px;
		height:333px;
		
	}
	.sec4 .popup p {
		padding:5px 0;
		color: #000;
		text-align: left;
		font-size: 1.6rem;
	}
	.sec4 .memo2 {
		display: none;
	}
	.opacity2zero {
		opacity:0;
		z-index: 30;
		transition: 1s;
		
	}
	
	.opacity2one {
		opacity: 1;
		z-index: 50;
		transition: 1s;	
	}
	.dotnone {
		display: none;
		width:0;
	}
	
	.dotblock {
		display: block;	
	}
	.sec4 .dots a {
		position: relative;
		display: block;
		width:76px;
		height: 76px;
		border-radius: 50%;
		background: rgba(255,255,255,0);
		transition: 1s;
	}
	.sec4 .dots a::before {
		content: '';
		position: absolute;
		top:25px;
		left:25px;
		display: block;
		width:26px;
		height: 26px;
		border-radius: 50%;
		background: rgba(255,255,255,1);
		transition: 1s;
	}
	.sec4 .dots a span {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width:76px;
		height: 76px;
		border-radius: 50%;
		box-sizing: border-box;
	}
	.sec4 .dots a span::before {
		content: '';
		width:21px;
		height: 21px;
		border-radius: 50%;
		box-sizing: content-box;
		border-style: solid;
		border-width: 25px;
		background-clip: padding-box;
		border-color: rgba(255,255,255,0.3);
		transition: background 1s;
	}
	.sec4 .dots a span.borderanime::before {
		animation: border-animation 1s infinite alternate ease-in-out;
	}
	@keyframes border-animation{
		0%{
			border-width: 25px;
		}
		100%{
			border-width: 0px;
		}
	}
	.sec4 .dots a:hover {
		background: rgba(0,172,237,0.3);
	}
	.sec4 .dots a:hover::before {
		background: rgba(0,172,237,1);
	}
	.sec4 .dots a:hover span {
		display: none;
	}
}
@media (min-width:1390px) {
	.sec4 .popup {
		position:absolute;
		top: calc(22vw - 260px);
		left: calc(50% - 351px);
	}
  .sec4 .popup p {
		padding:10px 0;
	}
	.sec4 .popup .main>div {
		background: #fff;
		padding:10px;
		width:703px;
		height:500px;
		
	}
}
/* .sec4 */


.room {
  background: #02125b;
  padding-top:0px;
  padding-left:15px;
  padding-right: 15px;
}
.room .para1 h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  padding-top:35px;
  background: url(../images/icon_header_white.png) center top no-repeat;
  background-size: 9px 18px;
}
.room .para1 h2 span {
  color: #fff;
}
.room .para1 h2::after {
  padding-top: 10px;
  display: block;
  content: '';
  height: 1px;
  border-bottom:solid 1px #fff;
  max-width: 137px;
  margin:0 auto;
}
.room .para2 {
  padding-top:20px;
}
.room .para2 p {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.3;
  color: #fff;

}
.room .para2 p strong {
  font-weight: normal;
}
.room .para3 {
  max-width: 820px;
  margin:0 auto;
  padding-top:10px;
}
.room .para3 p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  
}
@media (min-width:768px) {
  .room {
    padding-top:0px;
  }
  .room .para1 h2 {
    font-size: 7rem;
    background-size: 18px 36px;
    padding-top:60px;
  }
  .room .para1 h2::after {
    max-width: 272px;
  }
  .room .para2 {
    padding-top:50px;
  }
  .room .para2 p {
    font-size: 3.2rem;
  }
  .room .para3 {
    padding-top:15px;
  }
  .room .para3 p {
    font-size: 1.8rem;
  }
  
}



.dining {
  background: #02125b;
  padding-top:0px;
  padding-left:15px;
  padding-right: 15px;
  padding-bottom: 80px;
}
.dining p {
  color: #fff;
}
.dining ul {
 margin: 0;
 list-style: none;
 padding-left: 0; 
}
.dining .para1 h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  padding-top:35px;
  background: url(../images/icon_header_white.png) center top no-repeat;
  background-size: 9px 18px;
}
.dining .para1 h2 span {
  color: #fff;
}
.dining .para1 h2::after {
  padding-top: 10px;
  display: block;
  content: '';
  height: 1px;
  border-bottom:solid 1px #fff;
  max-width: 137px;
  margin:0 auto;
}
.dining .para2 {
  padding-top:20px;
}
.dining .para2 p {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.3;
  color: #fff;

}
.dining .para2 p strong {
  font-weight: normal;
}
.dining .para3 {
  max-width: 820px;
  margin:0 auto;
  padding-top:10px;
  padding-bottom: 20px;
}
.dining .para3 p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  
}
@media (min-width:768px) {
  .dining {
    padding-top:0px;
    padding-bottom: 110px;
  }
  .dining .para1 h2 {
    font-size: 7rem;
    background-size: 18px 36px;
    padding-top:60px;
  }
  .dining .para1 h2::after {
    max-width: 272px;
  }
  .dining .para2 {
    padding-top:50px;
  }
  .dining .para2 p {
    font-size: 3.2rem;
  }
  .dining .para3 {
    padding-top:15px;
    padding-bottom: 30px;
  }
  .dining .para3 p {
    font-size: 1.8rem;
  }
  
}
.dining .dflex ul {
  display: flex;
  max-width: 1004px;
  margin:0 auto;
  justify-content: space-between;
  flex-direction: column;
}
.dining .dflex ul li {
  flex-basis: 50%;
}
.dining .dflex ul li.diningA .box {
  width:100%;
  
}
.dining .dflex ul li .box::before {
  display: block;
  content: '';
  width:100%;
  padding-top:65.59%;
}
.dining .dflex ul li.diningA .box::before {
  background: url(../images/diningA.jpg) center top no-repeat;
  background-size: contain;
}
.dining .dflex ul li.diningB .box::before {
  background: url(../images/diningB.jpg) center top no-repeat;
  background-size: contain;
}
.dining .dflex ul li.diningC .box::before {
  background: url(../images/diningC.jpg) center top no-repeat;
  background-size: contain;
}
.dining .dflex ul li.diningD .box::before {
  background: url(../images/diningD.jpg) center top no-repeat;
  background-size: contain;
}
.dining .dflex ul li p {
  padding: 10px 0 30px;
}
@media (min-width:768px) {
  .dining .dflex ul {
    flex-direction: row;
  }
 .dining .dflex ul li {
    flex-basis: 48%;
  } 
}

.dining .btn {
  padding-top: 16px;
}
.dining .btn p {
  background: #fff;
  border-radius: 5px;
  max-width: 280px;
  margin:0 auto;
  
}
.dining .btn p a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;

  
}
@media (min-width:768px) {
  .dining .btn {
    padding-top: 60px;
  }
  .dining .btn p a {
    height: 67px; 
  } 
}
.dining .btn p a {
  background: linear-gradient(120deg, rgba(58,117,224,1) 0%, rgba(58,117,224,.8) 40%, rgba(58,117,224,.7) 50%, rgba(58,117,224,.8) 60%, rgba(58,117,224,1) 100%);
}
.dining .btn p a:hover {
  background: linear-gradient(120deg, rgba(58,117,224,.9) 0%, rgba(58,117,224,.7) 40%, rgba(58,117,224,.5) 50%, rgba(58,117,224,.7) 60%, rgba(58,117,224,.9) 100%);
}
.dining .banner {
  padding: 35px 0;
}
.dining .banner p {
  max-width: 800px;
  margin: 0 auto;
}
.dining .banner a {
  background: url(../images/THERoomFX_1600x240.jpg) no-repeat;
  background-size: contain;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-top:15%;
  line-height: 0;
  height: 0;
  text-indent: -9999px;
}

@media (min-width:768px) {
  .dining .banner {
    padding: 60px 0;
  } 
}



.accomm {
  background: url(../images/bgline_accomm2.gif) #fff right top no-repeat;
  background-size: 40% auto;
  padding-top:55px;
}

.accomm .para1 h2 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-weight: normal;
  font-size: 3.2rem;
  color: #9c865f;
  text-align: center;
  padding-top:35px;
  background: url(../images/icon_header_black.png) center top no-repeat;
  background-size: 9px 18px;
}
.accomm .para1 h2 span {
  color: #000;
}
.accomm .para1 h2::after {
  padding-top: 10px;
  display: block;
  content: '';
  height: 1px;
  border-bottom:solid 1px #000;
  max-width: 137px;
  margin:0 auto;
}
.accomm .para2 {
  padding-top:20px;
}
.accomm .para2 p {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.3;

}
.accomm .para2 p strong {
  font-weight: normal;
}
.accomm .para3 {
  max-width: 820px;
  margin:0 auto;
  padding:10px 15px 0;
}
.accomm .para3 p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  
}

@media (min-width:768px) {
  .accomm {
    padding-top:105px;
  }
  .accomm .para1 h2 {
    font-size: 7rem;
    background-size: 18px 36px;
    padding-top:60px;
  }
  .accomm .para1 h2::after {
    max-width: 272px;
  }
  .accomm .para2 {
    padding-top:50px;
  }
  .accomm .para2 p {
    font-size: 3.2rem;
  }
  .accomm .para3 {
    padding-top:15px;
  }
  .accomm .para3 p {
    font-size: 1.8rem;
  }
}
.accomm .list {
  padding:20px 15px;
}
.accomm .list ul {
  list-style-type: none;
  padding-left: 0;
  margin:0 auto;
}
.accomm .list li::before {
  margin:0 auto 20px;
}
.accomm .list .listA::before {
  display: block;
  content: '';
  background: url(../images/accmodation_logo_theprincegallery.png) top center no-repeat;
  background-size: contain;
  width:150px;
  height: 135px;
  
}
.accomm .list .listB::before {
  display: block;
  content: '';
  background: url(../images/accmodation_logo_takanawahanakoro.png) top center no-repeat;
  background-size: contain;
  width:150px;
  height: 165px;
}

@media (min-width:768px) {
  .accomm .list {
    padding:80px 15px;
  }
  .accomm .list ul {
    display: flex;
    justify-content: space-between;
    max-width: 1104px;
    width:100% !important;

  }
  .accomm .list ul li {
    flex-basis: 49%;
    max-width: 520px;
    width:49% !important;
  }
  .accomm .list ul li.listA {
    padding-top: 32px;
  }
  .accomm .list .listA::before {
    width:230px;
    height: 199px;
    
  }
  .accomm .list .listB::before {
    width:210px;
    height: 231px;
  }
}

.accomm .para4 {
  padding-top:20px;;
}
.accomm .para4 h3 {
  font-family: 'PrattNovaFine', 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: normal;
  text-align: center;
  text-align: left;
}
.accomm .para5 {
  padding-top:10px;
}
.accomm .para5 p {
  font-size: 1.5rem;
  line-height: 1.3;
  
}
.accomm .para6 {
  padding-top:20px;
  padding-bottom: 50px;
}
.accomm .para6 p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: .15rem;
  
}
.accomm .para6 p a {
  padding: 0 5px 5px;
  display: inline-block;
  color: #00a9bc;
  text-decoration: none;
  background: url(../images/link_arrow.gif) center bottom no-repeat;
  background-size: contain;
}
@media (min-width:768px) {
  
  .accomm .para4 {
    padding-top:30px;
  }
  .accomm .para4 h3 {
    font-size: 2.6rem;
    text-align: left;
  }
  .accomm .para5 {
    padding-top:25px;
  }
  .accomm .para5 p {
    font-size: 1.8rem;
  }
  .accomm .para6 {
    padding-top: 30px;
  }
  .accomm .para6 p {
    font-size: 1.6rem;    
  }
}
.airplane {
  padding-top: 50px;
}
.airplane::after {
  display: block;
  content: '';
  background: url(../images/bgbtom_accomm_n.png) center bottom no-repeat;
  background-size: cover;
  padding-top: 63.73%;
}
@media (min-width:375px) {
  .airplane::after {
    background: url(../images/bgbtom_accomm_n.png) center bottom no-repeat;
    background-size: cover;
    padding-top: 239px;
  }
}
@media (min-width:768px) {
  .airplane {
    padding-top: 0px;
  } 
  .airplane::after {
    padding-top: 390px;
    background: url(../images/bgbtom_accomm_w.png) center bottom no-repeat;
    background-size: cover;
  }  
}
@media (min-width:1500px) {
  .airplane::after {
    padding-top: 647px;
    
  }
}
@media (min-width:2560px) {
  .airplane::after {
    background-size: contain;
  }
}

.accomm .custom-slide .swiper-slide {
  padding-top: 67.69%;
}
#img1 {
  background: url(../images/accmodation_theprincegallery1.jpg) center no-repeat;
  background-size: cover;
}
#img2 {
  background: url(../images/accmodation_theprincegallery2.jpg) center no-repeat;
  background-size: cover;
}
#img3 {
  background: url(../images/accmodation_theprincegallery3.jpg) center no-repeat;
  background-size: cover;
}
#img4 {
  background: url(../images/accmodation_takanawahanakoro1.jpg) center no-repeat;
  background-size: cover;
}
#img5 {
  background: url(../images/accmodation_takanawahanakoro2.jpg) center no-repeat;
  background-size: cover;
}
#img6 {
  background: url(../images/accmodation_takanawahanakoro3.jpg) center no-repeat;
  background-size: cover;
}

.accomm .swiper-button-next, 
.accomm .swiper-button-prev {
  color: #fff;
}
.accomm .swiper-button-prev.custom-arrow2 {
  left:0;
}
.accomm .swiper-button-prev.custom-arrow2::after {
  background: rgba(0,0,0,.7);
  padding:12px 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  left: 8px;
  font-size: 15px;
}

.accomm .swiper-button-next.custom-arrow2 {
  right:0;
}
.accomm .swiper-button-next.custom-arrow2::after {
  background: rgba(0,0,0,.7);
  padding:12px 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
  right: 8px;
  font-size: 15px;
}

footer {
  padding:40px 15px;
  background: #fff;
  border-bottom: solid 9px #9c865f;
}
footer .para0 {
  padding:20px 0;
  font-size: 1.5rem;
}
footer .pagetop {
  display: flex;
  font-weight: 600;
  color: #9c865f;
  justify-content: center;
}
footer .pagetop::before,
footer .pagetop::after {
  
  content: '';
  border-top:solid 2px #9c865f;
  border-right: solid 2px #9c865f;
  width:8px;
  height: 8px;
  transform: rotate(315deg);
  margin:9px 15px 0;

}
footer .para1 {
  padding:20px 0;
}
footer h2 a {
  display: block;
  background: url(../images/logo_footer.gif) no-repeat;
  background-size: contain;
  width:89px;
  height: 39px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0;
  margin:0 auto;
}
footer p {
  text-align: center;
  font-size: 1.1rem;
}
footer .para2 {
  padding:10px 0;
}
footer .para3 {
  padding:10px 0;
}

@media (min-width:768px) {
  footer {
    border-bottom: solid 9px #9c865f;
  }
  footer .para0 {
    display: none;
  }
  footer h2 a {
    width:178px;
    height: 78px;
  }
  footer p {
    font-size: 1.4rem;    
  }
}


/* backtotop. */
.backtotop {
  display: none;
  position:fixed;
	bottom:50px;
	right:50px;
  z-index: 200;

}
.backtotop a {
	display: block;
	background: url(../images/totop.png) #9c865f center no-repeat;
	background-size: 20px 20px;
	width:20px;
	height: 20px;
	padding:30px;
	border-radius: 50%;
}
@media (min-width:768px) {
  .backtotop {
    display: block;
  }
}
/* .backtotop */