/* html */
html {
  scroll-behavior: smooth;
}

/* body */
body {
  color: #444444;
  background-color: #FFFEFE;

  /* 画面いっぱいに要素のサイズを広げる */
  width:100%;
  margin:0;
  height: 100vh; /* スクロールさせず画面に収める場合 */
  
  /* 背景画像の設定*/
  background-image: url('images/oceanview.png');
  background-attachment: fixed; 
  background-repeat: no-repeat; /* 画像をループさせない */
  background-position: center;  /* 画像の中心を基準に配置 */
  background-size: cover;       /* 縦横比を維持して画面全体を覆う */

}

.hidden{
    display:none;
}

/* hyperlink */
a:link {
  color: #448844;
}
a:visited {
  color: #88AA88;
}
a:hover {
  color: #CCCCCC;
}
a:active {
  color: #FFAAAA;
}

h1 {
  font-size:6pt;
  font-weight: normal;
}

/* header footer */
/*--------------------------------------------------
 Header / Footer
--------------------------------------------------*/

header,
footer{
    position:fixed;
    left:0;
    right:0;

    background:#fffdfc;

    text-align:center;

    box-sizing:border-box;
    padding: 0 13% 0 20%;
}

header{
    top:0;
    z-index:4;

    border-left:1px solid rgba(75,175,212,.35);
    border-right:1px solid rgba(75,175,212,.35);
    border-bottom:1px solid rgba(75,175,212,.35);
}

footer{
    bottom:0;
    z-index:3;

    border-left:1px solid rgba(75,175,212,.35);
    border-right:1px solid rgba(75,175,212,.35);
    border-top:1px solid rgba(75,175,212,.35);
}

/*-------------------------
 内側の額縁
--------------------------*/

header::after,
footer::after{

    content:"";

    position:absolute;

    pointer-events:none;
}

/* Header */

header::after{

    left:3px;
    right:3px;
    bottom:3px;
    top:3px;

    border-left:1px dotted #4bafd4;
    border-right:1px dotted #4bafd4;
    border-bottom:1px dotted #4bafd4;
}

/* Footer */

footer::after{

    left:3px;
    right:3px;
    top:3px;
    bottom:3px;

    border-left:1px dotted #4bafd4;
    border-right:1px dotted #4bafd4;
    border-top:1px dotted #4bafd4;
}

header nav,
footer nav{
    width:100%;
}

header nav ul,
footer nav ul{
    width:100%;

    display:flex;
    justify-content:center;   /* 横中央 */
    align-items:center;       /* 縦中央 */

    list-style:none;
    margin:0;
    padding:8px 20px;
    gap:25px;

    box-sizing:border-box;
}

header nav li,
footer nav li{
    display:flex;
    align-items:center;
}

header nav a,
footer nav a{
    display:flex;
    align-items:center;

    text-decoration:none;
    color:#333;
}

/* header logo and switch link */
#topbanner{
    background:#fff;
    color:#fff;

    background-image:url('images/topbanner.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;

    width:100%;
    height:520px;

    margin:40px auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    position: relative;
    overflow:hidden;

    border:3px dotted rgba(255,90,95,.25);

    box-sizing:border-box;

    border-radius:6px;
    box-shadow:
        0 0 0 3px yellow,
        0 6px 12px rgba(0,0,0,.08);
}

#topbanner .big, .big {
  margin: 10px 0 20px;

  font-size: 72px;
  font-weight: bold;

  color: #FFD54A;

  text-shadow:
      3px 3px 8px rgba(0,0,0,0.9);
}

.big {
  color: #0B9D9A;
}

#topbanner p {
  font-size: 22px;

  text-shadow:
      2px 2px 5px rgba(0,0,0,0.8);
}

.lang-ja #topbanner p {
    line-height: 1.8;
}

.lang-en #topbanner p {
    line-height: 1.0;
}

