@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------
--------------------------------------------------------------------
旅行情報ナビページ共通css
--------------------------------------------------------------------
------------------------------------------------------------------*/
a {
    text-decoration:none;
}
a img{
    backface-visibility: hidden;
}
/* PCで表示・SPで非表示 ----------------------------------------------------*/
.br_pc { display:block; }
.br_sp { display:none; }


/*------------------------------------------------------------------
見出し
------------------------------------------------------------------*/

/* section-ttl */
.section-ttl {
    font-size:3rem !important;
    color:#398AD0;
    display: flex;
    align-items: center;
    font-weight:bold !important;
    margin-top: 6rem;
    margin-bottom: 3rem;
}
.section-ttl:before,
.section-ttl:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #444;
    display: block;
}
.section-ttl:after {
    margin-left: 2%;
}
.section-ttl:before {
    margin-right: 2%;
}

/* section-sttl */
.section-sttl{
    text-align: center;
    background: #398AD0;
    margin-bottom: 4rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    padding: 1rem 0;
    position: relative;
}
.section-sttl:before,
.section-sttl:after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #398AD0;
}
.section-sttl:before{
    top: -2px;
}
.section-sttl:after{
    bottom: -2px;
}
.post-section ol{
  margin-top: 3rem;
}
.post-section ol li{
  line-height: 1.4;
  list-style: decimal inside;
}
.post-section ol li+li{
  margin-top: 0.8rem;
}
.section .fw-modal-header h3:before {
	content: none;
}
.section .fw-modal-body h4 {
	color: #14171d;
	border-bottom: 0;
}
.section .rdrDateDisplay {
	margin: 0.833em !important;
}



/*------------------------------------------------------------------
index
------------------------------------------------------------------*/

/* ナビのテーマ一覧 */
section.theme-nav{
    margin-bottom: 8rem;
}
.theme-anklist{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -2rem;
}
.theme-anklist:after,
.theme-anklist:before{
    content:"";
    display:block;
    width: 23.5%;
    height:0;
}
.theme-anklist:before{
    order:1;
}
.theme-anklist .item{
    width: 23.5%;
    padding-bottom: 2rem;
    text-align: center;
}
.theme-anklist .item a{
    font-size: 1.6rem;
    font-weight: 500;
    color: #333333;
    display: block;
    border: 1px solid #DDDDDD;
    line-height: 1;
    padding: 2rem;
    text-decoration: none;
    position: relative;
    transition: all .2s ease;
}
.theme-anklist .item a:hover{
    border-color: #398AD0;
}
.theme-anklist .item a:before {
    font-family: 'jttweb' !important;
    content: '\e902';
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -0.4rem;
    font-size: 1rem;
    color: #ffffff;
    left: 1.8rem;
    transform: rotate(90deg) scale(0.8);
}
.theme-anklist .item a:after {
    display: block;
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 1.7rem;
    background: #398AD0;
    position: absolute;
    top: 50%;
    margin-top: -0.8rem;
    left: 1.5rem;
}

/* テーマセクション */
.theme-section+.theme-section{
    margin-top: 8rem;
}
.theme-section .theme-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -3rem;
}
.theme-section .theme-list .item{
    width: 48.5%;
    position: relative;
    border: 1px solid #DDDDDD;
    border-top: none;
    margin-bottom: 3rem;
}
.theme-section .theme-list .item a{
    display: block;
    text-decoration: none;
    color: #333;
    transition: all .2s ease;
}
.theme-section .theme-list .item a:hover{
    opacity: 0.7;
}
.theme-section .theme-list .item-img{
    margin: 0 -1px;
}
.theme-section .theme-list .item-body{
    padding: 2rem 2rem 6rem;
}
.theme-section .theme-list .item-ttl{
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-left: 3px solid #398AD0;
}
.theme-section .theme-list .item-txt{
    line-height: 1.7;
}
.theme-section .theme-list .item-btn{
    right: 2rem;
    bottom: 2rem;
    position: absolute;
    padding-left: 2.3rem;
}
.theme-section .theme-list .item-btn:before {
    font-family: 'jttweb' !important;
    content: '\e902';
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -0.7rem;
    font-size: 1rem;
    color: #ffffff;
    left: 0.3rem;
    transform: scale(0.8);
}
.theme-section .theme-list .item-btn:after {
    display: block;
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 1.7rem;
    background: #398AD0;
    position: absolute;
    top: 50%;
    margin-top: -0.9rem;
    left: 0;
}


/*------------------------------------------------------------------
記事
------------------------------------------------------------------*/

