@charset "utf-8";

#fv {
  background-image: url(../img/tours_fv.webp);
  background-repeat: no-repeat;
}

@media (max-width: 519px) {
  #fv {
    background-image: url(../img/tours_fv_sp.webp);
    height: 180px;
  }
}

#fv.lower_fv_large .page_title {
  z-index: 2;
}

#tours {
  overflow-x: hidden;
}

#tours > .wrapper {
  max-width: 1357px;
}

.tours .items {
  padding-top: 138px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 20px;
  position: relative;
}

#tours .items::before {
  content: '';
  display: block;
  width: 282px;
  height: 349px;
  background: center / contain url(../img/tours_deco_l.png) no-repeat;
  position: absolute;
  top: 10px;
  left: -120px;
  z-index: 0;
}

#tours .items::after {
  content: '';
  display: block;
  width: 225px;
  height: 279px;
  background: center / contain url(../img/tours_deco_r.png) no-repeat;
  position: absolute;
  top: 40px;
  right: -120px;
  z-index: 0;
}

.tours .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 0px 2px 10px 0px #794F4F33;
  padding: 30px;
  width: 100%;
  max-width: 412px;
  position: relative;
  z-index: 1;
}

.tours .item .img {
  overflow: hidden;
  width: 100%;
}

.tours .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease 0.3s;
  transform-origin: center;
}

.tours .item:hover .img img {
  /* transform: scale(1.05); */
  opacity: 0.8;
}

.tours .season {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  -webkit-column-gap: 5px;
  column-gap: 5px;
  margin-top: 20px;
}

.tours .season-ttl {
  color: #fff;
  background: #B39E54;
  padding: 4px;
  font-size: 14px;
  font-family: var(--gothic);
}

.tours .season .icon {
  width: 28px;
  height: 28px;
}

.tours .season .icon img {
  max-width: 100%;
}

.tours .item .ttl {
  color: #B39E54;
  font-size: 20px;
  margin: 10px 0;
}

.tours .item p {
  font-size: 15px;
  color: #000;
}

@media (max-width: 959px) {
  #tours .items {
    flex-direction: column;
    align-items: center;
  }

  #tours .item {
    width: 100%;
  }

  #tours .items::before {
    left: auto;
    right: 70%;
  }

  #tours .items::after {
    left: 70%;
    right: auto;
  }
}

@media (max-width: 519px) {
  #tours .items {
    padding-top: 80px;
  }

  .tours .item {
    padding: 20px;
  }

  #tours .items::before,
  #tours .items::after {
    content: none;
  }
}

#fv.tours-1 {
  background-image: url(../img/tours01_fv.webp);
}

#fv.tours-2 {
  background-image: url(../img/tours02_fv.webp);
}

#fv.tours-3 {
  background-image: url(../img/tours03_fv.webp);
}

#fv.tours-4 {
  background-image: url(../img/tours04_fv.webp);
}

#fv.tours-5 {
  background-image: url(../img/tours05_fv.webp);
}

#fv.lower_fv_large.tours_detail .page_title {
  bottom: 54px;
}

@media (max-width: 519px) {
  #fv.tours_detail {
    background-image: url(../img/tours01_fv_sp.webp);
    height: 400px;
  }

  #fv.lower_fv_large.tours_detail .page_title {
    bottom: -25px;
  }

  #fv.tours-1 {
    background-image: url(../img/tours01_fv_sp.webp);
  }

  #fv.tours-2 {
    background-image: url(../img/tours02_fv_sp.webp);
  }

  #fv.tours-3 {
    background-image: url(../img/tours03_fv_sp.webp);
  }

  #fv.tours-4 {
    background-image: url(../img/tours04_fv_sp.webp);
  }

  #fv.tours-5 {
    background-image: url(../img/tours05_fv_sp.webp);
  }
}

#lead {
  padding-top: 60px;
  padding-bottom: 40px;
  overflow-x: hidden;
}

#lead h4 {
  margin-bottom: 10px;
  font-size: 32px;
  text-align: center;
}

#lead p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  max-width: 800px;
  position: relative;
  z-index: 1;
  letter-spacing: 1.5px;
}

#lead .img {
  text-align: center;
  position: relative;
}

#lead .img img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

#lead .img::before {
  content: '';
  display: block;
  width: 316px;
  height: 435px;
  position: absolute;
  bottom: 80px;
  left: -150px;
  background: center / contain url(../img/tours_deco_w_l.png) no-repeat;
  z-index: 0;
}

