@charset "UTF-8";
/* 画像差し替え */
html {
  font-size: 100%;
}
body {
  color: #121212;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  margin: 0 auto;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #121212;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.5;
}
.section-title .text {
  font-size: 36px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.section-title .text::before,
.section-title .text::after {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: -3px;
}
.section-title .text::before {
  background-image: url(../img/ぺこケアタクシーロゴ.png);
  background-size: contain;
  left: -60px;
}
.section-title .text::after {
  background-image: url(../img/ぺこケアタクシーロゴ.png);
  background-size: contain;
  right: -60px;
}
.section-title .img {
  max-width: 250px;
  display: block;
  margin: 15px auto 0;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header .logo {
  width: 100%;
  max-width: 200px;
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 30;
}
#header .logo a {
  display: block;
}
#header .logo img {
  width: 100%;
}
#header .logo p {
  width: auto;
  font-size: 70%;
  text-align: center;
}
#header .hamburger {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 30;
}
#header .hamburger span {
  width: 30px;
  height: 2px;
  background-color: #121212;
  display: inline-block;
  position: absolute;
  left: 15px;
  transition: all 0.4s;
}
#header .hamburger span:nth-of-type(1) {
  top: 25px; 
}
#header .hamburger span:nth-of-type(2) {
  top: 35px;
}
#header .hamburger.active span:nth-of-type(1) {
  top: 30px;
  transform: rotate(-30deg);
}
#header .hamburger.active span:nth-of-type(2) {
  top: 30px;
  transform: rotate(30deg);
}
#header .navi {
  width: 100%;
  height: 100vh;
  background-color: #f2f9fd;
  padding: 100px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
}
#header .navi.active {
  opacity: 1;
  visibility: visible;
}
#header .navi .menu-area {
  width: 100%;
  height: 100vh;
  overflow: auto;
}
#header .navi .menu-area .menu {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 80px 80px 20px;
  margin: 0 auto;
}
#header .navi .menu-area .menu li {
  width: 46%;
  border-bottom: dashed 1px #121212;
  margin: 0 2%;
  position: relative;
}
#header .navi .menu-area .menu li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #121212;
  border-right: solid 2px #121212;
  transform: rotate(45deg);
  position: absolute;
  top: 38px;
  right: 10px;
}
#header .navi .menu-area .menu li:nth-child(-n+2) {
  border-top: dashed 1px #121212;
}
#header .navi .menu-area .menu li a {
  display: block;
  padding: 30px 0;
}
#header .navi .menu-area .btn {
  max-width: 640px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 20px 80px 80px;
  margin: 0 auto;
}
#header .navi .menu-area .btn li {
  width: 46%;
  background-color: #ffef00;
  border-radius: 20px;
  margin: 0 2%;
}
#header .navi .menu-area .btn li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 20px 0;
}
#header .navi .menu-area .btn li .arrow {
  width: 20px;
  margin-right: 10px;
}


/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  position: relative;
}
.mainvisual .wave {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about {
  padding: 80px 0;
  position: relative;
  text-align: center;
}
#about .title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
}
#about .text {
  line-height: 2.5;
}
#about .img {
  width: 95%;
  animation: swing 3s ease infinite;
  margin: 0 auto;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: -10;
}
@keyframes swing {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}

