@charset "UTF-8";
:root {
  --c-main: #1F305E;
  --c-bg: #F6F3EE;
  --c-line: #D8D3CF;
  --c-line2: #D4B987;
  --c-red: #9A150B;
  --c-orange: #FFB366;
  --c-navy: #003893;
  --c-white: #ffffff;
  --c-pink: #FEDFE6;
}
/* animation */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes smooth {
  0% { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0); }
}
@keyframes blink {
  50%,100% { opacity: 0; }
  0%,25%,75% { opacity: 1; }
}
@keyframes bounce {
  0% {
    translate: 0;
    scale: 1;
  }
  30% {
    translate: 0 -20%;
  }
  50% {
    scale: 1;
  }
  75% {
    translate: 0;
    scale: 1.15 0.8;
  }
  100% {
    translate: 0;
    scale: 1;
  }
}
.js-anime-fadeIn { opacity: 0; animation-duration: .4s; animation-timing-function: ease-in-out; animation-fill-mode: forwards; }
.js-anime-fadeIn.js-anime-on { animation-name: fadeIn; }
.js-anime-fadeUp { opacity: 0; animation-duration: .4s; animation-timing-function: ease-in-out; animation-fill-mode: forwards; }
.js-anime-fadeUp.js-anime-on { animation-name: fadeUp; }
.js-anime-slideleft {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideleft.js-anime-on {
  animation-name: slideLeft;
}
.js-anime-slideright {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideright.js-anime-on {
  animation-name: slideRight;
}
.js-anime-smooth {
  clip-path: inset(0 0 100% 0);
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-smooth.js-anime-on {
  animation-name: smooth;
}
.blink { animation:blink .5s step-end infinite alternate; }
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
cite,
del,
dfn,
img,
ins,
kbd,
q,
samp,
strong,
sub,
sup,
var,
area,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
.header {
  font-size: 14px;
}
.gnav ul li {
  font-size: 1.8rem;
}
.topicpath ol {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .topicpath ol {
    font-size: .875rem;
  }
}
a {
  text-decoration: none;
}
a,
button {
  transition: opacity .3s ease;
}
a:hover,
button:hover {
  opacity: 0.7;
}
.topicpath {
  margin-bottom: 0;
}
.c-red {
  color: var(--c-red);
}
body {
  color: #3b3b3b;
  font-weight: 400;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
#bust .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
#bustour {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2521;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #bustour {
    font-size: 14px;
  }
}
#bustour figure {
  margin: 0;
}

#bustour img,
#bustour video {
  max-width: 100%;
  vertical-align: bottom;
}

#bustour .w100 {
  width: 100%;
}

#bustour .bt-in {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
  box-sizing: border-box;
}

#bustour .opacity {
  transition: all .6s;
}

#bustour .opacity:hover {
  opacity: 0.7;
}
#bustour .font-gothic {
  font-family: "Noto Sans JP", sans-serif;
}
#bustour .font-serif {
  font-family: "Noto Serif JP", serif;
}
#bustour .font-zen {
  font-family: "Zen Old Mincho", serif;
}
#bustour .font-ca {
  font-family: "Calistoga", serif;
}

#bustour .tar {
  text-align: right;
}

@media screen and (max-width: 768px) {
  #bustour .scroll {
    overflow-x: auto;
    white-space: nowrap;
  }

  #bustour .scroll::-webkit-scrollbar {
    height: 5px;
  }

  #bustour .scroll::-webkit-scrollbar-track {
    background-color: #ededed;
  }

  #bustour .scroll::-webkit-scrollbar-thumb {
    background-color: var(--c-red);
  }
}

#bustour .mainimg-cap {
  display: flex;
  justify-content: flex-end;
  padding: 5px 20px;
  background: var(--c-main);
  color: #fff;
}
#bustour .cmn-big-link {
  width: min(800px, 90%);
  margin: 0 auto 60px;
}
#bustour .cmn-big-link:last-child {
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  #bustour .cmn-big-link {
    margin-bottom: 2em;
    width: auto;
  }
  #bustour .cmn-big-link:last-child {
    margin-bottom: 0;
  }
}
#bustour .cmn-big-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  font-size: clamp(1.563rem, 0.938rem + 1.3vw, 2.5rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: 50vw;
  overflow-wrap: anywhere;
  word-break: keep-all;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  #bustour .cmn-big-link a {
    font-size: 1.219rem;
    line-height: 1.4;
  }
}
#bustour .cmn-big-link a::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 1em;
  background: no-repeat center / contain;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}
#bustour .cmn-big-link._c-red a {
  background: var(--c-red);
}
#bustour .cmn-big-link a.ico_stay::before {
  width: 1.5em;
  height: 1.2em;
}
#bustour .cmn-big-link .ico_bus::before {
  background-image: url('../../img/otherlan/bustour2/ico_bus.svg');
  aspect-ratio: 53 / 31;
}
#bustour .cmn-big-link .ico_stay::before {
  background-image: url('../../img/otherlan/bustour2/ico_stay.svg');
  aspect-ratio: 57 / 46;
}
#bustour .about-sec {
  position: relative;
  padding: 150px 0 170px;
  background: url("../../img/otherlan/bustour2/about_bg005.png") no-repeat left top;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec {
    padding: 60px 0 20%;
  }
}

#bustour .about-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: min(548px, 29dvw);
  height: auto;
  aspect-ratio: 274 / 337;
  background: url("../../img/otherlan/bustour2/about_bg001.png") no-repeat center / contain;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec::before {
    width: min(340px, 29dvw);
  }
}

#bustour .about-sec::after {
  content: '';
  position: absolute;
  bottom: 5em;
  right: 4em;
  width: min(344px, 33vw);
  height: auto;
  aspect-ratio: 86 / 81;
  background: url("../../img/otherlan/bustour2/about_bg002.png") no-repeat right top / contain;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec::after {
    bottom: -2em;
    right: 1em;
  }
}

