@charset "utf-8";
/*
Theme Name: urapi
Description: Travel Freely用の手作りテーマ
Author: Jun
Version: 1.0
*/


/*
* サイト全体
*/
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

body{
  font-family:'Noto Sans','Noto Sans JP', sans-serif;
  background:url("img/bg.png");
  background-attachment:fixed;
  margin-top:3rem;
}

/*font-size*/
h1{
  font-size:3.2em;
  margin:0;
  text-align:center;
}
h2{
  font-size:2em;
  width:100%;
  text-align:center;
  color:#555555;
  margin-top:4rem;
  margin-bottom:1.8rem;
}
h3{
  font-size:1.125em;
}
h4{
  font-size:1em;
}
h5{
  font-size:0.75em;
}
h6{
  font-size:0.625em;
}

/*ulのリセット*/
ul{
  padding-left:0;
  list-style-type:none;
  margin:0;
}

/*リンクのセット*/
a{
  transition:0.5s;
}
a[target="_blank"]:after{
  content:url(img/link.svg);
}
a:link{
  color:#0044CC;
}
a:visited{
  color:#4444FF;
}
a:hover{
  color:#4444CC;
}
a:active{
  color:#4444CC;
}

/*
* ここまでサイト全体
*/

/*
* レスポンシブ対応
*/
    /*　画面サイズが600px以下はここを読み込む　*/
html{
  font-size:12px;
  
}

.container{
  margin-left:1vw;
  margin-right:1vw;
}
.sub-menu-item{
  width:100%;
}
.s-hide{
  display:none;
}
.s-only{
  display:block;
}
.point-item{
  width:100%;
}
.header_home{/*変更注意N2*/
  background:url("img/narrow600-cover.jpg") center no-repeat;
}
.header_narrow{/*変更注意N1*/
  background:url("img/narrow600-cover.jpg") center no-repeat;
}
.single-title-img{
  width:100%;
}
.single-title-desc{
  width:100%;
}

@media screen and (min-width: 600px) { 
    /*　画面サイズが600pxから960pxはここを読み込む　*/
html{
  font-size:14px;
  }

.container{
  margin-left:6vw;
  margin-right:6vw;
  }
.sub-menu-item{
  width:23%;
  }
.s-hide{
  display:block;
  }
.s-only{
  display:none;
  }

.point-item{
  width:calc(50% - 2rem);
  }
.header_home{/*変更注意N2*/
  background:url("img/maincover.JPG") center no-repeat;
  }
.header_narrow{/*変更注意N1*/
  background:url("img/maincover.JPG") center no-repeat;
  }
.single-title-img{
  width:50%;
  }
.single-title-desc{
  width:49%;
  }
}
@media screen and (min-width: 960px) {
    /*　画面サイズが960pxから1280pxまではここを読み込む　*/
html{
  font-size:16px;
  }

.container{
  margin-left:10vw;
  margin-right:10vw;
  }

.s-hide{
  display:block;
  }
.s-only{
  display:none;
  }
.point-item{
  width:calc(100% / 3 - 2rem);
  }
}
@media screen and (min-width: 1280px) {
    /*　画面サイズが1280px以上はここを読み込む　*/
html{
  font-size:16px;
  }

.container{
  margin-left:10vw;
  margin-right:10vw;
  }

.s-hide{
  display:block;
  }
.s-only{
  display:none;
  }

}
/*
* ここまでレスポンシブ対応
*/

/*
* コンテンツ段組み
*/
#main-contents{
  min-height:50vh;
  line-height:1.6rem;
}

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

.wrap{
  background-color:#ffffff;
  padding:0.5rem;
}
/*
* ここまでコンテンツ段組み
*/



/*
* メニュー
*/
nav{
  
}
nav a{
  text-decoration:none;
  transition:0.2s;
}
nav a:link{
  color:#000000;
}
nav a:visited{
  color:#000000;
}
nav a:hover{
  color:#ff9900;
}
nav a:active{
  color:#666666;
}

#navbar{
  position:fixed;
  top:0;
  background:rgba(256,256,256,1);
  color:#000000;
  width:100%;
  z-index:9999;
  box-shadow:0 3px 10px rgba(0,0,0,0.4);
  transition:0.5s;
}
.add-top-padding{
  padding-top:1rem;
}
.navbar-li{
  padding-left:1rem;
}
.navbar-li a{
  display:flex;
  height:3rem;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}
