@charset "UTF-8";

/****************************************************************************************************************
* @common
*****************************************************************************************************************/

@font-face {
  font-family: 'M PLUS 1p';
  src: url('font/mplus-1p-bold.ttf');
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: 'M PLUS 1p';
  src: url('font/mplus-1p-regular.ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'M PLUS 1p';
  src: url('font/mplus-1p-light.ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'icomoon';
  src: url("font/icomoon.eot?59yf6a");
  src: url("font/icomoon.eot?59yf6a#iefix") format("embedded-opentype"), url("font/icomoon.ttf?59yf6a") format("truetype"), url("font/icomoon.woff?59yf6a") format("woff"), url("font/icomoon.svg?59yf6a#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.ligature {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * イージング
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  overflow-x: auto;
}


html * {
  font-family: "Noto Sans JP", sans-serif;
  color: #262626;
}

body {
  position: relative;
}

main,
article,
aside,
details,
footer,
header,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

.hidden {
  visibility: hidden;
}

.none {
  display: none;
}

.no-js .hidden {
  visibility: visible;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

div,
p,
li,
dt,
dd,
th,
td,
pre {
  line-break: strict;
  -ms-line-break: strict;
  -webkit-line-break: strict;
  word-break: break-strict;
  -ms-word-break: break-strict;
}

small {
  font-size: 80%;
}

ul,
ol {
  list-style: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  vertical-align: top;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

body:before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 100%);
  height: 0;
  content: '';
  display: block;
}

.sp_only {
  display: none;
}

@media (max-width: 739px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: inherit;
  }
}


/****************************************************************************************************************
* @page
*****************************************************************************************************************/

body {
  font-family: 'Hiragino Sans', 'Meiryo', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #262626;
  line-height: 1.6;
}

/****************************************************************************************************************
* @form
*****************************************************************************************************************/

.booking-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 0;
  margin-bottom: 120px;
}

.iframe-container {
  width: 100%;
  max-width: 363px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 16px 0px rgba(55, 25, 75, 0.16);
}

.iframe-container iframe {
  width: 100%;
  border: none;
}

.booking-form-title {
  max-width: 363px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #784BC8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  font-weight: 700;
  gap: 5px;
}

@media (max-width: 768px) {
  .booking-form {
    margin-bottom: 40px;
  }
}

/****************************************************************************************************************
* @pricing
*****************************************************************************************************************/

.pricing-section {
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 120px;
  margin-top: 40px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 36px;
  max-width: 888px;
  /* Changed from 1200px to 888px for PC */
  margin: 0 auto;
}

.airport-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #37194B;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.airport-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.airport-name {
  font-weight: 600;
  font-size: 16px;
}

.price {
  color: #FF4614;
  font-weight: bold;
  font-size: 20px;
  font-weight: 600;
}

.price span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.arrow {
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .airport-section {
    padding: 16px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    /* Reduced gap for mobile */
  }

  /* Decrease font size by 25% on mobile */
  .airport-name {
    font-size: 14px;
  }

  /* Set uniform padding of 16px for mobile */
  .airport-card {
    padding: 12px;
  }

  .arrow {
    right: 12px;
  }
}

@media (max-width: 445px) {
  .airport-name {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .airport-name {
    font-size: 10px;
  }
}

/****************************************************************************************************************
* @recommend
*****************************************************************************************************************/

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 120px;
}

.section-begin {
  text-align: center;
  margin-bottom: 16px;
}

.section-begin img {
  width: 120px;
}

h1.recommend-head {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.intro {
  font-size: 18px;
  margin-bottom: 80px;
  text-align: center;
}

.recommend {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 48px;
}

.recommend-reverse {
  flex-direction: row-reverse;
}

.recommend-image {
  flex: 1;
  overflow: hidden;
  max-width: 434px;
}

.recommend-image img {
  width: 100%;
  height: auto;
  display: block;
}

.recommend-content {
  flex: 1;
}

.recommend-title {
  color: #784BC8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.recommend-description {
  font-size: 16px;
}

.note {
  font-size: 12px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .container {
    margin-bottom: 60px;
  }

  .recommend {
    flex-direction: column;
    gap: 20px;
  }

  .recommend-reverse {
    flex-direction: column;
  }

  h1.recommend-head {
    font-size: 24px;
  }

  .recommend-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .section-begin img {
    width: 90px;
  }

  .intro {
    font-size: 16px;
    margin-top: 40px;
  }

  .recommend-image {
    max-width: 290px;
  }

  .note {
    margin-top: 16px;
  }
}

/****************************************************************************************************************
* @car-feature
*****************************************************************************************************************/

.car-feature-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.car-feature-logo {
  text-align: center;
  margin-bottom: 32px;
  text-align: center;
}

.car-feature-logo img {
  max-width: 120px;
  width: 100%;
}

h1.car-feature-head {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.car-feature-description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.car-feature-image-container {
  display: flex;
  gap: 36px;
  margin-bottom: 120px;
}

.car-feature-image-box {
  flex: 1;
  overflow: hidden;
}

.car-feature-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .car-feature-image-container {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 80px;
  }

  h1.car-feature-head {
    font-size: 24px;
  }

  .car-feature-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .car-feature-note {
    font-size: 12px;
  }

  .car-feature-logo img {
    width: 90px;
  }
}

/****************************************************************************************************************
* @guide
*****************************************************************************************************************/

.guide-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 200px;
}

.guide-logo {
  text-align: center;
  margin-bottom: 32px;
}

.guide-logo img {
  width: 120px;
}

.guide-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.guide-step {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  gap: 40px;
}

.guide-step-content {
  flex: 6;
}

.guide-step-image {
  flex: 4;
}

.guide-step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.guide-step-label {
  display: inline-block;
  background-color: #37194B;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 24px;
  font-size: 16px;
}

.guide-step-title {
  color: #784BC8;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 24px;
}

.guide-step-description {
  font-size: 16px;
}

@media (max-width: 768px) {
  .guide-logo img {
    width: 90px;
  }

  .guide-step-label {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .guide-step-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .guide-step-description {
    font-size: 14px;
  }

  .guide-step {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }

  .guide-title {
    font-size: 24px;
  }

  .guide-step-title {
    font-size: 18px;
  }
}