#topbanner::after{

    content:"";

    position:absolute;

    top:5px;
    left:5px;
    right:5px;
    bottom:5px;

    border:3px dotted rgba(255,90,95,.25);

    border-radius:8px;

    pointer-events:none;
}

#topbanner>*{
    position:relative;
    z-index:1;
}

/* navi link display */
nav ul {
  width: 60%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  list-style: none;
}
nav ul li {
  width: 25%;
}
nav ul li.rooms {
  width: 40%;
  padding: 5px;
  margin: 10px;
}
nav ul li.tambuli {
  background-color: #DDFFDD;
  border: 3px outset #FFDDEE;
}
nav ul li.eight {
  background-color: #FFDDFF;
  border: 3px outset #EEFFDD;
}

.topservice{
  display:flex;
  justify-content:space-between;
  align-items: center;   /* ←これで上下中央に揃う */
}

.top-features{

    display:flex;

    justify-content:center;

    gap:18px;              /* 25→18 */

    margin:18px auto 10px; /* 上下を縮小 */

    flex-wrap:wrap;
}

.feature-card{

    display:flex;

    align-items:center;

    gap:14px;              /* 18→14 */

    background: rgba(255,255,255,.92);
    backdrop-filter: blur(3px);

    padding:14px 22px;     /* 少し小さく */

    border-radius:14px;

    box-shadow:
        0 6px 20px rgba(0,0,0,.15);

    transition:.25s;
}

.feature-card:hover{

    transform:translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);
}

.icon{

    font-size:36px;        /* 46→36 */

    color:#00A699;
}

.feature-text{

    display:flex;

    flex-direction:column;

    line-height:1.25;      /* 1.45→1.25 */
}

.feature-text .title{

    font-size:22px;        /* 28→22 */

    font-weight:bold;

    color:#333;
}

.feature-text span:last-child{

    font-size:17px;        /* 22→17 */

    font-weight:600;
}

.airbnb{

    color:#FF5A5F;
}

.hero-subtitle{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.hero-button{

    text-align:center;

    margin:8px 0 15px;     /* ボタンとの間隔を縮小 */
}

.hero-button a{

    display:inline-block;

    padding:13px 42px;     /* 18×60 → 13×42 */

    background:#00A699;

    color:white;

    text-decoration:none;

    font-size:24px;        /* 30→24 */

    font-weight:bold;

    border-radius:10px;

    box-shadow:
        0 8px 18px rgba(0,166,153,.35);

    transition:.25s;
}

.hero-button a:hover{

    background:#009688;

    transform:translateY(-3px);

    box-shadow:
        0 12px 24px rgba(0,166,153,.45);
}

.leftdisp{
    padding-left:0;
}

.profile-text {
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.08em;
}

.profile-text p {
    margin: 0;
}

.profile-text p:first-child {
    font-size: 22px;
    font-weight: 700;
}

.profile-text p:last-child {
    font-size: 24px;
    font-weight: 700;
}

.lang-ja .profile-text p:first-child {
    color: #333;
}

.lang-ja .profile-text p:last-child {
    color: #d62d20;      /* Airbnbをイメージした赤 */
}

.lang-en .profile-text p:first-child {
    color: #d62d20;      /* Airbnbをイメージした赤 */
}

#main {
  z-index: 1;
  position: relative;
  display: block;
  margin: auto;
  text-align: left;
  top: 450px;
  width: 80%;
  padding-bottom: 30px;
}

#main2 {
  z-index: 1;
  position: relative;
  display: block;
  text-align: left;
  /* top: 100px; */
  padding-bottom: 30px;
  max-width:1200px;
  width:95%;
  margin:auto;
}

#c8, #d3, #inq, .grey {
  width: 100%;
}

#banner {
  width: 80%;
}

.airbnb-intro{
    width:90%;
    max-width:1200px;
    margin:20px auto;

    padding:40px 50px;

    border:4px solid #FF5A5F;
    border-radius:24px;


    box-shadow:
        0 10px 30px rgba(255,90,95,.15);

    position:relative;
}