#navbar-logo img{
  max-width:100%;
  max-height:3rem;
  vertical-align:bottom;
}
#sub-menu{
  margin-top:1rem;
  display:none;
  padding-bottom:1rem;
}
#navbar-li-menu i{
  color:#ff9900;
}
.sub-menu-item p{
  padding-bottom:0.5rem;
  border-bottom:1px solid #666666;
}
.sub-menu-item ul{
  margin-left:0.5rem;
}
.sub-menu-item li{
  margin-bottom:0.5rem;
}

/*
* ここまでメニュー
*/

/*
* ヒーロー
*/
header{/*変更注意N2*/
  background-size:cover;
  height:50vh;
  position:relative;
}
.hiro-flex{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hiro-flex p{
  font-size:1.125em;
  text-align:center;
  margin-bottom:0;
}
.blink{
  animation:blink 1.0s ease-in-out infinite alternate;
}
@keyframes blink{
    0% { transform:translateY(-7px); }
  100% { transform:translateY(  0px); }
}
/*
* 個別ヒーロー
*/
.header_home{/*変更注意N1*/
  height:50vh;
  color:#ffffff;
}
.header_narrow{/*変更注意N1*/
  height:25vh;
  color:#ffffff;
}
.header_single{/*変更注意N1*/
  height:25vh;
  background:none;
  color:#666666;
}
/*
* ここまでヒーロー
*/

/*
* 写真
*/
.point-wrap{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  position:relative;
}
.point-wrap2{
  margin-top:-2.5rem;
}
.point-item{
  background-color:#ffffff;
  margin-bottom:1rem;
  padding:0.3rem;
  padding-bottom:1rem;
  position:relative;
}
.point-item img{
  width:100%;
  height:20rem;
  object-fit:cover;
  transition: .3s ease-in-out;
}
.point-item img:hover{
  filter: grayscale(100%);
}
.point-item h3{
  text-align:center;
  color:#333333;
  margin:0;
  padding:0.5rem;
}
.point-item h3 a:link{
  color:#333333;
}
.point-item h3 a:visited{
  color:#333333;
}
.point-item h3 a:hover{
  color:#ff9900;
}
.point-item h3 a:active{
  color:#ff9900;
}
.point-item p{
  margin:0;
  padding:0.5rem;
}
.point-item .category{
  position:absolute;
  top:1.2rem;
  background-color:#ff9900;
  color:#ffffff;
  padding:0.1rem 0.5rem;
}
.point-item .category a{
  text-decoration:none;
}
.point-item .category a:link{
  color:#ffffff;
}
.point-item .category a:visited{
  color:#ffffff;
}
.point-item .category a:hover{
  color:#dddddd;
}
.point-item .category a:active{
  color:#dddddd;
}
.p-i-fev{
  color:#ff9900;
  font-size:1rem;
  display:flex;
  align-items:center;
}
/*
* ここまで写真
*/

/*
* テーブル
*/
tr{
  border-bottom:1px solid #999999;
}
th,td{
  padding-top:0.2rem;
  padding-bottom:0.2rem;
}
th{
  font-weight:normal;
}
.t-center{
  text-align:center;
}
.t-right{
  text-align:right;
  padding-right:1rem;
}
table{
  width:100%;
  border-collapse:collapse;
}
.w5{
  width:5%;
}
.w10{
  width:10%;
}
.w15{
  width:15%;
}
.w20{
  width:20%;
}
.w25{
  width:25%;
}
.w30{
  width:30%;
}
.w35{
  width:35%;
}
.w40{
  width:40%;
}
.w45{
  width:45%;
}
.w50{
  width:50%;
}
.w55{
  width:55%;
}
.w60{
  width:60%;
}
.w65{
  width:65%;
}
.w70{
  width:70%;
}
.w75{
  width:75%;
}
.w80{
  width:80%;
}
.w85{
  width:85%;
}
.w-sche-date{
  width:10%;
}
.w-sche-main{
  width:90%;
}
.w-price-cat{
  width:10%;
}
.w-price-price{
  width:10%;
}
.w-price-remarks{
  width:80%;
}
/*
* ここまでテーブル
*/

/*
* 個別ページ(Single)
*/
.single-title-img img{
  vertical-align:bottom;
  width:100%;
  height:auto;
}
.p-status{
  font-size:1.3rem;
  color:#ff9900;
  margin-right:1rem;
  padding-top:0.5rem;
}
/*
#single-title .category a{
  text-decoration:none;
}
#single-title .category a:link{
  color:#ff9900;
}
#single-title .category a:visited{
  color:#ff9900;
}
#single-title .category a:hover{
  color:#333333;
}
#single-title .category a:active{
  color:#333333;
}
*/
.wpfp-span{
  font-size:0.8rem;
}
/*
* ここまで個別ページ(Single)
*/

/*
* 固定ページ(Page)
*/
.page-ue{
  margin-top:3rem;
}

/*
* ここまで固定ページ(Page)
*/


/*
* 普通のリスト
*/
.wrap h3{
  margin-bottom:0.3rem;
  color:#333333;
  margin-top:1rem;
}
.info-text{
  margin:0 0 0.3rem 0.5rem;
  text-indent:1em;
}
.info-ul{
  margin-left:1rem;
}
.info-ul li:before{
  content: '';
  width:0.3rem;
  height:0.3rem;
  display: inline-block;
  border-radius:100%;
  background:#333333;
  position:relative;
  left:-5px;
  top:0.2em;
  margin-top:0.4rem;
  margin-bottom:0.4rem;
}
.wrap img{
  max-width:100%;
  height:auto;
}

/*
* ここまで普通のリスト
*/



/*
* ページネーション
*/
#pagenate{
  text-align:center;
  margin-top:1rem;
}
.page-numbers{
  background-color:#555555;
  color:#ffffff;
  border-radius:5px;
  padding:0.5rem;
  margin:0.5rem;
  box-shadow:2px 2px 3px rgba(0,0,0,0.4);
  text-decoration:none;
}
.page-numbers:link{
  color:#ffffff;
}
.page-numbers:visited{
  color:#ffffff;
}
.page-numbers:hover{
  color:#ffffff;
  background-color:#888888;
}
.page-numbers:active{
  color:#ffffff;
  background-color:#888888;
}
#pagenate .current{
  background-color:#ff9900;
}

