@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic:wght@500&display=swap');

body {
font-family: "Zen Kaku Gothic New", sans-serif;
font-weight: 400;
font-style: normal;
color: #000;
overflow-x: hidden;
}

section:nth-of-type(odd){
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fffbe6;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(230,160,14,0.1) 0 16px,
    rgba(255,255,255,0.1) 16px 32px
  );
  /* 背景の位置やサイズを調整したい場合は以下を追加 */
  background-attachment: scroll;
  background-repeat: repeat;}
section:nth-of-type(even){background-color:#FFF;}

@media screen and (max-width: 280px) { /*Galaxy Fold*/
  body {
  font-size: 14px;
  }
}

article{
width: 100%;
}
section{
  position: relative;
}
.active{
  opacity: 1;
}
a{
  transition: .3s;
}
a:link,
a:visited{
  color: #0952a4;
}
a:hover{
  opacity: 0.7;
}

.textLeft {
	text-align: left;
    line-height: 1.4;
}

.textCenter {
	text-align: center;
    line-height: 1.4;
}

.textRight {
	text-align: right;
    line-height: 1.4;
}

.red {
	color: #ff0000;
}

.large {
	font-size: 120%;
}

dt {
  font-weight: normal;
}

strong {
    font-weight: bold;
}

.line {
    width: 100%;
    border-top: 2px dotted #666;
    padding-bottom: 1em;
    margin-top: 1em;
}

.mt2 {
	font-size: 120%;
    margin-top: 2em;
}

.guideBox .guideBox-title .deco01 {
  color: #004a9e;
  text-shadow:
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff;
}

.guideBox .guideBox-title .deco02 {
  color: #F00;
  text-shadow:
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff;
}

ul.block-ticket li:nth-of-type(odd){background-color:#FFF;}
ul.block-ticket li:nth-of-type(even){background-color:#F1FAFF;}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
SP
==================================================== */
@media screen and (max-width: 759.9px) {
.spnone{
	display:none;
}

#dirPathBlock,#anchorLinkBlock { background: #FFF;}
#dirPathBlock p,#anchorLinkBlock a,h1{
	font-size: 10px;
	padding: 0 5px 5px 5px;
}

#container{
  font-size: 14px;
  position: relative;
  width: 100%;
}

.inner {
	width: 98%;
	margin: 0 auto;
	padding: 5% 1%;
}

/*title*/
.title {
	width: 100%;
	text-align: center;
}

.title img {
    width: 100%;
}

  /*news*/
	#newsImportant {
		margin: 5px;
		display: flex;
		font-size: 11px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 2px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 5px 3px 5px 12px;
		position: relative;
		font-size: 1.1em;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	}
	#newsImportant li:nth-of-type(n+2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	}


/*見出し*/
h2 {
  position: relative;
  padding-bottom: .5em;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* 線の幅 */
  background: #F00; /* 線の色 */
  border-radius: 60px;
}

h3 {
  padding: .5em;
  background: #FFD428;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

h3 span {
  color: #F00;
  text-shadow:
    1.5px 1.5px 0 #fff,
   -1.5px 1.5px 0 #fff,
    1.5px -1.5px 0 #fff,
   -1.5px -1.5px 0 #fff;
}

/*navigation*/
.topNavi {
	width: 98%;
	margin: .5em auto;
	text-align: center;
}

.topNavi ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.topNavi ul li,
.topNavi ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topNavi ul li {
    position: relative;
    margin: 0 auto 1em;
    border-radius: 5px;
    border: none;    
}

/* 1行目以降のアイテムに対して */
.topNavi ul li:nth-child(n+2) {
    width: calc(50% - 10px); /* 2カラムに設定 */
}

.topNavi ul li::before {
    position: absolute;
    top: 7px;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: inherit;
    box-sizing: inherit;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, .2);
    background-color: #cfcf00;
    content: '';
}

.topNavi ul li span {
    width: 100%;
    padding: .5em .8em;
    border: 2px solid #000;
    border-radius: inherit;
    background-color: #ffff00;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
}

.topNavi ul li span::before {
    display: inline-block;
    /*transform: rotate(45deg);右矢印*/
    transform: rotate(135deg);/*下矢印*/
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
}

.topNavi ul li:hover::before {
    transition: box-shadow .2s;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, .2);
}