.airbnb-intro, .intro-document {
    background-image: url('images/woodpattern.png');
    background-repeat: no-repeat; /* 画像をループさせない */
    background-position: center;  /* 画像の中心を基準に配置 */
    background-size: cover;       /* 縦横比を維持して画面全体を覆う */
}

/* 上部のアクセントライン */
.airbnb-intro::before{
    content:"";
    position:absolute;
    top:-4px;
    left:40px;

    width:120px;
    height:4px;
}

.hr-luxury{
    border:none;
    height:1px;
    width:90%;
    margin:0 auto;
    background:#DDFFDD;
    position:relative;
}

.hr-luxury::after{
    content:"◆ ◆ ◆ ◆";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:yellow;
    color:#DDFFDD;
    padding:0 100px;
    font-size:40px;
}

/* レスポンシブ */
@media (max-width:768px){

    .airbnb-intro{
        width:95%;
        padding:25px 20px;
        border-radius:18px;
    }
}
.ceo{
    float:right;
    width:140px;
    margin:0 0 30px 40px;
    padding:18px;
    background:#fffdf7;
    border:1px solid #eadfb8;
    border-radius:22px;
    box-shadow:
        0 12px 30px rgba(0,0,0,.10);
    text-align:center;
}

.ceo img{
    width:100%;
    display:block;
    border-radius:16px;
}

.figcap {
  font-size: 8pt;
}

.room {
  font-size: 18pt;
  font-weight: bold;
}

.intro{
    max-width:1300px;
    margin:30px auto;
    padding: 1px 35px 1px 35px;
    background:#fffdf9;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    line-height:1.9;
}

.intro h2{
    position:relative;
    text-align:center
    margin:10px 0 40px;
    padding-bottom:18px;
    font-size:2.3rem;
    font-weight:700;
    color:#FF5A5F;
    letter-spacing:.06em;
    clear:both;
}

.intro h2::after{

    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:140px;
    height:4px;
    background:linear-gradient(
        90deg,
        #d9b650,
        #f5d97a,
        #d9b650
    );
    border-radius:10px;
}

.intro-message{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
}

.intro-message img{
}

.intro-message p{
    margin:0;
    font-size:1.1rem;
}

.intro-document{
    margin:25px 0 40px;
    padding:40px 50px;
    border:1px solid #e7dfc7;
    box-shadow:
        0 4px 15px rgba(0,0,0,.06);
    position:relative;
}

.intro-document::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:6px;
    background:#e6d7a8;
}

.intro-document h2{
    margin-top:0;
    padding-bottom:18px;
    border-bottom:1px solid #ece4c8;
    text-align:center;
    color:#444;
}

.feature-box{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin:30px 0;
}

.feature-box div{
    background:#ffCCFF;
    padding: 0 15px 0 15px;
    color:#c14c2f;
    border-radius:999px;
    font-weight:bold;
}

.lang-ja .feature-box {
    padding:10px 18px;
}

.lang-en .feature-box {
    padding:10px 10px;
}

.airbnb-logo{
    text-align:center;
    margin:35px 0;
}

.airbnb-logo img{
    max-width:220px;
}

.consultation{
    text-align:center;
    background:#fff7d6;
    padding:18px;
    border-radius:15px;
    font-size:1.2rem;
    font-weight:bold;
    color:#d67b00;
}

.pricefont {
  font-size: 14pt;
  font-weight: bold;
}

.priceboard {
    margin: 50px;
    padding: 24px 30px;

    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    border: 1px solid #dde4ee;
    border-radius: 18px;

    box-shadow:
        0 2px 6px rgba(0,0,0,.05),
        0 10px 30px rgba(0,0,0,.10);

    transition: box-shadow .25s ease,
                transform .25s ease;
}

.priceboard:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 14px rgba(0,0,0,.08),
        0 18px 40px rgba(0,0,0,.12);
}

