@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; }

/*------------------------------------------------------------------
見出し
------------------------------------------------------------------*/
.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;
}

/*------------------------------------------------------------------
記事
------------------------------------------------------------------*/
/* post-head */
.post-head{
    position: relative;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.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-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{
    display: flex;
    align-items: flex-start;
}
.post-anklist .item:before{
    font-size: 1.6rem;
    font-weight: 700;
    counter-increment: num;
    content: counter(num)".";
    padding-right: 0.5rem;
    flex-shrink: 0;
}
.post-anklist .item.no-number:before{
    content: none;
    counter-increment: none;
}
.post-anklist .item +.item{
    margin-top: 1.8rem;
}
.post-anklist .item a{
    color: #333333;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-right: 2rem;
    position: relative;
    flex: 1;
    transition: all .2s ease;
}
.post-anklist .item a:hover{
    color: #398AD0;
}
.post-anklist .item a:after {
    content: '\e902';
    font-family: 'jttweb' !important;
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.2rem;
    color: #398AD0;
    transform: rotate(90deg);
    vertical-align: middle;
}

/*------------------------------------------------------------------
アコーディオン
------------------------------------------------------------------*/
.acd-check {
    display: none;
}
.acd-label {
    display: block;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(57, 138, 208);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgb(57, 138, 208);
}
.acd-label__inner {
    width: 100%;
    display: block;
    position: relative;
    z-index: 5;
}
.acd-label:after {
    box-sizing: border-box;
    content: '＋';
    display: block;
    font-family: "Font Awesome 5 Free";
    padding: 10px 20px;
    position: absolute;
    right: -14px;
    top: -12px;
    font-size: 20px;
}
.acd-content {
    display: block;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    height: 0;
    visibility: hidden;
}
.acd-check:checked+.acd-label:after {
    content: '－';
}
.acd-check:checked+.acd-label+.acd-content {
    opacity: 1;
    padding: 10px;
    height: auto;
    visibility: visible;
}

/*------------------------------------------------------------------
post-section
------------------------------------------------------------------*/
.post-section{
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.post-section+.post-section{
    margin-top: 8rem;
}
.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;
}
.post-section a{
    color: #337AB7;
    text-decoration: underline;
}
.post-section a:hover{
    text-decoration: none;
}
.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;
}
/* ol内のulは数字を表示しない */
.post-section ol ul li{
    list-style: none;
}

/*------------------------------------------------------------------
見出しスタイル
------------------------------------------------------------------*/
/* 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 */
.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;
    margin-top: 2.8em;
}
.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;
}

/*------------------------------------------------------------------
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;
}

/*------------------------------------------------------------------
ボタン
------------------------------------------------------------------*/
.btn {
    color: #003f6c !important;
    text-decoration: auto !important;
}
.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 .section-bottom .plan-btn {
	background: #cc0000;
    color: #fff !important;
    font-weight: bold;
    padding: 6px 2.8em;
    border-radius: 5px;
	width: 320px;
    text-decoration: none !important;
}
.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;
  position: relative;
}
.section .section-bottom .setplan-btn:before {
	content: "";
	background-image: url(/plan/area/tokyo/hotel_ekimae/images/ic01.webp);
    position: absolute;
    width: 27px;
    height: 27px;
    top: 50%;
    left: 10px;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
	transform: translateY(-50%) 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;
	text-decoration: underline !important;
	display: block;
	width: 460px;
	margin: 0 auto;
	padding: 10px 2em 10px 4.4em;
	border: 1px solid #ccc;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.12);
    position: relative;
}
.section .btn-more:before {
	content: "";
	background-image: url(/plan/area/tokyo/hotel_ekimae/images/ic04.webp);
    position: absolute;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
	left: 15px;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}
.section .btn.btn-more:hover {
	text-decoration: none!important;
	opacity: 1;
	box-shadow: none;
}
.section .line-btn-wrap .plan-btn{
    width: 420px;
    background: #01B050!important;
}
.section .line-btn-wrap .plan-btn span{
   font-size: 1.6rem;
}

/*------------------------------------------------------------------
レイアウト・ユーティリティ
------------------------------------------------------------------*/
.flex-list{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.img-flex {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    gap: 10px;
    margin-top: 10px;
}
.spot-first {
    margin-top: 4rem !important;
}
.spot + .spot {
    margin-top: 6rem;
}
.mt0 {
    margin-top: 0 !important;
}
.tCenter {
    text-align: center;
}
.text-red {
    color: red;
}
.small {
    font-size: 80%;
}
.bgLine {
    background:linear-gradient(transparent 50%, #ffff99 50%);
}
.bgLine2 {
    background:linear-gradient(transparent 50%, #f6020224 50%);
}

/*------------------------------------------------------------------
コンテンツSEO関連
------------------------------------------------------------------*/
#contents {
    max-width: inherit;
}
.post-head {
    margin-top: 5rem;
}
.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 td {
    padding: 10px;
}
.section .fw-top .fw-modal-container {
	margin-top: -40px;
}

/*------------------------------------------------------------------
モーダルウィンドウ
------------------------------------------------------------------*/
#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 .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;
}

/*------------------------------------------------------------------
写真提供
------------------------------------------------------------------*/
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;
}