/*-------------------------------------------
Parallax
-------------------------------------------*/
.parallax {
  height: 600px;
  background-image: url(../img/sky-car.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.parallax .wave-top {
  position: absolute;
  top: -2px;
}
.parallax .wave-bottom {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
Parallax1
-------------------------------------------*/
.parallax1 {
  height: 600px;
  background-image: url(../img/peco-fonts-sea.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.parallax1 .wave-top {
  position: absolute;
  top: -2px;
}
.parallax1 .wave-bottom {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
Parallax2
-------------------------------------------*/
.parallax2 {
  height: 600px;
  background-image: url(../img/car-city.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.parallax2 .wave-top {
  position: absolute;
  top: -2px;
}
.parallax2 .wave-bottom {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
Parallax3
-------------------------------------------*/
.parallax3 {
  height: 600px;
  background-image: url(../img/camel-sea.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.parallax3 .wave-top {
  position: absolute;
  top: -2px;
}
.parallax3 .wave-bottom {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
Parallax4
-------------------------------------------*/
.parallax4 {
  height: 600px;
  background-image: url(../img/bottom-p-2.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.parallax4 .wave-top {
  position: absolute;
  top: -2px;
}
.parallax4 .wave-bottom {
  position: absolute;
  bottom: -2px;
}

/*-------------------------------------------
Introduction
-------------------------------------------*/
#introduction {
  padding-top: 120px;
}
#introduction .service {
  display: flex;
  margin-bottom: 80px;
  justify-content: center;
}
#introduction .service .img {
  max-width: 640px;
}
#introduction .service .text {
  max-width: 900px;
  padding: 0 6%;
}
#introduction .service .text .content-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
#introduction .service .text .content-title .title-img {
  width: auto;
  height: 130px;
  margin-right: 30px;
}
#introduction .service .text .content-title .title-text {
  font-size: 28px;
  margin-top: 25px;
}
#introduction .service .text .description {
  height: 80px;
  line-height: 1.8;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: justify;
}
#introduction .service .text .btn {
  max-width: 140px;
  border: solid 1px #121212;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  font-size: 12px;
  padding: 8px 0;
  position: relative;
  text-align: center;
}
#introduction .service .text .btn::before {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #121212;
  position: absolute;
  top: 17px;
  right: 14px;
}
#introduction .service .text .btn::after {
  content: "";
  width: 1px;
  height: 11px;
  background-color: #121212;
  position: absolute;
  top: 12px;
  right: 19px;
}


/* ----------------------------------------
scenes
---------------------------------------- */
#scenes {
  padding-top: 120px;
}


/*-------------------------------------------
Flow
-------------------------------------------*/
#flow {
  background-color: #fff;
  padding-top: 40px;
}
#flow .step {
  display: flex;
  margin-top: 60px;
}
#flow .figure {
  position: relative;
}
/* 図形下の黄色い棒線を作成 */
#flow .figure::before {
  content: "";
  width: 50px;
  height: 500px;
  background-color: #e3812f;
  position: absolute;
  top: 0;
  left: 75px;
}
/*
図形の四角部分を作成
*/
#flow .figure li {
  width: 200px;
  height: 60px;
  line-height: 80px;
  background-color: #489156;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 95px;
  position: relative;
  text-align:center;
}
/*
図形の三角部分を疑似要素で作成
「position」を使用して、四角の下に配置
*/
#flow .figure li::before {
  content: "";
  border-top: 30px solid #489156;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#flow .figure li:last-child {
  margin-bottom: 0;
}
#flow .description {
  margin-left: 10%;
}
#flow .description dt {
  border-bottom: solid 1px #121212;
  font-size: 1.25rem;
  padding-bottom: 8px;
  margin-bottom: 10px;
  position: relative;
}
/*
丸数字を作成
「position」を使用して、タイトルの左側に配置
*/
#flow .description dt span {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #414141;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: -45px;
}
#flow .description dd {
  margin-bottom: 80px;
}
#flow .description dd:last-child {
  margin-bottom: 0;
}
.payment-imgs {
  display: flex;
  flex-direction: column; /* ← 縦並び */
  align-items: center; /* 中央寄せ */
  margin-top: 20px;
}

.payment-image {
  max-width: 100%;
  height: auto;
}