/* post-head */
.post-head{
    position: relative;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.post-head .category{
    background: #398AD0;
    display: inline-block;
    line-height: 1;
    color: #ffffff;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}
.post-head .ttl{
    text-align: left;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid #398AD0;
}
.post-head .sns-list{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}
.post-head .sns-list .fb-like span{
    width: 80px !important;
}
.post-head .sns-list .fb-like iframe{
    width: 100% !important;
}
.post-head .sns-list li+li{
    margin-left: 0.5rem;
}

/* post-mv */
.post-mv{
    margin-bottom: 5rem;
}

/* post-body */
.post-body{
    max-width: 80rem;
    display: block;
    margin: 0 auto 10rem;
}

/* post-anklist */
.post-anklist{
    margin-top: 5rem;
    border: 5px solid #EFEFEF;
    padding: 3.5rem 4rem;
    margin-bottom: 7rem;
    counter-reset: num;
}
.post-anklist .item:before{
    font-size: 1.6rem;
    font-weight: 700;
    counter-increment: num;
    content: counter(num)".";
    padding-right: 0.5rem
}
/*今回の記事だけ*/
.post-anklist .item:first-child::before{
    display: none;
}
.post-anklist .item:nth-child(n+12):before{
    display: none;
}
/*ここまで*/
.post-anklist .item +.item{
    margin-top: 1.8rem;
}
.post-anklist .item a{
    color: #333333;
    font-weight: 700;
    font-size: 1.6rem;
    padding-right: 2rem;
    position: relative;
    transition: all .2s ease;
}
.post-anklist .item a:hover{
    color: #398AD0;
}
.post-anklist .item a:before {
    font-family: 'jttweb' !important;
    content: '\e902';
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -0.8rem;
    font-size: 1.2rem;
    color: #398AD0;
    right: 0;
    transform: rotate(90deg);
}

.post-anklist .item a.sub-item{
    margin-left: 1.7rem;
}

/* post-section */
.post-section{
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.post-section+.post-section{
    margin-top: 8rem;
}

/* h2 */
.post-section h2{
    font-size: 2.4rem!important;
    font-weight: 700!important;
    color: #398AD0!important;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid #E6E6E6;
    margin-bottom: 3rem!important;
    position: relative;
    margin-top: 4rem;
    text-align: left!important;
}
.post-section h2:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 5rem;
    height: 2px;
    background: #398AD0;
}

/* h3 2022追記 */
.post-section h3{
    font-size: 1.8rem !important;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.5rem  !important;
    color: #003f6c;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.post-section h3:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
    background: #398AD0;
}

/* h4 h5 */
.post-section h4, .post-section h5{
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #398AD0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #398AD0;
}

/*丸つけたh4スタイル*/
.post-section h4.item-heading{
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    padding-left: 1.4rem;
}
.post-section h4.item-heading::before{
    position: absolute;
    top: 0.8rem;
    left: 0;
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #398AD0;
    /* background: #333333; */
}

.post-section img{
    margin-top: 3rem;
}
.post-section p{
    margin-top: 2.5rem;
    line-height: 1.72;
}
.post-section *:first-child,
.post-section h2 + *,
.post-section h3 + *,
.post-section h4 + *{
    margin-top: 0;
}
.section .fw-top .fw-modal-container {
	margin-top: -40px;
}

.post-section a{
    color: #337AB7;
    text-decoration: underline;
}
.post-section a:hover{
    text-decoration: none;
}

.post-section .col1{
    margin-top: 3rem;
    padding: 3rem;
    border: 1px solid #E6E6E6;
}

.post-section ul{
    margin-top: 3rem;
}
.post-section ul li{
    padding-left: 1.2rem;
    line-height: 1.4;
    position: relative;
}
.post-section ul li:before{
    position: absolute;
    top: 0.6rem;
    left: 0;
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    /* background: #398AD0; *//*デフォルトはこっち*/
    background: #333333;
}
/* 白丸リスト */
.post-section ul.circle-white > li::before {
    content: none;
}
.post-section ul li+li{
    margin-top: 0.8rem;
}
/* ol内のulは数字を表示しない */
.post-section ol ul li{
    list-style: none;
}
.post-section .cap{
    font-size: 1.2rem;
    text-align: right;
    margin-top: 0.8rem;
}
.post-section .bt10{
    margin-top: 1rem;
}




/* total */
.post-section.total{
    border-top: 4px solid #555555;
    background: #f5f5f5;
    /* border-top: 4px solid #398AD0;
    background: #F9FBFE; */
    padding: 3rem;
}
.post-section.total h4{
    color: #555555;
    border-bottom: 1px solid #555555;
}

.post-section.total h2{
    color: #000;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.5rem;
}
.post-section.total h2:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
    background: #398AD0;
}
.section .section-bottom .plan-btn {
	background: #cc0000;
    color: #fff !important;
    font-weight: bold;
    padding: 6px 2.8em;
    border-radius: 5px;
	width: 310px;
}
.section .section-bottom .setplan-btn {
  background: #cc0000;
  color: #fff !important;
  font-weight: bold;
  padding: 6px 2.8em;
  border-radius: 5px;
  width: 75%;
  text-decoration: none !important;
  line-height: 20px;
}
.section .section-bottom .setplan-btn:before {
	content: "";
	background-image: url(/plan/area/kyoto/autumn/lightup/images/ic01.webp);
    position: absolute;
    width: 27px;
    height: 27px;
    top: 4px;
    left: 10px;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
	transform: rotate(-35deg);
}
.section .section-bottom .setplan-btn:hover {
  cursor: pointer;
}
.section .section-bottom .setplan-btn:after {
  font-family: 'jttweb' !important;
  content: '\e902';
  position: absolute;
  font-size: 0.9em;
  right: 1rem;
  top: 50%;
  margin-top: -1rem;
}

.section .btn-more {
    text-align: left;
	border: none;
	text-decoration: underline !important;
}
/* .section .btn-more:before {
	content: "";
	background-image: url(/plan/area/kyoto/autumn/lightup/images/ic02.webp);
    position: absolute;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    left: -7px;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
} */
.section .btn.btn-more:hover {
	text-decoration: none!important;
	opacity: 1;
}


/*丸みがあるリンクボタン*/
.section .btn-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.section .round-btn {
    font-weight: bold;
    text-align: center;
    width: 300px;
}

.section .round-btn a {
    padding: 10px 12px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    display: block;
    transition: 0.3s;
    text-decoration: none;
    width: 100%;
    margin: 0 auto;
}
.section .round-btn a:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 3px solid;
    border-right: 3px solid;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(45deg);
}