/*
* ここまでページネーション
*/

/*
* 個別部品
*/
.text-center{
  text-align:center;
}
.text-right{
  text-align:right;
}
.btn{
  background-color:#ff9900;
  color:#ffffff;
  border-radius:5px;
  padding:0.5rem;
  box-shadow:2px 2px 3px rgba(0,0,0,0.4);
}
/* 画面外にいる状態 */
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 500ms;
    }
 
/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.more{
  text-align:right;
  width:100%;
}
.btn_more{
  background-color:#555555;
  text-decoration:none;
}
.btn_more:link{
  color:#ffffff;
}
.btn_more:visited{
  color:#ffffff;
}
.btn_more:hover{
  color:#ffffff;
  background-color:#888888;
}
.btn_more:active{
  color:#ffffff;
  background-color:#888888;
}
.def-hide{
  display:none;
}
.author-p img{
  width:auto;
  height:3rem;
  vertical-align:middle;
  border-radius:50%;
  margin-right:0.5rem;
}
.author-s img{
  width:auto;
  height:1.2rem;
  vertical-align:middle;
  border-radius:50%;
  margin-right:0.3rem;
}
.author-l img{
  width:auto;
  height:4.5rem;
  vertical-align:middle;
  border-radius:50%;
  margin-right:1rem;
}
.author-h img{
  width:auto;
  height:2rem;
  vertical-align:middle;
  border-radius:50%;
}
/* tagの処理 */
.tags{
  display:flex;
  flex-wrap:wrap;
  margin-top:0.8rem;
}
.tags li{
  border:1px solid #999999;
  padding:0.1rem;
  margin:0.2rem;
}
.tags li a{
  text-decoration:none;
}
.tags li a:link{
  color:#999999;
}
.tags li a:visited{
  color:#999999;
}
.tags li a:hover{
  color:#333333;
}
.tags li a:active{
  color:#333333;
}
.ad{
  margin-top:1rem;
}
/*
* ここまで個別部品
*/

/*
* フッター
*/
footer{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-top:0.5rem;
  width:100%;
  background:#ffffff;
  color:#000000;
  margin-top:4rem;
}
footer p{
  text-align:center;
}
footer p img{
  width:300px;
}
footer a{
  margin:1rem;
  color:#000000;
  transition:0.5s;
}
footer a:link{
  color:#000000;
}
footer a:visited{
  color:#000000;
}
footer a:hover{
  color:#666666;
}
footer a:active{
  color:#666666;
}
#to_top{
  margin-top:-2rem;
  margin-bottom:0;
}
#to_top i{
  color:#ffffff;
  background-color:#555555;
  padding:1rem;
  border-radius:1.6rem;
  transition:0.5s;
}
#to_top i:hover{
  background-color:#888888;
}
/*
* ここまでフッター
*/