/*-------------------------------------------
Map → Flow
-------------------------------------------*/
#flow {
  background-color: #fff;
  padding: 120px 0 120px;
  position: relative;
}
#flow .wave-top {
  position: absolute;
  top: -2px;
}
#flow .wave-bottom {
  position: absolute;
  top: calc(100% - 2px);
}
#flow .head-text {
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
#flow .activity-map {
  position: relative;
}
#flow .activity-map .spot1 {
  position: absolute;
  top: 40%;
  left: 1%;
}
#flow .activity-map .spot2 {
  position: absolute;
  top: 69%;
  left: 19%;
}
#flow .activity-map .spot3 {
  position: absolute;
  top: 53%;
  left: 32%;
}
#flow .activity-map .spot4 {
  position: absolute;
  top: 95%;
  left: 45%;
}
#flow .activity-map .spot5 {
  position: absolute;
  top: 86%;
  left: 70%;
}
#flow .activity-map .spot {
  width: 100%;
  max-width: 220px;
  text-align: center;
}
#flow .activity-map .spot .spot-btn {
  background-color: #fff;
  border: solid 1px #121212;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding: 5px 35px;
  position: relative;
}
#flow .activity-map .spot .spot-btn::before {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #121212;
  position: absolute;
  top: 15px;
  right: 14px;
}
#flow .activity-map .spot .spot-btn::after {
  content: "";
  width: 1px;
  height: 11px;
  background-color: #121212;
  position: absolute;
  top: 10px;
  right: 19px;
}
#flow .activity-map .spot .spot-img {
  max-width: 180px;
  display: none;
  margin: 0 auto;
  position: absolute;
  top: -190px;
  left: 0;
  right: 0;
  z-index: 10;
}
#flow .activity-map .spot .spot-img img {
  border-radius: 50%;
}
#flow .activity-map .spot-list {
  display: none;
}

/* ベースのスタイル（PCでは番号を非表示） */
.description .numbers {
  position: relative;
  padding-left: 2.5em; /* 番号分の余白 */
}

.description .numbers::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 1.2em;
  color: #333;
  font-weight: bold;
  display: none; /* 初期は非表示 */
}

/*------------------------------------------ 
Price
------------------------------------------*/
.size {
  border-collapse: collapse;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.size td {
  border: 1px solid black;
}

.size th {
  background-color: #f0f0f0;
}

.size th, .size td {
  border: 1px solid black;
  font-size: 15px;
  text-align: center;
  padding: 20px 30px;
}

.pp {
  width: 60%;
}

.cc {
  width: 40%;
}

.small {
  font-size: 12px;
}

th.section-heading {
  background-color: #f2f9fd;
}

/*-------------------------------------------
Price → Price
-------------------------------------------*/
#price {
  background-color: #fff;
  padding: 120px 0 120px;
  position: relative;
}
#price .wave-top {
  position: absolute;
  top: -2px;
}
#price .wave-bottom {
  position: absolute;
  top: calc(100% - 2px);
}
#price .head-text {
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
#price .activity-map {
  position: relative;
}
#price .activity-map .spot1 {
  position: absolute;
  top: 40%;
  left: 1%;
}
#price .activity-map .spot2 {
  position: absolute;
  top: 69%;
  left: 19%;
}
#price .activity-map .spot3 {
  position: absolute;
  top: 53%;
  left: 32%;
}
#price .activity-map .spot4 {
  position: absolute;
  top: 95%;
  left: 45%;
}
#price .activity-map .spot5 {
  position: absolute;
  top: 86%;
  left: 70%;
}
#price .activity-map .spot {
  width: 100%;
  max-width: 220px;
  text-align: center;
}
#price .activity-map .spot .spot-btn {
  background-color: #fff;
  border: solid 1px #121212;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding: 5px 35px;
  position: relative;
}
#price .activity-map .spot .spot-btn::before {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #121212;
  position: absolute;
  top: 15px;
  right: 14px;
}
#price .activity-map .spot .spot-btn::after {
  content: "";
  width: 1px;
  height: 11px;
  background-color: #121212;
  position: absolute;
  top: 10px;
  right: 19px;
}
#price .activity-map .spot .spot-img {
  max-width: 180px;
  display: none;
  margin: 0 auto;
  position: absolute;
  top: -190px;
  left: 0;
  right: 0;
  z-index: 10;
}
#price .activity-map .spot .spot-img img {
  border-radius: 50%;
}
#price .activity-map .spot-list {
  display: none;
}

