@charset "utf-8";
/*ポイント数字用フォント*/
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
/* CSS Document */
:root{
	--font-sans: 'Noto Sans JP', serif;
    --content-width-pc: 1104px;
	--content-width-sp: calc(675vw / 7.5);
	--content-width: min(var(--content-width-sp), var(--content-width-pc));
	--font-size-pc: 16px;
	--font-size-sp: calc(28vw / 7.5);
	--default-color-black: #2C2A29;
	--content-color-black: #000;
	--content-color-red: #e70101;
	--content-color-yellow: #ffe100;
}
.nopc {
    display: none
}
.main {
    font-family: var(--font-sans);
	line-height: 1.5;
    font-size: var(--font-size-pc);
    color: var(--content-color-black);
    -webkit-text-size-adjust: none;/*ipad safari対策*/
    & a {
		text-decoration: none;
		color: inherit;
		&:hover {
			opacity: 0.8;
			transition: all 0.6s ease;
		}
	}
    & img {
        max-width: 100%;
    }
    & .inner {
        width: var(--content-width-pc);
		max-width: 100%;
        margin: 0 auto;
    }
	& .f-red {
		color: var(--content-color-red);
	}
	& .f-small {
		font-size: 0.8em;
	}
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 600px;
    background: url("../images/main-bg-pc.jpg") no-repeat top center;
	text-align: center;
	& .title {
		padding-top: 35px;
	}
	& .uke {
		margin-top: -10px;
	}
}
/*----------------------------------------------
ナビ
------------------------------------------------*/
.fix-navi:has(.fixed) {
	height: 60px;
}
#navi {
	background-color: #000;
	& ul {
		width: 840px;
		margin: 0 auto;
		display: flex;
		text-align: center;
		& li {
			width: 100%;
			font-size: 20px;
			font-weight: 700;
			line-height: 1.3;
			color: #fff;
			& a {
				display: block;
				padding: 22px 0 30px;
				&::after {
					content: "";
					display: inline-block;
					width: 30px;
					height: 30px;
					background: url(/cmn/icon/icon_arrow_down_white.svg) no-repeat center center / contain;
					margin-left: 10px;
					transform: translateY(8px);
				}
			}
		}
	}
	&.fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		& a {
			padding: 18px 0;
			position: relative;
			&::after {	
				content: none;
			}
			&.active::after {
				position: absolute;
				bottom: 13px;
				right: 0;
				left: 0;
				content: "";
				width: 70%;
				height: 2px;
				margin: 0 auto;
				background-color: var(--content-color-yellow);
			}
		}
	}
}

/*------------------------------------------------
	受付終了
--------------------------------------------------*/
#point .end {
	width: var(--content-width-pc);
	margin: -30px auto 100px;
	font-size: 18px;
	font-weight: 700;
	color: #f00;
	text-align: center;
	background-color: #fff;
	padding: 30px 0;
}
/*------------------------------------------------
	ツアーポイント
--------------------------------------------------*/
#point {
	width: 100%;
	background-image: url("../images/illust-okita2.png"),url("../images/point-bg.png");
	background-repeat: no-repeat,repeat;
	background-position: right 100px bottom,left top;	
	padding: 64px 0 120px;
	& .lead {
		text-align: center;
		position: relative;
		margin-bottom: 60px;
		& .text {
			font-size: 38px;
			font-weight: 900;
			line-height: 1.3;
		}
		& .illust1 {
			position: absolute;
			left: 100px;
			bottom: 0;
		}
		& .illust2 {
			position: absolute;
			right: 100px;
			bottom: 0;
		}
	}
	& h2 {
		text-align: center;
		margin-bottom: 60px;
	}
}