#bustour .about-sec .about-ttl {
  font-family: "Zen Old Mincho", serif;
  position: relative;
  margin-bottom: 45px;
  font-size: clamp(2.188rem, 1.021rem + 2.43vw, 3.938rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec .about-ttl {
    font-size: clamp(1.25rem, -0.163rem + 6.46vw, 2.938rem);
    margin-bottom: .8em;
  }
}

#bustour .about-sec .about-lead {
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-lead {
    font-size: 1rem;
  }
}
#bustour .about-sec .about-lead span {
  position: relative;
  font-weight: 400;
  line-height: 2;
}

#bustour .about-sec .about-lead span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 172px;
  height: 152px;
  background: url("../../img/otherlan/bustour2/about_i001.png") no-repeat right top;
  margin-top: -40px;
  margin-left: -225px;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-lead span::before {
    display: none;
  }
}

#bustour .about-sec .about-lead span::after {
  content: '';
  position: absolute;
  top: 0;
  right: -3em;
  width: 234px;
  height: 205px;
  background: url("../../img/otherlan/bustour2/about_i002.png") no-repeat right top;
  margin-top: -30px;
  margin-right: -235px;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec .about-lead span::after {
    display: none;
}
}

#bustour .about-sec .about-icon {
  margin-bottom: 8px;
  text-align: center;
}
#bustour .about-sec .about-icon img {
  width: min(48px, 9vw);
}
#bustour .about-sec .about-subttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: min(60px, 8vw);
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-subttl {
    font-size: clamp(1.188rem, -0.016rem + 5.5vw, 2.625rem);
    line-height: 1.3;
  }
}
#bustour .about-sec .about-list {
  position: relative;
  max-width: 1000px;
  margin: auto;
  z-index: 10;
}
#bustour .about-sec .about-list .about-list-item {
  display: flex;
  gap: 1.5em;
  background: var(--c-white);
  border: 6px solid var(--c-line);
  border-radius: 12px;
  padding: 3em min(4em, 4vw);
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item {
    flex-direction: column;
    border-radius: 12px;
    border-width: 4px;
    padding: 2em min(4em, 4vw);
  }
}
#bustour .about-sec .about-list .about-list-item:not(:last-of-type) {
  margin-bottom: 1.3em;
}
#bustour .about-sec .about-list .about-list-item .about-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item .about-box {
    flex-direction: column;
    gap: 1em;
  }
}
#bustour .about-sec .about-list .about-list-item .about-box:not(:last-of-type) {
  margin-bottom: 1.3em;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item .about-box:not(:last-of-type) {
    margin-bottom: 2.3em;
  }
}
#bustour .about-sec .about-list .about-list-item .about-box .about-box-img-area {
  width: min(240px, 32vw);
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item .about-box .about-box-img-area {
    width: 100%;
  }
}
#bustour .about-sec .about-list .about-list-item .about-box .about-box-img-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item .about-box .about-box-img-area img {
    border-radius: 10px;
  }
}
#bustour .about-sec .about-list .about-list-item .about-box .about-list-txt-wrap {
  flex: 2;
  width: auto;
  min-width: 170px;
}
#bustour .about-sec .about-list .about-list-item .about-box .about-list-txt-wrap .about-list-ttl {
  color: var(--c-main);
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: .3em;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list .about-list-item .about-box .about-list-txt-wrap .about-list-ttl {
    font-size: 1.829rem;
  }
}
#bustour .about-sec .about-list li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list li:last-child {
    margin-bottom: 0;
  }
}
#bustour .about-sec .about-list {
  max-width: 1000px;
  margin: auto;
}
#bustour .about-sec .about-list li .about-list-num {
  font-family: "EB Garamond", serif;
  font-size: 2.2rem;
  text-align: center;
  color: var(--c-main);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list li .about-list-num {
    font-size: 1.7rem;
  }
}
#bustour .about-sec .about-list li.js-anime-on .about-list-num {
  animation: bounce .4s ease-in-out .3s both;
}
#bustour .about-sec .about-list li .about-list-num span {
  font-size: 5.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #bustour .about-sec .about-list li .about-list-num span {
    font-size: 4rem;
  }
}
#bustour .about-sec .about-list li figure figcaption {
  margin-top: 10px;
  color: #995628;
  font-size: 1.4rem;
  text-align: center;
}

#bustour .about-sec .about-list li .about-list-txt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #995628;
}

#bustour .about-sec .about-list li .about-list-txt small {
  font-size: 1.6rem;
}

#bustour .overview-sec {
  background: url(../../img/otherlan/bustour2/overview_bg.png) no-repeat left top / cover;
  padding: 150px 0;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec {
    padding: 60px 0;
  }
}

#bustour .overview-sec .overview-about {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5em 2.5em;
  box-sizing: border-box;
  background: var(--c-white);
  border-radius: 12px;
}
#bustour .overview-sec .overview-about .overview-ttl {
  margin-bottom: 40px;
  padding: 5px;
  background-color: var(--c-main);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-ttl {
    font-size: 1.371rem;
    margin-bottom: 1em;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3em;
  width: min(150px, 28%);
  height: auto;
  aspect-ratio: 204 / 173;
  background: url("../../img/otherlan/bustour2/acc01.png") no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02::after {
    top: 0;
    bottom: unset;
    width: min(140px, 20%);
  }
}
#bustour .overview-sec .overview-about .overview-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2em min(5em, 6vw);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1150px) {
  #bustour .overview-sec .overview-about .overview-box {
    flex-direction: column;
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box {
    display: block;
    margin-bottom: 1em;
  }
}
#bustour .overview-sec .overview-about .overview-box._box01 {
  border-bottom: 2px solid #D8D3CF;
}
#bustour .overview-sec .overview-about .overview-box._box01 .overview-box-ttl {
  width: auto;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 .overview-box-ttl {
    width: 100%;
    line-height: 1.4;
}
}
#bustour .overview-sec .overview-about .overview-box._box01 .overview-price:has(+ .overview-price) {
  margin-bottom: 3em;
}
#bustour .overview-sec .overview-about .overview-box._box01 .overview-price h4 {
  font-size: 2.8rem;
  line-height: 1.3;
  background: #F8F5EE;
  border-left: 4px solid var(--c-red);
  padding: .3em .3em .3em .6em;
  margin-bottom: .5em;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 .overview-price h4 {
    font-size: 1.6rem;
    border-left-width: 2px;
  }
}