.section .round-btn.orange a {
    background: #ffa044;
    border: 2px solid #ffa044;
}
.section .round-btn.orange a:hover{
    background: #fff;
    color: #ffa044;
}

.section .round-btn.blue a {
    background: #6db3e8;
    border: 2px solid #6db3e8;
}
.section .round-btn.blue a:hover{
    background: #fff;
    color: #6db3e8;
}




/* .post-other */
.post-other{
    background: #FAFAFA;
}
.other-inner{
    padding: 8rem 0;
    display: block;
    margin: 0 auto;
    max-width: 80rem;
}
.post-other .other-inner h4{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.other-list{
    border-top: 1px solid #E0E0E0;
}
.other-list .item{
    border-bottom: 1px solid #E0E0E0;
}
.other-list .item a{
    color: #333333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    transition: all .2s ease;
}
.other-list .item a:hover{
    opacity: 0.6;
}
.other-list .item-img{
    width: 27.5%;
}
.other-list .item-body{
    width: 70%;
}
.other-list .item-ttl{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: 0.8rem;
    border-left: 3px solid #398AD0;
    line-height: 1.3;
}


/*2022.02 コンテンツSEO追記*/
.block {
    margin-top: 4em;
}
#contents {
    max-width: inherit;
}
.post-head {
    margin-top: 5rem;
}
.post-section h3 {
 margin-top: 2.8em;
}
.spotImg {
    text-align: center;
}
.spotImg a {
    display: inline-block;
    transition: 0.5s;
}
.spotImg a:hover {
    opacity: 0.7;
}
.spotImg .provide {
    margin-left: 10px;
}
.facility {
    margin-top: 20px;
}
.facility_table {
    width: 100%;
}
.facility_table th {
    white-space: nowrap;
    width: 6em;
    padding: 10px 0;
    text-align: left;
    vertical-align: top;
}
.facility_table-02 th {
    width: 6em;
}
.facility_table td {
    padding: 10px;
}

.facility_warning {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
}
.facility_warning .indent {
    display: block;
}
.spot-first {
    margin-top: 4rem !important;
}
.spot + .spot {
    margin-top: 6rem;
}
.facility_hrImg {
    width: 100%;
    margin-top: 20px !important;
}
.facility_hrImg td {
    padding: 5px;
    width: 50%;
    text-align: center;
}
.facility_hrImg-adjustL td:first-child {
    width: 56%;
}
.facility_hrImg-adjustR td:first-child {
    width: 47.5%;
}
.facility_hrImg-adjustR td:last-child {
    width: 52.5%;
}

.facility_hrImg td img {
    width: 100%;
}
.facility_hrImg figcaption {
    padding-top: 10px;
}
.mt0 {
    margin-top: 0 !important;
}
.pt10 {
    padding-top: 10px !important;
}

/*テキストの字下げ*/
.list-indent{
    margin-left: 1.2em;
}