.priceTitle{
    margin:0 0 28px;
    padding-bottom:14px;

    font-size:2rem;
    font-weight:700;
    text-align:center;
    letter-spacing:.08em;

    color:#223548;

    border-bottom:2px solid #d7e4f2;
}

.priceSubTitle{
    margin:34px 0 14px;
    padding-left:14px;

    font-size:1.25rem;
    font-weight:700;

    color:#36597b;

    border-left:5px solid #7aa7d8;
}

.varies {
  color: #FF8888;
}

.process{

    max-width:1300px;
    margin:20px auto;
    padding:35px;

    background:white;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.process h2{

    text-align:center;
    color:#f15d5d;

    margin-bottom:35px;
}

.process-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:40px;
}

.process-top figure{

    text-align:center;
}

.process-top img{

    width:240px;

    border-radius:14px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.process-top figcaption{

    margin-top:10px;

    color:#777;
}
.process-text{

    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:55px 45px;

    background:linear-gradient(
        180deg,
        #fffdf5 0%,
        #fff8dc 100%
    );

    border:1px solid #ecdca6;

    border-radius:22px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    position:relative;
}

.process-text{
    flex:1;
    display:flex;
    flex-direction:column;   /* ←追加 */
    justify-content:center;
    align-items:center;
    padding:40px;
}

.process-text p{

    font-size:1.2rem;
    line-height:1.9;
}

.process-message{

    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:55px 45px;

    background:linear-gradient(
        180deg,
        #fffdf5 0%,
        #fff8dc 100%
    );

    border:1px solid #ecdca6;
    border-radius:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    position:relative;
}

.process-message::before{

    content:"";

    position:absolute;

    top:0;
    left:40px;

    width:120px;
    height:5px;

    background:#d4b45b;

    border-radius:10px;
}

.process-message p{

    margin:0;

    font-weight:600;

    line-height:1.8;

    letter-spacing:.05em;

    text-align:center;
}


.lang-ja .process-message px {
    font-size:2rem;
}

.lang-en .process-message p {
    font-size:1.5rem;
}

.process-top figure{

    margin:0;

    padding:16px;

    background:#ffffff;

    border-radius:20px;

    border:1px solid #ececec;

    box-shadow:
        0 10px 30px rgba(0,0,0,.10);

    text-align:center;

    transition:.3s;
}

.process-top figure:hover{

    transform:translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.15);
}

.process-top img{

    width:280px;

    display:block;

    border-radius:14px;
}

.process-top figcaption{

    margin-top:14px;

    font-size:0.95rem;

    color:#666;

    font-weight:600;

    letter-spacing:.05em;
}

.process-top figure{

    position:relative;
    background:#fffdf8;
    border:1px solid #eadfb8;
}

.process-top figure::before{

    content:"";

    position:absolute;

    top:0;
    left:25px;

    width:90px;

    height:4px;

    background:#d4b45b;

    border-radius:10px;
}

.step{

    display:flex;

    gap:20px;

    margin:25px 0;

    padding:20px;

    border-radius:14px;

    background:#eaeafa;

    transition:.25s;
}

.step:hover{

    background:#fff5ef;

    transform:translateX(6px);
}

.number{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#ff6b6b;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:bold;

    flex-shrink:0;
}

.step h3{

    margin:0 0 8px;

    color:#444;
}

.step p{

    margin:0;

    line-height:1.8;
}
.tbl{

    width:100%;

    border-collapse:separate;

    border-spacing:0;

    font-size:17px;

    color:#444;
}
.tbl td, .tbl th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px 20px;
}

/*テーブル内の左側*/
.tbl th{

    width:220px;

    background:#f6f8fa;

    color:#666;

    font-weight:bold;

    border-bottom:1px solid #ececec;

    padding:18px;

    vertical-align:top;
}