#lead .img::after {
  content: '';
  display: block;
  width: 281px;
  height: 347px;
  position: absolute;
  bottom: 80px;
  right: -140px;
  background: center / contain url(../img/tours_deco_w_r.png) no-repeat;
  z-index: 0;
}

@media (max-width: 959px) {
  #lead .img::before {
    width: 158px;
    height: 218px;
    left: -20px;
    bottom: -40px;
    z-index: 2;
  }

  #lead .img::after {
    width: 141px;
    height: 174px;
    right: -20px;
    bottom: -40px;
    z-index: 2;
  }
}

#plan {
  padding-bottom: 100px;
  overflow-x: hidden;
}

#plan img {
  width: 534px;
  max-width: 100%;
}

#plan .bg {
  background: #fff;
  box-shadow: 0px 2px 10px 0px #794F4F33;
  max-width: 1240px;
  padding: 40px 80px 60px 80px;
}

#plan .bg:not(:first-child) {
  margin-top: 40px;
}

#plan .bg .inner {
  position: relative;
}

/* #plan .bg > .inner::before, */
#plan .bg > .inner .bg-bar {
  /* content: ''; */
  display: block;
  width: 1px;
  height: calc(100% - 50px);
  left: 20px;
  top: 25px;
  border-left: 1px dotted #8A2222;
  position: absolute;
}

#plan .lead {
  max-width: 800px;
  margin: 0 auto 40px;
}
#plan .lead .subttl {
  font-size: 32px;
  text-align: center;
}

#plan .time {
  color: #8A2222;
  font-size: 34px;
  position: relative;
  margin-left: 40px;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  -webkit-column-gap: 4px;
  column-gap: 4px;
}

#plan .time::before {
  content: '';
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background: #8A2222;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -27px;
}

#plan .time .mark {
  color: #fff;
  background: #8A2222;
  border-radius: 40px;
  font-size: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#plan .move {
  background: #A69660;
  color: #fff;
  border-radius: 40px;
  padding: 10px;
  position: relative;
  display: inline-flex;
  -moz-column-gap: 5px;
  -webkit-column-gap: 5px;
  column-gap: 5px;
}

#plan .move.walk {
  padding: 4px 15px 4px 10px;
}

#plan .move::before {
  content: '';
  display: block;
  background: center / contain no-repeat;
}

#plan .move.walk::before {
  width: 22px;
  height: 22px;
  background-image: url(../img/plan_ico_walk.png);
}

#plan .move.horse::before {
  width: 22px;
  height: 22px;
  background-image: url(../img/plan_ico_horse.png);
}

#plan .move.train::before {
  width: 22px;
  height: 23px;
  background-image: url(../img/plan_ico_train.png);
}

#plan .move.taxi::before {
  width: 24px;
  height: 25px;
  background-image: url(../img/plan_ico_taxi.png);
}

#plan .move.bicycle::before {
  width: 22px;
  height: 23px;
  background-image: url(../img/plan_ico_bicycle.png);
}

#plan .move.ship::before {
  width: 24px;
  height: 25px;
  background-image: url(../img/plan_ico_ship.png);
}

#plan .inner > .move {
  margin-top: 20px;
  margin-bottom: 20px;
  /* padding: 4px 15px 4px 10px; */
}

#plan .em {
  font-weight: bold;
  color: #8A2222;
}

#plan .time-text {
  display: flex;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  position: relative;
  margin-top: 20px;
}

#plan .time-text .left {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

#plan .time-text .ttl {
  font-size: 22px;
  margin-top: 8px;
}

#plan .time-text p {
  margin-top: 10px;
}

#plan .time-text .right {
  max-width: 820px;
}

#plan .speech {
  display: inline-block;
  font-size: 16px;
}

#plan .text-img {
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
  -webkit-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  position: relative;
  margin-top: 10px;
}

#plan .text-img .img {
  position: relative;
}

#plan .text-img .img::before,
#plan .text-img .img::after {
  content: '';
  position: absolute;
  display: block;
  background: center / contain no-repeat;
  z-index: 0;
}

#plan .text-img .img::before {
  top: -35px;
  right: -30px;
  background-image: url(../img/tours_plan_deco01.png);
  width: 183px;
  height: 70px;
}

#plan .text-img .img::after {
  bottom: -10px;
  left: -60px;
  background-image: url(../img/tours_plan_deco02.png);
  width: 163px;
  height: 35px;
}

@media (min-width: 520px) {
  #plan .text-img .img {
    margin-bottom: 20px;
  }
}