.tCenter {
    text-align: center;
}
.text-red {
    color: red;
}
.bgLine {
    background:linear-gradient(transparent 50%, #ffff99 50%);
}
.tRight {
    text-align: right;
}
.fBold {
    font-weight: bold;
}
.btn {
    color: #003f6c !important;
    text-decoration: auto !important;
}
.fRed {
    color: red;
}
.toTop {
    margin: 25px auto;
}
.toTop a {
    color: #398AD0;
    border: 1px solid #398AD0;
    border-radius: 4px;
    position: relative;
    display: block;
    text-align: center;
    margin: 0 0 0 auto;
    font-weight: bold;
    padding: 7px 10px;
    width: 180px;
    text-decoration: none;
}
.section .section-bottom a {
    position: relative;
}
.section .section-bottom a:after {
    font-family: 'jttweb' !important;
    content: '\e902';
    position: absolute;
    font-size: 0.9em;
    right: 1rem;
    top: 50%;
    margin-top: -1rem;
}
.section .contents_bnr p {
	font-size: 1.4rem;
}
.section .contents_bnr a {
	display: inline-block;
	margin-top: 5px;
    position: relative;
	transition: 0.5s;
}
.section .contents_bnr a:before {
	content: "";
	position: absolute;
	margin: auto;
	top: 50%;
	right: -12px;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: #398ad0;
	transform: translateY(-50%);
	z-index: 1;
}
.section .contents_bnr a:after {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 7px;
	height: 7px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
	z-index: 2
}
.section .contents_bnr a:hover {
	opacity: 0.7;
}
/*------------------------------------------------------------------
.access-table テーブルデザイン
------------------------------------------------------------------*/
.access-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
}

.access-table th,
.access-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border: 1px solid #e6e6e6;
}

.access-table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
}

.access-table td {
  color: #555555;
  line-height: 1.6;
}

/* モーダルウィンドウ */
#ranking .modal-window {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	background-color: #fff;
	border-radius: 5px;
	z-index: 1005;
}
#ranking .gadget {
	padding: 0 30px 23px;
}
#ranking .gadget.pb10 {
	padding: 0 30px 10px;
}
#ranking .modal-note {
	width: 590px;
	padding: 0 30px 23px;
}
/* 閉じるボタン */
#ranking .button-close {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
}
#ranking .button-close span {
	display: block;
	width: 100%;
	padding-right: 10px;
    padding-top: 2px;
	border-radius: 5px 5px 0 0;
	font-size: 3.0rem;
	font-weight: bold;
	text-align: right;
	background-color: #fff;
	cursor: pointer;
}
#ranking .modal-window h3 {
  display: flex;
}
/* オーバーレイ */
#ranking .overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 1002;
}

/*------------------------------------------------------------------
ワンポイント！部分
------------------------------------------------------------------*/
.highlight_wrap {
	position: relative;
	margin: 43px 0 32px;
	padding: 30px 20px 16px;
	border: 1px solid #0069B8;
	border-radius: 3px;
}
.highlight_wrap h3.highlight_ttl {
	position: absolute;
	top: -19px;
	left: 16px;
	padding: 8px 14px;
	border-radius: 3px;
	color: #fff;
	background: #0069B8;
	font-weight: bold;
    font-size: 1.4rem !important;
}

.highlight_wrap h3.highlight_ttl::before {
	position: absolute;
	top: calc(100% - 6px);
	left: 20px;
	content: "";
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 13px solid #0069B8;

    margin-top: 0;
    background: initial;
}

.highlight_wrap .highlight_txt{
    /* font-weight: bold; */
}

/*------------------------------------------------------------------
FAQ
------------------------------------------------------------------*/
.question dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #003f6c;
}
.question dt:not(:first-child) {
  margin-top: 20px;
}
.question dd {
  margin-top: 10px;
}

/* 写真提供 */
figcaption .provide {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------
カラムレイアウト
------------------------------------------------------------------*/
/*デフォルト打ち消し*/
input[type=checkbox] + span::before{
    display: none;
}
input[type=checkbox] + span::after{
    display: none;
}
input[type=checkbox]:checked + span:after{
    display: none;
}

/*ここからオリジナル*/
.section .block-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.section .contents-item{
    border: #65AE06 solid 3px;
    border-radius: 20px;
    padding: 20px;
    margin-top: 28px;
    max-width: 525px;
    width: 100%;
}

.section .contents-item a.banner-image{
    transition: all .3s ease;
}
.section .contents-item a.banner-image:hover{
    opacity: 0.7;
}

.section .checkbox-list{
   display: block;
   margin-top: 20px;
}
.section .checkbox-list label{
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}
.section .checkbox-list label + label{
    margin-top: 10px;
}

.section .checkbox-list label span{
    padding-left: 0;
    cursor: initial;

    font-weight: bold;
    color: #65AE06;   
}

.section .checkbox-list label span .note{
    color: #333333;
    font-weight: normal;
}

/* チェックボックスのカスタムスタイル（見た目のみ） */
.section input[type=checkbox].checkbox_icon:checked {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #65AE06;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    background-color: #65AE06;
    flex-shrink: 0;
}

/* 常にチェックマークを表示 */
.section input[type=checkbox].checkbox_icon:checked::after {
    display: block;
    color: #fff;
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 7px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -60%) rotate(-45deg);
}