/*テーブル１行目に入った見出し部分*/
.tbl .midashi{

    background:

        linear-gradient(
            135deg,
            #2f3c88,
            #FFFFFF
        );

    color:white;

    font-size:30px;

    font-weight:bold;

    letter-spacing:.08em;

    text-align:center;

    padding:24px;

    border-radius:14px 14px 0 0;
}

.tbl td{

    background:white;

    border-bottom:1px solid #ececec;

    padding:18px 24px;

    line-height:2;

    transition:.2s;
}

.tbl tr:hover td{

    background:#fffdf5;
}

.tbl a{

    color:#00A699;

    text-decoration:none;

    font-weight:bold;
}

.tbl a:hover{

    color:#FF5A5F;
}

.tbl tr:last-child th,
.tbl tr:last-child td{

    border-bottom:2px solid #cccccc;
}

.star {
/*  width: 80%;
  height: 80%;*/
}

.room-list{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.room-list li{
    margin:10px 0;
}

.room-list a{
    display:block;
    padding:14px 18px;
    color:#333;
    text-decoration:none;
    background:#fff;
    border-left:5px solid #FF5A5F;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.25s;
}

.room-list a:hover{
    background:#FFF4F4;
    border-left-width:10px;
    transform:translateX(5px);
}

/* ---------------- スマホ ---------------- */
/* ---------------- スマホ ---------------- */
/* ---------------- スマホ ---------------- */
/* ---------------- スマホ ---------------- */
/* ---------------- スマホ ---------------- */
@media (max-width: 768px) {

  body {
    width: 96%;
  }

  header{
      padding:0;
  }

  header nav ul{
      flex-wrap:nowrap;
      gap:8px;
  }

  header nav li{
      flex:1;
  }

  header nav a{
      font-size:10px;
      padding:6px 0;
  }

  header img{

      width:90px;
  }

  #topbanner {
    width: 100%;
    height: 750px;
    padding: 20px;
    box-sizing: border-box;
  }

  #topbanner h2 {
    font-size: 24px;
    margin: 0;
  }

  #topbanner .big {
    font-size: 42px;
    margin: 10px 0;
  }

  #topbanner p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
  
  #topbanner_popup {
    height: 20%;
  }

  .top-features{
      flex-direction:column;
      align-items:center;
  }

  #inquiry_bttn {
    width: 100%;
  }

  /* ナビ */
  nav ul {
    width: 100%;
    flex-wrap: wrap;
  }

  nav ul li {
    width: 50%;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    text-align: center;
  }

  #main2 {
    width: 100%;
  }

  .hero-subtitle{
      padding: 0 16px;
  }

  /* 左右を縦並びに */
  .leftdisp,
  .profile-text {
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .profile-text {
    margin-bottom: 25px;
  }

  .profile-text p {
    font-size: 18px;
  }

  .profile-text p:first-child {
    font-size: 20px;
  }

  .profile-text p:last-child {
    font-size: 20px;
  }

  .leftdisp img:first-child {
    width: 140px;
  }

  .star {
    width: 20px;
  }

  .room {
    display: block;
    margin-top: 8px;
    font-size: 16px;
  }

  .leftdisp .big {
    font-size: 32px;
    line-height: 1.2;
  }

  .topservice{
      flex-direction:column;
      gap:25px;
  }

  .intro-message{
      flex-direction:column;
      text-align:center;
  }

  .process-top{
      flex-direction:column;
  }

  .priceboard{
      margin:20px 0;
      padding:18px;
  }

  .intro-message{
      flex-direction:column;
      text-align:center;
  }

  .intro{

      padding:20px;
  }

  .ceo{
      float:none;
      text-align:center;
      margin:20px auto;
  }

  .ceo img{

      width:220px;
      max-width:100%;
  }

  .feature-box{
      flex-direction:column;
  }

  .intro h2{
      font-size:1.5rem;
  }

  footer{
      display:none;
  }
}

/* ゴミ
<figure class="scale"><img src="images/10.jpg" alt="The room in Tower C, 8th floor" id="c8" /></figure>
.scale img:hover {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
}
    ゴミ */