@media (max-width: 519px) {
  #plan .text-img .img::before {
    top: -18px;
    right: -30px;
    background-image: url(../img/tours_plan_deco01_sp.png);
    width: 128px;
    height: 48px;
  }

  #plan .text-img .img::after {
    bottom: -6px;
    left: -60px;
    background-image: url(../img/tours_plan_deco02_sp.png);
    width: 113px;
    height: 24px;
  }
}

#plan .text-img .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 457px;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  #plan .text-img .right {
    min-width: 457px;
  }
}

#plan .text-img .ttl {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

#plan .text-img p {
  line-height: 1.8;
  margin-bottom: 20px;
}

#plan .text-img .sub-img {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(233, 223, 214, 0.8) 0%, rgba(232, 225, 203, 0.616) 40.5%, rgba(232, 225, 203, 0.32) 100%);
}

@media (max-width: 959px) {
  #plan .bg {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* #plan .bg > .inner::before, */
  #plan .bg > .inner .bg-bar {
    height: calc(100% - 90px);
  }

  #plan .text-img,
  #plan .time-text {
    flex-direction: column;
  }

  #plan .text-img .right,
  #plan .time-text .right {
    padding-left: 40px;
  }

  #plan .text-img .img img {
    width: 100%;
  }

  #plan .text-img .img::before {
    right: -20px;
  }

  #plan .text-img .img::after {
    left: -20px;
  }
}

@media (max-width: 519px) {
  #plan {
    padding-bottom: 60px;
  }

  #plan .bg {
    padding: 40px 20px;
  }

  /* #plan .bg > .inner::before, */
  #plan .bg > .inner .bg-bar {
    height: calc(100% - 40px);
  }

  #plan .text-img {
    margin-bottom: 20px;
  }

  #plan .text-img .ttl {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  #plan .text-img .sub-img {
    margin-top: 10px;
  }

  #plan .text-img p {
    line-height: 1.6;
  }

  #plan .inner > div:last-child {
    position: relative;
  }
  #plan .inner > div:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    display: block;
    width: 40px;
    height: 100%;
    background-color: #fff;
  }
}

#plan .balloon {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  color: #000;
  font-size: 16px;
  background: #FFF;
  box-sizing: border-box;
  height: 41px;
}

#plan .balloon .inner {
  padding: 8px 10px;
  border: solid 0.7px #B39E54;
  border-left: none;
}

#plan .balloon::before {
  content: '';
  display: block;
  width: 10px;
  height: 41px;
  background: center right / contain url(../img/balloon_arr.png) no-repeat;
}


#plan .other-plans .em {
  margin-top: 20px;
}

#plan .other-plans .flex {
  gap: 10px;
}

#plan .other-plans .flex > div {
  padding: 15px 8px 10px;
  border: 1px solid #CFCABF;
  text-align: center;
}

#plan .other-plans .subttl {
  color: #CAAC69;
  font-weight: bold;
  line-height: 1;
}

#plan .other-plans img {
  margin-top: 7px;
}

#plan .other-plans .btn_area {
}

#plan .other-plans a {
  margin-top: 10px;
  padding: 3px 15px 5px;
}

#plan .other-plans a span {
  font-size: 13px;
}

#plan .other-plans a span::after {
  width: 14px;
  height: 14px;
}

@media (max-width: 767px) {
  #plan .other-plans .flex {
    display: flex;
    flex-direction: column;
  }

  #plan .other-plans .flex > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img ttl"
                         "img btn";
    gap: 0 10px;
    padding: 8px;
    text-align: left;
  }

  #plan .other-plans .subttl {
    grid-area: ttl;
    align-self: flex-end;
  }

  #plan .other-plans img {
    grid-area: img;
    margin-top: 0;
  }

  #plan .other-plans .btn_area {
    grid-area: btn;
    align-self: flex-start;
  }
}



#plan .link {
  margin-top: 40px;
  text-align: center;
}

#others {
  background: center / cover url(../img/others_bg.webp) no-repeat;
  padding: 60px 0;
  overflow-x: hidden;
}

#others > .wrapper {
  display: flex;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}

#others .items {
  padding: 0;
  justify-content: center;
}

#others .item {
  /* width: 45%; */
  /* max-width: 407px; */
  width: 100%;
  max-width: 100%;
}

#others .left img {
  max-width: 237px;
}

#others .subttl {
  margin-top: 20px;
  padding-left: 6px;
  color: #fff;
}

#others .swiper-slide {
  width: 412px;
  height: auto;
  display: flex;
}

@media (max-width: 959px) {
  #others > .wrapper {
    flex-direction: column;
    padding: 0;
  }

  #others .items {
    margin-top: 20px;
  }
}