/*リンクボタン*/
.section .contents-btn_wrap{
    padding-top: 20px;
    margin-top: 10px;
}

.section .contents-btn_ttl {
    color: #FF6E14;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 150%;
    padding: 4px 16px;
    border-radius: 90px;
    border: 1px solid #FF6E14;
    background: #FFF;
    position: absolute;
    margin-top: -50px;
}
.section .contents-btn_ttl img {
    width: 10px;
}
.section .contents-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: #EB7F1B;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    transition: all .3s ease;
}
.section .contents-btn a {
    position: relative;
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    /* padding: 12px 16px 8px 32px; */
    padding: 12px 0 8px 0;
    max-width: 415px;
    width: 100%;
}
.section .contents-btn:hover {
    opacity: 0.7;
}

.section .contents-btn a span {
    font-size: 14px;
}
.section .contents-btn a::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 3px solid;
    border-right: 3px solid;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(45deg);
}

.section .contents-note{
    margin-top: 5px;
}


.section .plan-title{
    font-size: 1.8rem;
}

/*三つ並べる時用のレイアウト*/
.section .column-contents{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}

.section .column-contents .column-title{
    text-align: center;
    font-size: 1.3rem;
}

.section .column-contents .contents-item{
    margin-top: 30px;
}

.section .column-contents .column-title strong{
    font-size: 1.5rem;
}

.section .column-contents .checkbox-list label{
    font-size: 1.5rem;
}

.section .column-contents .contents-btn_ttl{
    font-size: 1rem;
    margin-top: -70px;
}

.section .column-contents .contents-btn a{
    font-size: 1.2rem;
}

.section .column-contents input[type=checkbox].checkbox_icon:checked{
    width: 20px;
    height: 20px;
}

.section .column-contents input[type=checkbox].checkbox_icon:checked::after{
    width: 11px;
    height: 4px;
}

/* PCサイズでの調整 - ボタン位置完全統一 */
@media (min-width: 768px) {
    .section .column-contents{
        display: grid;
        gap: 20px;
        align-items: stretch;
        grid-template-columns: repeat(3, 1fr);
    }

    .section .column-contents .contents-item{
        display: grid;
        grid-template-rows: 90px 260px 100px 64px;
        min-height: 480px;
    }

    .section .column-contents .checkbox-list{
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
    }
}

/*------------------------------------------------------------------
　　　　　　　　　　　検索窓
------------------------------------------------------------------*/
.post-search{
    margin-top: 2.8em;
}

.post-search h3{
    font-size: 1.8rem !important;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.5rem  !important;
    color: #003f6c;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.post-search h3:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
    background: #398AD0;
}

.new_plan_flex {
	align-items: end;
	display: flex;
	display: -webkit-flex;
	margin: 50px 0 -10px;
}
.search_new_plan {
	width: 50%;
	text-align: -webkit-center;
	margin: 0;
}
.search_new_plan p {
	width: calc(100% - 0%);
	position: relative;
	width: fit-content;
	padding: 12px 20px;
	border-radius: 5px;
	background: #fff;
	border: 2px solid #1c4e9c;
	z-index: 1;
}
.search_new_plan p:before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 15px;
	height: 15px;
	box-sizing: border-box;
	background: #fff;
	transform: rotate(135deg);
	translate: -50%;
	z-index: -3;
}
.search_new_plan p:after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 15px;
	height: 15px;
	box-sizing: border-box;
	border: 2px solid #1c4e9c;
	border-color: #1c4e9c #1c4e9c transparent transparent;
	transform: rotate(135deg);
	translate: -50%;
}
.search_new_plan .nomal {
	background: none;
	color: #333;
	font-weight: normal;
	font-size: 1.3rem;
}
#search-app .tab .tab-btn {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	height: 60px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.1;
}
#search-app .tab .tab-btn img {
	width: auto;
	height: 32px;
	margin-right: 20px;
}
#search-app .tab .tab-btn p {
	margin-top: 5px;
}
#shinkansen-seat .search-app .gadget_box.dp,
#shinkansen-seat .search-app .gadget_box.tour {
    margin-top: 15px;
}
#shinkansen-seat .fw-top .fw-search-top__item--date {
	margin: 0;
}
#shinkansen-seat .fw-top .fw-search-top__footer {
	margin-top: 20px;
}
#shinkansen-seat .fw-top .fw-modal-overlay {
	height: 100%;
}
/*吹き出し*/
.seach_fukidashi p {
    text-align: center;
}
.seach_fukidashi span {
	font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    border: 2px solid #e13232;
    border-radius: 5px;
    padding: 6px 50px;
    background: #e13232;
    color: #fff;
    z-index: 1;
}
.seach_fukidashi p span:before {
	position: absolute;
    content: '';
    top: -6px;
    left: 15%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #e13232;
    transform: rotate(135deg);
    translate: -50%;
    z-index: -1;
}
.seach_fukidashi p span:after {
	content: "";
    position: absolute;
    top: -8px;
    left: 15%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 2px solid;
    border-color: #e13232 #e13232 transparent transparent;
    transform: rotate(-45deg);
    translate: -50%;
}