.topNavi ul li:hover span {
    transition: transform .2s;
    transform: translateY(2px);
}

.topNavi ul li a {
    color: #000;
}

/*オープニング記念号のお楽しみ*/
.point {
	width: 100%;
	text-align: center;
}

.point img {
    width: 100%;
}

/*キャンペーン案内*/
.guideBox {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 1em;
    background: #dcefff;
}
.guideBox .guideBox-title {
    font-size: 16px;
    background: #14b4dc;
    padding: .5em;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.guideBox .guideBox-txt {
    padding: .5em;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.guideBox .guideBox-txt .price {
    font-size: 20px;
    font-weight: bold;
    color: #F00;
}

.guideBox .guideBox-txt .joken {
	font-size: 13px;
    line-height: 1.4;
}

.marker {
    background-image: linear-gradient(0deg, transparent 0.3em, #ffff33 0.3em, #ffff33 0.8em, transparent 0.8em);
    padding: 0.2em; /* テキストの周りにスペースを追加 */
    border-radius: 4px; /* 角を丸くする */
}

/*お申込み*/
.reserveList {
    flex-direction: column; /* 縦並びにする */
    gap: 12px;              /* アイテム間の間隔を調整 */
    padding: 0 .5em;        /* 両端に余白を追加（任意） */
    max-width: 100%;        /* 親幅をはみ出さないようにする */
    margin-top: 1em;
  }

  .reserveItem {
    width: 100%;            /* 横幅を100%に */
    display: block;         /* レイアウトを安定させる */
    box-sizing: border-box; /* パディング込みで幅計算 */
    padding: 12px;
    border: solid 2px #ff3366;
    border-radius: 10px;
    margin-bottom: 1em;
    background: #FFF;
  }

  .reserveTitle {
  text-align: center;
  font-weight: bold;
    font-size: 16px;
    /*margin-bottom: 6px;*/
  }

  .reserveText .price {
    font-size: 20px;
    font-weight: bold;
    color: #F00;
  }

  .reserveText .joken {
    font-size: 13px;
    line-height: 1.4;
    border-top: 1px dotted #000;
    margin-top: .5em;
    padding-top: .5em;
  }

/*日程・ツアー詳細*/
.koutei {
	width: 100%;
	text-align: center;
}

.koutei img {
    width: 100%;
}

.timetable {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
        position: relative; /*↓の.scroll用*/
}

.timetable .scroll {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  width: 260px;
  padding: 4em 2em;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.7);
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  line-height: 1.4;
}

table {
		border-collapse: collapse;
		border-spacing: 0;
		width: 100%;
        border: 1px solid #ccc;
}

th, td {
		vertical-align: middle;
		padding: .6em;
		text-align: center;
		white-space: nowrap;
}

th,
th.sticky {
		background: #333;
        color: #FFF;
        border-right: 1px solid #FFF;
}

tr:nth-of-type(odd) {
		background: #F4F4F4;
}

tr:nth-of-type(even) {
		background: #FFFFFF;
}

.sticky {
		position: sticky;
		top: 0;
		left: 0;
		background: none;
  border-top: none;
  border-bottom: none;
}
.sticky::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
        border-left: 1px solid #ccc;
		z-index: -1;
}

tr:nth-of-type(odd) .sticky {
		background: #F4F4F4;
}

tr:nth-of-type(even) .sticky {
		background: #FFFFFF;
}

/*カルーセル*/
.slide-wrap {
  width: 100%;
  margin: .5em 0 1em;
  display: flex;
  overflow-x: auto; /* スクロールを自動に変更 */
}

.slide-box {
  flex: 0 0 45%;
  margin-right: 3%;
  padding-bottom: .5rem;
}

/*tabiwaチケット*/
.ticketBox {
    border: 1px solid #CCC;
    background: #FFF;
    line-height: 1.4;
}

.ticketBox .ticketPhoto {
}

.ticketBox .ticketPhoto img {
    width: 100%
}

.ticketBox .ticketName {
    font-weight: bold;
    margin: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dashed #ccc;
}

.ticketBox .ticketPoint {
    padding: 0 .5em .5em .5em;
}

/*キャンペーン*/
.westerpoint {
    margin: 0 auto;
    text-align: center;
}

.westerpoint img {
    width: 100%;
}

/*アコーディオン*/
	.accordion {
		max-width: 100%;
		margin-top: .4em;
	}
	.accordion summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: .8em 1em;
		color: #FFF;
		cursor: pointer;
		background-color: #036eb8;
		border-radius: 5px;
	}
	.accordion summary::-webkit-details-marker {
		display: none;
	}
	.accordion summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 10px;
		height: 10px;
		margin-left: 1em;
		border-bottom: 3px solid #FFF;
		border-right: 3px solid #FFF;
		content: '';
		transition: transform .3s;
	}
	.accordion[open] summary::after {
		transform: rotate(225deg);
	}
	.accordion .info {
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		transition: transform .5s, opacity .5s;
	}
	.accordion[open] .info {
		transform: none;
		opacity: 1;
	}
    .accordion .info .spot01 {
        background: #6ac7e9;
        color: #FFF;
        display: block;
        text-align: center;
        padding: .2em .3em .3em;
        margin-top: .2em;
	}
    
    .accordion .info .spot02 {
        background: #ff71b7;
        color: #FFF;
        display: block;
        text-align: center;
        padding: .2em .3em .3em;
        margin-top: .2em;
	}

