<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*リセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers 
*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*style*/
* { 
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	box-sizing:border-box;
}
h2{
	border-bottom:none!important;
	font-weight:bold!important;
}
a{
	text-decoration:none;
	-moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 1s linear;
	
}
a,a:link,a:visited{
	color: #666;
	}

.crumb{
	width: auto;
	margin-bottom:8px;
	padding:8px 0;
}
.ttl{
	font-family: YuGothic, 游ゴシック, sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
h2.style_h2{
	text-align: center;
	font-size:25px;
	margin:30px 0;
}

article{
	width:1000px;
	margin:0 auto;
}

.lead-cont{
	display:flex;
	margin:30px 0;
}
.lead-cont.text-only{
	margin:30px 10px;
}
.lead-img{
	width:50%;
	flex:0 0 50%;
	margin-right:15px;
	height:330px;
	overflow: hidden;
}
.lead-img img{
	width:100%;
}
.lead-text ul{
	display: flex;
	flex-wrap:wrap;
	margin-top:8px;
}
.lead-text li{
	padding:2px 5px;
	margin-right:8px;
	font-size:.9em;
}
.tour-dep li{
	border:1px solid #333;
}
.tour-feature li{
	background:#cde8f9;
}
/*plan-list*/
.plan-list {
    border: 2px solid #c3e4f8;
    margin: 30px 0;
}
.plan-list h2 {
    text-align: center;
    background: #cde8f9;
    padding: 8px 0;
}
.plan-list ul {
    padding: 15px;
}
.plan-list a{
	display: flex;
    align-items: center;
    border-bottom: 1px dotted #999;
    padding: 8px;
    justify-content: space-between;
}
.btn-link{
	background:#f90;
	color:#fff;
	border-radius: 8px;
	padding:8px 15px;
	text-align: center;
}
.activity .btn-link {
    width: 80%;
    margin: 10px auto;
}
.plan-price{
	color:#c00;
	font-weight:bold;
	font-size:1.1em;
}
/*activity*/
.activity ul{
	display: flex;
	flex-wrap:wrap;
}
.activity li{
	flex:0 0 50%;
	padding:15px 30px;
}
.activity h1 {
	text-align: center;
	font-size:1.3em;
	padding: 5px 0;
}
	
.activity h3 {
    text-align: center;
    font-size:1.1em;
    border-left: 8px solid #cde8f9;
    padding: 5px 0;
}
.activity-img{
	margin:10px 0;
}
.activity-img img{
	width:100%;
}
/*QA*/
.faq{
	margin:30px 0;
}
.faq h2,.plan-cate{
    font-size: 1.1em;
    border-left: 8px solid #cde8f9;
    padding: 8px;
    margin-bottom: 10px;
}
.faq dl{
	font-size:13px;
	line-height:1.5em;
	padding:10px 0;
}
.faq dt,.faq dd{
	position: relative;
	padding: 8px 0 8px 30px;
	margin-bottom: 8px;
}
.faq dt{
    cursor: pointer;
    font-weight: bold;
}
.faq dt:not(.active){
	border-bottom:#999999 1px dotted
}
.faq dd{
	display: none;
	border-bottom:#999999 1px dotted;
}
.faq dt:before,.faq dd:before{
	position: absolute;
	left:0;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	color:#FFFFFF;
	padding:3px 8px;
	margin-right:5px;
	font-size:12px;
	font-weight:bold;
}
.faq dt:before{
	content:"Q";
	background:#666;
}
.faq dd:before{
	content:"A";
	background:#235a95; 
}
.faq dt::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 40%;
    border-top: 8px solid #666;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    right: 20px;
}
.faq dt.active::after {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
/*tab*/

.tab ul,.tab2 ul {
    display: flex;
    justify-content: center;
}
.tab li,.tab2 li {
    color: #333;
    margin: 0 10px -1px 0;
    padding: 15px 20px;
    border: 3px solid #225a95;
    border-bottom:none;
    cursor: pointer;
    list-style: none;
    transition: .3s;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    width: 30%;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}
.tab li.active,.tab2 li.active {
    color: #fff;
    background: #225a95;
    cursor: auto;
}
.tab li:last-child,.tab2 li:last-child {
    margin-right: 0;
}
.cont section,.tab-cont,.tab-cont2 {
  display: none;
}
.cont .show,.tab-cont.show,.tab-cont2.show {
  display: block;
}
.tab-cont,.tab-cont2{
	border: 3px solid #225a95;
    padding: 15px;
    margin-bottom:30px;
}
.plan-tab-list a{
	display: flex;
    align-items: center;
    border-bottom: 1px dotted #999;
    padding: 8px;
    justify-content: space-between;
}
.plan-tab-list h2{
	text-align: center;
	font-size:1.3em;
	padding: 5px 0;
}
img.banner_ryuhyo {
    padding-left: 20%;
}
	
@media (max-width: 519px) {
	article{
		width:100%;
	}
	.lead-cont{
		display: block;
	}
	.lead-img{
	    width: 90%;
	    margin:0 auto 10px;
	    height: 250px;
	    overflow: hidden;
	}
	.lead-text {
	    padding: 0 10px;
	}
	.plan-list a,.plan-tab-list a{
		display: block;
	}
	.btn-link{
		width: 60%;
	    margin: 8px auto;
	    text-align: center;
	}
	.activity ul{
		display: block;
	}
	.activity li{
		padding:10px;
	}
	.tab ul,.tab2 ul{
		font-size:.9em;
	}
	.tab li,.tab2 li{
		padding:10px;
		margin: 0 5px -1px 0;
	}
	img.banner_ryuhyo {
		padding-left: 0;
	}
}</pre></body></html>