/*------------------------------------------------------------------
　　　　　　特別拝観_オレンジの背景部分
------------------------------------------------------------------*/
.post-section .special-visit{
    background-color:#ffebcd;
    padding: 3rem;
    margin: 20px 0;
}

.post-section h3.special-tit{
    color: #984806;
    font-weight: bold;
    padding-left: 0;
}
.post-section h3.special-tit:before{
    display: none;
}

.post-section .special-visit ul{
    margin-top: 1rem;
}

.post-section .special-visit ul li::before{
    background: #333333;
}

/*special-visitに属さない場合でも有効*/
.post-section .special-info li {
    display: flex;
    align-items: flex-start;
}
.post-section .special-info li span {
    display: inline-block;
    flex-shrink: 0;
    min-width: 7.8rem; 
    margin-right: 10px;
}
.post-section .special-info li .info-indent {
    margin: 0;
}

.post-section .special-info li .info-indent span{
    display: inline-block;
    width: 9.1rem;
}

/*------------------------------------------------------------------
　　　　　　京都 紅葉の名所・穴場をお探しの方はこちらをチェック　部分
------------------------------------------------------------------*/
.post-section .article_list{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
    margin-top: 2rem;
}

.post-section .article_list li {
	width: 49%;
	border: 1px solid #ccc;
	background-color: #fff;
	margin-top: 5px;
    padding-left: 0;
}
.post-section .article_list li::before{
    display: none;
} 

.post-section .article_list li a {
    position: relative;
    display: flex;
    justify-content: center;
    color: #333;
    padding: 15px 20px 16px;
    transition: 0.2s;
    text-decoration: none;
}
.post-section .article_list li a:after {
	position: absolute;
	width: 20px;
	height: 20px;
	content: "";
	bottom: 18px;
    right: 26px;
	background-image: url(/plan/area/kyoto/autumn/lightup/images/ic008.webp);
	background-size: contain;
	background-repeat: no-repeat;
}
.post-section .article_list li a:hover {
    opacity: 0.6;
}
.post-section .article_list li a figure {
    width: auto;
}
.post-section .article_list li a img {
    width: 226px;
    height: 86px;
    object-fit: cover;
}
.post-section .article_list li a > div {
    width: 70%;
    margin-left: 16px;
}
.post-section .article_title{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 3px;
    
}