#bustour .overview-sec .overview-about .overview-box._box01 dl {
  font-family: "Zen Old Mincho", serif;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: .5em;
  min-width: 470px;
  color: var(--c-red);
}

#bustour .overview-sec .overview-about .overview-box._box01 dl dt {
  font-size: 2.8rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 dl dt {
    font-size: 1.6rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box01 dl dd {
  font-size: 3.9rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 dl dd {
    font-size: 1.5rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box01 dl .zei {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 dl .zei {
    display: inline-block;
    font-size: 1.2rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box01 dl dd span {
  font-size: 8rem;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box01 dl dd span {
    font-size: clamp(2.5rem, -1.163rem + 16.75vw, 6.875rem);
  }
}

#bustour .overview-sec .overview-about .overview-box._box02 dl {
  margin-top: 1.5em;
}
@media screen and (max-width: 1150px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl {
    margin-top: 0;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dt {
  color: var(--c-red);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dt {
    font-size: 1.6rem;
    margin-bottom: .3em;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl .notice {
  width: fit-content;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: 'palt' 1;
  font-size: 5rem;
  font-weight: 600;
  margin: .5em auto;
}
:lang(en) #bustour .overview-sec .overview-about .overview-box._box02 dl .notice {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl .notice {
    font-size: 2.6rem;
  }
  :lang(en) #bustour .overview-sec .overview-about .overview-box._box02 dl .notice {
    font-size: 1.8rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 0;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd {
    gap: 0;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd div {
  display: flex;
  align-items: flex-end;
  gap: .1em;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-right: .6em;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd div {
    font-size: 1.6rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd .date {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd .date {
    font-size: 1.6rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd div:last-child {
  margin-right: 0;
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd .year {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd .year {
    font-size: 1.6rem;
  }
}
#bustour .overview-sec .overview-about .overview-box._box02 dl dd div span {
  font-size: 5.6rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd div span {
    font-size: clamp(2.5rem, -1.163rem + 16.75vw, 6.875rem);
  }
}

#bustour .overview-sec .overview-about .overview-box._box02 dl dd div p {
  margin-left: 3px;
  background-color: var(--c-red);
  font-size: 2.4rem;
  color: #fff;
  border-radius: 50%;
  line-height: 1;
  padding: .3em;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box._box02 dl dd div p {
    font-size: 1.3rem;
    padding: .4em;
  }
}
#bustour .overview-sec .overview-about .overview-box .overview-box-ttl {
  position: absolute;
  left: 0;
  top: 0;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}
@media screen and (max-width: 1150px) {
  #bustour .overview-sec .overview-about .overview-box .overview-box-ttl {
    position: static;
    margin-bottom: 1em;
  }
}
#bustour .overview-sec .overview-about .overview-box .overview-box-ttl span {
  display: inline-block;
  padding: 0.2em 0 0.2em 1.4em;
  background: url("../../img/otherlan/bustour2/overview_i001.png") no-repeat left center / 1em;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box .overview-box-ttl span {
    font-size: 1.829rem;
    background-size: min(25px, 8vw);
    padding: 0.2em 0 0.2em min(30px, 10vw);
  }
}
#bustour .overview-sec .overview-about .overview-box .overview-box-ttl small {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-box .overview-box-ttl small {
    font-size: 1.197rem;
    white-space: nowrap;
  }
}
#bustour .overview-sec .overview-about .overview-item {
  background-color: #F8F5EE;
}

#bustour .overview-sec .overview-about .overview-item .overview-ttl {
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

#bustour .overview-sec .overview-about .overview-item .overview-item-con {
  padding: 3em 1em 5em;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-item .overview-item-con {
    padding: 2em 1em;
  }
}

#bustour .overview-sec .overview-about .overview-item .overview-item-txt {
  text-align: center;
  margin-bottom: 2.5em;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-item .overview-item-txt {
    font-size: 1.4rem;
  }
}

#bustour .overview-sec .overview-about .overview-item .overview-item-btn {
  width: min(450px, 95%);
  text-align: center;
  margin: 0 auto;
}
#bustour .overview-sec .overview-about .overview-item .overview-item-btn a {
  position: relative;
  display: block;
  background-color: var(--c-main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: .8em 2.2em .8em 2em;
  border-radius: 50vw;
}
@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-about .overview-item .overview-item-btn a {
    font-size: 1.219rem;
    line-height: 1.3;
  }
}
#bustour .overview-sec .overview-about .overview-item .overview-item-btn a.inactive {
  pointer-events: none;
  background: #9e9e9e;
}

#bustour .overview-sec .overview-about .overview-item .overview-item-btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 10px;
  margin-top: -5px;
  background: url("../../img/otherlan/bustour2/ico_arrow.svg") no-repeat;
  background-size: contain;
}
#bustour .overview-sec .overview-about .overview-item .overview-item-btn:has(+ .overview-item-btn) {
  margin-bottom: 1.5em;
}
#bustour .overview-sec .overview-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#bustour .overview-sec .overview-table table {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-table table tr:last-child {
    border-bottom: 1px solid #CAAF63;
  }
}

#bustour .overview-sec .overview-table table tr th {
  padding: 40px 30px;
  border: 1px solid #CAAF63;
  background-color: var(--c-red);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-table table tr th {
    display: block;
    padding: 20px;
    border-bottom: none;
    font-size: 1.6rem;
  }
}

#bustour .overview-sec .overview-table table tr td {
  padding: 20px 30px;
  border: 1px solid #CAAF63;
  background-color: #fff;
  font-size: 1.8rem;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #bustour .overview-sec .overview-table table tr td {
    display: block;
    padding: 20px;
    border-bottom: none;
    font-size: 1.6rem;
  }
}

