@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

img{
	width: 100%;
	vertical-align:bottom; /* img要素にここを指定 */
}

a:link {
	text-decoration: none;	
}

a:hover img {
    opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

:root {
--orange: #ffa100;
--yellow: #ffc500;
--brown:#550020;
--red:#d93828;
}
/*================================================
 *  一般・共通設定
 ================================================*/

body {
font-family: 'M PLUS 1p', sans-serif;
color: var(--browm);
	line-height: 1.8;
	word-wrap: break-word;
    font-size: 100%;
	}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){

body {
    font-size: 90%;
	}
	}
/* -------------end------------- */



/*================================================
 *  リンクスタイル
 ================================================*/
a:hover {
	opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}



/* ========================================

    ■ slide

======================================== */
.slide_wrap {position: relative;}

.slide_upper {
position: absolute;
        width: 50%;
 top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);

max-width: 800px;
 
}

.slide_upper img {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.8));
}


/* フェードイン(初期値) */
.moveup div {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
	
}
.moveup div.move {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}



/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.slide_upper {
position: absolute;
    width: 80%;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}
}
/* -------------end------------- */


/* ========================================

    ■ common

======================================== */

.contents{
	max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.contents{
	width: 90%;
    box-sizing: border-box;
}
	}
/* -------------end------------- */







/*================================================
 *  con1 
 ================================================*/


.con1_outside{
padding-top: 70px;
padding-bottom: 70px;
background-color: var(--orange);
color: var(--brown);
}

.con_title{text-align: center;
margin-bottom: 40px;
color: var(--brown);
font-weight: 700;
font-size: 200%;    
}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.con_title{
margin-bottom: 30px;
line-height: 1.4;
font-size: 150%; 
text-align: left;
}
}
/* -------------end------------- */

.con_title {
  position: relative;
padding-bottom: 20px;
}

.con_title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, var(--brown), var(--brown) 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, var(--brown), var(--brown) 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



/* 背景を画面いっぱい */
.con1_section {
  width: 100%;

  position: relative;
  overflow: hidden; /* はみ出し見せる */
}

/* 背景フル幅 */
.con1_section {
  background: #eea43a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* 最大幅＋中央寄せ */
.con1_flex_box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
	
}

/* テキストは普通に幅指定 */
.con1_text_box {
  width: 48%;
  z-index: 2;
}

/* 画像を右外へ絶対配置ではみ出させる */
.con1_img {
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(50%); /* ← これ！強制ではみ出す */
	width: 65vw;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.con1_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.con1_text {
margin-bottom: 20px;
}

.con1_text_bold{font-weight: 700;}

/* スマホ時 */
@media (max-width: 768px) {
  .con1_flex_box {
    flex-direction: column;
    max-width: none;
    padding: 0px;
  }

  .con1_text {
    width: 100%;
  }

  .con1_img {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 20px;
	  border-radius: 10px;
  }

  .con1_img img {
    height: auto;
  }
}


.con1_txt{margin-bottom: 30px;}


/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.con1_outside{
padding-top: 40px;
padding-bottom: 40px;
}
.con1_flex_box > li{
width: 100%;}
}
/* -------------end------------- */


/*================================================
 *  con2ツアー
 ================================================*/
.con2_outside{
padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--yellow);
}

.con2_flex_box{display: flex;
justify-content: space-between;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
	
}

.con2_flex_box li {
  width: 32%;


}

.con2_tour_day{color: var(--yellow);
text-align: center;
background-color: var(--brown);
	padding: 5px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;	
	font-weight: 700;
	font-size: 113%;
}

.con2_tour_name_wrap {
  padding: 20px;
  color: var(--brown);
  background-color: #f5e0b9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

	 
}

.con2_tour_name{
	
	font-weight: 700;
	font-size: 113%;
	line-height: 1.6;
	margin-bottom: 10px;
}

.con2_tour_more{
	text-align: right;
}
.con2_tour_more::after{content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
	padding-left: .5em;


}

.modal_tour_title{font-weight: 700;
	font-size: 118%;
	line-height: 1.6;
	margin-bottom: 10px;}

.modal_tour_txt{margin-bottom: 30px;}


.tour_dl {
margin-bottom: 30px;
}


.tour_dl dt {
	clear: left;
	float: left;
	width: 8em;
}

.tour_dl dd {
	padding-left: 8em;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color:rgba(85,0,32,0.30);}

.tour_dl_fr dt {
	width: 18em;
}

.tour_dl_fr dd {
	padding-left: 18em;
}

.modal_tour_btn{width: 80%;
padding: 10px;
	background-color: #d93828;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 30px;
	border-radius: 10px;
}

.modal_tour_btn_meitetsu{padding: 20px;
}

.modal_tour_btn a{display: block;
	color: var(--yellow);
	font-weight: 700;
	 display: block;
  
  position: relative;
  padding-right: 1.5em;
  transition: color 0.3s ease;
}
.modal_tour_btn_meitetsu a{font-size: 125%
} 

