@charset "utf-8";



/*
base
*/
body {
    font-family:hiragino mincho pro,serif;
    font-size: 15px;
    line-height: 1.5;

    
}



.section {
  padding: 5px;
  margin: 40px;
  padding-top: 50px;
  position: relative;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  margin: 2em 0;
  padding: 0.5em 1.5em;
}
.section:before, .section:after {
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: calc(100% + 20px);
  background-color: black;
}
.section:before { left: 20px; }
.section:after { right: 20px; }
.section p {
  margin: 0;
  padding: 0;
}

.sectionheadline {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0 40px;
  color: #000;
}



.aboutcaption {
  text-align: center;
}
.aboutimg {
  width: 490px;
  height: 350px;
  object-fit: cover;
}
.about-description {
  padding: 15px 10px;
  color: #000;
  font-size: 12px;
}
.about-p {
  padding: 10px;
  font-size: 13px;
}


@media screen and (max-width: 768px) {
  .section {
      margin: 10px 0;
      padding: 10px;
  }
  .sectionheadline {
      font-size: 23px;
  }
  .aboutimg {
      width: 300px;
      height: 200px;
  }
  .about-description,
  .about-p {
      font-size: 8px;
      word-break: keep-all;
  }
}



.hire_guidance {
  font-size: 16px;
  text-align: center;
  position: relative;
  padding: 0 65px;
  text-align: center;
}


.hire_guidance:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.hire_guidance span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

/* セクション全体のスタイル */
.taxi-section {
  margin: 30px 0px 90px;
  text-align: center;
}

/* 見出し（h1）のスタイル */
.section-taxi {
  text-align: center;
}

/* 共通: 横並びスタイル */
.taxi-content, .reverse-content {
  display: flex; /* 横並び */
  align-items: center; /* 縦方向中央揃え */
  justify-content: center; /* 横方向中央揃え */
  gap: 20px; /* 画像と文章の間隔 */
  flex-wrap: wrap; /* レスポンシブ対応で折り返し */
  max-width: 1200px; /* セクション全体の最大幅 */
  margin: 0 auto; /* 中央寄せ */
  padding: 1px;
}

/* 通常の文章左、画像右 */
.taxi-content {
  flex-direction: row; /* デフォルト: 左→右の順 */
}




/* 共通: 画像スタイル */
.airport-taxi, .tree-image {
  width: 490px;
  height: auto; /* 縦横比を保持 */
  border-radius: 10px; /* 任意で角を丸く */
}

@media screen and (max-width: 768px) {
  .taxi-section {
    text-align: center;
    font-size: 8px;
  }

  .airport-taxi, .tree-image {
    width: 290px;
    height: auto; /* 縦横比を保持 */
    border-radius: 60px; /* 任意で角を丸く */
  }
    

}










/* 親コンテナのスタイル */
.hero {
  position: relative;
  width: 100%; /* 横幅全体 */
  height: 100vh; /* ビューポートの高さ全体 */
  overflow: hidden; /* コンテナ外の部分を非表示 */
  text-align: center; /* テキストを中央寄せ */
  display: flex; /* 子要素の位置を調整 */
  flex-direction: column;
  justify-content: center; /* 縦方向中央揃え */
  align-items: center; /* 横方向中央揃え */
}

/* 強調テキストのスタイル */
.hero strong {
  position: relative; /* テキストを動画上に配置 */
  z-index: 10; /* 動画より上に表示 */
  color: white; /* テキスト色を白に */
  font-size: 2.5rem; /* テキストサイズ */
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* 文字に影を追加 */
}

/* 動画のスタイル */
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* 横幅全体にフィット */
  height: 100%; /* 高さ全体にフィット */
  object-fit: cover; /* アスペクト比を保持しながらコンテナを埋める */
  transform: translate(-50%, -50%); /* 完全中央に配置 */
  z-index: 1; /* テキストの背面に配置 */
}

/* モバイル用代替画像 */
.mobile-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 横幅全体にフィット */
  height: 100%; /* 高さ全体にフィット */
  object-fit: cover;
  z-index: 1; /* 動画と同じレイヤー */
}