/*注意事項*/
.subttl {
    border-left: 6px solid #000;
    font-weight: bold;
    padding-left: 6px;
    margin: 5% 0 2%;
  }

ul.guideList {
	margin: .5em 0;
}

ul.guideList li {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:last-child {
	padding-bottom: 0;
}

ul.guideList li:before {
	content: '●';
}

ul.guideList li.no1,
ul.guideList li.no2,
ul.guideList li.no3,
ul.guideList li.no4,
ul.guideList li.no5,
ul.guideList li.no6,
ul.guideList li.no7,
ul.guideList li.no8 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1.5em;
    margin-left: 1.5em;
}

ul.guideList li.no1:before {
	content: '1．';
}

ul.guideList li.no2:before {
	content: '2．';
}

ul.guideList li.no3:before {
	content: '3．';
}

ul.guideList li.no4:before {
	content: '4．';
}

ul.guideList li.no5:before {
	content: '5．';
}

ul.guideList li.no6:before {
	content: '6．';
}

ul.guideList li.no7:before {
	content: '7．';
}

ul.guideList li.no8:before {
	content: '8．';
}

ul.guideList li.kome {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
}

ul.guideList li.kome:before {
	content: '※';
}

ul.guideList li.kome1 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome1:before {
	content: '（※1）';
}

ul.guideList li.kome2 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome2:before {
	content: '（※2）';
}

ul.guideList li.kome3 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome3:before {
	content: '（※3）';
}

ul.guideList li span {
	color: #F00;
}

/*list横並び*/
.itemList2,
.itemList3,
.itemList4,
.itemList2btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.itemList2 > div,
.itemList3 > div,
.itemList4 > div {
  width: 50%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
  text-align: left;
}

.itemList2btn > div {
  width: 100%;
  height: auto;
  padding: 10px;
}

.itemList2,
.itemList3,
.itemList4 > div img {
  width: 100%;
  height: auto;
}

.itemList4 > div p strong {
  display: block; 
  margin-top: .3em;
}

