@charset "utf-8";
/* osaka */
/*設定
--------------------*/
/*共通 パーツ
-------------------------------*/
article {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  margin: 0 auto;
}
/*
header:has(> #obi-10man) + article {
    margin-top: 98px!important;
}
*/
a:hover {
  text-decoration: none;
  opacity: 1;
}
figure {
  margin: 0;
}
small {
  font-size: 70%;
  display: inline-block;
}
#Osaka h2 {
  text-align: center;
  margin-bottom: 20px;
}
#Osaka p {
  text-align: center;
}
/*　PC/SP　switch
-------------------------------*/
/* sp */
@media screen and (max-width: 460px) {
  .pc-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
  .text-left-sp {
    text-align: left;
  }
  #main-contents {
    width: 100%;
    background: #F7F5E7;
    overflow: hidden;
    margin: 0 auto;
  }
  .ico-mv {
    display: none;
  }

	
}





/*pc・tab*/
@media screen and (min-width: 461px) {
  .pc-on {
    display: block;
  }
  .sp-on {
    display: none;
  }
  .text-center-pc {
    text-align: center;
  }
  #main-contents {
    width: 400px;
    margin: 0 auto;
    background: #F7F5E7;
    border-right: #4D4D4D solid 2px;
    border-left: #4D4D4D solid 2px;
    position: relative;
  }
  .double-frame {
    background: #fff; /* 内側の背景 */
    border-right: #4D4D4D solid 2px;
    border-left: #4D4D4D solid 2px;
    text-align: center;
    width: 410px;
    margin: 0 auto;
  }
  #osaka-wrap {
    position: relative;
    width: 100%;
    background: #F7F0CB url("/static/img/campaign/osaka/bg-osaka-wrap.webp");
  }
  .ico-mv {
    position: absolute;
  }
  .ico-mv.no1 {
    top: 6px;
    left: -50px;
    animation: kaniMove 3s ease-in-out infinite;
  }
  .ico-mv.no2 {
    top: 18px;
    left: 48%;
  }
  .ico-mv.no3 {
    top: 170px;
    left: -20px;
    animation: kushikatsuSwing 2.8s ease-in-out infinite;
  }
  .ico-mv.no4 {
    top: 185px;
    left: 86%;
    animation: tutenkakuSwing 3s ease-in-out infinite;
    animation-delay: 0.7s; /* ← ランダムにズラす */
  }
  .ico-mv.no5 {
    top: 420px;
    left: -40px;
    transform-origin: bottom center;
    animation: float-obachan 4s ease-in-out infinite, wave-obachan 2.5s ease-in-out infinite;
  }
  .ico-mv.no6 {
    top: 436px;
    left: 80%;
    animation: steamOkonomi 4s ease-in-out infinite;
    transform-origin: center;
  }
  .steam {
    position: absolute;
    top: 390px;
    left: 90%;
    width: 80px;
    height: 120px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    animation: riseSteam 3s ease-in-out infinite;
    filter: blur(6px);
    opacity: 0.9;
    pointer-events: none;
    pointer-events: none;
  }
  /* 湯気を複数レイヤーにしてリアル感を出す */
  .steam::before, .steam::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    animation: riseSteam 3.5s ease-in-out infinite;
    filter: blur(10px);
    opacity: 0.7;
  }
  .steam::after {
    animation-delay: 1.5s;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.5;
  }
  /* === 上部リボン === */
  .ribbon-top {
    position: sticky;
    top: 0;
    width: 100%;
    height: 28px;
    background: url("/static/img/campaign/osaka/img-ribon.png") repeat-x;
    background-size: auto 100%;
    animation: ribbonLeft 30s linear infinite; /* 左へ流れる */
    z-index: 10;
  }
  /* === 下部リボン === */
  .ribbon-bottom {
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 28px;
    background: url("/static/img/campaign/osaka/img-ribon.png") repeat-x;
    background-size: auto 100%;
    animation: ribbonRight 30s linear infinite; /* 右へ流れる */
    z-index: 10;
  }
  /* === アニメーション === */
  @keyframes ribbonLeft {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -1920px 0;
    } /* 左方向に流す */
  }
  @keyframes ribbonRight {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 1920px 0;
    } /* 右方向に流す */
  }
  @keyframes kaniMove {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(10deg);
    }
  }
  @keyframes glicoBounce {
    0%, 100% {
      transform: translate(-50%, 0);
    }
    50% {
      transform: translate(-50%, -20px);
    }
  }
  @keyframes birikenFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  @keyframes taroMove {
    0%, 100% {
      transform: rotate(0deg) translateY(0);
    }
    25% {
      transform: rotate(8deg) translateY(-5px);
    }
    50% {
      transform: rotate(0deg) translateY(0);
    }
    75% {
      transform: rotate(-8deg) translateY(-5px);
    }
  }
  @keyframes tutenkakuSwing {
    0%, 100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(6deg);
    }
    75% {
      transform: rotate(-6deg);
    }
  }
  @keyframes kushikatsuSwing {
    0% {
      transform: rotate(0deg) translateY(0);
    }
    25% {
      transform: rotate(-2deg) translateY(-3px);
    }
    50% {
      transform: rotate(2deg) translateY(0);
    }
    75% {
      transform: rotate(-1deg) translateY(2px);
    }
    100% {
      transform: rotate(0deg) translateY(0);
    }
  }
  @keyframes float-obachan {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  @keyframes wave-obachan {
    0%, 100% {
      rotate: 0deg;
    }
    50% {
      rotate: 5deg;
    }
  }
  @keyframes steamOkonomi {
    0% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-3px) scale(1.02);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }
  /* 湯気のアニメーション */
  @keyframes riseSteam {
    0% {
      transform: translate(-50%, 0) scale(1);
      opacity: 0.8;
    }
    30% {
      transform: translate(-50%, -15px) scale(1.1);
      opacity: 1;
    }
    60% {
      transform: translate(-50%, -30px) scale(1.2);
      opacity: 0.7;
    }
    100% {
      transform: translate(-50%, -60px) scale(1.3);
      opacity: 0;
    }
  }
	
  }	
  /*はみ出し調整
-------------------------------*/
  @media screen and (max-width: 500px) {
    #osaka-wrap {
      overflow: hidden;
    }
  }
  /*mv
-------------------------------*/
  .mv-area {
    background: #F7F5E7;
  }
  /*menu
-------------------------------*/
  #sp-menu-area {
    display: block;
  }
  .sp-menu {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 20px;
  }
  .sp-menu li {
    width: 48%;
    text-align: center;
  }
  .sp-menu li a {
    background: #FFF;
    box-shadow: 0 0 0 2px #4D4D4D inset;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .sp-menu li a span {
    display: block;
    background: #E93428;
    padding: 10px 0;
    border-radius: 10px;
    border: 2px solid #4D4D4D;
    position: relative;
    display: block;
    text-align: center;
    top: -5px;
    left: -5px;
    font-weight: bold;
  }
  .sp-menu li a:hover span {
    top: 0;
    left: 0;
    opacity: 1;
  }
  .sp-menu li a:visited span {
    top: -5px;
    left: -5px;
    opacity: 1;
  }
  .sp-menu li a::after {
    position: absolute;
    content: "";
    display: inline-block;
    bottom: -4px;
    left: 50%;
    width: 20px;
    height: 19px;
    background-image: url('/static/img/campaign/osaka/ico-heat.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, 0);
  }
  .sp-menu li a span img {
    max-width: 70%;
    height: auto;
  }
  #pc-menu-area {
    display: none;
  }
  @media screen and (min-width: 1200px) {
    #sp-menu-area {
      display: none;
    }
    #Introduction {
      margin-top: 20px;
    }
    #pc-menu-area {
      display: block;
      position: sticky;
      top: 37%; /* ページ上部から少し下に */
      left: 15%;
      align-self: flex-start;
      z-index: 10;
      width: 400px;
    }
    .pc-menu li a {
      background: #FFF;
      box-shadow: 0 0 0 2px #4D4D4D inset;
      border-radius: 10px;
      display: block;
      margin: 0 auto 40px;
      position: relative;
      width: 360px;
    }
    .pc-menu li a span {
      display: block;
      background: #E93428;
      padding: 12px 0;
      border-radius: 10px;
      border: 2px solid #4D4D4D;
      position: relative;
      display: block;
      text-align: center;
      top: -5px;
      left: -5px;
      font-weight: bold;
    }
    .pc-menu li a:hover span {
      top: 0;
      left: 0;
      opacity: 1;
    }
    .pc-menu li a:visited span {
      top: -5px;
      left: -5px;
      opacity: 1;
    }
    .pc-menu li a::before {
      position: absolute;
      content: "";
      display: inline-block;
      top: 45%;
      left: -12px;
      width: 20px;
      height: 19px;
      background-image: url('/static/img/campaign/osaka/ico-heat.svg');
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translate(0, -50%);
      z-index: 12;
    }
    .pc-menu li a::after {
      position: absolute;
      content: "";
      display: inline-block;
      top: 45%;
      right: 0;
      width: 20px;
      height: 19px;
      background-image: url('/static/img/campaign/osaka/ico-heat.svg');
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translate(0, -50%);
    }
    .pc-menu li a span img {
      max-width: 60%;
      height: auto;
    }
  }
  /*　Introduction 
-------------------------------*/
  .slide-wrap {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    margin: 20px 0;
  }
  /* スライダー全体 */
  .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
  }
  /* スライド3枚のグループ */
  .slideshow {
    animation: scroll-left 20s infinite linear .5s both;
    display: flex; /* スライド3枚を横並び */
  }
  /* スライド */
  .slideshow li {
    width: calc(500px / 5); /* スライドの枚数 */
    padding: 10px;
    text-align: center;
  }
  .slideshow li img {
    max-height: 50px;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

.text-sale{
	color: #7b5b15;
	font-size: 1.1em;
	background: linear-gradient(transparent 70%, #FFDF5C 0%);
	margin-bottom: 8px;
	display: inline-block;
}
.blink {
    animation: blinking 0.8s 
ease-in-out infinite alternate;
}
/* 点滅 */
@keyframes blinking {
   0% {
   opacity: 0;
   }
   100% {
   opacity: 1;
   }
}
.bnr-box{
	width: 94%;
    max-width: 360px;
	margin: 0 auto 30px;
}


  .cospa-box {
    background: url('/static/img/campaign/osaka/bg-cospa.svg') no-repeat;
    width: 305px;
    height: 348px;
    margin-top: 20px;
    margin-left: 90px;
    padding: 28px 40px 40px 20px;
    position: relative;
  }
  .cospa-box::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 96px;
    height: 96px;
    background-image: url('/static/img/campaign/osaka/ico-cospa.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    left: -30px;
  }
  .cospa-box ul {
    border-top: #7A7A7A 1px solid;
    border-bottom: #7A7A7A 1px solid;
    text-align: center;
  }
  .cospa-box ul li dl {
    padding: 12px 0;
  }
  .cospa-box ul li:first-child dl {
    border-bottom: #7A7A7A 1px dashed;
  }
  .cospa-box ul li dl dd.txt-price {
    color: #E93428;
    font-weight: bold;
  }
  .cospa-box ul li dl dd.txt-price span {
    font-size: 1.6em;
  }
  .txt-osusume {
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    margin: 12px auto;
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .txt-osusume span {
    background: linear-gradient(transparent 60%, #FFDF5C 0%);
  }
  .tipa-box {
    background: url('/static/img/campaign/osaka/bg-tipa.svg') no-repeat;
    width: 305px;
    height: 462px;
    margin-left: -3px;
    margin-top: 24px;
    padding: 28px 24px 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  .tipa-box::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 96px;
    height: 96px;
    background-image: url('/static/img/campaign/osaka/ico-tipa.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: -4px;
    left: 16px;
  }
  .ex-tipa {
    padding-left: 94px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
  }
  .ex-cospa {
    padding-left: 54px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
  }
  .time-schedule {
    border-top: #7A7A7A 1px solid;
    border-bottom: #7A7A7A 1px solid;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .time-schedule dt {
    width: 35%;
    text-align: right;
    background: url('/static/img/campaign/osaka/line-gray.svg') no-repeat;
    background-position: right top;
    height: 30px;
    padding-right: 10px;
  }
  .time-schedule dt.line-yellow {
    background: url('/static/img/campaign/osaka/line-yellow.svg') no-repeat;
    background-position: right top;
  }
  .time-schedule dd {
    width: 65%;
    padding-left: 8px;
    padding-right: 20px;
  }
  .time-schedule dd.ico-bus::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 15px;
    vertical-align: middle;
    background-image: url('/static/img/campaign/osaka/ico-bus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 3px;
  }
  .time-schedule dd.ico-hotel::after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 15px;
    vertical-align: middle;
    background-image: url('/static/img/campaign/osaka/ico-hotel.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 3px;
  }
  @media screen and (min-width: 400px) {
    .cospa-box {
      margin-left: 110px;
    }
    .tipa-box {
      margin-left: -15px;
    }
  }
  .fadein {
    opacity: 0;
    transform: translateY(70px); /* 少し大きく動かすと“ふわっ”感が出る */
    transition: all 1.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: opacity, transform;
  }
  .fadein.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* ちょっとおしゃれにするオプション */
  .fadein:nth-child(1) {
    transition-delay: 0s;
  }
  .fadein:nth-child(2) {
    transition-delay: 0.2s;
  }
  .fadein:nth-child(3) {
    transition-delay: 0.4s;
  }
  /*　#Themepark,#Spot
-------------------------------*/
  #Themepark {
    width: 100%; /* 要素の幅 */
    background-color: #E93428; /* 背景色 */
    position: relative;
    z-index: 0;
    color: #fff;
    padding-top: 0;
    margin-top: 60px;
  }
  #Themepark::before {
    content: '';
    display: block;
    width: 100%;
    height: 38%;
    border-radius: 50% 50% 0 0;
    background: #E93428;
    position: absolute;
    top: -18%;
    z-index: -2;
    left: 50%;
    translate: -50% 0;
  }
  #Themepark h2 img, #Spot h2 img {
    width: 80%;
    max-width: 400px;
  }
  #Spot {
    width: 100%; /* 要素の幅 */
    background-color: #E93428; /* 背景色 */
    position: relative;
    z-index: 0;
    color: #fff;
    padding-top: 40px;
  }
  #Spot::after {
    content: '';
    display: block;
    width: 100%;
    height: 38%;
    border-radius: 0 0 50% 50%;
    background: #E93428;
    position: absolute;
    bottom: -18%;
    z-index: -2;
    left: 50%;
    translate: -50% 0;
  }
  .slide-wrap {
    overflow: hidden;
  }
  .slide-pickup {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 20px 0 10px;
    justify-content: space-between;
  }
  .slide-pickup::-webkit-scrollbar-thumb {
    background-color: #3760d0;
    border-radius: 8px;
  }
  .slide-pickup li {
    flex: 0 0 auto; /* 横方向固定幅 */
    width: 240px;
    scroll-snap-align: start; /* スナップ位置 */
    overflow: hidden;
    margin: 5px;
    padding: 12px;
    border: 2px solid #4D4D4D;
    border-radius: 12px;
    background: #fff;
    color: #4D4D4D;
  }
  .slide-pickup li img {
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .slide-pickup li dl {}
  .slide-pickup li dl dt {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .slide-pickup li dl dd {
    font-size: 12px;
  }
  .reserve-box {
    padding: 30px 0 20px;
  }
  .reserve-box h2 {
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
  }
  .reserve-box h2::before, .reserve-box h2::after {
    width: 2px;
    height: 16px;
    content: "";
    background-color: #fff;
    animation: blink 1.6s ease-in-out infinite;
  }
  .reserve-box h2::before {
    margin-right: 1em;
    transform: rotate(-30deg);
  }
  .reserve-box h2::after {
    margin-left: 1em;
    transform: rotate(30deg);
  }
  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
  }
  .btn-reserve {
    background: #FFF;
    box-shadow: 0 0 0 2px #4D4D4D inset;
    border-radius: 40px;
    display: block;
    margin: 0 auto 16px;
    position: relative;
    width: 94%;
    max-width: 360px;
  }
  .btn-reserve span {
    display: block;
    background: #FBCD14 url('/static/img/campaign/osaka/ico-line.svg') no-repeat;
    background-position: 3px 2px;
    padding: 10px 0;
    border-radius: 40px;
    border: 2px solid #4D4D4D;
    position: relative;
    display: block;
    text-align: center;
    top: -5px;
    left: -2px;
    font-weight: bold;
    color: #4D4D4D;
    font-size: 14px;
  }
  .btn-reserve span::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100%;
    content: "\f0da";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
  }
  .btn-reserve:hover span {
    top: 0;
    left: 0;
    opacity: 1;
  }
  .btn-reserve:visited span {
    top: -5px;
    left: -2px;
    opacity: 1;
  }
  .takoyaki-box, .kushikatu-box {
    position: relative;
    max-width: 380px;
  }
  .takoyaki-box::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 182px;
    height: 370px;
    background-image: url('/static/img/campaign/osaka/pic-takoyaki.webp');
    background-size: contain;
    background-repeat: no-repeat;
    top: 18px;
    left: -40px;
    z-index: 3;
  }
  .kushikatu-box::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 170px;
    height: 588px;
    background-image: url('/static/img/campaign/osaka/pic-kushikatu.webp');
    background-size: contain;
    background-repeat: no-repeat;
    top: 3px;
    right: -60px;
    z-index: 3;
  }
  .title-move {
    display: inline-block;
    animation: titleFloat 3.8s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes titleFloat {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-8px) scale(1.02);
    }
  }
  /*　#Skyvista
-------------------------------*/
  #Skyvista {}
  .bg-skyvista {
    position: relative;
    z-index: 2;
    background: url('/static/img/campaign/osaka/bg-skyvista.svg') no-repeat;
    margin: 0 auto 40px;
    width: 350px;
    padding: 40px 20px;
    color: #4D4D4D;
  }
  #Skyvista h2 {
    font-size: 24px;
    font-weight: bold;
  }
  #Skyvista p {
    font-size: 14px;
  }
  .movie-box {
    margin: 10px 0 20px;
  }
  /*　#Pickup
-------------------------------*/
  #Pickup {
    padding-bottom: 40px;
  }
  .willcore-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .willcore-box li {
    width: 46%;
    justify-content: space-between;
    padding: 12px;
    border: 2px solid #4D4D4D;
    border-radius: 12px;
    background: #fff;
    color: #4D4D4D;
    text-align: left;
  }
  .willcore-box li img {
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .willcore-box li a {
    color: #4D4D4D;
    font-size: 12px;
    display: inline-block;
    line-height: 16px;
  }
  /*　mordal
-------------------------------*/
  .departure-list01 dt {
    background: #4D4D4D;
    color: #fff;
    padding: 6px 10px;
    font-weight: normal;
  }
  .departure-list01 li a {
    display: block;
    color: #222;
    text-decoration: none !important;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    padding: 10px;
    position: relative;
  }
  .departure-list01 li a:hover {
    background: #F7F0CB;
  }
  .close {
    color: #E93428;
    opacity: 1;
  }
  .departure-list01 li a:before {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -0.6em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #E93428;
    content: "\f105";
  }
  .btn-close {
    background: #DDD;
    border-radius: 8px;
    padding: 8px 16px;
  }
  .modal-header {
    background: #eee;
  }

  /*　xmas-mordal
-------------------------------*/

#xmas-mordal .modal-header{
	background: #2f642b ;

}

