@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 +.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 */
.post-section h4{
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #398AD0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #398AD0;
}

.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;
}
.post-section ul li+li{
    margin-top: 0.8rem;
}
.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 #398AD0;
    background: #F9FBFE;
    padding: 3rem;
}
.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: #003f6c;
    color: #fff !important;
    font-weight: bold;
    padding: 6px 2.8em;
    border-radius: 5px;
	width: 300px;
}
.section .section-bottom .setplan-btn {
  background: #003f6c;
  color: #fff !important;
  font-weight: bold;
  padding: 6px 2.8em;
  border-radius: 5px;
  width: 80%;
  text-decoration: none !important;
  line-height: 20px;
}
.section .section-bottom .setplan-btn:before {
	content: "";
	background-image: url(/plan/area/shizuoka/kankospot/kakegawakachouen/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;
}


/* .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;
}
.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;
}

/*------------------------------------------------------------------
情報リスト - flexレイアウト
------------------------------------------------------------------*/
.post-section ul.info-list li {
    display: flex;
    align-items: flex-start;
}

.post-section ul.info-list li span:first-child {
    flex-shrink: 0;
    width: 80px;
    font-weight: 700;
}

.post-section ul.info-list li span:last-child {
    flex: 1;
}

/*------------------------------------------------------------------
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;
}