/*ボタン*/
.Btn_wrap {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 1.5em;
}
.Btn_balloon {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #ED001E;
        background-color: #fff;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #ED001E;
        z-index: 2;
}
.Btn_balloon::before, .Btn_balloon::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #ED001E transparent transparent transparent;
        z-index: 1;
}
.Btn {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #ED001E;
        -webkit-box-shadow: 0 5px 0 #C80019;
        box-shadow: 0 5px 0 #C80019;
        color: #fff!important;
        transition: 0.2s;
        letter-spacing: 0.1em;
}
.Btn:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.Btn:hover {
  background: #FF3851;
  color: #FFF;
  -webkit-box-shadow: 0 2px 0 #C80019;
  box-shadow: 0 2px 0 #C80019;
  transform: translateY(3px);
}
.Btn:link,
.Btn02:link {
  color: #fff;
}

.Btn_balloon02 {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #41af05;
        background-color: #fff;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #41af05;
        z-index: 2;
}
.Btn_balloon02::before, .Btn_balloon02::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon02::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon02::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #41af05 transparent transparent transparent;
        z-index: 1;
}
.Btn02 {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #41af05;
        -webkit-box-shadow: 0 5px 0 #2f6e19;
        box-shadow: 0 5px 0 #2f6e19;
        color: #fff!important;
        transition: 0.2s;
        letter-spacing: 0.1em;
}
.Btn02:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.Btn02:hover {
  background: #4BCA05;
  color: #FFF;
  -webkit-box-shadow: 0 2px 0 #2f6e19;
  box-shadow: 0 2px 0 #2f6e19;
  transform: translateY(3px);
}







.Btn_balloon_gray {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #545454;
        background-color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #545454;
        z-index: 2;
}
.Btn_balloon_gray::before, .Btn_balloon_gray::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon_gray::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon_gray::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #545454 transparent transparent transparent;
        z-index: 1;
}
.Btn_gray {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #545454;
        -webkit-box-shadow: 0 5px 0 #333;
        box-shadow: 0 5px 0 #333;
        color: #fff;
        transition: 0.2s;
        letter-spacing: 0.1em;
}

.Btn_white {
  color: #003399;
  width: 90%;
  margin: .5em auto 0;
  text-align: center;
  background: #FFF;
  border: 2px solid #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
  font-weight: bold;
}

.Btn_white a {
	color: #003399;
}

.Btn_white::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-weight: bold;
}

/*footer*/
#footer {
	background-color: #F0F5FA;
}

#footer .inner {
	width: 96%;
	margin: 0 auto;
	padding: 2% 2%;
}

#footer .inner ul {
	font-size: 11px;
	line-height: 1.4;
    text-align: left;
}

#footer .inner ul li {
    display: inline-block;
    width: 46%;
	padding: 2% 0;
}

#footer .inner ul li:last-child {
    border-right: none;
}

#footer .copy {
	background-color: #0952a4;
    color: #FFFFFF;
    font-size: 9px;
    text-align: center;
    padding: 2% 0;
}

/*pagetop*/
#pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 3em;
  height: 3em;
  background-color: rgba(255,255,255,.5);
  border:solid 1px #152a8c;
  border-radius: 50vh;
}
#pagetop a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0 6px 9px 6px;
  border-color: transparent transparent #152a8c transparent;
}


}




/*
PC
==================================================== */
@media screen and (min-width: 760px),print {
.pcnone{
	display:none;
}

#dirPathBlock,
#anchorLinkBlock,
h1{
	width: 100%;
	max-width:970px;
	min-width:760px;
	margin: 0 auto;
    padding-bottom: 5px;
	font-size: 12px;
}

#container{
  font-size: 16px;
  position: relative;
  z-index:1;
}

.inner {
	width: 1080px;
	margin: 0 auto;
	padding: 30px 0;
}

/*title*/
.title {
	width: 100%;
	text-align: center;
}

.title img {
    width: 100%;
    max-width: 1080px;
}

/*news*/
  #newsImportant{
	width: 100%;
	max-width: 970px;
	margin: 5px auto;
	display: flex;
	font-size: 12px;
	padding:8px;
}
#newsImportant dt{
	width: 72px;
    height: fit-content;
	background: #e62d2d;
	color: #FFF;
	text-align: center;
	border-radius: 3px;
	margin-top: 1px;
	padding: 3px 0;
}
#newsImportant dd{
	width: 100%;
	padding: 0 10px;
}
#newsImportant li{
	padding: 3px 3px 3px 12px;
	position: relative;
	font-size:13px;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}
#newsImportant li:nth-of-type(n+2){border-top: 1px dotted #ccc;}
#newsImportant li:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #555555;
	border-right: 0;
    position: absolute;
	top: 7px;
	left: 0;
}

/*見出し*/
h2 {
  position: relative;
  padding-bottom: .5em;
  margin-bottom: 1em;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* 線の幅 */
  background: #F00; /* 線の色 */
  border-radius: 60px;
}

h3 {
  padding: .8em;
  background: #FFD428;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

h3 span {
  color: #F00;
  text-shadow:
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff;
}

/*navigation*/
.topNavi {
	width: 100%!important;
	text-align: center;
    margin-bottom: 1em;
}

.topNavi ul {
	width: 1080px;
	margin: 0 auto;
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.topNavi ul li,
.topNavi ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topNavi ul li {
    position: relative;
    margin: 0 auto;
    border-radius: 5px;
    border: none;
    font-size: 18px;
}

.topNavi ul li::before {
    position: absolute;
    top: 7px;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: inherit;
    box-sizing: inherit;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, .2);
    background-color: #cfcf00;
    content: '';
}

.topNavi ul li span {
    width: 100%;
    padding: .5em 1.5em;
    border: 2px solid #000;
    border-radius: inherit;
    background-color: #ffff00;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
}

.topNavi ul li span::before {
    display: inline-block;
    /*transform: rotate(45deg);右矢印*/
    transform: rotate(135deg);/*下矢印*/
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
}

.topNavi ul li:hover::before {
    transition: box-shadow .2s;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, .2);
}

.topNavi ul li:hover span {
    transition: transform .2s;
    transform: translateY(2px);
}

.topNavi ul li a {
    color: #000;
}

/*オープニング記念号のお楽しみ*/
.point {
	width: 100%;
	text-align: center;
}

.point img {
    width: 100%;
    max-width: 1080px;
}

/*キャンペーン案内*/
.guideBox {
    width: 880px;
    margin: 0 auto;
    padding-bottom: 1em;
    background: #dcefff;
}