#xmas-mordal .modal-header .close{
		color: #fff;
}

.text-xmas{
		color: #fff;
	font-size: 14px;
	font-weight: bold;
}

.wrap-price{
	display: block;
	text-align: right;
}
.wrap-price .num {
    font-size: 20px;
    font-weight: bold;
    color: #E93428;
    font-family: 'Oswald', sans-serif;
}
.wrap-price .num.min:after {
    content: "～";
    font-size: 12px;
    margin-right: 3px;
}
.wrap-price .num.onlybus:after {
    content: "円～";
    font-size: 12px;
    margin-right: 3px;
}
.wrap-price .num.max:after {
    content: "円";
    font-size: 12px;
}
.wrap-price .normal-line .num {
    font-size: 16px;
    color: #333;
}


.departure-list li{
	display: flex;
	
}
.departure-list li a{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 10px 30px 10px 10px;
}


.select-link{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.select-link li{
	width: 49%;
	padding-bottom: 10px;
}
.nav-tabs.select-link .nav-item{
	margin-bottom: 0;
}


.nav-tabs.select-link .nav-item.show .nav-link,.nav-tabs.select-link .nav-link  {
    color: #495057;
    background-color: #fff;
	border: #2f642b 1px solid;
	border-radius: 20px;
	text-align: center;
		padding: 10px 4px;
	font-size: 14px;
}
.nav-tabs.select-link {
    border-bottom: none;
}


.nav-tabs.select-link .nav-link.active{
	color: #fff;
    background-color: #2f642b;
	border: #2f642b 1px solid;
	border-radius: 20px;
	text-align: center;
}

.nav-tabs.select-link .nav-link.active::before{
	content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	margin-right: 2px;
	font-size: 1.1em
}
.intro-box{
	background: #F7F5E7;
	padding: 10px;
	margin-bottom: 10px;
}


.tit-hotel{
	font-size: 13px;
	color: #444;
}

.tit-hotel span{
	font-size: 14px;
	color: #2f642b;
	font-weight: bold;
}

.intro-hotel{
	flex-wrap:wrap;
	margin-top: 4px;
	
}
.intro-hotel p{
	width: 50%;
	font-size: 13px;
}

.intro-hotel div{
	padding-right: 10px;
	width: 50%;	
}

.txt-no{
	display: inline;
}

@media (max-width: 420px) {
.nav-tabs.select-link .nav-item.show .nav-link,.nav-tabs.select-link .nav-link  {
		font-size: 12px;
	}
}