/* -----------------------------------------
Q&A
-------------------------------------------*/
.ac-menu li {
  border-top: 1px solid #000; /* 上に薄い線を追加 */
  border-bottom: 1px solid #000; /* 下に薄い線を追加 */
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

/* 2番目の <li> の下の線を消す */
.ac-menu li:nth-child(2) {
  border-top: none;
  border-bottom: none;
}
.ac-menu li:nth-child(4) {
  border-top: none;
  border-bottom: none;
}
.ac-menu li:nth-child(6) {
  border-top: none;
  border-bottom: none;
}
.ac-menu li:nth-child(7) {
  border-bottom: none;
}

.label {
  padding: 30px 30px;
  background-color: #f0f0f0;
}

.detail {
  display: none;
}

/* dtとddを横並びにする */
.detail dl {
  display: flex; /* 親要素でflexboxを適用 */
  flex-wrap: wrap; /* 内容が長い場合に折り返す */
  padding: 30px 30px;
}

/* 1つのdt,ddを1行にしてそのほかも同じように下に表示するには、dt,ddの幅を％で設定する */
dt {
  width: 20%; /* ラベル部分の幅を固定 */
  font-weight: bold; /* ラベルを太字に */
  padding-right: 10px; /* ラベルと内容の間にスペースを追加 */
  margin-bottom: 40px;
}

dd {
  width: 100%;
  margin: 0; /* デフォルトのマージンを消す */
  line-height: 1.6;
}

/*-------------------------------------------
Q&A → Q&A
-------------------------------------------*/
#qa {
  background-color: #fff;
  padding: 120px 0 120px;
  position: relative;
}
#qa .wave-top {
  position: absolute;
  top: -2px;
}
#qa .wave-bottom {
  position: absolute;
  top: calc(100% - 2px);
}
#qa .head-text {
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
#qa .activity-map {
  position: relative;
}
#qa .activity-map .spot1 {
  position: absolute;
  top: 40%;
  left: 1%;
}
#qa .activity-map .spot2 {
  position: absolute;
  top: 69%;
  left: 19%;
}
#qa .activity-map .spot3 {
  position: absolute;
  top: 53%;
  left: 32%;
}
#qa .activity-map .spot4 {
  position: absolute;
  top: 95%;
  left: 45%;
}
#qa .activity-map .spot5 {
  position: absolute;
  top: 86%;
  left: 70%;
}
#qa .activity-map .spot {
  width: 100%;
  max-width: 220px;
  text-align: center;
}
#qa .activity-map .spot .spot-btn {
  background-color: #fff;
  border: solid 1px #121212;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding: 5px 35px;
  position: relative;
}
#qa .activity-map .spot .spot-btn::before {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #121212;
  position: absolute;
  top: 15px;
  right: 14px;
}
#qa .activity-map .spot .spot-btn::after {
  content: "";
  width: 1px;
  height: 11px;
  background-color: #121212;
  position: absolute;
  top: 10px;
  right: 19px;
}
#qa .activity-map .spot .spot-img {
  max-width: 180px;
  display: none;
  margin: 0 auto;
  position: absolute;
  top: -190px;
  left: 0;
  right: 0;
  z-index: 10;
}
#qa .activity-map .spot .spot-img img {
  border-radius: 50%;
}
#qa .activity-map .spot-list {
  display: none;
}

/*-------------------------------------------
Reservation
-------------------------------------------*/
.reservation {
  background-color: #E5E5E5;
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.reservation .text {
  animation: blink 1.3s ease-in-out infinite alternate;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.reservation .btn {
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffef00;
  border-radius: 15px;
  box-shadow: 0px 4px 0px 0px #aaa;
  font-weight: bold;
  padding: 20px 0;
  margin: 0 auto;
}
.reservation .btn .arrow {
  width: 20px;
  margin-right: 10px;
}
.reservation .btn:hover {
  transform: translateY(5px);
  box-shadow: none;
}
.reservation .wave-top img {
  width: 100%;
  height: 34px;
  object-fit: cover;
  position: absolute;
  top: -2px;
  left: 0;
}
.reservation .wave-bottom img {
  width: 100%;
  height: 34px;
  object-fit: cover;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/*-------------------------------------------
Activity
-------------------------------------------*/
#activity {
  padding: 80px 0;
}
#activity .slider .slider-item {
  max-width: 400px;
  margin: 0 50px;
  text-align: center;
}
#activity .slider .slider-item:nth-child(even) {
  margin-top: 80px;
}
.img2 img {
  height: 120px;
  margin: 0 auto;
}
#activity .slider .slider-item .title {
  font-size: 100%;
  font-weight: bold;
  margin: 30px 0 20px;
}
#activity .slider .slider-item .text {
  line-height: 1.8;
}

/*-------------------------------------------
Bottom-img
-------------------------------------------*/
.bottom-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: bottom;
}

