@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');
/*-----------------------------------------
全体
-----------------------------------------*/
:root{
    --f-mincyo: 'Noto Serif JP', serif;
    --c-hokuo: #19557b;
    --c-canada: #b42c2e;
}
.contents {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    color: #333;
    font-size: 15px;
    line-height: 1.5em;
}
.contents .inner {
    width: 992px;
    margin: 0 auto;
}

/*------------------------------------------------
	ページナビ
--------------------------------------------------*/
#head-navi {
    width: 100%;
    height: 50px;
    background-color: #cfe2e6;
}
#head-navi ul {
    width: 992px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-family: var(--f-mincyo);
    font-size: 17px;
    font-weight: 500;
}
#head-navi ul li {
    height: 100%;
}
#head-navi ul li.top {
    width: 24%;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 400;
    background-color: #6f9ca6;
    color: #fff;
}
#head-navi ul li:nth-child(2) {
    width: 38%;
    border-right: solid 1px #6f9ca6;
}
#head-navi ul li:nth-child(3) {
    width: 38%;
    border-right: solid 1px #6f9ca6;
}
#head-navi ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #1b505c;
    text-decoration: none;
}
#head-navi ul li.top a {
    color: #fff;
}
#head-navi ul li.current a {
    pointer-events: none;
}
#head-navi ul li:not(.top).current a {
    border-bottom: solid 3px #4caf7f;
}
#head-navi ul li a:hover {
    opacity: 0.8;
    transition: all 0.6s ease;
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 480px;
	text-align: center;
    background: url("../img/main-bg-pc.jpg") no-repeat top center;
}
#mainvisual .title {
    padding-top: 50px;
}

/*------------------------------------------------
	Gナビ
--------------------------------------------------*/
#navi {
    width: 100%;
    background-color: #4e6ea7;
    padding: 10px 0;
}
#navi ul {
    width: 992px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-family: var(--f-mincyo);
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    border-left: solid 1px #fff;
}
#navi ul li {
    width: 20%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    border-right: solid 1px #fff;
}
#navi ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 100%;
    color: #fff;
    text-decoration: none;
	position: relative;
	margin: 0 auto;
}
#navi ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
}
#navi ul li a:hover {
    opacity: 0.8;
    transition: all 0.6s ease;
}
#navi.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
    box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 20%);
}
.fix-navi:has(.fixed) {
	height: 72px;
}
#navi.fixed li a:after {
	content: none;
}
#navi.fixed li a {
	border-bottom: transparent solid 3px;
}
#navi.fixed li a.active {
	border-bottom: #fff solid 3px;
}
/*------------------------------------------------
　導入
--------------------------------------------------*/
#lead {
    padding: 60px 0;
    background-color: #0e244c;
    text-align: center;
}
#lead .catch {
    font-family: var(--f-mincyo);
    font-size: 28px;
    line-height: 1.6em;
    font-weight: 500;
    color: #fffb96;
    margin-bottom: 20px;
}
#lead .text {
    font-size: 16px;
    line-height: 1.8em;
    color: #fff;
}

/*------------------------------------------------
　説明
--------------------------------------------------*/
#guide {
    background-color: #0e244c;
    padding-bottom: 100px;
}
/*------------------------------------------------
　服装
--------------------------------------------------*/
#clothes {
    background: url("../img/clothes-bg.png");
    padding: 30px 50px 50px;
    position: relative;
    margin-bottom: 60px;
}
#clothes h2 {
    height: 76px;
    text-align: center;
    background: url(../img/clothes-title-bg.png) no-repeat bottom center;
    color: #0e244c;
    font-family: var(--f-mincyo);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1.0em;
    padding-top: 20px;
    margin-bottom: 30px; 
}
#clothes .model {
    position: absolute;
    top: 180px;
    left: 50px;
}
#clothes .text {
    padding-left: 200px;
    margin-bottom: 15px;
}
#clothes table {
    padding-left: 200px;
    font-size: 15px;
    line-height: 1.4em;
    border-collapse: separate;
    border-spacing: 2px;
}
#clothes table th {
    width: 18%;
    background-color: #fff;
    font-weight: bold;
    padding: 10px 15px;
}
#clothes table td {
    width: 82%;
    background-color: #fff;
    padding: 10px 15px;
}