#bustour .tours-sec {
  background: url("../../img/otherlan/bustour2/tour_bg001.png") no-repeat right top 24em, var(--c-bg);
  background-size: min(640px, 35vw);
  padding-top: min(265px, 15dvw);
  height: auto;
  aspect-ratio: 320 / 223;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec {
    background-position: right top;
    background-size: min(300px, 48vw);
    padding-top: 60px;
  }
}

#bustour .tours-sec .tours-top {
  margin-bottom: min(125px, 10vw);
}

#bustour .tours-sec .tours-top .tours-ttl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--c-red);
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-top .tours-ttl {
    display: block;
  }
}

#bustour .tours-sec .tours-top .tours-ttl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--c-red);
}

#bustour .tours-sec .tours-top .tours-ttl span {
  display: inline-block;
  width: auto;
  background: url("../../img/otherlan/bustour2/tour_i001.png") no-repeat left center;
  padding: 0 0 0 1.4em;
  font-size: 4.2rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-top .tours-ttl span {
    font-size: 1.981rem;  
    padding: 0 0 0 1.5em;
    background-size: 1.2em;
    margin-bottom: 10px;
  }
}

#bustour .tours-sec .tours-top .tours-ttl .note {
  flex: 1;
  min-width: 690px;
  font-weight: 400;
  text-align: right;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-top .tours-ttl .note {
    min-width: auto;
    font-size: .914rem;
    text-align: left;
  }
}

#bustour .tours-sec .tours-top .tours-iconbus {
  font-weight: 700;
  text-align: right;
}

#bustour .tours-sec .tours-top .tours-iconbus span {
  display: inline-block;
  font-weight: 500;
  }
#bustour .tours-sec .tours-top .tours-iconbus span::before {
  content: '';
  display: inline-block;
  width: min(133px, 30dvw);
  height: auto;
  aspect-ratio: 133 / 23;
  background: url("../../img/otherlan/bustour2/tour_bus.png") no-repeat left center / contain;
  vertical-align: middle;
  margin-right: .5em;
}
#bustour .tours-sec .tours-con {
  margin: 0 auto;
  overflow: hidden;
}

#bustour .tours-sec .tours-start {
  margin-bottom: 20px;
}
#bustour .tours-sec .tours-start .tours-explain {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-start .tours-explain {
    font-size: clamp(1.188rem, 0.597rem + 2.7vw, 2.25rem);
  }
}
#bustour .tours-sec .acc-ttl {
  margin-bottom: .5em;
  font-size: 5.8rem;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  line-height: 1;
  letter-spacing: -0.1em;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .acc-ttl {
    font-size: 4.4rem;
  }
}
#bustour .tours-sec .acc-ttl.js-anime-on .letter {
  display: inline-block;
  animation: bounce .4s ease-in-out calc(var(--index) * 0.25s) both;
}
#bustour .tours-sec .schedule-time {
  position: relative;
  max-width: 610px;
  background: var(--c-white);
  border: 6px solid var(--c-line);
  padding: 2.5em .5em;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .schedule-time {
    max-width: unset;
    width: min(450px, 100%);
    border-width: 4px;
    padding: .5em .5em 1.5em;
  }
}
#bustour .tours-sec .schedule-time._goal-time {
  margin: 0 auto 3em;
}
#bustour .tours-sec .schedule-time-con {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .schedule-time-con {
    flex-direction: column;
    gap: 0;
  }
}
#bustour .tours-sec .schedule-time-con .tours-box-time span {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .schedule-time-con .tours-box-time span {
    padding-top: 1em;
  }
}
#bustour .tours-sec .schedule-time-con h3 {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .schedule-time-con h3 {
    font-size: clamp(2.188rem, 0.565rem + 7.42vw, 4.125rem);
  }
}