.modal_tour_btn a::after{content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}


.con2_main_tour_box{
	color: var(--brown);
	/*background-color: #fff3c3;*/
	background-color: #f5e0b9;
border-radius: 10px;}

.con2_main_tour_box_inner{
	padding-top: 30px;
	padding-right: 50px;
	padding-left: 50px;
	padding-bottom: 50px;
	
}

.con2_main_tour_name{font-weight: 700;
	font-size: 150%;
	line-height: 1.6;
	margin-bottom: 20px;}

.con2_main_tour_img_flex{
display: flex;
justify-content: space-between;
		margin-bottom: 20px;
}

.con2_main_tour_img_flex > li:first-child{
width: 66.6%;
}

.con2_main_tour_img_flex > li:last-child{
width: 33.4%;
}

.con2_main_tour_img_inner_flex{display: flex;
flex-direction: column;
	}
	
.con2_main_tour_img_inner_flex > li{width: 100%;
	}

.con2_main_tour_end_txt{
	text-align: center;
	margin-bottom: 30px; font-weight: 700;
	font-size: 113%;
	line-height: 1.6;}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.con2_outside{
 padding-top: 40px;
    padding-bottom: 40px;
}
    
.con2_flex_box{flex-wrap: wrap;
margin-bottom: 30px;
	
}

.con2_flex_box > li {
  width: 100%;
}
	
	.con2_flex_box > li:nth-child(-n+2) {
margin-bottom: 30px;
}
	
	


.tour_dl dt {
	clear: none;
	float: none;
	width: 100%;
}

.tour_dl dd {
	padding-left: 0em;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color:rgba(85,0,32,0.30);}

.modal_tour_btn{width: 100%;
	box-sizing: border-box;}



.con2_main_tour_box_inner{
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	
}

.con2_main_tour_name{	font-size: 125%;}

.con2_main_tour_img_flex{
flex-wrap: wrap;
}

.con2_main_tour_img_flex > li:first-child{
width: 100%;
}

.con2_main_tour_img_flex > li:last-child{
width: 100%;
}
	
.con2_main_tour_img_inner_flex{display: flex;
	justify-content: space-between;
	flex-direction: row;
	}
	
.con2_main_tour_img_inner_flex > li{width: 50%;
	}

.con2_main_tour_end_txt{
	text-align: center;
	margin-bottom: 30px; font-weight: 700;
	font-size: 113%;
	line-height: 1.6;}

}
/* -------------end------------- */





/*================================================
 *  con3 map
 ================================================*/
.con3_outside{
    padding-top: 70px;
    padding-bottom: 70px;
	background-color: #ffa100;

}

.pdf-download-btn_wrap{
text-align: right;	
}
.pdf-download-btn {
  display: inline-block;
  background-color: var(--brown); /* メインカラーに合わせて変更可能 */
  
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;

}

.pdf-download-btn a {
color: var(--yellow);
}

.pdf-download-btn i {
  margin-right: 8px;
}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
    
.con3_outside{
    padding-top: 40px;
    padding-bottom: 40px;
}
}
/* -------------end------------- */

/*================================================
 *  con4
 ================================================*/
.con4_outside{

     padding-top: 70px;
	background-color:#4d0a1f;

}

.project_box {
    position: relative;
    padding:  30px;
	padding-top: 40px;
    border-radius: 10px;/*角の丸み*/
	color: var(--yellow);
	border: 1px solid var(--yellow);
	margin-bottom: 70px;
	
}
.project_box .project_box_title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    top: -16px;
    line-height: 1;
    background: var(--yellow);
    color: var(--brown);
    font-weight: 700;
    padding-top: 6px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 6px;
    border-radius: 3px;/*角の丸み*/
    text-align: center;
    width:60%;
	font-size: 125%;
	
}

.project_box .project_box_title_fr{
width:70%;}

.con4_txt{margin-bottom: 20px;}

.con4_img_flex{display: flex;
justify-content: space-between;}

.con4_img_flex li{width : calc(100% / 6) ;
 }

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.con4_outside{
     padding-top: 50px;

}


  .project_box {
    position: relative;
    padding:  20px;
	padding-top: 40px;
margin-bottom: 30px;
	
}
.project_box .project_box_title{
top: -30px;
line-height: 1.2;
width:80%;
font-size: 125%;
	
}  
	
.project_box .project_box_title_fr{
width:90%;
	font-size: 119%;}

.con4_img_flex{display: flex;
justify-content: space-between;
	flex-wrap: wrap;}

.con4_img_flex li{width : calc(100% / 3) ;
 }

}
/* -------------end------------- */

/*================================================
 *  con5
 ================================================*/