/* Header styling */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f0f0f;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.header-logo {
  margin-right: 20px;
}
.line-logo {
  margin-left: 950px;
}
.header-navlist {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  display: flex;
}
.header-navitem {
  margin-right: 15px;
}
.header-navitem > a {
  display: block;
  padding: 10px;
  color: #f0eded;
  text-decoration: none;
  font-weight: bold;
}
.header-navitem > a:hover {
  border-bottom: 2px solid #ba1919;
}





.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f0f0f; /* Set your desired background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for a subtle effect */
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-logo {
  margin-right: 20px; /* Add some spacing between the logo and nav */
}

.header-logo img {
  display: block;
}

.header-navlist {
  list-style: none;
  margin: 0;
  padding: 0px 10px 0px;
  display: flex;
}

.header-navitem {
  margin-right: 15px; /* Add spacing between nav items */
}

.header-navitem > a {
  display: block;
  padding: 10px;
  color: #f0eded;
  text-decoration: none;
  font-weight: bold;
}

.header-navitem > a:hover {
  border-bottom: 2px solid #ba1919
}


@media screen and (max-width: 768px) {
  .header {
    font-size: 8px;
    word-break:keep-all;
  }
}


@media screen and (max-width: 768px) {
  .line-logo {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000; /* Ensure it stays above other elements */
    transform: scale(1.2); /* Slightly increase the size */
  }


}