#bustour .tours-sec .schedule-time-con ._start span {
  background-image: url("../../img/otherlan/bustour2/tour_s_i001.png");
}
#bustour .tours-sec .tours-start .start-line {
  text-align: center;
  padding-block: 2em;
}
#bustour .tours-sec .tours-goal .goal-line {
  text-align: center;
  padding-bottom: 2em;
}
#bustour .tours-sec .tours-goal .coupon-con {
  display: grid;
  justify-items: center;
  place-content: center;
  gap: 3em;
  padding-top: min(40px, 4vw);
  margin: auto;
}
#bustour .tours-sec .tours-goal .coupon-con img {
  width: min(99px, 16vw);
}
#bustour .tours-sec .tours-goal .coupon-con .cmn-big-link {
  width: min(600px, 100%);
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap {
  text-align: center;
  margin-bottom: 3em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap:has(+ .tour-bnr) {
  margin-bottom: 1em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: .5em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl {
    font-size: 1.219rem;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl::before,
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl::after {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.5em;
  background: url("../../img/otherlan/bustour2/acc-line.svg") no-repeat center / contain;
  vertical-align: bottom;
  animation: blink .5s step-end infinite alternate;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl::before {
  margin-right: .5em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap .coupon-sub-ttl::after {
  margin-left: .5em;
  scale: -1 1;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap h3 {
  color: var(--c-red);
  font-size: 3.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info-ttl-wrap h3 {
    font-size: clamp(1.375rem, 0.014rem + 6.22vw, 3rem);
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain {
    flex-direction: column;
    align-items: center;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain h5 {
  place-content: center;
  color: #af985b;
  font-size: 2rem;
  letter-spacing: .05em;
  border-inline: 1px solid;
  padding-inline: 1.6em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain h5 {
    font-size: 1.8rem;
    padding-inline: 1em;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain ul li {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain ul li {
    font-size: 1.295rem;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-explain ul li:not(:last-child) {
  margin-bottom: .8em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-note {
  display: block;
  font-size: inherit;
  line-height: 1.5;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info-note::before {
  content: '※';
  margin-right: .2em;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:has(+ .coupon-info) {
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info:has(+ .coupon-info) {
    margin-bottom: 0;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:not(:first-of-type) {
  width: 100%;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .coupon-info-ttl-wrap {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .coupon-info-ttl-wrap {
    margin-bottom: .5em;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .cmn-big-link {
  width: min(600px, 100%);
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .cmn-big-link a {
  font-size: clamp(1.563rem, 0.938rem + 1.3vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .cmn-big-link a {
    font-size: 1.219rem;
    line-height: 1.4;
  }
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info:nth-of-type(3) .cmn-big-link a::before {
  display: none;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info .tour-bnr {
  width: min(850px, 100%);
  text-align: center;
  margin: auto;
}
#bustour .tours-sec .tours-goal .coupon-con .coupon-info .tour-bnr img {
  width: 100%;
}
#bustour .tours-sec .tours-box-line {
  width: min(960px, 50vw);
  text-align: center;
  padding-block: 2em;
  margin: auto;
}
#bustour .tours-sec .tours-box-line:has(.pc) {
  width: min(960px, 50vw);
}
#bustour .tours-sec .tours-box-line img:not(.pc) {
  width: min(8px, 0.43vw);
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-box-line img:not(.pc) {
    width: min(8px, 1.2vw);
  }
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-box-line._responsive .pc {
    display: none;
  }
  #bustour .tours-sec .tours-box-line._responsive .sp {
    display: block;
    margin: auto;
  }
}
#bustour .tours-sec .tours-box._boxl._box03 .tours-box-con._reverse {
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  margin-bottom: 2em;
}
@media screen and (max-width: 1070px) {
  #bustour .tours-sec .tours-box._boxl._box03 .tours-box-con._reverse {
    flex-direction: column;
  }
}
#bustour .tours-sec .tours-box._boxl._box03 .tours-box-con._reverse .tours-box-main {
  padding-top: min(50px, 12dvw);
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl._box03 .tours-box-con._reverse .tours-box-main {
    padding-top: 0;
  }
}
#bustour .tours-sec .tours-box._boxl._box03 .tours-box-con._reverse .tours-box-fig figcaption {
  text-align: left;
}
#bustour .tours-sec .tours-box-fig-big {
  width: min(1610px, 90%);
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-fig-big {
    width: 100%;
    height: 300px;
  }
}
#bustour .tours-sec .tours-box-fig-big img {
  border-radius: 0 50px 24px 0;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-fig-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
}
#bustour .tours-sec .tours-box-2col-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(5em, 4vw);
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-box-2col-wrap {
    grid-template-columns: auto;
  }
}
#bustour .tours-sec .tours-box-2col-wrap h2 {
  color: var(--c-red);
  font-size: clamp(1.875rem, -1.146rem + 4.03vw, 3.688rem);
  text-align: center;
  line-height: 1.3;
  background: var(--c-white);
  border: 6px solid var(--c-line2);
  padding: .4em;
  margin-bottom: .8em;
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-box-2col-wrap h2 {
    font-size: clamp(1.25rem, 0.069rem + 5.4vw, 3.375rem);
    border-width: 3px;
  }
}
#bustour .tours-sec .tours-box-2col-wrap .tours-box-fig {
  margin-bottom: 1em;
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-box-2col-wrap .tours-box-fig {
    margin-bottom: .5em;
  }
}
#bustour .tours-sec .tours-box-2col-wrap .tours-box-fig._mb-m {
  margin-bottom: 0em;
}
#bustour .tours-sec .tours-box-2col-wrap .tours-box-ttl {
  position: relative;
  word-break: keep-all;
  padding-right: 2.5em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-2col-wrap .tours-box-ttl {
    padding-right: 2em;
  }
}
#bustour .tours-sec .tours-box-2col-wrap .tours-course-box._n01 {
  margin-bottom: min(100px, 10vw);
}
#bustour .tours-sec .tours-box-2col-wrap .tours-box-main .tours-box-btn {
  margin: auto;
}

#bustour .tours-sec .tours-explain-con {
  padding-inline: min(60px, 3vw);
}
#bustour .tours-sec .tours-explain-box {
  width: min(900px, 100%);
  margin: auto;
  border: 6px solid var(--c-line2);
  background: var(--c-white);
  padding: 2em;
}
@media screen and (max-width: 980px) {
  #bustour .tours-sec .tours-explain-box {
    border-width: 3px;
    padding: 2em 1em;
  }
}
#bustour .tours-sec .tours-explain-box h4 {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-explain-box h4 {
    font-size: clamp(1.188rem, 0.597rem + 2.7vw, 2.25rem);
  }
}
#bustour .tours-sec .tours-box-time span {
  display: inline-block;
  padding: 1.5em 0 .5em 3.3em;
  color: var(--c-red);
  font-size: 1.8rem;
  line-height: 1.2;
  background: no-repeat left bottom 2px / 50px;
  margin-bottom: .5em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-time span {
    font-size: 1.5rem;
    background-size: min(28px, 8vw);
    background-position: left bottom .3em;
    padding: 1.5em 0 .4em min(38px, 11vw);
    margin-bottom: .4em;
  }
}
#bustour .tours-sec .tours-box-ttl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(2.813rem, 0.521rem + 3.06vw, 4.188rem);
  font-weight: 500;
  color: var(--c-main);
  line-height: 1.2;
  padding-bottom: .8em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-ttl {
    font-size: clamp(2rem, 1.167rem + 3.81vw, 3.5rem);
    line-height: 1.4;
  }
}
@media screen and (max-width: 1700px) {
  #bustour .tours-sec .tours-box-ttl._course01,
  #bustour .tours-sec .tours-box-ttl._course02_1 {
    flex-direction: column;
  }
}
#bustour .tours-sec .tours-box-ttl::after {
  content: '';
  position: absolute;
  bottom: 1em;
  right: 0;
  width: min(22%, 20vw);
  height: auto;
  aspect-ratio: 3 / 2;
  background: no-repeat center / contain;
}
#bustour .tours-sec .tours-box-ttl._course01::after {
  background-image: url("../../img/otherlan/bustour2/tour_03_i004.png");
}
#bustour .tours-sec .tours-box-ttl._course02_1::after {
  width: min(20%, 20vw);
  background-image: url("../../img/otherlan/bustour2/tour_03_i005.png");
}
#bustour .tours-sec .tours-box-ttl._course02_2::after {
  background-image: url("../../img/otherlan/bustour2/tour_03_i006.png");
}
#bustour .tours-sec .tours-box-ttl span {
  display: inline-block;
  font-size: 2.4rem;
  color: #231815;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box-ttl span {
    font-size: 1.368rem;
  }
}