/*-------------------------------------------
Fixed-btn
-------------------------------------------*/
#fixed-btn {
  width: 120px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  background-color: #f2f9fd;
  padding: 0 20px 40px;
  padding-top: 100px;
}
#footer .content {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 30px;
  padding: 3%;
  margin: 0 auto 30px;
  position: relative;
  top: -60px;
}
#footer .link {
  width: 30%;
}
#footer .content .info-area {
  width: 30%;
  font-size: 14px;
}
#footer .content .info-area .address {
  margin-bottom: 5px;
  margin-top: 20px;
  text-align: center;
}
#footer .content .info-area .tel {
  margin-bottom: 30px;
}

#footer .content .btn-area {
  width: 80%;
  max-width: 380px;
  margin-left: 5%;
}
#footer .content .btn-area .btn {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: #ffef00;
  border-radius: 20px;
  font-weight: bold;
  padding: 25px 0;
}
#footer .content .btn-area .btn:first-child {
  margin-bottom: 20px;
}
#footer .content .btn-area .btn .arrow {
  width: 20px;
  margin-right: 10px;
  margin-left: 10px;
}
#footer .content .banner-area {
  width: 100%;
  max-width: 380px;
  margin-left: 5%;
  padding: 25px 0;
}
.name {
  text-align: center;
}
.line {
  text-align: center;
}

#footer .copyright {
  font-size: 10px;
  text-align: center;
}
.footer-navi {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: left;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0;
  padding-left: 20%;
}

.footer-navi img {
  width: 10%;
  height: auto;
}
.info-area .btn img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}