/*------------------------------------------------
　違い
--------------------------------------------------*/
#differ {
    margin-bottom: 60px;    
}
#differ h2 {
    text-align: center;
    margin-bottom: 10px;
}
#differ table {
    font-size: 15px;
    line-height: 1.4em;
    border-collapse: separate;
    border-spacing: 2px;
}
#differ table th {
    background-color: #cbe1e8;
    font-weight: bold;
    padding: 15px;
}
#differ table .col th:nth-child(1) {width: 20%;}
#differ table .col th:nth-child(2) {width: 40%;}
#differ table .col th:nth-child(3) {width: 40%;}
#differ table .col th span {
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: bold;
}
#differ table .col th span.hokuo {color: var(--c-hokuo);}
#differ table .col th span.canada {color: var(--c-canada);}

#differ table td {
    background-color: #fff;
    padding: 10px 15px;
}
#differ table td span {
    font-size: 0.8em;
}

/*------------------------------------------------
　観測地
--------------------------------------------------*/
#spot {
}
#spot h2 {
    text-align: center;
    margin-bottom: 25px;
}
#spot .map {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
#spot .map li {
    width: 480px;
    height: 380px;
    position: relative;
}
#spot .map li.hokuo {
    background-image: url("../img/spot-map-hokuo.png");
}
#spot .map li.canada {
    background-image: url("../img/spot-map-canada.png");
}
#spot .map li p {
    position: absolute;
    width: 200px;
    background-color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 9px 9px 5px;
    box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.3);
    border-radius: 5px;
    cursor: pointer;
}
#spot .map li p.hokuo1 {top: 240px; left: 55px;}
#spot .map li p.hokuo2 {top: -10px; left: 250px;}
#spot .map li p.hokuo3 {top: 35px; left: 20px;}
#spot .map li p.canada1 {top: 45px; left: 260px;}
#spot .map li p.canada2 {top: 20px; left: 15px;}
#spot .map li p:hover {
    background-color: #fffbe0;
    transition: all 0.6s ease;
}
#spot .btn {
    width: 920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#spot .btn li {
    width: 410px;
    font-family: var(--f-mincyo);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-radius: 7px;
}
#spot .btn li.hokuo {
    background-color: #2f8ebc;
}
#spot .btn li.canada {
    background-color: #cd5050;
}
#spot .btn li a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 15px 0 20px;
    position: relative;
}
#spot .btn li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
#spot .btn li a:hover {
    opacity: 0.8;
    transition: all 0.6s ease;
}

/*------------------------------------------------
　北欧・カナダ共通
--------------------------------------------------*/
.area-wrap {
    width: 100%;
    padding-bottom: 100px;
}
#hokuo.area-wrap {background-color: #eef7ff;}
#canada.area-wrap {background-color: #fcefef;}

.area-wrap h2 {
    width: 100%;
    height: 180px;
    color: #fff;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 60px;
    font-family: var(--f-mincyo);
}
#hokuo h2 {background: #2f8ebc url("../img/area-title-bg.png") ;}
#canada h2 {background: #d55d5e url("../img/area-title-bg.png") ;}

.area-wrap h2 span {
    display: block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);;
}
.area-wrap h2 span:nth-child(1) {
    font-size: 42px;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-weight: 500;
}
.area-wrap h2 span:nth-child(2) {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.0em;
    font-weight: 400;
}
.area-wrap h2 span:nth-child(3) {
    font-size: 18px;
    line-height: 1.8em;
}

.area-wrap .lead {
    text-align: center;
    margin-bottom: 40px;
}
.area-wrap .lead h3 {
    color: #a7850e;
    font-family: var(--f-mincyo);
    font-size: 26px;
    line-height: 1.4em;
    font-weight: 500;
    margin-bottom: 20px;
}
.area-wrap .lead p {
    font-size: 17px;
    line-height: 1.5em;
}
.area-wrap .lead p span {
    font-size: 0.8em;
}