#bustour .tours-sec .tours-box-ttl small {
  display: block;
  margin-bottom: 5px;
  font-size: 1.6rem;
}

#bustour .tours-sec figcaption {
  font-size: 1.4rem;
  padding-left: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec figcaption {
    font-size: .914rem;
  }
}

#bustour .tours-sec .tours-box._boxl._box03 .tours-box-con {
  margin-bottom: 2em;
}
#bustour .tours-sec .tours-box._boxl .tours-box-main {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-main {
    display: block;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-main .tours-box-itemset {
  width: 100%;
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig figcaption {
  text-align: right;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-fig figcaption {
    font-size: .914rem;
    text-align: left;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig figcaption.box03-fig {
  display: flex;
  justify-content: space-between;
  width: calc(50% + 8em);
  margin-left: auto;
}

#bustour .tours-sec .tours-box._boxl .tours-box-fig-l {
  display: flex;
  gap: .6em;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-fig-l {
    margin: 3em auto 0;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig-l figcaption {
  padding-left: 10px;
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig-l .ta-right {
  text-align: right;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-fig-l figcaption,
  #bustour .tours-sec .tours-box._boxl .tours-box-fig-l .ta-right {
    padding-right: 0;
    font-size: .914rem;
    text-align: center;
    padding: 0;
    margin-top: 4px;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r {
  display: flex;
  gap: .6em;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-fig-r {
    margin: 3em auto 0;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r figcaption {
  padding-right: 10px;
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r .ta-right {
  text-align: left;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-fig-r figcaption,
  #bustour .tours-sec .tours-box._boxr .tours-box-fig-r .ta-right {
    padding-left: 0;
    font-size: .914rem;
    text-align: center;
    padding: 0;
    margin-top: 4px;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig {
  left: 0;
}

#bustour .tours-sec .tours-box._boxr .tours-box-main {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-main figcaption {
    font-size: 1.4rem;
    text-align: center;
  }
}

#bustour .tours-sec .tours-box._boxr .tours-box-fig figcaption {
  padding-left: 10px;
}

#bustour .tours-sec .tours-box .tours-box-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row-reverse;
  gap: min(4em, 6vw);
  width: min(1600px, 95%);
  margin-left: auto;
}
@media screen and (max-width: 1070px) {
  #bustour .tours-sec .tours-box .tours-box-con {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-con {
    gap: 3em;
  }
}
#bustour .tours-sec .tours-box .tours-box-con._reverse {
  flex-direction: row;
  margin-left: 0;
}
@media screen and (max-width: 1070px) {
  #bustour .tours-sec .tours-box .tours-box-con._reverse {
    flex-direction: column-reverse;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-con figure img {
  border-radius: 0 100px 24px 0;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-con figure img {
    border-radius: 0 50px 12px 0;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r figure img {
  border-radius: 24px;
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r figure:first-child img {
  border-radius: 0 24px 24px 0;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-fig-r figure:first-child img {
    border-radius: 0 12px 12px 0;
  }
}
#bustour .tours-sec .tours-box._boxr .tours-box-fig-r figure:last-child img {
  border-radius: 24px 50px 24px 24px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxr .tours-box-fig-r figure:last-child img {
    border-radius: 12px 0 0 12px;
    margin-top: -1.5em;
  }
}
#bustour .tours-sec .tours-box .tours-box-con .tours-box-fig {
  flex: 3;
  min-width: 500px;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-con .tours-box-fig {
    width: 100%;
    min-width: auto;
    margin: auto;
  }
}

#bustour .tours-sec .tours-box .tours-box-con .tours-box-fig img {
  width: 100%;
}
#bustour .tours-sec .tours-box._boxl .tours-box-con figure img {
  border-radius: 100px 0 0 24px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-con figure img {
    border-radius: 50px 0 0 12px;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-con._reverse figure img {
  border-radius: 0 100px 24px 0;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-con._reverse figure img {
    border-radius: 0 50px 12px 0;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig-l figure img {
  border-radius: 24px;
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig-l figure:first-child img {
  border-radius: 50px 24px 24px 24px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-fig-l figure:first-child img {
    border-radius: 0 12px 12px 0;
    margin-top: -1.5em;
  }
}
#bustour .tours-sec .tours-box._boxl .tours-box-fig-l figure:last-child img {
  border-radius: 24px 0 0 24px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._boxl .tours-box-fig-l figure:last-child img {
    border-radius: 12px 0 0 12px;
  }
}
#bustour .tours-sec .tours-box .tours-box-con .tours-box-main {
  position: relative;
  min-width: calc(420px + 1em);
  flex: 1;
}
@media screen and (max-width: 1070px) {
  #bustour .tours-sec .tours-box .tours-box-con .tours-box-main {
    min-width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-con .tours-box-main {
    width: 100%;
    min-width: auto;
    margin: 0 auto;
  }
}

#bustour .tours-sec .tours-box .tours-box-con .tours-box-itemset {
  position: relative;
  padding-left: 1em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-con .tours-box-itemset {
    padding-inline: min(60px, 3vw);
  }
}
#bustour .tours-sec .tours-box .tours-box-lead {
  margin-bottom: 3em;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-lead {
    margin-bottom: 2em;
  }
}
#bustour .tours-sec .tours-box .tours-box-btn {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-btn {
    margin: 0 auto;
  }
}
#bustour .tours-sec .tours-box .tours-box-btn a {
  position: relative;
  display: block;
  padding: .8em 1em;
  background-color: var(--c-main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  border-radius: 50vw;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-btn a {
    font-size: 1.219rem;
}
}

#bustour .tours-sec .tours-box .tours-box-btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 10px;
  margin-top: -5px;
  background: url("../../img/otherlan/bustour2/ico_arrow.svg") no-repeat;
  background-size: contain;
}

#bustour .tours-sec .tours-box .tours-box-fig-l, #bustour .tours-sec .tours-box .tours-box-fig-r {
  width: min(1600px, 95%);
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box .tours-box-fig-l, #bustour .tours-sec .tours-box .tours-box-fig-r {
    width: 100%;
    margin: 30px auto 0;
  }
}
#bustour .tours-sec ._box01 .tours-box-con .tours-box-main .tours-box-item {
  position: relative;
}
#bustour .tours-sec ._box01 .tours-box-con .tours-box-main .tours-box-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(86px, 13vw);
  height: auto;
  aspect-ratio: 43 / 58;
  background: url("../../img/otherlan/bustour2/tour_01_i002.png") no-repeat center / contain;
}
@media screen and (max-width: 1050px) {
  #bustour .tours-sec ._box01 .tours-box-con .tours-box-main .tours-box-item::after {
    right: 0;
    top: -1.5em;
  }
}
#bustour .tours-sec ._box01 .tours-box-con .tours-box-time span {
  background-image: url("../../img/otherlan/bustour2/tour_01_i001.png");
}
#bustour .tours-sec ._box02 .tours-box-con .tours-box-main .tours-box-item::after {
  content: '';
  position: absolute;
  top: calc(100% + 1em);
  right: 1em;
  width: min(217px, 13vw);
  height: auto;
  aspect-ratio: 31/21;
  background: url("../../img/otherlan/bustour2/tour_02_i002.png") no-repeat center / contain;
}
@media screen and (max-width: 1034px) {
  #bustour .tours-sec ._box02 .tours-box-con .tours-box-main .tours-box-item::after {
    top: -1.5em;
    right: 1em;
    width: min(185px, 24vw);
  }
}
#bustour .tours-sec ._box03 .tours-box-con .tours-box-main .tours-box-item::after {
  content: '';
  position: absolute;
  bottom: 4em;
  right: 0;
  width: min(147px, 13vw);
  height: auto;
  aspect-ratio: 49 / 41;
  background: url("../../img/otherlan/bustour2/tour_03_i002.png") no-repeat center / contain;
}
@media screen and (max-width: 1200px) {
  #bustour .tours-sec ._box03 .tours-box-con .tours-box-main .tours-box-item::after {
    bottom: 0;
    right: 1em;
    width: min(110px, 14vw);
  }
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec ._box03 .tours-box-con .tours-box-main .tours-box-item::after {
    right: 1em;
    bottom: 5em;
  }
}
#bustour .tours-sec ._box03 .tours-box-con._reverse .tours-box-itemset .tours-box-item::after {
  content: '';
  position: absolute;
  bottom: 40%;
  right: 0;
  width: min(203px, 17vw);
  height: auto;
  aspect-ratio: 203 / 190;
  background: url("../../img/otherlan/bustour2/tour_03_i003.png") no-repeat center / contain;
}
@media screen and (max-width: 1200px) {
  #bustour .tours-sec ._box03 .tours-box-con._reverse .tours-box-itemset .tours-box-item::after {
    bottom: 10%;
    right: 1em;
    width: min(165px, 17vw);
  }
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec ._box03 .tours-box-con._reverse .tours-box-itemset .tours-box-item::after {
    bottom: -1.5em;
    right: 0;
  }
}
#bustour .tours-sec ._box04 .tours-box-con .tours-box-main .tours-box-item::after {
  content: '';
  position: absolute;
  top: calc(100% + 1em);
  right: 1em;
  width: min(153px, 11vw);
  height: auto;
  aspect-ratio: 153 / 160;
  background: url("../../img/otherlan/bustour2/tour_04_i002.png") no-repeat center / contain;
}
@media screen and (max-width: 1034px) {
  #bustour .tours-sec ._box04 .tours-box-con .tours-box-main .tours-box-item::after {
    top: -1.5em;
    right: 0;
    width: min(130px, 18vw);
  }
}
#bustour .tours-sec ._box02 .tours-box-con .tours-box-time span {
  background-image: url("../../img/otherlan/bustour2/tour_02_i001.png");
}