@media (max-width: 519px) {
  #plan .balloon {
    height: auto;
    flex-direction: column;
  }
  
  #plan .balloon .inner {
    border: solid 0.7px #B39E54;
    border-top: none;
  }
  
  #plan .balloon::before {
    width: 100%;
    height: 9.5px;
    background: left bottom / auto 100% url(../img/balloon_arr_sp.png) no-repeat;
  }
  
  #others .items {
    flex-direction: column;
    align-items: center;
  }

  #others .item {
    width: 100%;
  }

  #others .left img {
    max-width: 100%;
  }

  #others .subttl {
    margin-top: 0;
    margin-left: 20px;
    font-size: 14px;
  }  
}

#others .swiper-prev,
#others .swiper-next {
  top: 50%;
  transform: translateY(-50%);
}

#others .swiper {
  position: relative;
  width: calc(calc(100% - 257px) + calc(calc(calc(var(--vw) * 100) - 1200px) / 2));
}

#others .swiper-slide img {
  object-position: center;
  object-fit: cover;
}

#others .swiper-button {
  position: absolute;
  z-index: 10;
  display: block;
  width: 68px;
  height: 68px;
  background-color: #C1B074;
  border: 1px solid #D2C081;
  border-radius: 100px;
  cursor: pointer;
  transition: all ease 0.3s;
}

#others .swiper-button:not(.swiper-button-disabled):hover {
  background-color: #000;
}

#others .swiper-prev {
  left: 5px;
}

#others .swiper-next {
  right: 45px;
}

#others .swiper-button::before,
#others .swiper-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

#others .swiper-button::before {
  left: 0;
  right: 0;
  width: 25px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

#others .swiper-button::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  transform-origin: center;
}

#others .swiper-prev::after {
  left: 21px;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}

#others .swiper-next::after {
  right: 21px;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

#others .swiper-button-disabled {
  background-color: #938E8A;
  /*	pointer-events: none;*/
  cursor: default;
}

#others .swiper-button-disabled::before {
  background-color: #C6BC9B;
}

#others .swiper-button-disabled::after {
  border-color: #C6BC9B;
}

#others .swiper-button-lock {
  display: none;
}

html[lang="en"] #others .swiper-button-lock {
  display: block;
}

@media (max-width: 1239px) {
  #others .swiper {
    width: calc(100% - 237px);
  }
}

@media (max-width: 959px) {
  #others {
    display: block;
  }

  #others .left {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #others .swiper {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  #others .swiper-prev {
    left: 20px;
  }

  #others .swiper-next {
    right: 20px;
  }

  #others .swiper-button {
    width: 60px;
    height: 60px;
  }

  #others .swiper-button::before {
    width: 20px;
  }

  #others .swiper-prev::after {
    left: 19px;
  }

  #others .swiper-next::after {
    right: 19px;
  }
}

@media (max-width: 519px) {
  #others {
    padding: 50px 0;
  }

  #others .left {
    display: flex;
    align-items: center;
  }

  #others .left h3 img {
    width: 150px;
  }

  #others .swiper-button {
    width: 46px;
    height: 46px;
  }

  #others .swiper-button::before {
    width: 14px;
  }

  #others .swiper-prev::after {
    left: 15px;
  }

  #others .swiper-next::after {
    right: 15px;
  }

  #others .swiper-button-disabled {
    display: none;
  }

  #others .swiper-slide {
    width: 300px;
  }

  #others .item {
    padding: 15px;
  }
}




#plan_list .inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
  max-width: 1070px;
  margin-inline: auto;
  padding-bottom: 100px;
}
#plan_list .plan_item {
}
#plan_list .img {
  margin-bottom: 20px;
  border: 10px solid #fff;
}
#plan_list .img img {
  width: 100%;
}
#plan_list .plan_ttl {
  margin-bottom: 15px;
  font-weight: bold;
}
#plan_list .spot_ttl {
  width: 100%;
  padding: 3px 0;
  margin-bottom: 5px;
  background-color: #B39E54;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
#plan_list .spot_list {
  margin-bottom: 15px;
}
#plan_list .spot_list li {
  padding-left: 1rem;
  font-size: 14px;
  text-indent: -1em;
}
#plan_list .btn_area {
  text-align: center;
}
#plan_list .btn_area a {
  padding: 10px 55px 10px 40px;
}
@media (max-width: 959px) {
  #plan_list .inner {
    grid-template-columns: 1fr 1fr;
    gap: 70px 10px;
  }
}
@media (max-width: 519px) {
  #plan_list .btn_area a {
    font-size: 12px;
  }
}