/*------------------------------------------------------------------
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;
}
.question h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003f6c;
    padding-left: 0;
}
.question h3::before {
    display: none;
}
.question h3:not(:first-of-type) {
    margin-top: 20px;
}
.question h3 + p {
    margin-top: 10px;
}



/*------------------------------------------------------------------
バナー
------------------------------------------------------------------*/
.section .bottom_bnr {
    text-align: center;
    margin-top: 20px
}
.section .bottom_bnr h3 {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    font-size: inherit !important;
    font-weight: normal !important;
    line-height: inherit;
    color: inherit !important;
    display: block !important;
    text-align: center;
    position: static !important;
}
.section .bottom_bnr h3::before {
    display: none !important;
    content: none !important;
}
.section .bottom_bnr h3:hover {
    opacity: 0.8;
}
.section .bottom_bnr .bnr_txt {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    margin-bottom: 3px;
    font-weight: bold;
}
.section .bottom_bnr .bnr_txt:before,
.section .bottom_bnr .bnr_txt:after {
    position: absolute;
    content: "";
    width: 0.1em;
    height: 17px;
    background: #333;
    top: 4px;
}
.section .bottom_bnr .bnr_txt:before {
    left: 0;
    transform: rotate(-30deg);
}
.section .bottom_bnr .bnr_txt:after {
    right: 0;
    transform: rotate(30deg);
}
.section .bottom_bnr .spotImg {
    margin-top: 3px;
}

/*------------------------------------------------------------------
その他
------------------------------------------------------------------*/
.course_box {
    margin-top: 2.5rem;
}

/*------------------------------------------------------------------
--------------------------------------------------------------------
メディアクエリ：タブレット以下 (999px以下)
--------------------------------------------------------------------
------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
    .br_pc {
        display:none;
    }
    .br_sp {
        display:inline-block;
    }

    /* post-head */
    .post-head{
        margin-top: 0;
        margin-bottom: 3rem;
    }
    .post-head .ttl{
        font-size: 2.2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #398AD0;
        margin-bottom: 2rem;
    }
    /* 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{
        display: flex;
        align-items: flex-start;
    }
    .post-anklist .item:before{
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    .post-anklist .item.no-number:before{
        content: none;
        counter-increment: none;
    }
    .post-anklist .item +.item{
        margin-top: 1rem;
    }
    .post-anklist .item a{
        font-size: 1.4rem;
        line-height: 1.5;
        padding-right: 0;
        position: relative;
        flex: 1;
    }
    .post-anklist .item a:hover{
        color: #333333;
        text-decoration: none;
    }
    .post-anklist .item a:after {
        content: '\e902';
        font-family: 'jttweb' !important;
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 1.2rem;
        color: #398AD0;
        transform: rotate(90deg);
        vertical-align: middle;
    }

    /* 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;
    }
    /* total */
    .post-section.total{
        border-top: 3px solid #398AD0;
        padding: 2rem;
    }
    .post-section.total h2 {
        font-size: 1.5rem;
        padding-left: 1.8rem;
        margin-bottom: 1rem;
    }
    .post-section.total p {
        margin: 0;
    }
    .post-section .acd-label__inner {
      padding-right: 2.5rem;
    }

    /* ボタン */
    .section .section-bottom .setplan-btn {
      width: 95%;
    }
    .section .section-bottom .setplan-btn:before {
        top: 50%;
        transform: translateY(-50%) rotate(-35deg);
    }

    /* レイアウト */
    .flex-list {
        flex-direction: column;
        gap: 0;
    }
    .flex-list .spot + .spot {
        margin-top: 30px !important;
    }

    /* コンテンツSEO関連 */
    .facility_table th {
        width: auto;
    }
    .facility_table td {
        word-break: break-all;
    }
	.spotImg .provide {
		margin-left: 0;
	}
	.spotImg .provide:before {
		content: "\A" ;
		white-space: pre ;
	}

}

/*------------------------------------------------------------------
--------------------------------------------------------------------
メディアクエリ：スマホ (736px以下)
--------------------------------------------------------------------
------------------------------------------------------------------*/
@media screen and (max-width: 736px) {
  /* モーダルウィンドウ */
  #ranking .modal-window {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  #ranking .gadget {
    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 .section-bottom .plan-btn {
      background: #cc0000;
      color: #fff !important;
      font-weight: bold;
      padding: 6px 2.8em;
      border-radius: 5px;
      width: 100%;
  }
  .section .btn-more {
      width: 100%!important;
  }
  .section .line-btn-wrap .plan-btn{
      max-width: 350px;
      width: 100%;
      padding: 6px 2.5em;
      font-size: 1.2rem;
  }
  .section .line-btn-wrap a:after {
      margin-top: 0;
      transform: translateY(-50%);
  }
  .section .line-btn-wrap .plan-btn span{
      font-size: 1.3rem;
  }

}

/*------------------------------------------------------------------
--------------------------------------------------------------------
メディアクエリ：小さいスマホ (380px以下)
--------------------------------------------------------------------
------------------------------------------------------------------*/
@media screen and (max-width: 380px) {
    .section .line-btn-wrap .plan-btn{
        padding: 6px 1.9rem;
        font-size: 3.4vw;
    }
    .section .line-btn-wrap .plan-btn span{
        font-size: 3.4vw;
    }
}