#bustour .tours-sec ._box03 ._item01 {
  margin-bottom: 3em;
}
#bustour .tours-sec ._box03 .tours-box-con .tours-box-time span {
  background-image: url("../../img/otherlan/bustour2/tour_03_i001.png");
}
#bustour .tours-sec .tours-box._box04 {
  background: var(--c-bg);
  padding-bottom: min(175px, 20vw);
}
#bustour .tours-sec .tours-box._box04 .tours-box-line {
  padding-block: 3em;
}
@media screen and (max-width: 768px) {
  #bustour .tours-sec .tours-box._box04 .tours-box-line {
    padding-block: 3em 1em;
  }
}
#bustour .tours-sec ._box04 .tours-box-time span {
  background-image: url("../../img/otherlan/bustour2/tour_04_i001.png");
}
#bustour .tours-sec ._box04 .schedule-time-con ._goal span {
  background-image: url("../../img/otherlan/bustour2/tour_g_i001.png");
}

#bustour .summary-sec {
  padding: 60px 0;
  background-color: #F3EBDF;
}

#bustour .summary-sec .summary-in {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#bustour .summary-sec .summary-ttl {
  padding: 20px;
  background-color: var(--c-red);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#bustour .summary-sec .summary-con {
  padding: 60px 60px 150px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #bustour .summary-sec .summary-con {
    padding: 40px 20px;
  }
}

#bustour .summary-sec .summary-lead {
  font-size: 1.4rem;
  line-height: 2;
}

#bustour .summary-sec .summary-lead._s {
  margin-bottom: 60px;
}