/* contact */
.contact-mainvisual {
  max-width: 900px;
  margin: 90px auto;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* フォームグループ */
.form-group {
  width: 100%;
  margin-bottom: 40px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}


.required {
  color: #e74c3c;
  margin-left: 5px;
}

/* 入力フィールド */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fafafa;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
select {
  width: 60%;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fafafa;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

/* テキストエリア */
textarea {
  height: 100px;
  resize: vertical;
}

.car-type {
  margin-top: 10px;
  margin-left: 20px;
}
.initial {
  margin-left: 20px;
}

/* 横並びのフィールド */
.horizontal-inputs {
  display: flex;
  gap: 20px;
}

.horizontal-inputs div {
  flex: 1;
}

/* 送信ボタン */
input[type="submit"] {
  background-color: #4a90e2;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 20px auto 0;
  margin-top: 50px;
  width: 50%;
  text-align: center;
  height: 60px;
}

input[type="submit"]:hover {
  background-color: #357abd;
}

/* reserrvation */
.container {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 90px;
  margin-bottom: 80px;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.container h1 {
  margin-bottom: 20px;
}
.container p {
  margin-bottom: 15px;
}
.container li {
  margin-bottom: 10px;
}
.contact-box {
  margin-top: 2em;
  padding: 1em;
  background: #f0f0f0;
  border-left: 6px solid #eaf6ff;
  border-radius: 4px;
}
.contact-box a {
  display: inline-block;
  margin-top: 0.5em;
  color: #1e90ff;
  font-weight: bold;
  text-decoration: underline;
}
.line-flex {
  display: flex;
  flex-direction: column; /* ← 縦並びにする */
  align-items: center;    /* 中央寄せ（オプション） */
  gap: 10px;              /* 要素の間に余白を追加（任意） */
  margin: 20px 0;         /* 上下の余白（任意） */
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 50px;
  }
  .section-title .text {
    font-size: 26px;
  }
  .section-title .text::before,
  .section-title .text::after {
    width: 25px;
    top: 3px;
  }
  .section-title .text::before {
    left: -35px;
  }
  .section-title .text::after {
    right: -35px;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header .logo {
    max-width: 100px;
    top: 23px;
  }

  #header .logo p {
    font-size: small;
  }

  #header .navi .menu-area .menu {
    flex-direction: column;
    padding: 20px;
  }
  #header .navi .menu-area .menu li {
    width: 100%;
    margin: 0;
  }
  #header .navi .menu-area .menu li::after {
    top: 30px;
  }
  #header .navi .menu-area .menu li:nth-child(-n+2) {
    border-top: none;
  }
  #header .navi .menu-area .menu li a {
    padding: 20px 0;
  }
  #header .navi .menu-area .btn {
    flex-direction: column;
    padding: 20px;
  }
  #header .navi .menu-area .btn li {
    width: 100%;
    margin: 0 0 20px;
  }

  /*-------------------------------------------
  About
  -------------------------------------------*/
  #about {
    padding: 40px 0;
  }
  #about .title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  #about .text {
    font-size: 14px;
  }

  /*-------------------------------------------
  Parallax
  -------------------------------------------*/
  .parallax {
    height: 400px;
    background-attachment: scroll;
  }

  /*-------------------------------------------
  Introduction
  -------------------------------------------*/
  #introduction {
    padding-top: 40px;
  }
  #introduction .service {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
  }
  #introduction .service {
    margin-bottom: 60px;
  }
  #introduction .service .img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #introduction .service .text {
    max-width: 100%;
    padding: 0;
  }
  #introduction .service .text .content-title {
    flex-direction: column;
  }
  #introduction .item .text .content-title {
    margin-bottom: 20px;
  }
  #introduction .item .text .content-title .title-img {
    height: 80px;
    margin-right: 20px;
  }
  #introduction .item .text .content-title .title-text {
    font-size: 22px;
    margin-top: 20px;
  }
  #introduction .service .text .content-title .title-text {
    font-size: 18px;
    margin-top: 0;
  }

  /*-------------------------------------------
  Reservation
  -------------------------------------------*/
  .reservation {
    padding: 80px 0;
  }
  .reservation .text {
    font-size: 18px;
  }
  .reservation .btn {
    max-width: 320px;
  }

  /*-------------------------------------------
  Activity
  -------------------------------------------*/
  #activity {
    padding: 40px 0;
  }
  #activity .slider .slider-item {
    margin: 0 50px;
  }
  #activity .slider .slider-item .title {
    font-size: 13px;
    margin: 20px 0 10px;
  }
  #activity .slider .slider-item .text {
    font-size: 16px;
  }
  .img2 img {
    height: 250px;
    margin: 0 auto;
  }

  /*-------------------------------------------
  Flow
  -------------------------------------------*/
  #flow {
    padding-top: 0;
  }
  #flow .step {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  #flow .figure {
    margin-bottom: 80px;
  }
  /*
  図形下の黄色い棒線を中央に配置
  */
  #flow .figure::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  /*
  図形（四角部分）の横幅を、画面幅から80pxマイナスしてサイズを調整
  ※80pxは任意の数値ですので、図形をもっと小さくして横の余白とりたい場合は、
  ここの数値を大きくする等して調整が可能です。
  */
  #flow .figure li {
    width: calc(100vw - 80px);
  }
  /*
  図形（三角部分）の横幅を設定
  ※上記同様、図形のサイズにあわせて調整を行う
  */
  #flow .figure li::before {
    border-left: calc(50vw - 40px) solid transparent;
    border-right: calc(50vw - 40px) solid transparent;
  }
  #flow .description {
    margin-left: 50px;
  }

  /*-------------------------------------------
  Map → Flow
  -------------------------------------------*/
  #flow {
    padding: 100px 0 40px;
  }
  #flow .head-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  #flow .activity-map .spot .spot-btn {
    display: none;
  }
  #flow .activity-map .spot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-top: 40px;
  }
  #flow .activity-map .spot-list li {
    width: calc(50% - 10px);
  }
  #flow .activity-map .spot-list li img {
    border-radius: 50%;
  }
  #flow .activity-map .spot-list li .title {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #flow .activity-map .spot-list li .title .no {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: solid 1px #707070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    margin-right: 10px;
  }
  #footer .banner-area .btn .arrow {
    margin: 0 auto; /* 画像も中央 */
    display: block;
  }

  #footer .banner-area .btn p {
    text-align: center;
  }

  .description .numbers:nth-of-type(1)::before {
    content: "①";
  }
  .description .numbers:nth-of-type(2)::before {
    content: "②";
  }
  .description .numbers:nth-of-type(3)::before {
    content: "③";
  }
  .description .numbers:nth-of-type(4)::before {
    content: "④";
  }

  .description .numbers::before {
    display: inline-block;
  }

  /*-------------------------------------------
  Price → Price
  -------------------------------------------*/
  #price {
    padding: 100px 0 40px;
  }
  #price .head-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #price .activity-map .spot .spot-btn {
    display: none;
  }
  #price .activity-map .spot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-top: 40px;
  }
  #price .activity-map .spot-list li {
    width: calc(50% - 10px);
  }
  #price .activity-map .spot-list li img {
    border-radius: 50%;
  }
  #price .activity-map .spot-list li .title {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #price .activity-map .spot-list li .title .no {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: solid 1px #707070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    margin-right: 10px;
  }

  /* -----------------------------------------
  Q&A
  ----------------------------------------- */
  dl {
    flex-direction: column;
  }

  dt {
    margin-bottom: 10px;;
    width: 100%;
  }
  
  dd {
    padding-left: 20px;
    margin-bottom: 40px;
    width: 100%;
  }
  /*-------------------------------------------
  Q&A → Q&A
  -------------------------------------------*/
  #qa {
    padding: 100px 0 40px;
  }
  #qa .head-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #qa .activity-map .spot .spot-btn {
    display: none;
  }
  #qa .activity-map .spot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-top: 40px;
  }
  #qa .activity-map .spot-list li {
    width: calc(50% - 10px);
  }
  #qa .activity-map .spot-list li img {
    border-radius: 50%;
  }
  #qa .activity-map .spot-list li .title {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #qa .activity-map .spot-list li .title .no {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: solid 1px #707070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    margin-right: 10px;
  }

  /*-------------------------------------------
  Bottom-img
  -------------------------------------------*/
  .bottom-img img {
    height: 300px;
  }

  /*-------------------------------------------
  Fixed-btn
  -------------------------------------------*/
  #fixed-btn {
    width: 80px;
    bottom: 10px;
    right: 10px;
  }

  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer .content {
    flex-direction: column;
    padding: 40px 20px;
    margin: 0 auto;
  }
  #footer .content .info-area {
    width: 100%;
    margin-bottom: 30px;
  }
  #footer .content .btn-area {
    width: 100%;
    margin: 0 auto;
  }
  #footer .content {
    flex-direction: column;
    align-items: center;
  }

  #footer .link {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  #footer .content .info-area:nth-of-type(2) {
    /* LINE部 */
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  #footer .content .info-area:nth-of-type(1) {
    /* ロゴや住所、電話番号など */
    order: 3;
    width: 100%;
    text-align: center;
  }

  .footer-navi {
    justify-content: center;
    padding-left: 0;
  }

  .footer-navi img {
    width: 24px; /* スマホで見やすいサイズに調整 */
  }

  .phone, .email {
    font-size: 16px;
  }

  .btn-area,
  .banner-area {
    margin-left: 0;
    max-width: 100%;
  }

  #footer .content .btn-area .btn {
    justify-content: center;
    text-align: center;
    margin: 20px auto;
  }
}