.area-wrap .tour {
    margin-top: 50px;
}
.area-wrap .tour h3 {
    width: 560px;
    height: 120px;
    font-family: var(--f-mincyo);
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 30px;
    padding-top: 45px;
    background-repeat: no-repeat;
    background-size: contain;
}
#hokuo.area-wrap .tour h3 {
    color: #19557b;
    background-image: url("../img/hokuo-tour-title-bg.png");
}
#canada.area-wrap .tour h3 {
    color: #b42c2e;
    background-image: url("../img/canada-tour-title-bg.png");
}

/*------------------------------------------------
　北欧
--------------------------------------------------*/
#hokuo .season {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
#hokuo .season .ph {
    width: 400px;
    position: relative;
}
#hokuo .season img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#hokuo .season dl {
    width: 550px;
}
#hokuo .season dl dt {
    font-family: var(--f-mincyo);
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 500;
    color: var(--c-hokuo);
    margin-bottom: 10px;
}

/*------------------------------------------------
　カナダ
--------------------------------------------------*/
/*#canada .season {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
#canada .season .ph {
    width: 400px;
    position: relative;
}
#canada .season img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#canada .season dl {
    width: 550px;
}
#canada .season dl dt {
    font-family: var(--f-mincyo);
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 500;
    color: var(--c-canada);
    margin-bottom: 5px;
}
#canada .season dl dd {
    margin-bottom: 20px;
}*/

#canada .level {
    width: 100%;
    background-color: #396783;
    color: #fff;
    padding: 30px 40px;
    margin-bottom: 50px;
    position: relative;
}
#canada .level h3 {
    height: 76px;
    text-align: center;
    background: url(../img/level-title-bg.png) no-repeat bottom center;
    color: #fff;
    font-family: var(--f-mincyo);
    font-size: 28px;
    line-height: 1.0em;
    padding-top: 20px;
    margin-bottom: 30px;
}
#canada .level-thumb {
	width: 350px;
	display: flex;
	flex-wrap: wrap;
    margin-bottom: 20px;
}
#canada .level-thumb li {
	width: 110px;
	margin-bottom: 10px;
	margin-right: 9px;
	cursor:pointer;
}
#canada .level-thumb li:nth-child(3n) {
	margin-right: 0;
}
#canada .level-thumb li img {
	width: 100%;
    border: solid 2px transparent;
}
#canada .level-thumb li span {
    display: block;
    text-align: center;
}
#canada .level-thumb li.select img {
	border: solid 2px #fff;
}
#canada .level-conts-box {
    position: absolute;
    right: 40px;
    top: 135px;
}
#canada .level-conts {
	width: 530px;
}
#canada .level-conts img {
	width: 530px;
	height: 320px;
	object-fit: cover;
    margin-bottom: 10px;
}
#canada .level-conts dl {
    display: flex;
}
#canada .level-conts dl dt {
    width: 100px;
    font-family: var(--f-mincyo);
    font-size: 22px;
    font-weight: 500;
    margin-right: 10px;
}
#canada .level-conts dl dd {
    width: 420px;
    font-size: 14px;
    line-height: 1.4em;
}
#canada .level-results {
    width: 350px;
    background-color: #fff;
    margin-bottom: 40px;
}
#canada .level-results h4 {
    background-color: #6390ab;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 5px;
}
#canada .level-results h4 span {
    display: block;
    font-size: 0.7em;
}
#canada .level-results p {
    font-size: 14px;
    line-height: 1.5em;
    color: #333;
    padding: 5px;
}
#canada .level-results p span {
    color: #d90000;
    font-weight: bold;
}
#canada .level-note {
    font-size: 12px;
    line-height: 1.5em;
}
#canada .level-note span {
    font-weight: bold;
}

/*------------------------------------------------
　北欧・カナダ共通 タブ
--------------------------------------------------*/