.point-list > li {
	margin-bottom: 20px;
	border: solid 4px #000;
	border-radius: 24px;
	background-color: #fff;
	padding: 24px 56px 40px;
	position: relative;
	& .no {
		position: absolute;
		left: 45px;
		top: -8px;
		width: 104px;
		height: 123px;
		background: url("../images/point-no-bg.svg") no-repeat;
		background-size: contain;
		font-family: "Oswald", sans-serif;
		font-optical-sizing: auto;
		color: #000;
		text-align: center;
		font-size: 48px;
		font-weight: bold;
		padding-top: 28px;
		letter-spacing: 0.05em;
	}
	& .day {
		position: absolute;
		left: 67px;
		top: 117px;
		font-size: 16px;
		font-weight: 700;
		background-color: #000;
		color: #fff;
		display: inline-block;
		padding: 3px 10px;
	}
	& h3 {
		font-size: 36px;
		line-height: 1.3;
		font-weight: 900;
		padding: 0 0 0 115px;
		& sup {
			font-size: 16px;
			font-weight: 500;
			top: -15px;
		}
	}
	&:last-child {
		margin-bottom: 0;
	}
	&.is-img {
		padding: 24px 360px 40px 56px;
		& .ph {
			position: absolute;
			right: 56px;
			top: 30px;
			width: 280px;
			& span {
				display: block;
                text-align: right;
                font-size: 12px;
                line-height: 1.3;
			}
		}
		& .ph-sub {
			position: absolute;
			right: 225px;
			top: 135px;
			width: 140px;
			height: 140px;
			& img {
				border-radius: 50%;
				image-rendering: -webkit-optimize-contrast;
			}
		}
	}
} 
.point-list .person {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px 2%;
	& li {
		width: calc(96% / 3);
		height: 180px;
		background-image: linear-gradient(0deg, #ffe303, #f3f3f3 57%);
		position: relative;
		padding: 15px 0 0 15px;
		& .fukidashi {
			margin-bottom: 7px;
		}
		& .ph {
			position: absolute;
			right: 0;
			bottom: 0;
		}
		& .sub {
			font-size: 12px;
			line-height: 1.3;
			padding-top: 78px;
		}
		& .name {
			font-size: 20px;
			font-weight: 700;
		}
	}
}
.point-list {
	& p[class^="text-"] {
		margin-left: 115px;
	}
	& .text-l {
		font-size: 26px;
		font-weight: 700;
		line-height: 1.3;
		border-top: solid 1px #000;
		margin-top: 10px;
		padding-top: 10px;
	}
	& .text-s {
		font-size: 16px;
		font-weight: 500;
		margin-top: 5px;
	}
	& .person-note {
		font-size: 16px;
		font-weight: 500;
		margin-top: 15px;
	}
}

/*------------------------------------------------
	ホテル
--------------------------------------------------*/
#hotel {
	width: 100%;
	background-color: #f7f7f7;
	background-image: url("../images/hotel-bg-top.png"),url("../images/hotel-bg-bottom.png");
	background-repeat: no-repeat,no-repeat;
	background-position: top center,bottom center;
	padding: 64px 0 96px;
	& h2 {
		text-align: center;
		margin-bottom: 50px;
	}
}
.hotel-box {
	width: 100%;
	background-color: #fff;
	padding: 64px;
	position: relative;
	& h3 {
		text-align: center;
		font-size: 32px;
		font-weight: 700;
		line-height: 1.8;
		border-bottom: solid 2px #000;
		margin-bottom: 40px;
		&::before {
			content: "";
			width: auto;
			height: 44px;
			display: block;
			background: url("../images/hotel-icon.svg") no-repeat top center;
			background-size: contain;
			margin-bottom: 10px;
		}
	}
	& .text {
		width: 440px;
		line-height: 1.8;
		position: absolute;
		left: 64px;
		top: 230px;
	}
	& .illust {
		position: absolute;
		left: 340px;
		top: 400px;
	}
	& .ph-box {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		& .ph-main {
			width: 100%;
			text-align: right;
			margin-bottom: 10px;
			& img {
				width: 50%;
				height: 300px;
				object-fit: cover;
				margin: 0 0 0 auto;
			}
		}
		& .ph-sub {
			width: 32%;
		}
		& span {
			display: block;
			text-align: right;
			font-size: 12px;
			line-height: 1.3;
		}
	}
}
/*------------------------------------------------
	ツアー
--------------------------------------------------*/
#tour {
	width: 100%;
	background-color: var(--content-color-yellow);
	padding: 64px 0;
	& h2 {
		text-align: center;
		margin-bottom: 50px;
	}
	& .title-box {
		text-align: center;
		margin-bottom: 50px;
		position: relative;
		& .fukidashi {
			font-size: 24px;
			font-weight: 700;
			line-height: 1.3;
		}
		& h3 {
			font-size: 46px;
			font-weight: 900;
			line-height: 1.3;
			margin-bottom: 15px;
		}
		& .label span {
			display: inline-block;
			margin: 0 5px;
			padding: 6px 20px 8px;
			font-size: 18px;
			font-weight: 700;
			line-height: 1.0;
		}
		& .label-1 {
			background-color: var(--content-color-red);
			color: #fff;
		}
		& .label-2 {
			background-color: #fff;
		}
		& .illust {
			position: absolute;
			left: 200px;
			top: -20px;
		}
	}
}