.con5_outside{ 
padding-top: 70px;
padding-bottom: 70px;
background-color: #ffc500;}

.con5_title_wrap{
	background-image: url(../img/con5_title_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}

.con5_title_wrap_fr{
	background-image: url(../img/con5_title_bg_fr.png);
}

.con5_txt{font-size: 125%;
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	color: #d93828;
}


/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.con5_outside{ 
padding-top: 40px;
padding-bottom: 40px;}
	
.con5_title_wrap{
	background-image: none;

}
	
.con5_txt{font-size: 125%;
	text-align: left;
}

}
/* -------------end------------- */


/*================================================
 *  footer
 ================================================*/
.footer_outside{
    background-color: #550020;
    color: var(--yellow);
}

.footer{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	width: 96%;
	padding-top: 30px;
	padding-bottom: 50px;
    position: relative;
	}

.footer_list{margin-bottom: 20px;
	font-size: 88%;
}


.footer_mail{
border: 1px solid var(--yellow);
width: 35%;
	min-width: 15em;
	text-align:center;
	padding: 5px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.footer_mail a{color: var(--yellow);
	display: block;
}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
  .footer{
	width: 90%;
	  padding-bottom: 70px;
	}
    
.footer_mail{
width: 100%;
}


}
/* -------------end------------- */


/*================================================
 *  COPY
 ================================================*/
address{
	color: var(--yellow);
	text-align: center;
	font-size: 75%;
    font-weight: 300;
}





/* ====================================================
　pagetop
==================================================== */

.pagetop {
    display: none;
    position: fixed;
    bottom: 5px;
    right: 15px;
	z-index: 1000;
}
.pagetop a {
    display: block;
   color: #fff3c3;
    font-size: 300%;
	line-height: 1.0;
}
.pagetop a:hover {
display: block;}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.pagetop {
    right: 20px;
}

}
/* -------------end------------- */

/* ====================================================
　改行位置
==================================================== */
@media print, screen and (min-width: 768px) {
br.sp { display: none; }
br.pc { display: inline; }
}
@media screen and (max-width: 767px) {
br.sp { display: inline; }
br.pc { display: none; }
}


/* PC向けレイアウトの指定：961px以上では固定レイアウト */
.miniimage { display: none; }  /* miniを非表示 */
.bigimage  { display: block; 
line-height: 0px;} /* bigを表示 */
	
@media only screen and (max-width: 768px) {
.miniimage {
	display: block;
	line-height: 0px;
} /* miniを表示 */
.bigimage  { display: none; }   /* bigを非表示 */
}


/*  PCのみに表示するメニュー*/
.only_smt { display: none; }  /* miniを非表示 */
.only_pc  { display: block; 
} /* bigを表示 */
	
/*  スマホのみに表示するメニュー*/
@media only screen and (max-width: 768px) {
.only_smt {
	display: block;
	
} /* miniを表示 */
.only_pc  { display: none; }   /* bigを非表示 */
}



.lang_btn,
.lang_btn_en{display: flex;
justify-content: flex-start;
position: absolute;
top:10px;
right: 10px;
z-index: 9999999;}

.lang_btn li:first-child,
.lang_btn_en li:last-child{
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
background-color:rgba(255,255,255,0.50);
    background-color: var(--brown);
    color: #ffffff!important;
 }


.lang_btn li:last-child a,
.lang_btn_en li:first-child a{
padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    color: #ffffff;
    display: block;
}

.lang_btn li:last-child a,
.lang_btn_en li:first-child a{
background-color: #B50D23;
}

.lang_btn li:last-child a:hover,
.lang_btn_en li:first-child a:hover{
background-color: rgba(156,96,21,1.00);
color: rgba(255,255,255,1.00);
opacity: 1.0;
filter: alpha(opacity=100);
-ms-filter: "alpha(opacity=100)";}

/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.lang_btn,
.lang_btn_en{top:5px;
right: 5px;}

}
/* -------------end------------- */

/* ====================================================
　page_btm_fixed
==================================================== */
#page_btm_fixed{
  position: fixed;
    right: 100px;
z-index: 99999;}


.page_btm_fixed_flex{display: flex;
justify-content: flex-end;

     
}

.page_btm_fixed_flex li{
width: 100%;
text-align: center;
box-sizing: border-box;

}


.footer_bt_michi {
     background-color: #d93828;
    position: relative;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 12em;
    line-height: 1.4;
}


.footer_bt_michi a{
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
    display: block;
	color: var(--yellow);
	font-weight: 700;
    font-size: 113%;
}





/* 小さい画面用の設定-------------- */
@media (max-width:767px){
#page_btm_fixed{
right: 80px;}

.footer_bt_michi {
border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    line-height: 1.4;
}


.footer_bt_michi a{
    padding-top: 15px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 15px;
}



}
/* -------------end------------- */



/* スクロール */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5em;
  color: #ffffff;
  z-index: 100;
  animation: bounce 2s infinite;
  text-decoration: none;
  text-align: center;
}

a.scroll-down {
color: #ffffff;
}

.scroll_txt {
font-size: 40%;
line-height: 1.0;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

