@charset "UTF-8";
/*==============================
サイト共通
==============================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #333;
  background-color: #fffdf7;
}
@media (min-width: 768px) {
  body {
    font-size: 21px;
  }
}

.inner {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

img {
  width: 100%;
}

.button {
  padding: 9px 85px;
  background-color: #ec7c1c;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  line-height: 2;
  font-weight: bold;
}
@media (min-width: 768px) {
  .button {
    font-size: 32px;
    padding: 9px 120px;
    transition: opacity 0.3s;
  }
  .button:hover {
    opacity: 0.9;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.hidden {
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-inner {
    max-width: 1060px;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 50px;
}

.section-title__ja {
  font-size: 24px;
  font-weight: bold;
  color: #ec7c1c;
}
@media (min-width: 768px) {
  .section-title__ja {
    font-size: 40px;
  }
}

.section-title__en {
  font-size: 14px;
  color: #8b5d3d;
}
@media (min-width: 768px) {
  .section-title__en {
    font-size: 21px;
  }
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 10px;
}
@media (min-width: 768px) {
  .header {
    background-color: #fffdf7;
  }
}
.header.is-open .header__logo {
  opacity: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 150px;
  transition: all linear 0.5s;
}
@media (min-width: 768px) {
  .header__logo {
    width: 300px;
  }
}

.header__button {
  display: block;
}
@media (min-width: 768px) {
  .header__button {
    display: none;
  }
}

.drawer-button {
  width: 40px;
  height: 26px;
  position: relative;
}
.drawer-button.is-open .drawer-button__bar {
  background-color: #fff;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(1) {
  top: 20px;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(2) {
  display: none;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.drawer-button__bar {
  position: absolute;
  width: 40px;
  height: 2px;
  top: 0;
  left: 0;
  background-color: #ec7c1c;
  transition: all linear 0.5s;
}
.drawer-button__bar:nth-of-type(1) {
  top: 0;
}
.drawer-button__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-button__bar:nth-of-type(3) {
  top: 20px;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__list {
  display: flex;
  gap: 40px;
}

.header__nav-item a {
  color: #8b5d3d;
  font-weight: bold;
}

.drawer {
  position: fixed;
  inset: 0;
  background-color: #ec7c1c;
  z-index: 5;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.drawer.is-open {
  transform: translateY(0);
}

.drawer__nav {
  padding-top: 110px;
  text-align: center;
}

.drawer__lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer__list a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

/*==============================
fv
==============================*/
.fv {
  text-align: center;
}
@media (min-width: 768px) {
  .fv {
    margin-top: 165px;
  }
}

.fv__inner {
  position: relative;
}
@media (min-width: 768px) {
  .fv__inner {
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .fv__image {
    max-width: 946px;
    text-align: right;
    margin-left: auto;
  }
}

.fv__text-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .fv__text-contents {
    left: 0;
    transform: translate(0, -50%);
    padding: 20px;
  }
}

.fv__main {
  width: 300px;
}
@media (min-width: 768px) {
  .fv__main {
    width: 600px;
  }
}

.fv__sub {
  margin-top: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .fv__sub {
    max-width: 970px;
    margin-left: 0;
    margin-top: 30px;
  }
}

.fv__button {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .fv__button {
    text-align: left;
  }
}

/*==============================
message
==============================*/
.message {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .message {
    margin-top: 20px;
  }
}

.message__contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .message__contents {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .message__image {
    width: 300px;
  }
}

.message__text + .message__text {
  margin-top: 15px;
}

/*==============================
price
==============================*/
.price {
  padding: 80px 0;
}

.price__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.price-item__title {
  text-align: center;
  background-color: #ffe9d0;
  padding: 10px 0;
  font-size: 20px;
  color: #8b5d3d;
  font-weight: bold;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .price-item__title {
    font-size: 32px;
  }
}

.fare__items {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .fare__items {
    gap: 50px;
  }
}

.fare-item__main {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .fare-item__main {
    font-size: 24px;
  }
}

.fare-item__text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .fare-item__text {
    font-size: 24px;
  }
}

.fare-service {
  margin-top: 30px;
  width: 293px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .fare-service {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.farse-rvice {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .farse-rvice {
    flex-direction: row;
  }
}

.farse-rvice__title {
  padding: 10px;
  background-color: #ec7c1c;
  color: #fff;
  font-weight: bold;
  border: 1px solid #ec7c1c;
}
@media (min-width: 768px) {
  .farse-rvice__title {
    font-size: 24px;
  }
}

.farse-rvice__text {
  border: 1px solid #ec7c1c;
  background-color: #fff;
  padding: 10px;
  font-weight: bold;
}
.farse-rvice__text span {
  color: #ec7c1c;
  font-weight: bold;
}
@media (min-width: 768px) {
  .farse-rvice__text {
    font-size: 24px;
  }
}

.fare__attention {
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .price-item__body {
    width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-item__dl {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px dashed #333;
}

.price-item__dt {
  font-weight: bold;
}

.price-item__dd {
  text-align: right;
  font-weight: bold;
}

.price__button {
  margin-top: 60px;
  text-align: center;
}

/*==============================
taxi
==============================*/
.taxi {
  padding: 80px 0;
}

.taxi__images {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media (min-width: 768px) {
  .taxi__images {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .taxi__image img {
    height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.tax__image-tate {
  display: flex;
  justify-content: space-between;
  gap: 27px;
}

/*==============================
more-service
==============================*/
.more-service {
  margin-top: 80px;
  padding: 80px 0;
  background: url(../img/sp/otetudai-bg.png) no-repeat center center/cover;
}

.more-service__title {
  width: 200px;
  margin: 0 auto;
}

.more-service__text {
  text-align: center;
  margin-top: 10px;
}

.more-service__items {
  display: grid;
  margin-top: 50px;
}

.more-service__items-title {
  width: 130px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .more-service__items-title {
    width: 180px;
    margin: auto 0;
    transform: rotate(-15deg);
  }
}

.more-service__lists {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
.more-service__lists > :last-child {
  grid-column: 1/-1;
  justify-self: center;
}
@media (min-width: 768px) {
  .more-service__lists > :last-child {
    grid-column: auto;
    justify-self: auto;
  }
}
@media (min-width: 768px) {
  .more-service__lists {
    gap: 50px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.more-service__items__list {
  width: 160px;
  padding: 10px 0;
  text-align: center;
  background-color: #fff;
  color: #ec7c1c;
  border-radius: 30px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .more-service__items__list {
    width: auto;
    padding: 10px 30px;
  }
}

.more-service__price {
  margin-top: 50px;
  padding: 28px 10px;
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
  border-radius: 10px;
}

.more-service__price-main {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .more-service__price-main {
    font-size: 32px;
  }
}

.more-service__price-sub {
  font-weight: bold;
}
@media (min-width: 768px) {
  .more-service__price-sub {
    font-size: 24px;
  }
}

.more-service__price-button {
  margin-top: 30px;
}

/*==============================
footer
==============================*/
.footer {
  padding: 80px 0 0 0;
}

.footer__logo {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 350px;
  }
}

.footer__text-content {
  margin-top: 30px;
  text-align: center;
}

.footer__address span {
  font-weight: bold;
}
@media (min-width: 768px) {
  .footer__address {
    font-size: 25px;
  }
}

.copyright__content {
  margin-top: 70px;
  background-color: #ffe9d0;
  text-align: center;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .copyright__content {
    text-align: right;
  }
}

.copyright {
  font-size: 12px;
  color: #8b5d3d;
}

.button__text {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */