@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*PCSP共通設定*/
html {scroll-behavior: smooth;}/*smooth scroll*/
body{font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;}/*LP個別のフォントファミリーの設定は、article内での範囲指定を行ってください*/
a{transition: .3s;}
a:link,
a:visited{color: #0952a4;}
a:hover{opacity: 0.7;}

article {
  position: relative; /* ★追加：擬似要素の基準位置にするために必須です */
  z-index: 0;         /* ★追加：記事自体が他の要素の下に隠れないようにします */
  
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  /* background系の設定は下の ::before に移動させます */
}

/* 擬似要素を使って背景画像を最背面に配置する設定 */
article::before {
  content: "";
  position: absolute; /* ★追加：articleの中で自由に配置するため */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;        /* ★追加：これで完全にarticle内の「最背面」に行きます！ */

  /* 先ほどの背景画像の設定をここに書きます */
  background-image: url("../images/bg_article.jpg");
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
  
  /* ↓もし背景画像を少し薄く（半透明に）したい場合は、この数値を調整してみてください */
  /* opacity: 0.5; */ 
}

*, *:before, *:after {
	box-sizing: border-box;
}

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}

.mt05em {
    margin-top: .5em;
}

.mt1em {
    margin-top: 1em;
}

.large {
	font-size: 120%
}

.attention {
	padding: .8em;
	border: 2px #F00 solid;
	background: #FFF;
	line-height: 1.4;
    margin-top: .5em;
}