/*------------------------------------------------------------------
--------------------------------------------------------------------
旅行情報ナビページ共通css(style_sp.css内容)
--------------------------------------------------------------------
------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
    .br_pc {
        display:none;
    }
    
    .br_sp {
        display:inline-block;
    }

    /*------------------------------------------------------------------
    見出し
    ------------------------------------------------------------------*/

    /* section-ttl */
    .section-ttl {
        font-size:2rem !important;
        text-align: center;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    /* section-sttl */
    .section-sttl{
        margin-bottom: 2.5rem;
        font-size: 1.6rem;
        padding: 1rem 0;
    }


    /*------------------------------------------------------------------
    index
    ------------------------------------------------------------------*/

    /* ナビのテーマ一覧 */
    section.theme-nav{
        margin-bottom: 4rem;
    }
    .theme-anklist{
        margin-bottom: 0;
        border-top: 1px solid #DDDDDD;
        border-left: 1px solid #DDDDDD;
    }
    .theme-anklist .item{
        width: 50%;
        padding-bottom: 0;
        text-align: left;
    }
    .theme-anklist .item a{
        font-size: 1.2rem;
        border: none;
        border-bottom: 1px solid #DDDDDD;
        border-right: 1px solid #DDDDDD;
        line-height: 1;
        padding: 2rem 2rem 2rem 3rem;
    }
    .theme-anklist .item a:hover{
        border-color: #DDDDDD;
    }
    .theme-anklist .item a:before {
        margin-top: -0.4rem;
        left: 1.1rem;
        transform: rotate(90deg) scale(0.6);
    }
    .theme-anklist .item a:after {
        width: 1.3rem;
        height: 1.3rem;
        border-radius: 1.3rem;
        margin-top: -0.6rem;
        left: 1rem;
    }

    /* テーマセクション */
    .theme-section+.theme-section{
        margin-top: 4rem;
    }
    .theme-section .theme-list{
        display: block;
    }
    .theme-section .theme-list .item{
        width: auto;
    }
    .theme-section .theme-list .item+.item{
        margin-top: 2rem;
    }
    .theme-section .theme-list .item a:hover{
        opacity: 1;
    }
    .theme-section .theme-list .item-body{
        padding: 1.5rem 1.5rem 4rem;
    }
    .theme-section .theme-list .item-ttl{
        font-size: 1.6rem;
        padding-left: 1.1rem;
        margin-bottom: 1.4rem;
    }
    .theme-section .theme-list .item-txt{
        line-height: 1.6;
    }
    .theme-section .theme-list .item-btn{
        right: 2rem;
        bottom: 1.2rem;
        position: absolute;
        padding-left: 2.3rem;
    }
    .theme-section .theme-list .item-btn:before {
        font-family: 'jttweb' !important;
        content: '\e902';
        position: absolute;
        z-index: 1;
        top: 50%;
        margin-top: -0.8rem;
        font-size: 1rem;
        color: #ffffff;
        left: 0.4rem;
        transform: scale(0.8);
    }
    .theme-section .theme-list .item-btn:after {
        display: block;
        content: "";
        width: 1.7rem;
        height: 1.7rem;
        border-radius: 1.7rem;
        background: #398AD0;
        position: absolute;
        top: 50%;
        margin-top: -0.9rem;
        left: 0;
    }


    /*------------------------------------------------------------------
    記事
    ------------------------------------------------------------------*/

    /* post-head */
    .post-head{
        margin-top: 0;
        margin-bottom: 3rem;
    }
    .post-head .category{
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }
    .post-head .ttl{
        font-size: 2.2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #398AD0;
        margin-bottom: 2rem;
    }
    .post-head .sns-list{
        position: static;
    }
    .post-head .sns-list .fb-like{
        top: 0px;
    }

    /* post-mv */
    .post-mv{
        margin: 0 -14px 3rem
    }

    /* post-body */
    .post-body{
        margin: 0 auto 5rem;
    }

    /* post-anklist */
    .post-anklist{
        border: 2px solid #EFEFEF;
        padding: 2rem;
        margin-bottom: 3.5rem;
    }
    .post-anklist .item:before{
        font-size: 1.4rem;
    }
    .post-anklist .item +.item{
        margin-top: 1rem;
    }
    .post-anklist .item a{
        font-size: 1.4rem;
    }
    .post-anklist .item a:hover{
        color: #333333;
        text-decoration: none;
    }

    /* post-section */
    .post-section{
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .post-section+.post-section{
        margin-top: 4rem;
    }

    /* h2 */
    .post-section h2{
        font-size: 1.8rem!important;
        padding-bottom: 1.2rem;
        border-bottom: 2px solid #E6E6E6;
        margin-bottom: 2rem!important;
        margin-top: 3rem;
    }

    /* h3 */
    .post-section h3{
        font-size: 1.5rem;
        padding-left: 1.8rem;
        margin-bottom: 1rem;
        text-align: left !important;
    }
    

    /* h4 h5 */
    .post-section h4, .post-section h5{
        margin-top: 2rem;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .post-section img{
        margin-top: 2.5rem;
    }
    .post-section p{
        margin-top: 2rem;
    }

    .post-section .col1{
        margin-top: 2rem;
        padding: 2rem;
    }

    /* total */
    .post-section.total{
        border-top: 3px solid #555555;
        padding: 2rem;
    }
    .post-section.total h2 {
        font-size: 1.5rem;
        padding-left: 1.8rem;
        margin-bottom: 1rem;
    }
    .post-section.total p {
        margin: 0;
    }


    /* .post-other */
    .post-other{
        margin: 0 -14px;
    }
    .other-inner{
        padding: 5rem 1.4rem;
    }
    .post-other .other-inner h4{
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .other-list .item a{
        padding: 1.5rem 0;
    }
    .other-list .item-img{
        width: 41.7%;
    }
    .other-list .item-body{
        width: 53%;
    }
    .other-list .item-ttl{
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .other-list .item-txt{
        display: none;
    }

/*2022.02 コンテンツSEO追記*/

    .facility_warning {
        margin-top: 1rem !important;
    }
    .sp-mt20 {
        margin-top: 20px !important;
    }
    .post-anklist .item a:before {
        top: initial;
        bottom: 1px;
    }
    .facility_table th {
        width: auto;
    }
    .facility_table td {
        word-break: break-all;
    }
	.spotImg .provide {
		margin-left: 0;
	}
	.spotImg .provide {
		margin-left: 0;
	}
	.spotImg .provide:before {
		content: "\A" ;
		white-space: pre ;
	}
  .section .section-bottom .setplan-btn:before {
    top: 12px;
  }
}
/*------------------------------------------------------------------
　　　　　　　スマホ用 (736px以下)
------------------------------------------------------------------*/
@media screen and (max-width: 736px) {
  #ranking .modal-window {
    width: 100%;
      height: 100%;
    overflow-y: auto;
  }
  #ranking .gadget {
    padding: 0 20px 20px;
  }
  #ranking .gadget.pb10 {
    padding: 0 20px 10px;
  }
  #ranking .modal-note {
    width: auto;
    padding: 0 20px 20px;
  }
  .fw-top .fw-modal-calendar .fw-calendar .rdrCalendarWrapper,
  .fw-top .fw-modal-calendar .fw-calendar .rdrMonth {
    width: 100%;
  }
  .fw-top .fw-modal-container .fw-modal-btn-footer {
      background-color: #fff;
  }
  #ranking .rdrMonth {
    width: auto;
  }
  #ranking .button-close span {
      padding: 5px 15px 0 0;
  }
  .section .fw-top .fw-modal-container {
    margin-top: 0px;
  }

    /*丸みがあるリンクボタン*/
    .section .btn-wrap{
        flex-direction: column;
        gap: 1rem;
    }

    .section .round-btn{
        width: 100%;
    }
}