#bustour .summary-sec .summary-box {
  margin-bottom: 60px;
}

#bustour .summary-sec .summary-box dt {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1em;
  font-weight: 700;
}

#bustour .summary-sec .summary-box dt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 1.5em;
  background-color: var(--c-red);
}

#bustour .summary-sec .summary-box dd {
  font-size: 1.4rem;
  line-height: 2;
}

#bustour .summary-sec .summary-box dd ol li {
  padding-left: 3em;
  text-indent: -3em;
}

#bustour .summary-sec .summary-box dd table {
  width: 100%;
  margin-top: 20px;
  font-size: 1.4rem;
}

#bustour .summary-sec .summary-box dd table tr th {
  padding: 10px 15px;
  border: 1px solid #231815;
  background-color: #FFCE85;
  text-align: center;
  vertical-align: middle;
}

#bustour .summary-sec .summary-box dd table tr td {
  padding: 10px 15px;
  border: 1px solid #231815;
  background-color: #fff;
}

#bustour .bustour-footer {
  display: flex;
}

@media screen and (max-width: 768px) {
  #bustour .bustour-footer {
    display: block;
  }
}

#bustour .bustour-footer dl {
  width: calc(100% / 3);
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  #bustour .bustour-footer dl {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
}

#bustour .bustour-footer dl dt {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer01 .footer-logo {
  max-width: 200px;
}

#bustour .bustour-footer .footer02 .footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

#bustour .bustour-footer .footer02 .footer-txt {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer02 ul {
  display: flex;
  align-items: center;
}

#bustour .bustour-footer .footer02 ul li {
  width: 46%;
  margin-right: 4%;
}

#bustour .bustour-footer .footer02 ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #bustour .bustour-footer .footer03 {
    margin-bottom: 0;
  }
}

#bustour .bustour-footer .footer03 .footer-txt-01 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-txt-02 {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-txt-03 {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 3.0rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-logo img {
  margin-right: 5px;
  max-width: 150px;
}

#bustour .bustour-footer .footer03 .footer-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#bustour .bustour-footer .footer03 .footer-box .footer-item {
  flex: 1;
}

#bustour .bustour-footer .footer03 .footer-box .footer-item ul {
  font-size: 1.4rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-box .footer-item ul li::before {
  content: '●';
  color: #808080;
}

#bustour .bustour-footer .footer03 .footer-box .footer-item .footer-txt-04 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-box .footer-item .footer-txt-05 {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 700;
}

#bustour .bustour-footer .footer03 .footer-box figure {
  max-width: 100px;
  margin-left: 20px;
}

#bustour .bustour-footer .footer03 .footer-box figure figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* add 240723asa */
.mainimg-sec {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  #bustour .mainimg-cap {
    font-size: .875rem;
    padding: .8em;
  }

  #bustour .about-sec .about-list li .about-list-txt {
    font-size: 1.6rem;
  }

  #bustour .overview-sec .overview-about .overview-box._box01 dl {
    min-width: auto;
    flex-wrap: wrap;
    gap: 0;
  }
  #bustour .overview-sec .overview-about .overview-item .overview-item-txt {
    font-size: inherit;
    text-align: left;
    margin-bottom: 1.5em;
  }
  #bustour .overview-sec .overview-about .overview-item .cmn-big-link a {
    flex-direction: column;
    font-size: 1.143rem;
    line-height: 1.4;
    word-break: break-word;
  }

  #bustour .tours-sec .tours-top .tours-ttl span {
    font-size: 2.2rem;
    margin-bottom: 1em;
  }

  #bustour .tours-sec .tours-top .tours-ttl small {
    display: block;
    font-size: 1.2rem;
    text-align: left;
    font-weight: 500;
  }

  #bustour .tours-sec .tours-start .start-time .tours-box-time {
    margin-right: .5em;
  }
  #bustour .tours-sec .tours-start .start-line {
    width: 5px;
    padding-block: 1em;
    margin: 1em auto;
  }
  #bustour .tours-sec ._box01 .tours-box-con .tours-box-main::after {
    width: min(156px, 35vw);
    top: 0;
    bottom: unset;
    right: -30px;
  }
  #bustour .tours-sec ._box02 .tours-box-con .tours-box-main .tours-box-itemset {
    background-size: min(180px, 24vw);
    padding-bottom: 0;
    background-position: top right;
  }

  #bustour .tours-sec ._box03 .tours-box-con .tours-box-main::after {
    bottom: 0;
    right: -10px;
    top: 34%;
    width: min(120px, 37%);
  }
  #bustour .tours-sec ._box04 .tours-box-con .tours-box-main .tours-box-itemset {
    padding-bottom: 3em;
    background-position: top right;
  }

  #bustour .tours-sec .tours-goal .goal-line {
    width: 5px;
    margin: 1em auto 1.5em;
  }

  #bustour .tours-sec .tours-goal .goal-time .tours-box-time {
    margin-right: .5em;
  }
}

#wrapper {
  min-width: unset;
}
.header .gnav ul li a {
  font-size: clamp(0.75rem, -0.396rem + 1.53vw, 1.438rem);
}
footer .container {
  width: auto;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4em;
  padding-inline: 20px;
  margin: auto;
}
@media screen and (max-width: 1140px) {
  footer .container {
    justify-content: center;
    gap: 2em;
  }
}
footer .container::after {
  display: none;
}
footer #foot_left {
  float: unset;
  width: auto;
  padding-left: 0;
}
footer #foot_right {
  max-width: 600px;
  float: unset;
  width: auto;
}
footer #footer-btn {
  padding-left: 0;
  margin-top: 1em;
}
@media screen and (max-width: 1140px) {
  footer #footer-btn {
    max-width: 600px;
  }
}
footer #footer-btn .btn_link_list {
  flex-wrap: wrap;
  gap: 1em 0;
}
footer #copyright {
  margin: auto;
}
.common_wrap.sp .container {
  width: 90%;
  margin: auto;
}



/*# sourceMappingURL=bustour.css.map */