/* Add smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 769px) {
  .section-scene {
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 160px;
    margin-top:-150px;
    word-break:keep-all;
  }
}

.airport,
.business {
  flex: 0 0 48%;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.airport p,
.business p {
  position: absolute;
  top: 70%;
  left: 45%;
  transform: translate(-40%, -40%);
  font-size: 33px;
  font-weight: bold;
  -webkit-text-stroke: 1px #FFF;
  background: -moz-radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
}



.airport img,
.business img {
  width: 66%;
  height: 100%;
  margin-top: 5px;
  margin-right: 20px;
  margin-bottom: 0px;
  margin-left: 100px;
}


.section-scene::before {
  content: '移動をより贅沢に';
  writing-mode: vertical-rl; 
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #000; 
  margin: 10px; 
}


@media screen and (max-width: 768px) {
  .section-scene {
    display: block;
    max-width: 100%;
    top: 10%;
    left:1%;
    transform: translate(-10%,-1%);
    padding: auto;
    text-align: right;
  }

  .section-scene::before {
    font-size: 16px;
    padding: 10px;
    margin: -20px;
  }


  .airport p,
  .business p {
    font-size: 15px;
    text-align: center;
    position: absolute;
    left: 58%;

   
    	
      text-shadow: 1px 1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,-1px -1px 0 #000;
    color: #fff;
  }
}





.section-second {
    padding: 10px 15px;
    background-color: #FFF;
    text-align: center;
}

.section-second-line {
    padding: 30px 10px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #0d0d0d;
    padding-top: 170px;
    margin-top:-150px;
}

.section-second-p{
    color: #0d0d0d;
    text-align: center;
    margin: -30px 0 10px;
}

.table-1 {
    margin:auto;
    border: 10px;
    border-collapse: collapse;
    text-align: center;
    border: #0d0d0d;
  }
  th, td {
    padding: 10px 75px;
    border: 7px solid #0d0d0d;
    color: #0d0d0d;
    font-weight: bold;
  }
  th {
    background-color: #0d0d0d;
    color: #efc956;
  }

.section-second-e {
    color: #0d0d0d;
    text-align: center;
    margin: 10px 0 10px;
}


.section-reservation {
    padding: 30px;
    background-color: #FFF;
	  border-width:10px;
    text-align: center;
    border: 8px outset #0d0d0d;
    border-width: 30px;
}


.section-reservation-line {
    color: #0d0d0d;
    font-size: 28px;
    font-weight: bold;
    padding-top: 150px;
    margin-top:-150px;
}


.section-reservation {
    color: #0d0d0d;
}


@media screen and (max-width: 768px) {
  .section-second {
    display: block;
  }

  .section-second-line {
    max-width: 100%;
    text-align: center;
    font-size: 23px;
  }
  .section-second-p {
    max-width: 100%;
    text-align: center;
    font-size: 11px;
    word-break:keep-all;
  }

  .table-1 {
      border-collapse: collapse;
      max-width: 100%;
      text-align: center;
    }
    th, td {
      text-align: left;
      border: 1px solid #030303;
      padding: .4em .5em;
      font-size: 9px;
      max-width: 100%;
      text-align: center;
    }
    th {
      background: #030303;
      font-size: 9px;
      max-width: 100%;
      text-align: center;
      word-break:keep-all;
      
    }

  .section-second-e {
    font-size: 8px;
    word-break:keep-all;
  }


  }













.grid {
    display: flex;
    padding: 40px 10px;
}

dd{
    font-size: 13px;
}

.grid-item {
    list-style: none;
}

.grid grid-col-2 > .grid-item {
    width: 50%;
}

.grid grid-col-3 > .grid-item {
    width: 33.3%;
}

.grid grid-col-4 > .grid-item {
    width: 25%;
}



@media screen and (max-width: 768px) {
  .grid,
  .grid-item {
    display: block;
    width: 100%;
    margin: 30px 0;
    padding: 0px;
    font-size: 14px;
  }
  
  .section-reservation-line {
    font-size: 21px;
  }

  .process {
    font-weight: bold;
    color: #fff;
    background-image: radial-gradient(rgba(114, 114, 114, 1) 75%, rgb(6, 6, 6) 75%);
    background-color: #E4E4E4;
  }

  .process-NO2 {
    font-size: 11px;
  }

  .process-img {
    top: 20%;
    left:8%;
    transform: translate(-20%,-8%);
    margin: 10px 0;
  }

}








.section-form {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0px 80px;
    
    background-color: #060606;

}

.input {
    display: block;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #E4E4E4;
    margin: 0px 10px;
    text-align: center;
    
}

.flex {
    display: flex;
    padding: 22px;
    justify-content: center;
    text-align: center;
   
}
  


.label {
    display: block;
    margin-bottom: 10px;
}


.remarks-container {
    vertical-align: 60px;
    
}

.input-remarks {
    border-radius: 8px;
    border: 1px solid #E4E4E4;
    min-width: 110%;
    height: 120px;
}






.required {
    color: rgb(147, 7, 7);
    font-size: 12px;
}
span {
    color: rgb(147, 7, 7);
    font-weight: bold;
}

.input_title {
    color: #efc956;
    text-align: center;
  }
  

  @media screen and (max-width: 768px) {
    .flex {
      width: 100%;
      font-size: 12px;
    }

    .input {
      height: 30px;
    }

  }


  



*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.5rem; /* Adjusted font size */
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 3.5rem;
  background: #000;


  /* Added linear gradient background */
  background-image: linear-gradient(
    135deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );
  /* Ensured text is transparent and clip is set to text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-border-gradient-wrap {
  display: inline-block;
  padding: 0.1rem;
  border-radius: 0.5rem;
  background: #c2680e;
}

.btn-border-gradient-wrap--gold:hover button.btn {
  text-shadow: 0 0 15px rgba(250, 250, 214, 0.5),
    0 0 15px rgba(250, 250, 214, 0.5), 0 0 15px rgba(250, 250, 214, 0.5),
    0 0 15px rgba(250, 250, 214, 0.5);
    
}

.btn-text-gradient--gold {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "Hiragino Mincho ProN", "HGS明朝E", serif;
  background: linear-gradient(to top, #ffffdb, #a16422);
  
}

  
  
  


  .line {
    text-align: center;
    font-size: 30px;
    background: linear-gradient(to right, #704308 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #704308 100%);
    -webkit-background-clip: text; /* Safari and older Chrome versions */
    color: transparent; /* Make text transparent where background clip is applied */
    margin: 30px 0 8px;
  }
  

  .inquiry {
    background-color: rgb(2, 2, 2);
    color: #FFF;
    padding: 5px 10px;
    font-size: 8px;
  }




  /* 小画面時のスタイル */
  @media (max-width: 600px) {
    .button {
        width: 100%;
    }

    .line {
      font-size: 20px;
    }
  }


/* ボタンのホバーアニメーション */
.btn-hover {
  background-color: #ffcc00;
  color: #fff;
  transition: background-color 0.3s ease;
}

/* セクションのホバーアニメーション */
.section-hover {
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}


