@charset "utf-8";

/*PCSP共通設定*/
html {scroll-behavior: smooth;}/*smooth scroll*/



/*759px以下*/ /* sp */
@media screen and (max-width: 759.9px) {
	
	.textYet{
		text-align: center;
		margin: 20px 0;
		font-size: 14px;
		    padding: 20px 0 40px;
	}
    
/* ------------------------------------------
	title
------------------------------------------ */
#title{
	position:relative;
	background:url(../images/bg.jpg) repeat-x 50% 50% #f5f1e7;
	text-align:center;
	overflow:hidden;
	padding:0 0 0;
    margin:0;
}
#title img{
width: 100%;
height: auto;
}
.background {
    background:#e4ecfc;    
    }
.map {
    width:100%;
    margin:30px auto 15px;
    }
.time {
    width:92%;
    margin:0px 4% 30px;
    }
    
    
/*おすすめ旅行プラン*/
.ttl-box {
    width:100%;
    margin:0 auto 20px;
    }
.ttl-box h2 {
    padding: 30px 2% 0px;
    border-bottom: 3px solid #e6a061;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    }
.ttl-box h2 img {
    width:30%;    
    }
.ttl-box h2.long img {
    width:40%;    
    }
.ttl-box h2 span {
    font-size: 24px;
    font-weight: bold;
    color: #483322;
    margin:0 0 0px 10px;
    text-align: left;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    }
.ttl-box h2.detail span {
    margin-bottom: 5px;    
    }
.r_red {
    background: #d5485f;
    background: -moz-linear-gradient(top, #d5485f 0%, #ba0724 100%);
    background: -webkit-linear-gradient(top, #d5485f 0%,#ba0724 100%);
    background: linear-gradient(to bottom, #d5485f 0%,#ba0724 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5485f', endColorstr='#ba0724',GradientType=0 );
}
.ribbon.r_red:after {
    border-color: #ba0724 transparent transparent transparent;
}
.r_green {
    background: #83b04f;
    background: -moz-linear-gradient(top, #83b04f 0%, #70a730 100%);
    background: -webkit-linear-gradient(top, #83b04f 0%,#70a730 100%);
    background: linear-gradient(to bottom, #83b04f 0%,#70a730 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83b04f', endColorstr='#70a730',GradientType=0 );
}
.ribbon.r_green:after {
    border-color: #70a730 transparent transparent transparent;
}
.r_brown {
    background: #df8a6c;
    background: -moz-linear-gradient(top, #df8a6c 0%, #c87253 100%);
    background: -webkit-linear-gradient(top, #df8a6c 0%,#c87253 100%);
    background: linear-gradient(to bottom, #df8a6c 0%,#c87253 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#df8a6c', endColorstr='#c87253',GradientType=0 );
}
.ribbon.r_brown:after {
    border-color: #c87253 transparent transparent transparent;
}
.tagIcon.type1 {
    border: #172d80 1px solid;
    background-color: #172d80;
    color: #fff;
}
.tagIcon.kyushu {
    background-color: #4fb0e7;
    color: #fff;
    border: #4fb0e7 1px solid;
}
p.single a {
    color: #172d80;
    border: 1px solid #172d80;
}
p.dub a {
    color: #FFFFFF;
    background: #172d80;
}
    
    
.detail_box {
	width: 100%;
	display:flex;
  flex-flow: column;
	margin: 15px auto 0;
    padding-bottom: 30px;
}
.detail_box li {
    width:100%;
    background: url(../images/detail_bg_smp.jpg);
    background-size: cover;
    padding: 10px;
    }
.detail_box dl dt {
   padding: 10px 0;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
.detail_box dl dd {
   padding: 10px 5px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    }
    
.planInner h2 {
    text-align: center;
    margin-bottom: 30px;
    clear: both;
    padding: 13px;
    background: 0 0;
    background-color: rgba(0, 0, 0, 0);
    background-color: #e6a061;
    /*border-bottom: #8f7e39 2px solid;*/
    position: relative;
    z-index: 2;
    text-align: center;
}

/*表示ラベル*/
.accordion_tab label {
position: relative;
display: block;
padding-left:15px;
font-weight: bold; 
line-height: 3;
cursor: pointer;
background-color: #839b5c; /*背景色*/
border-radius: 8px; /*角を丸める*/
    margin: 0 20px 20px;
    color: #fff;
    text-align: center;
}
.accordion_tab label.red {
background-color: #ba0724;
}
.accordion_tab label.green {
    background-color: #70a730;
}
.accordion_tab label.brown {
    background-color: #c87253;
}
/*内容*/
.accordion_contents {
color: #000; /*開いた時の内容　文字色*/
max-height: 0;
overflow: hidden;
transition: max-height .50s;
}
.accordion_contents a{
text-decoration:none;
}
/* クリック時に開く */
input:checked ~ .accordion_contents {
max-height: 100%;
}
/* ラベルに「+」アイコン */
.accordion_tab label::after {
position: absolute;
right: 0;
top: 0;
display: block;
width: 3em;
height: 3em;
line-height: 3;
text-align: center;
transition: all .50s;
}
/* 「+」アイコンのアクション*/
.accordion_tab input[type=checkbox] + label::after {
content: "+";
}
.accordion_tab input[type=checkbox]:checked + label::after {
/*transform: rotate(300deg); 回転させる*/
content: "-";
}
	
}

/*760px以上*/ /* pc */
@media screen and (min-width: 760px),print {
/* CSS */
	
.textYet{
		text-align: center;
		margin: 20px 0;
		font-size: 16px;
	    padding: 20px 0 40px;
	}
	
/* ------------------------------------------
	title
------------------------------------------ */
#title{
	width:100%;
	background:#fff url(../images/bg.jpg) no-repeat 50% 50%;
	background-size: cover;
	text-align:center;
	height:700px;

}

#title h2{
margin:0 auto;
padding:0;
width: 950px;
text-align: right;
}
#title h2 img{
margin:0;
padding:0 0;
width: 950px;
}

.background {
    background: url(../images/back.png) #e4ecfc;    
    }
.map {
    width:970px;
    margin:20px auto 40px;
    }
.time {
    width:970px;
    margin:20px auto 60px;
    }
    
    
/*おすすめ旅行プラン*/
.ttl-box {
    width:970px;
    margin:0 auto 20px;
    }
.ttl-box h2 {
    padding: 30px 0 0px;
    border-bottom: 3px solid #e6a061;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    }
.ttl-box h2 span {
    font-size: 40px;
    font-weight: bold;
    color: #483322;
    margin:0 0 0px 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    }
.ttl-box h2.detail span {
    margin-bottom: 15px;    
    }
.r_red {
    background: #d5485f;
    background: -moz-linear-gradient(top, #d5485f 0%, #ba0724 100%);
    background: -webkit-linear-gradient(top, #d5485f 0%,#ba0724 100%);
    background: linear-gradient(to bottom, #d5485f 0%,#ba0724 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5485f', endColorstr='#ba0724',GradientType=0 );
}
.ribbon.r_red:after {
    border-color: #ba0724 transparent transparent transparent;
}
.r_green {
    background: #83b04f;
    background: -moz-linear-gradient(top, #83b04f 0%, #70a730 100%);
    background: -webkit-linear-gradient(top, #83b04f 0%,#70a730 100%);
    background: linear-gradient(to bottom, #83b04f 0%,#70a730 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83b04f', endColorstr='#70a730',GradientType=0 );
}
.ribbon.r_green:after {
    border-color: #70a730 transparent transparent transparent;
}
.r_brown {
    background: #df8a6c;
    background: -moz-linear-gradient(top, #df8a6c 0%, #c87253 100%);
    background: -webkit-linear-gradient(top, #df8a6c 0%,#c87253 100%);
    background: linear-gradient(to bottom, #df8a6c 0%,#c87253 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#df8a6c', endColorstr='#c87253',GradientType=0 );
}
.ribbon.r_brown:after {
    border-color: #c87253 transparent transparent transparent;
}
.tagIcon.type1 {
    border: #172d80 1px solid;
    background-color: #172d80;
    color: #fff;
}
.tagIcon.kyushu {
    background-color: #4fb0e7;
    color: #fff;
    border: #4fb0e7 1px solid;
}
p.single a {
    color: #172d80;
    border: 1px solid #172d80;
}
p.dub a {
    color: #FFFFFF;
    background: #172d80;
}
    
    
.detail_box {
	width: 970px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	margin: 40px auto 0;
    padding-bottom: 60px;
}
.detail_box li {
    width:32.7%;
    background: url(../images/detail_bg.jpg);
    padding: 10px;
    }
.detail_box dl dt {
   padding: 10px 0;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
.detail_box dl dd {
   padding: 10px 5px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    }
.detail {
    margin-top:30px;    
    }
    
    
/*アコーディオン開閉表示*/
.accordion_tab {
position: relative;
color: #fff;
overflow: hidden;
    margin:0 auto;
    padding-bottom: 15px;
    width:950px;
    box-sizing: border-box;
}
.accordion_tab input {
position: absolute;
opacity: 0;
z-index: -1;
}

/*表示ラベル*/
.accordion_tab label {
position: relative;
display: block;
padding-left:15px;
font-weight: bold; 
line-height: 3;
cursor: pointer;
background-color: #839b5c; /*背景色*/
border-radius: 8px; /*角を丸める*/
    margin-bottom: 20px;
    width:330px;
margin-left: 300px;
    text-align: center;
}
.accordion_tab label.red {
background-color: #ba0724;
}
.accordion_tab label.green {
    background-color: #70a730;
}
.accordion_tab label.brown {
    background-color: #c87253;
}
/*内容*/
.accordion_contents {
color: #000; /*開いた時の内容　文字色*/
max-height: 0;
overflow: hidden;
transition: max-height .50s;
}
.accordion_contents a{
text-decoration:none;
}
/* クリック時に開く */
input:checked ~ .accordion_contents {
max-height: 100%;
}
/* ラベルに「+」アイコン */
.accordion_tab label::after {
position: absolute;
right: 0;
top: 0;
display: block;
width: 3em;
height: 3em;
line-height: 3;
text-align: center;
transition: all .50s;
}
/* 「+」アイコンのアクション*/
.accordion_tab input[type=checkbox] + label::after {
content: "+";
}
.accordion_tab input[type=checkbox]:checked + label::after {
/*transform: rotate(300deg); 回転させる*/
content: "-";
}
    
}