.guideBox .guideBox-title {
    font-size: 24px;
    background: #14b4dc;
    padding: .5em;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.guideBox .guideBox-txt {
    padding: .5em;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.guideBox .guideBox-txt .price {
    font-size: 30px;
    font-weight: bold;
    color: #F00;
}

.guideBox .guideBox-txt .joken {
	font-size: 14px;
    line-height: 1.2;
}

.marker {
    background-image: linear-gradient(0deg, transparent 0.3em, #ffff33 0.3em, #ffff33 0.8em, transparent 0.8em);
    padding: 0.2em; /* テキストの周りにスペースを追加 */
    border-radius: 4px; /* 角を丸くする */
}


/*お申込み*/
.reserveList {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 1080px;
  margin-top: 1em;
}

.reserveItem {
  width: 33.3333333333%;
  border: solid 2px #ff3366;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  background: #FFF;
}

.reserveTitle {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.reserveText {
  flex-grow: 1; /*孫要素の高さを揃える*/
}

.reserveText .price {
	font-size: 22px;
    font-weight: bold;
    color: #F00;
}

.reserveText .joken {
	font-size: 14px;
    line-height: 1.2;
    text-align: left;
    border-top: 1px dotted #000;
    margin-top: .5em;
    padding-top: .5em;
}

/*日程・ツアー詳細*/
.koutei {
	width: 100%;
	text-align: center;
}

.koutei img {
    width: 100%;
    max-width: 800px;
}

.timetable {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
}

.timetable .scroll {
	display:none;
}

table {
		border-collapse: collapse;
		border-spacing: 0;
		width: 1080px;
        margin: 0 auto;
        border: 1px solid #ccc;
}

th, td {
		vertical-align: middle;
		padding: .8em;
		text-align: center;
		white-space: nowrap;
}

th,
th.sticky {
		background: #333;
        color: #FFF;
        border-right: 1px solid #FFF;
}

tbody tr:nth-of-type(odd) {
		background: #F4F4F4;
}

tbody tr:nth-of-type(even) {
		background: #FFFFFF;
}

.sticky {
		position: sticky;
		top: 0;
		left: 0;
		background: none;
		border-left: none;
		border-right: none;
}
.sticky::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
}

/*カルーセル*/
.slide-wrap {
  width: 100%;
  padding: 0;
  margin: .5em 0 1em;
  display: flex;
  flex-wrap: wrap;
}

.slide-box {
  width: 25%;
  padding-right: 1rem;
}

.slide-box:nth-child(4n) {
  padding-right: 0;
}

.slide-box:nth-child(-n+4) {
  margin-top: 0;
}

/*tabiwaチケット*/
.ticketBox {
    border: 2px solid #CCC;
    background: #FFF;
    line-height: 1.4;
}

.ticketBox .ticketPhoto {
}

.ticketBox .ticketPhoto img {
    width: 100%
}

.ticketBox .ticketName {
    font-weight: bold;
    margin: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dashed #ccc;
    /*height: 56px;*/
}

.ticketBox .ticketPoint {
    padding: 0 .5em .5em .5em;
}

/*キャンペーン*/
.westerpoint {
    margin: 0 auto;
    text-align: center;
}

.westerpoint img {
    width: 850px;
}

/*アコーディオン*/
	.accordion {
		max-width: 850px;
		margin: .5em auto 0;
	}
	.accordion summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: .8em 1em;
		color: #FFF;
		cursor: pointer;
		background-color: #036eb8;
		border-radius: 5px;
	}
	.accordion summary::-webkit-details-marker {
		display: none;
	}
	.accordion summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 13px;
		height: 13px;
		margin-left: 1em;
		border-bottom: 3px solid #FFF;
		border-right: 3px solid #FFF;
		content: '';
		transition: transform .3s;
	}
	.accordion[open] summary::after {
		transform: rotate(225deg);
	}
	.accordion .info {
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		padding: .2em 0;
		transition: transform .5s, opacity .5s;
	}
	.accordion[open] .info {
		transform: none;
		opacity: 1;
	}
    
	.accordion .info p.spot01 {
        background: #6ac7e9;
        color: #FFF;
        padding: .3em .3em .3em 1.6em;
        margin-top: .2em;
	}
    
    .accordion .info p.spot02 {
        background: #ff71b7;
        color: #FFF;
        padding: .3em .3em .3em 1.6em;
        margin-top: .2em;
	}

/*注意事項*/
.subttl {
    border-left: 6px solid #000;
    font-weight: bold;
    padding-left: 6px;
    margin: 14px 0 6px;
}

ul.guideList {
	padding: 0;
    margin: .5em 0;
}

ul.guideList li {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:last-child {
	padding-bottom: 0;
}

ul.guideList li:before {
	content: '●';
}

ul.guideList li.no1,
ul.guideList li.no2,
ul.guideList li.no3,
ul.guideList li.no4,
ul.guideList li.no5,
ul.guideList li.no6,
ul.guideList li.no7,
ul.guideList li.no8 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1.5em;
    margin-left: 1.5em;
}

ul.guideList li.no1:before {
	content: '1．';
}

ul.guideList li.no2:before {
	content: '2．';
}

ul.guideList li.no3:before {
	content: '3．';
}

ul.guideList li.no4:before {
	content: '4．';
}

ul.guideList li.no5:before {
	content: '5．';
}

ul.guideList li.no6:before {
	content: '6．';
}

ul.guideList li.no7:before {
	content: '7．';
}

ul.guideList li.no8:before {
	content: '8．';
}

ul.guideList li.kome {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
}

ul.guideList li.kome:before {
	content: '※';
}

ul.guideList li.kome1 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome1:before {
	content: '（※1）';
}

ul.guideList li.kome2 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome2:before {
	content: '（※2）';
}

ul.guideList li.kome3 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome3:before {
	content: '（※3）';
}

ul.guideList li span {
	color: #F00;
}

/*list横並び*/
.itemList2,
.itemList3,
.itemList4,
.itemList2btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.itemList2 > div,
.itemList2btn > div {
  width: 50%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
  text-align: center;
}

.itemList3 > div {
  width: 33.33333%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
}

.itemList4 > div {
  width: 25%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
}

.itemList2,
.itemList3,
.itemList4 > div img {
  width: 100%;
  height: auto;
}

.itemList4 > div p {
  line-height: 1.4;
}

.itemList4 > div p strong {
  display: block; 
  margin-top: .3em;
}


/*ボタン*/
.Btn_wrap {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 1em;
}
.Btn_balloon {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #ED001E;
        background-color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #ED001E;
        z-index: 2;
}
.Btn_balloon::before, .Btn_balloon::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #ED001E transparent transparent transparent;
        z-index: 1;
}
.Btn {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #ED001E;
        -webkit-box-shadow: 0 5px 0 #C80019;
        box-shadow: 0 5px 0 #C80019;
        color: #fff !important;
        transition: 0.2s;
        letter-spacing: 0.1em;
}
.Btn:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 12px;
  height: 12px;
  border-top: solid 3px currentColor;
  border-right: solid 3px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.Btn:hover {
  background: #FF3851;
  color: #FFF;
  -webkit-box-shadow: 0 2px 0 #C80019;
  box-shadow: 0 2px 0 #C80019;
  transform: translateY(3px);
}