.price-box {
	width: 100%;
	display: grid;
	grid-template-rows: repeat(4,max-content);
	grid-template-columns: 250px 490px 1fr;
	grid-row-gap: 1px;
	grid-column-gap: 1px;
	background-color: #000;
	text-align: center;
	border: solid 2px #000;
	& h4 {
		grid-row: 1;
		grid-column: 1/4;
		font-size: 24px;
		color: #fff;
		padding: 5px 0;
	}
	& p {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	& .room {
		grid-row: 2;
		grid-column: 1;
		background-color: #fff;
		font-size: 26px;
		line-height: 1.3;
	}
	& .price {
		grid-row: 2;
		grid-column: 2/4;
		background-color: #fff;
		font-size: 48px;
		line-height: 1.3;
		font-weight: 900;
		color: #DF0D00;
		padding: 15px 0;
	}
	& .add-price {
		grid-row: 3/5;
		grid-column: 1/3;
		background-color: #fff;
		font-size: 22px;
		line-height: 1.3;
	}
	& .child {
		grid-row: 3;
		grid-column: 3;
		background-color: #fff;
		font-size: 20px;
		line-height: 1.3;
		padding: 5px 0;
	}
	& .child-price {
		grid-row: 4;
		grid-column: 3;
		background-color: #fff;
		font-size: 20px;
		line-height: 1.3;
		padding: 5px 0;
	}
}
#tour {
	& .note {
		text-align: right;
	}
	& .uke {
		text-align: center;
	}
	& .btn {
		width: 740px;
		margin: 15px auto 70px;
		font-size: 28px;
		font-weight: 700;
		line-height: 70px;
		text-align: center;
		& a {
			display: block;
			background-color: #1b2b8e;
			color: #fff;
			border-radius: 35px;
			box-shadow: 2px 3px 0 rgba(0 0 0 / 40%);
			position: relative;
			&::after {
				content: "";
				display: inline-block;
				width: 30px;
				height: 30px;
				background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
				position: absolute;
				right: 20px;
				top: 20px;
			}
		}
	}
	& #tourbtn {
		padding-top: 80px;
		& .btn {
			margin: 0 auto 15px;
		}
	}
}

/*受付開始前*/
#tour .btn.comming a {
	pointer-events: none;
	box-shadow: none;
	&::before {
		content: "Comming soon";
		display: inline-block;
		position: absolute;
		font-size: 24px;
		line-height: 1.0em;
		font-weight: bold;
		background: rgba(0, 0, 0, 0.6);
		color: #fff;
		text-align: center;
		z-index: 102;
		padding: 16px 30px 20px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-4deg);
	}
	&::after {
		content: none;
	}
}
/*受付終了*/
#tour .btn.end a {
	pointer-events: none;
	box-shadow: none;
	&::before {
		content: "受付終了しました";
		display: inline-block;
		position: absolute;
		font-size: 24px;
		line-height: 1.0em;
		font-weight: bold;
		background: rgba(0, 0, 0, 0.6);
		color: #fff;
		text-align: center;
		z-index: 102;
		padding: 16px 30px 20px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-4deg);
	}
	&::after {
		content: none;
	}
}
/*----------------------------------------------
	注意事項
------------------------------------------------*/
#attention {
	width: 100%;
	background-color: #f1f1f1;
	padding: 60px 0;
	& h2 {
		font-size: 26px;
		font-weight: 700;
		margin-bottom: 30px;
	}
	& ul {
		font-size: 14px;
		& li {
			margin-bottom: 5px;
			padding-left: 13px;
			position: relative;
			&:first-child {
				font-size: 1.1em;
				font-weight: 700;
				margin-bottom: 10px;
			}
			&::before  {
				content: "●";
				font-size: 8px;
				position: absolute;
				left: 0;
				top: 5px;
			}
		}
	}
}