.marker {
    background-image: linear-gradient(0deg, transparent 0.3em, #ffff33 0.3em, #ffff33 0.8em, transparent 0.8em);
    padding: 0.2em; /* テキストの周りにスペースを追加 */
    border-radius: 4px; /* 角を丸くする */
}

.line {
		border-bottom: 1px dashed #333;
        padding-top: 2em;
        margin-bottom: 1.5em;
}

.red {
	color: #ff0000;
}

/*座席*/
.pointBox .ssseat {
	background: #e83428;
	color: #FFF;
	padding: 0 .3em .1em;
	margin-right: .2em;
	line-height: 1.0;
}

.pointBox .sseat {
	background: #006cb8;
	color: #FFF;
	padding: 0 .3em .1em;
	margin-right: .2em;
	line-height: 1.0;
}

/*注意事項*/
ul.guideList {
}

ul.guideList li {
	padding-bottom: .5em;
	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.kome:before {
	content: '※';
}

/*矢印の色とサイズ*/
.swiper-pagination {

}
.swiper-pagination-bullet-active {
	background: #e83428 !important;
}
.swiper-button-prev svg path, .swiper-button-next svg path {
	stroke-width: 1.5px !important;
	stroke: #fff;
}
.swiper-button-next, .swiper-button-prev {
	width: 26px !important;
	height: 26px !important;
	padding: 5px;
	border-radius: 50%;
	background: #e83428;
}

/*線路*/
.railroad {
	display: inline-block;
	width: 100px;       /* 線路の長さ */
	height: 12px;      /* 線路全体の幅（ゲージ） */
	margin: 0 .5em;
	background-color: #000; /* 砂利（バラスト）の色 */
	background-image:
    /* ① 上下のレール（鉄の棒） */
    linear-gradient(#000 15%, transparent 15%, transparent 85%, #000 85%),
    /* ② 連続する枕木 */
    linear-gradient(90deg, transparent 30%, #fff 30%, #fff 70%, transparent 70%);
	/* 枕木の幅と間隔のサイズ（横幅30pxでループさせる） */
	background-size: 100% 100%, 20px 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*759px以下*/
@media screen and (max-width: 759.9px) {
.spnone{display:none;}

/*news*/
#newsImportant{
	margin: 0 5px 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;
}
#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;
}

/*パンくず*/
#dirPathBlock,
#anchorLinkBlock {
    font-size: 12px;
    margin: 1%;
}

/*メインコンテンツ*/
main h1 {
	font-size: 12px;
	margin: 0 1%;
}
.inner {
	width: 98%;
	margin: 0 1%;
	padding: 5% 0;
}

/* 記述ください */
/*title*/
.title {
	width: 100%;
	text-align: center;
}

.title img {
    width: 100%;
}

/*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;
    font-size: 16px;
}

.topNavi ul li {
    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;
}

/*content*/
.content {
  width: 96%;
  margin: 0 auto;
  padding: 1em;
  background: #FFF;
  border: 2px solid #000;
}

/*見出し*/
h2 {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  padding-top: 24px;
  color: #006cb8;
  text-shadow: 2px 2px 0px rgba(0, 108, 184, 0.2);
}

h2 i {
  position: absolute;
  top: .1em; /* 追加：アイコンをh2要素の一番上に固定する */
  z-index: 1;
  left: calc(50% - 10px);
  text-align: center;
}



/*イベント概要*/
.logoEvent {
    text-align: center;
}

.logoEvent img {
    width: 100%;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 1em;
}

.catch {
  background: linear-gradient(135deg, #e83428 25%, #006cb8 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 26px;
  font-weight: 900;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.summaryBox {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1em;
}

.summaryBox .detail {
    width: 100%;
    flex: 0 0 auto;
}

.summaryBox .photo {
    width: 100%;
    flex: 0 0 auto;
    text-align: center; /* スマホでは中央寄せが見やすい場合に */
    margin-top: 1em;
}

.summaryBox .photo img {
  width: 100%;
  height: auto;
}

dl.unit  {
  width: 100%;
	padding: 1px 0;
}

dl.unit dt {
	width: 100%;
	padding: .4em .8em;
  color: #FFF;
  background: #006cb8;
}

dl.unit dd {
  width: 100%;
  padding: .4em .8em;
  background: #FFF;
}

.eventBox01 {
    position: relative;
    margin-top: 2em;
    padding: 1.8em 1em 1em 1em;
    border: 3px solid #e83428;
    width: 100%;
    text-align: center;
    border-radius: 0 10px 0 10px;
}

.eventBox01 > .fukidashi {
    position: absolute;
    top: -1.15em;
    left: -.5em;
    padding: .4em 1.4em;
    border-radius: 25px;
    background-color: #e83428;
    color: #fff;
    font-size: 16px;
}

.eventBox01 > .fukidashi::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #e83428;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.eventBox02 {
    position: relative;
    margin-top: 2em;
    padding: 1.8em 1em 1em 1em;
    border: 3px solid #006cb8;
    width: 100%;
    text-align: center;
    border-radius: 0 10px 0 10px;
}

.eventBox02 > .fukidashi {
    position: absolute;
    top: -1.15em;
    left: -.5em;
    padding: .4em 1.4em;
    border-radius: 25px;
    background-color: #006cb8;
    color: #fff;
    font-size: 16px;
}

.eventBox02 > .fukidashi::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #006cb8;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.eventBox01 p,
.eventBox02 p {
    margin: 0;
}

.eventBox01 .time,
.eventBox02 .time {
    background: #fabe00;
    padding: .2em .5em;
    margin: .5em;
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
}

.eventBox01 .versus,
.eventBox02 .versus {
    font-size: 20px;
    font-weight: 800;
}

/*プランのお楽しみ*/
 .pointBox {
    padding: .8em 1em;
    margin: .5em 0;
    background: #FFF;
	 box-shadow: 3px 3px 0px 0px #0e468a;
	 border: 3px solid #0e468a;
	 width: 100%;
     border-radius: 0 10px;
}

.pointBox p {
    text-align: left;
}

.pointBox .pointTtl {
	color: #e8002d;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	border-bottom: 2px dotted #0e468a;
	padding-bottom: .5em;
	margin-bottom: .5em;
}

.pointBox .pointTtl img {
    max-width: 40%;
}

.pointBox .swiper {
   width: 100%;
   flex: 0 0 auto;
   text-align: center; /* スマホでは中央寄せが見やすい場合に */
   margin: .3em 0;
}

.pointBox .swiper .swiper-slide img {
  height: auto;
  width: 100%;
}

/*詳細＆お申込み*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}

.tab_label {
  color: #e8002d;
  font-weight: 600;
  border: solid 2px #e8002d;
  background: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .1em;
  text-align: center;
  line-height: 1.2;
  border-radius: 5px;
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #e8002d;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e8002d transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#chugoku:checked ~ #chugoku_content,
#hokuriku:checked ~ #hokuriku_content,
#kyushu:checked ~ #kyushu_content,
#syutoken:checked ~ #syutoken_content,
#chubu:checked ~ #chubu_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
}

.planName {
  padding: .8em .5em;
  margin-top: 1em;
  color: #fff;
  background: #003399;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 0 10px 0 0;
}

.planBox {
  padding: 1em;
  background: #fff;
  border-right: 3px solid #003399;
  border-bottom: 3px solid #003399;
  border-left: 3px solid #003399;
  width: 100%;
  text-align: center;
  border-radius: 0 0 0 10px;
}

.planName02 {
  padding: .8em .5em;
  margin-top: 1em;
  color: #fff;
  background: #ff9933;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 0 10px 0 0;
}

.planBox02 {
  padding: 1em;
  background: #fff;
  border-right: 3px solid #ff9933;
  border-bottom: 3px solid #ff9933;
  border-left: 3px solid #ff9933;
  width: 100%;
  text-align: center;
  border-radius: 0 0 0 10px;
}

.ticket {
  font-weight: 600;
  text-align: center;
}

dl.price {
  width: 100%;
  margin-top: 1em;
}

dl.price dt {
  width: 100%;
  text-align: center;
}

dl.price dd {
  width: 100%;
  color: #F00;
  font-size: 30px;
  font-weight: 600;
}

dl.price dd .small {
	font-size: 16px;
}

.joken {
	font-size: 14px;
	margin-bottom: .5em;
}

.note {
	background: #FFE4E5;
	padding: .5em;
	width: 100%;
	font-size: 14px;
	margin-bottom: .5em;
}

.note02 {
	background: #ffff00;
	border: 2px solid #000;
	padding: .5em;
	width: 100%;
    margin-bottom: 1em;
}

/*プラン行程*/
.category {
  padding: .2em .5em;
  margin: .5em 0;
  border-left: 5px solid #e8002d;
  font-weight: 600;
  line-height: 1.2;
}

dl.schedule {
    width: 100%;
    margin-top: -1px;
    display: table;
}

dl.schedule dt {
	width: 100%;
    padding: .3em .6em .6em;
    background: #eee;
	line-height: 1.5;
    border: 1px solid #CCC;
    border-bottom: none;
    font-weight: normal;
}

dl.schedule dd {
    width: 100%;
    padding: .3em .6em .6em;
    background: #FFF;
    line-height: 1.5;
    border: 1px solid #CCC;
}

/*ご旅行のご注意*/
.readme {
	font-size: 20px;
	font-weight: 600;
	color: #F00;
}

.lead01 {
	background: #000;
	color: #fff;
	font-weight: 600;
	padding: .5em .5em .5em .8em;
	margin: 1.5em 0 1em;
}

.lead02 {
	border-bottom: 2px solid #000;
	font-weight: 600;
	padding-bottom: .2em;
	margin: 1em 0 .5em;
}


/*list横並び*/
.itemList2 > div,
.itemList3 > div,
.itemList4 > div {
    width: 100%;
    margin: 1em 0;
}

/*ボタン*/
.Btn a {
    background: #003399;
    border-radius: 9999px;
    position: relative;
    display: flex;
    /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.Btn02 a {
    background: #ff9933;
    border-radius: 9999px;
    position: relative;
    display: flex;
   /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.Btn_gray {
    background: #333;
    border-radius: 9999px;
    position: relative;
    display: flex;
    /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.Btn a:after,
.Btn02 a:after,
.Btn_gray:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.Btn a:hover:after,
.Btn02 a:hover:after,
.Btn_gray:hover:after {
    border-color: #FFF;
}



}

/*760px以上*/
@media screen and (min-width: 760px),print {
.pcnone{display:none;}

/*news*/
#newsImportant{
	width: 100%;
	max-width:1080px;
	min-width:760px;
	margin: 0 auto 5px;
	display: flex;
	font-size: 12px;
}
#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;
}
#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 #555;
	border-right: 0;
    position: absolute;
	top: 7px;
	left: 0;
}

/*パンくず*/
#dirPathBlock,
#anchorLinkBlock{
	width: 100%;
	max-width:1080px;
	min-width:760px;
	margin: 0 auto;
	font-size: 12px;
}

/*メインコンテンツ*/
main h1 {
	font-size: 12px;
    width: 100%;
	max-width:1080px;
	min-width:760px;
    margin: 0 auto 5px;
}
.inner {
	width: 100%;
	max-width:1080px;
	min-width:760px;
	margin: auto;
	padding: 25px 0;
}

/* 記述ください */
/*title*/
.title {
    width: 100%;
    text-align: center;
}

.title img {
    width: 100%;
    max-width: 1080px;
    margin-top: 1em;
}

/*navigation*/
.topNavi {
	width: 100%!important;
	text-align: center;
    margin-bottom: 1em;
}

.topNavi ul {
	width: 100%;
    max-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 1em;
    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;
}

/*content*/
.content {
  width: 100%;
  max-width: 1080px;
  padding: 2em;
  background: #FFF;
  border: 3px solid #000;
}

/*見出し*/
h2 {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  padding-top: 40px;
  color: #006cb8;
  text-shadow: 3px 3px 0px rgba(0, 108, 184, 0.2);
}

h2 i {
  position: absolute;
  top: .3em; /* 追加：アイコンをh2要素の一番上に固定する */
  z-index: 1;
  left: calc(50% - 20px);
  text-align: center;
}

/*イベント概要*/
.logoEvent {
    text-align: center;
}

.logoEvent img {
    width: 600px;
}

.intro {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 1em;
}

.catch {
  background: radial-gradient(circle, #e83428 25%, #006cb8 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
text-fill-color: transparent;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.summaryBox {
  display: flex;
  align-items: flex-start; /* 画像とテキストの縦位置を揃える */
  gap: 10px; /* 要素間の隙間 */
  flex-wrap: nowrap;
  margin-top: 1em;
}
	
.summaryBox .detail {
  width: 60%;
	max-width: 640px;
	margin-right: 10px; /* 必要なら残す */
  flex: 0 0 60%; /* flex アイテムとして固定幅にする */
}

.summaryBox .photo {
  width: 40%;
	max-width: 440px;
  flex: 1 1 auto; /* 余白を占有するように */
}

.summaryBox .photo img {
  width: 100%;
  height: auto;
}

dl.unit {
  width: 100%;
	padding: 1px 0;
  margin: 0 auto;
  display: table;
}

dl.unit dt {
	width: 15%;
  padding: .5em 1em;
  display: table-cell;
  color: #FFF;
  background: #006cb8;
}

dl.unit dd {
  width: 85%;
  padding: .5em 1em;
  background: #FFF;
  display: table-cell;
}

.eventBox01 {
    position: relative;
    margin-top: 1em;
    padding: 1.8em 1em 1em 1em;
    border: 3px solid #e83428;
    width: 100%;
    text-align: center;
    border-radius: 0 10px 0 10px;
    height: 240px;
}

.eventBox01 > .fukidashi {
    position: absolute;
    top: -1.15em;
    left: -.5em;
    padding: .4em 1.4em;
    border-radius: 25px;
    background-color: #e83428;
    color: #fff;
    font-size: 16px;
}

.eventBox01 > .fukidashi::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #e83428;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.eventBox02 {
    position: relative;
    margin-top: 1em;
    padding: 1.8em 1em 1em 1em;
    border: 3px solid #006cb8;
    width: 100%;
    text-align: center;
    border-radius: 0 10px 0 10px;
    height: 240px;
}

.eventBox02 > .fukidashi {
    position: absolute;
    top: -1.15em;
    left: -.5em;
    padding: .4em 1.4em;
    border-radius: 25px;
    background-color: #006cb8;
    color: #fff;
    font-size: 16px;
}

.eventBox02 > .fukidashi::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #006cb8;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.eventBox01 p,
.eventBox02 p {
    margin: 0;
}

.eventBox01 .time,
.eventBox02 .time {
    background: #fabe00;
    padding: .2em .5em;
    margin: .5em;
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
}

.eventBox01 .versus,
.eventBox02 .versus {
    font-size: 24px;
    font-weight: 800;
}

/*プランのお楽しみ*/
 .pointBox {
    padding: .8em 1em;
    background: #FFF;
	 box-shadow: 3px 3px 0px 0px #0e468a;
	 border: 3px solid #0e468a;
	 width: 100%;
	 height: 320px;
     border-radius: 0 10px;
}

.pointBox p {
    text-align: left;
}

.pointBox .pointTtl {
	text-align: center;
	border-bottom: 2px dotted #0e468a;
	padding-bottom: .5em;
	margin-bottom: .5em;
}

.pointBox .pointTtl img {
    max-width: 140px;
}

.pointBox .swiper {
   width: 100%;
   flex: 0 0 auto;
   text-align: center;
   margin: .3em 0;
}

.pointBox .swiper .swiper-slide img {
  height: auto;
  width: 100%;
}

/*お申込み*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}

.tab_label {
  color: #e8002d;
  font-size: 20px;
  font-weight: 600;
  border: solid 2px #e8002d;
  background: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .2em;
  text-align: center;
  border-radius: 5px;
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #e8002d;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e8002d transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#chugoku:checked ~ #chugoku_content,
#hokuriku:checked ~ #hokuriku_content,
#kyushu:checked ~ #kyushu_content,
#syutoken:checked ~ #syutoken_content,
#chubu:checked ~ #chubu_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
}

.planName {
  padding: .8em .5em;
  color: #fff;
  background: #003399;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 980px;
  margin: 1em auto 0;
  border-radius: 0 10px 0 0;
}

.planBox {
  padding: 1em;
  background: #fff;
  border-right: 3px solid #003399;
  border-bottom: 3px solid #003399;
  border-left: 3px solid #003399;
  width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 0 0 0 10px;
}

.planName02 {
  padding: .8em .5em;
  color: #fff;
  background: #ff9933;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 980px;
  margin: 1em auto 0;
  border-radius: 0 10px 0 0;
}

.ticket {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.planBox02 {
  padding: 1em;
  background: #fff;
  border-right: 3px solid #ff9933;
  border-bottom: 3px solid #ff9933;
  border-left: 3px solid #ff9933;
  width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 0 0 0 10px;
}

dl.price {
  /*width: 480px;*/
  margin: 0 auto;
  display: table;
  /*border: 1px solid #000;*/
}

dl.price dt {
  width: 50%;
  /*padding: .5em 1em;*/
  display: table-cell;
  white-space: nowrap;
}

dl.price dd {
  width: 50%;
  /*padding: .5em 1em;*/
  color: #F00;
  display: table-cell;
  font-size: 40px;
  font-weight: 600;
}

dl.price dd .small {
	font-size: 20px;
}

.joken {
	font-size: 14px;
	margin-bottom: .5em;
}

.note {
	background: #FFE4E5;
	padding: .5em;
	width: 100%;
}

.note02 {
	background: #ffff00;
	border: 2px solid #000;
	padding: .5em;
	width: 980px;
	margin: 0 auto 1em;
	text-align: center;
}

/*プラン行程*/
.category {
  padding: .2em .5em;
  margin: .5em 0;
  border-left: 5px solid #e8002d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
}

dl.schedule {
    width: 100%;
	margin-top: -1px;
    display: table;
}

dl.schedule dt {
	width: 10%;
    padding: .3em .6em .6em;
    background: #eee;
    display: table-cell;
	line-height: 1.5;
    border: 1px solid #CCC;
    border-right: none;
    font-weight: normal;
}

dl.schedule dd {
    width: 90%;
    padding: .3em .6em .6em;
    background: #FFF;
    display: table-cell;
    line-height: 1.5;
    border: 1px solid #CCC;
}

/*ご旅行のご注意*/
.readme {
	font-size: 26px;
	font-weight: 700;
	color: #F00;
}

.lead01 {
	background: #000;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: .5em .5em .5em .8em;
	margin: 1.5em 0 1em;
}

.lead02 {
	border-bottom: 2px solid #000;
	font-weight: 600;
	padding-bottom: .2em;
	margin: 1em 0 .5em;
}



/*list横並び*/
.itemList2,
.itemList3,
.itemList4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;   /* 項目間の等間隔（任意の値に調整） */
  padding: 0;  /* コンテナ両端の内側余白をゼロにする */
  margin: 1em 0;
}

/* 2列 */
.itemList2 > div {
  box-sizing: border-box;
  width: calc((100% - 1 * 20px) / 2); /* gap が 1 箇所なので (100% - gap) / 2 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 3列 */
.itemList3 > div {
  box-sizing: border-box;
  width: calc((100% - 2 * 20px) / 3); /* gap が 2 箇所なので (100% - 2*gap) / 3 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 4列 */
.itemList4 > div {
  box-sizing: border-box;
  width: calc((100% - 3 * 20px) / 4); /* gap が 3 箇所なので (100% - 3*gap) / 4 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.itemList2 > div .Btn,
.itemList2 > div .Btn02,
.itemList2 > div .Btn_gray,
.itemList3 > div .Btn,
.itemList3 > div .Btn02,
.itemList3 > div .Btn_gray,
.itemList4 > div .Btn,
.itemList4 > div .Btn02 {
  width: 100%;
}

/*ボタン*/
.Btn a {
    background: #003399;
    border-radius: 9999px;
    position: relative;
    display: flex;
    /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.Btn02 a {
    background: #ff9933;
    border-radius: 9999px;
    position: relative;
    display: flex;
    /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.Btn a:after,
.Btn02 a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.Btn a:hover:after,
.Btn02 a:hover:after {
    border-color: #FFF;
}

.Btn_gray {
    background: #333;
    border-radius: 9999px;
    position: relative;
    display: flex;
    /*justify-content: space-around; ←rubyタグ入れるとずれる*/
    justify-content: center;
    align-items: center;
    /*margin: 0 auto;*/
	margin: 1em auto 0;
    padding: 10px 25px;
    color: #FFF;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.Btn_gray:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

}