/* contact */
/* レスポンシブ対応 */
@media (max-width: 780px) {
  h2 {
    font-size: 1.5rem;
  }
  .horizontal-inputs {
    flex-direction: column;
  }

  input[type="submit"] {
    width: 100%;
    margin-top:50px;
  }
  .initial-sp {
    margin-left: 20px;
  }
  .form-group div label {
    display: block; /* 縦並び */
    margin-bottom: 5px; /* 各要素の間隔 */
  }
  .form-group div label {
    display: block; /* 縦並び */
    margin-bottom: 5px; /* 各ラベル間の余白 */
  }
  input[type="url"],
  textarea {
    width: 80%;
  }
  .checkbox-group {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: 1fr 1fr; /* 2列に設定 */
    gap: 10px; /* 各アイテム間のスペース */
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 460px) {
  h2 {
    font-size: 1rem;
  }
}
@media (max-width: 380px) {
  h2 {
    font-size: 0.8rem;
  }
}

/* reservation */
@media (max-width: 800px) {
  .forms {
    flex-direction: column;
  }

  .contact-span {
    margin-left: 10px;
  }

  .contact-textbox {
    padding-right: 10px;
  }

  .application-heading {
    width: 100%;
    justify-content: left;
  }

  .name, .datepicker {
    width: 100%;
  }
}