/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
    padding: 100px 0;
    background-color: #fff9cd;
    text-align: center;
    font-size: 18px;
    line-height: 1.8em;
}

/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-detail {
        padding: 20px 0 50px;
}
.line-inner {
        width: 992px;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.1em;
        line-height: 1.5;
}
.line-wrap-detail .line-inner {
        background: #fff;
        border: solid 1px #d3d3d3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        letter-spacing: 1px;
}
.line-inner .head {
        width: 100%;
        text-align: center;
        background-color: #15c618;
        padding: 6px;
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
        font-weight: bold;
}
.line-inner .textarea {
        width: 75%;
        text-align: left;
        padding: 30px 0 30px 30px;
}
.line-inner .btnarea {
        width: 23%;
        padding: 10px 20px 10px 0;
}
.line-inner .text1 {
        font-size: 17px;
        line-height: 1.4;
}
.line-inner .text1 span {
        display: inline-block;
        font-weight: bold;
        color: #fb0b0b;
        background-color: #ffe1e1;
        padding: 0 2px;
}
.line-inner .text2 {
        font-size: 21px;
        font-weight: bold;
        margin-bottom: -2px;
        background: linear-gradient(transparent 60%, #fff231 0%);
        display: inline-block;
        line-height: 1.7em;
        padding: 0 4px;
}
.line-button a {
        display: block;
        color: #fff;
        font-size: 15px;
        text-align: center;
        font-weight: bold;
        border-radius: 8vw;
        box-shadow: 0px 3px 0px 0 rgba(0, 0, 0, .14);
        background: url(/kansai/images/icon/icon-linekansai.png) no-repeat;
        background-size: 50px;
        background-position: 12px;
        background-color: #15c618;
        padding: 10px 10px 6px 70px;
        position: relative;
        text-decoration: none;
}
.line-button a:hover {
        opacity: .8;
        transition: all 0.6s ease;        
}
.line-button a span.small {
        width: 88%;
        display: block;
        font-size: 14px;
        font-weight: normal;
}
.line-button a span.strong {
        display: block;
}
.line-button a span.strong::after {
        font-family: "FontAwesome", "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f138";
        font-size: 15px;
        margin-left: 6px;
        padding-right: 14px;
}
.line-button a span.line-friend {
        font-size: 1.3;
        color: #fff231;
        padding: 0 2px;
}
.line-qr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
}
.line-qr span:nth-child(1) {
        width: 50%;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.3;
}
.line-qr img {
        width: 50%;
}
.line-qr span:nth-child(3) {
        width: 100%;
        font-size: 13px;
}
.line-qr a {
        text-decoration: underline;
}
/*-----------------------------------------
検索BOX
-----------------------------------------*/
/*検索ボタンリセット*/
#searchArea {
  & .rn-searchMod__inputField, .rn-searchMod__select, .rn-searchMod__toggle {
	font-size: 14px !important;
  }
  & .rn-searchMod__buttonSearch--dom {
	font-size: 15px !important;
	color: #fff;!important;
  }
}
/*----------------------------------------------
ページトップ
------------------------------------------------*/
.goTop {
	position: fixed;
    bottom: 10px;
    right: 10px;
    transform: translateZ(0);
    z-index: 200;
	& a {
		display: flex;
		cursor: pointer;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background-color: rgba(105, 113, 128, .5);
		width: 48px;
		height: 48px;
		& img {
				width: 24px;
				height: 24px;
		}
	}
}