.Btn_balloon02 {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #41af05;
        background-color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #41af05;
        z-index: 2;
}
.Btn_balloon02::before, .Btn_balloon02::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon02::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon02::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #41af05 transparent transparent transparent;
        z-index: 1;
}
.Btn02 {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #41af05;
        -webkit-box-shadow: 0 5px 0 #2f6e19;
        box-shadow: 0 5px 0 #2f6e19;
        color: #fff !important;
        transition: 0.2s;
        letter-spacing: 0.1em;
}
.Btn02:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 12px;
  height: 12px;
  border-top: solid 3px currentColor;
  border-right: solid 3px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.Btn02:hover {
  background: #4BCA05;
  color: #FFF;
  -webkit-box-shadow: 0 2px 0 #2f6e19;
  box-shadow: 0 2px 0 #2f6e19;
  transform: translateY(3px);
}

.Btn_balloon_gray {
        width: 80%;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #545454;
        background-color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #545454;
        z-index: 2;
}
.Btn_balloon_gray::before, .Btn_balloon_gray::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
}
.Btn_balloon_gray::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
}
.Btn_balloon_gray::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #545454 transparent transparent transparent;
        z-index: 1;
}
.Btn_gray {
        width: 100%;
        padding: 25px 30px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        background: #545454;
        -webkit-box-shadow: 0 5px 0 #333;
        box-shadow: 0 5px 0 #333;
        color: #fff;
        transition: 0.2s;
        letter-spacing: 0.1em;
}

.Btn_white {
  color: #003399;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  border: 2px solid #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
  font-weight: bold;
}

.Btn_white a {
	color: #003399;
}

.Btn_white::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-weight: bold;
}

/*footer*/
#footer {
	background-color: #F0F5FA;
}

#footer .inner {
	width: 990px;
	margin: 0 auto;
	padding: 20px 0;
}

#footer .inner ul {
	font-size: 13px;
	line-height: 1.4;
    text-align: center;
}

#footer .inner ul li {
    display: inline-block;
	padding: 0 6px;
	border-right: 1px solid #CCC;
}

#footer .inner ul li:last-child {
    border-right: none;
}

#footer .copy {
	background-color: #0952a4;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

/*pagetop*/
#pagetop {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  cursor: pointer;
  z-index: 100;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background-color: rgba(255,255,255,.5);
  border:solid 1px #152a8c;
  border-radius: 50vh;
}
#pagetop a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0 6px 9px 6px;
  border-color: transparent transparent #152a8c transparent;
}
#pagetop a:hover {
  background-color: #152a8c;
}
#pagetop a:hover::after {
border-width: 0 6px 9px 6px;
border-color: transparent transparent #fff transparent;
}


}