.area-wrap ul[id^="tab"] {
    width: 100%;
    display: flex;
}
.area-wrap ul[id^="tab"] li {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    margin-right: 10px;
    display: block;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.area-wrap ul[id^="tab"] li:last-child {
    margin-right: 0;
}
.area-wrap #tab-hokuo li {background-color: #2f8ebc;}
.area-wrap #tab-canada li {background-color: #d55d5e;}

.area-wrap ul[id^="tab"] li.select {
    margin-top: -8px;
}
.area-wrap #tab-hokuo li.select {background-color: var(--c-hokuo);}
.area-wrap #tab-canada li.select {background-color: var(--c-canada);}

.area-wrap .disnon {
	display: none;
}
.area-wrap .tab-conts {
    padding: 50px 40px 40px;
    border-width: 5px;
    border-style: solid;
    background-color: #fff;
}
#hokuo.area-wrap .tab-conts {border-color: var(--c-hokuo);}
#canada.area-wrap .tab-conts {border-color: var(--c-canada);}

/*------------------------------------------------
　タブコンテンツ内
--------------------------------------------------*/
.tab-conts h3 {
    text-align: center;
    margin-bottom: 30px;
}
#hokuo .tab-conts h3 {color: var(--c-hokuo);}
#canada .tab-conts h3 {color: var(--c-canada);}
.tab-conts h3 span {
    display: block;
}
.tab-conts h3 .alph {
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 20px;
    line-height: 1.0em;
}
.tab-conts h3 .kana {
    font-family: var(--f-mincyo);
    font-size: 44px;
    line-height: 1.3em;
    font-weight: 700;
}
.tab-conts h3 .country {
    font-family: var(--f-mincyo);
    font-size: 18px;
    line-height: 1.0em;
    font-weight: 700;
}

/*トップ*/
.tab-conts .top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.tab-conts .top .catch {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-family: var(--f-mincyo);
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
    margin-bottom: 40px;
    white-space: nowrap;
}
#hokuo .tab-conts .top .catch {color: #2f8ebc;}
#canada .tab-conts .top .catch {color: #d55d5e}

.tab-conts .top .catch:before,.tab-conts .top .catch:after {
    content: "";
    width: 80px; 
}
#hokuo .tab-conts .top .catch:before,#hokuo .tab-conts .top .catch:after {
    border-top: 1px solid #2f8ebc;
}
#canada .tab-conts .top .catch:before,#canada .tab-conts .top .catch:after {
    border-top: 1px solid #d55d5e;
}
.tab-conts .top .catch:before {
    margin-right: 10px; 
}
.tab-conts .top .catch:after {
    margin-left: 10px; 
}
.tab-conts .top .text {
    width: 550px;
}
.tab-conts .top .text dt {
    font-family: var(--f-mincyo);
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 500;
    color: #a58e4b;
    margin-bottom: 10px;
}
.tab-conts .top .text dd {
    text-align: justify;
}
.tab-conts .top .text dd span {
    font-size: 15px;
    line-height: 1.8em;
    border-bottom: dashed 1px #ccc;
    padding-bottom: 2px;
}
.tab-conts .top .ph {
    width: 320px;
    position: relative;
}
.tab-conts .top .ph img {
    width: 100%;
}
/*アドバイス*/
.tab-conts .advice {
    width: 100%;
    background-color: #f5f5f5;
    padding: 30px 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.tab-conts .advice h4 {
    position: absolute;
    top: -35px;
    left: 0;
}
.tab-conts .advice .map {
    width: 200px;
}
.tab-conts .advice .map img {
    width: 100%;
}
.tab-conts .advice .text {
    width: 600px;
}
/*ウォッチングアドバイス　モーダル*/
.modal-open {
    position: absolute;
    left: 265px;
    bottom: 30px;
    display: inline-block;
    padding: 0 15px;
    background-color: #b5986d;
    line-height: 2.0em;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border: none;
}
.modal-open:before {
	font-family: "Font Awesome 5 Free";
	content: "\f00e";
    font-weight: 900;
    margin-right: 5px;
}
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,60%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
    z-index: 1000;
}
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.modal-content {
  background: #fff;
  text-align: left;
  padding: 5px;
}
.modal-content img {
    width: 100%;
}
/*アドバイス(レイキャビック）*/
.tab-conts .advice2 {
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.tab-conts .advice2 .ph {
    width: 280px;
}
.tab-conts .advice2 .ph img {
    width: 100%;
}
.tab-conts .advice2 .text-box {
    width: 560px;
}
.tab-conts .advice2 .catch {
    font-size: 20px;
    font-weight: bold;
    color: #3490ba;
    margin-bottom: 10px;
}
.tab-conts .advice2 dl {
    margin-top: 10px;
    display: flex;
    background-color: #fff;
    padding: 5px;
}
.tab-conts .advice2 dl dt img {
    width: 180px;
}
.tab-conts .advice2 dl dd {
    font-size: 13px;
    line-height: 1.4em;
    font-weight: bold;
    color: #5c4728;
}
/*楽しみ方*/
.tab-conts .enjoy {
    margin-bottom: 40px;
}
.tab-conts .enjoy h4 {
    width: 420px;
    height: 70px;
    font-family: var(--f-mincyo);
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 30px;
    padding-top: 30px;
    background-repeat: no-repeat;
    background-size: contain;
}
#canada1.tab-conts .enjoy h4 {
    width: 590px;
    letter-spacing: 0;
    padding-top: 0;
}
#canada1.tab-conts .enjoy h4 span {
    font-size: 0.8em;
}
#hokuo .tab-conts .enjoy h4 {
    color: #2f8ebc;
    background-image: url("../img/hokuo-enjoy-title-bg.png");
}
#canada .tab-conts .enjoy h4 {
    color: #cd4f50;
    background-image: url("../img/canada-enjoy-title-bg.png");
}
.tab-conts .enjoy ul {
    width: 100%;
    display: flex;
    justify-content: center;
}
.tab-conts .enjoy ul li {
    width: 32%;
    margin-right: 2%;
}
.tab-conts .enjoy ul li:last-child {
    margin-right: 0;
}
.tab-conts .enjoy ul li .ph {
    position: relative;
    margin-bottom: 5px;
}
.tab-conts .enjoy ul li img {
    width: 100%;
}
.tab-conts .enjoy ul li dt {
    font-size: 17px;
    line-height: 1.4em;
    font-weight: bold;
    color: #c99b18;
}
.tab-conts .enjoy ul li dd .f-mini {
    font-size: 0.8em;
}
/*サンタクロース村*/
.tab-conts .santa {
    width: 100%;
    background-color: #f7f6ea;
    padding: 30px;
    position: relative;
}
.tab-conts .santa h4 {
    position: absolute;
    top: 15px;
    left: 20px;
}
.tab-conts .santa .text {
    padding-left: 230px;
    color: #9a1f29;
    font-weight: bold;
    margin-bottom: 30px;
}
.tab-conts .santa .text span {
    font-size: 0.8em;
}
.tab-conts .santa ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.tab-conts .santa ul li:nth-child(1) {
    width: 350px;
    position: relative;
}
.tab-conts .santa ul li:nth-child(2),
.tab-conts .santa ul li:nth-child(3){
    width: 230px;
}
.tab-conts .santa ul li img {
    width: 100%;
}
.tab-conts .santa ul li:nth-child(1) img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.tab-conts .santa ul li dt {
    font-size: 15px;
    line-height: 2.0em;
    font-weight: bold;
}
.tab-conts .santa ul li dd {
    font-size: 12px;
    line-height: 1.4em;
}
/*オーロラビレッジ*/
.tab-conts .village {
    width: 100%;
    background-color: #f7f6ea;
    padding: 10px 30px;
    position: relative;
}
.tab-conts .village h4 {
    text-align: right;
    margin-bottom: 40px;
}
.tab-conts .village h4 img:first-child {
    position: absolute;
    top: 15px;
    left: 20px;
}
.tab-conts .village .point li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.tab-conts .village .point li img {
    width: 280px;
}
.tab-conts .village .point li dl {
    width: 530px;
}
.tab-conts .village .point li dt {
    padding-top: 10px;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: bold;
    color: #e3ac0a;
    margin-bottom: 10px;
    display: flex;
}
.tab-conts .village .point li dt .no {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 1.7em;
    margin-right: 10px;
    position: relative;
}
.tab-conts .village .point li dt .no:before {
    content: url("../img/village-no-bg.png");
    position: absolute;
    top: -17px;
    left: -12px;
}
.tab-conts .village .point li dd {
    font-size: 14px;
    line-height: 1.5em;
    text-align: justify;
}
.tab-conts .village .point li:first-child {
    padding-left: 150px;
}
.tab-conts .village .point li:first-child img {
    width: 370px;
    height: 230px;
    object-fit: cover;
    object-position: bottom;
}
.tab-conts .village .point li:first-child dl {
    width: 300px;
}
/*ホテル*/
.tab-conts .hotel {
    margin-top: 20px;
    width: 100%;
    background-color: #faf3f3;
    padding: 20px 30px;
}
.tab-conts .hotel .title-box {
    display: flex;
    align-items: flex-start;
}
.tab-conts .hotel .title-box img {
    width: 112px;
    margin-right: 20px;
}
.tab-conts .hotel .title-box h4 {
    color: #612727;
    font-size: 22px;
    line-height: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
}
.tab-conts .hotel .title-box h4 span {
    display: block;
    font-size: 15px;
    line-height: 1.0em;
}
.tab-conts .hotel .hotel-box {
    background-color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
.tab-conts .hotel .hotel-box dl dt {
    padding: 5px;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: bold;
    background-color: #b3a5a5;
    color: #fff;
    margin-bottom: 10px;
}
.tab-conts .hotel .hotel-box dl dd {
    font-size: 14px;
    line-height: 1.5em;
}
.tab-conts .hotel .hotel-box p {
    position: relative;
}
.tab-conts .hotel .hotel-box img {
    height: 175px;
    width: auto;
    margin-left: 10px;
}
/*---------------------------------------------
      サイドナビ
---------------------------------------------*/
#sideNavi {
    height: 100%;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 5;
}
#sideNavi ul {
	height: 100%;
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
	text-align: right;
}
#sideNavi ul li {
	font-size: 15px;
    font-weight: bold;
	margin-bottom: 7px;
    text-shadow:
           1px 1px 0px #fff, -1px -1px 0px #fff,
          -1px 1px 0px #fff,  1px -1px 0px #fff,
           1px 0px 0px #fff, -1px  0px 0px #fff,
           0px 1px 0px #fff,  0px -1px 0px #fff;
}
#sideNavi ul li a {
	display: block;
	color: #333;
	text-decoration: none;
	font-weight: bold;
}
#sideNavi ul li a:after {
	content: "●";
	width: 13px;
	height: 13px;
	margin-left: 3px;
}
#sideNavi ul li a.current {
	color: #992734;
	display: block;
}

/*--------------------------------------------
固定バナー
--------------------------------------------*/
#fix-bnr-pc {
    display: none;
    position: fixed;
    right: 10px;
    top: 200px;
    z-index: 100;
}
#fix-bnr-pc a {
    display: block;
}

/*------------------------------------------------
	写真クレジット
--------------------------------------------------*/
.contents span.credit-white {
    position: absolute;
    right: 2px;
    bottom: 2px;
    font-size: 10px;
    line-height: 1.0em;
    color: #fff;
    text-shadow: 1px 1px 1px #333;
}
.contents span.credit-black {
    position: absolute;
    right: 2px;
    bottom: 2px;
    font-size: 10px;
    line-height: 1.0em;
    color: #000;
    text-shadow: 1px 1px 1px #fff;
}

/*------------------------------------------------
	検索ボックス背景
--------------------------------------------------*/
#searchArea {
    background: url("../img/search-bg.jpg") no-repeat top center;
    background-size: cover;
    padding: 50px 0;
}