@media screen and (max-width: 999px) {
  /*------------------------------------------------------------------
  カラムレイアウト
  ------------------------------------------------------------------*/
    .section .contents-item + .contents-item{
        margin-top: 0;
    } 
  /*三つ並べる時用のレイアウト*/
    .section .column-contents{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .section .column-contents .column-title{
        font-size: 1.5rem;
    }

    .section .column-contents .contents-item {
        display: block;
        min-height: auto;
    }

    .section .column-contents .column-title strong{
        font-size: 1.7rem;
    }

    .section .column-contents .checkbox-list {
        overflow: visible;
        display: block;
        -webkit-line-clamp: none;
    }

    .section .column-contents .checkbox-list label{
        font-size: 1.8rem;
    }
    
    .section .column-contents .contents-btn_ttl{
        font-size: 1.2rem;
        margin-top: -50px;
    }
    
    .section .column-contents .contents-btn a{
        font-size: 1.4em;
    }
    
    .section .column-contents input[type=checkbox].checkbox_icon:checked{
        width: 24px;
        height: 24px;
    }
    
    .section .column-contents input[type=checkbox].checkbox_icon:checked::after{
        width: 14px;
        height: 7px;
    }
   

  /*------------------------------------------------------------------
  検索窓
  ------------------------------------------------------------------*/
  #search-app .tab .tab-btn {
    font-size: 1.4rem;
  }
  .search-app .seach-box {
      padding: 18px 10px;
  }
  /*------------------------------------------------------------------
  　　　　　　　　　　　こだわりツアー検索窓
  ------------------------------------------------------------------*/
  .seach-box.tour {
    padding: 18px 15px 25px;
  }
}
@media screen and (max-width: 700px) {
  #search-app .tab .tab-btn {
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 70px;
  }
  #search-app .tab .tab-btn img {
    height: 30px;
    margin-right: 0;
  }
  }
  @media screen and (max-width: 599px) {
  /*-----検索窓-----*/
  .new_plan_flex {
    margin: 40px 0 -10px;
  }
  .search_new_plan p {
    padding: 5px;
  }
  .search_new_plan .nomal {
    font-size: 1.1rem;
  }
  #search-app .tab .tab-btn p {
    font-size: 1.1rem;
  }
  .seach_fukidashi p span {
      font-size: 1.3rem;
      display: block;
      padding: 5px;
  }
  .bnr_area {
    margin-top: 30px;
  }
  .bnr_title {
    font-size: 2.0rem;
  }

  /*リンク横のアイコン（ic02.webp）*/
  .section .btn-more {
    text-align: left;
  }

  .section .btn-more:before {
    width: 32px;
    height: 32px;
    left: 0px;
  }
}
@media screen and (max-width: 320px) {
  #search-app .tab .tab-btn p {
    font-size: 1.0rem;
  }
}

/*------------------------------------------------------------------
　　　　　　特別拝観_オレンジの背景部分
------------------------------------------------------------------*/
@media screen and (max-width: 736px) {
    .post-section .special-info li span{
        min-width: 6rem;
    }

    .post-section .special-info li .info-indent span{
        width: 8rem;
    }
}
/*------------------------------------------------------------------
　　　　　　京都 紅葉の名所・穴場をお探しの方はこちらをチェック　部分
------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
    .post-section .article_list {
        display: block;
    }
    .post-section .article_list li {
        width: 100%;
    }
    .post-section .article_list li a {
        padding: 12px 12px 12px;
    }
    .post-section .article_list li a img {
        width: 102px;
        height: 60px;
    }
    .post-section .article_list li a > div {
        width: 100%;
    }
    .post-section .article_title {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 600px) and (max-width: 999px) {
    .post-section .article_list li a img {
        width: 222px;
        height: 60px;
    }
}