@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,700,900&display=swap&subset=japanese');

/**********************************************
** Site Name: お得に利用する静岡のおすすめラブホテル
** Description: LP CSS
**********************************************/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - reset
2.0 - 汎用スタイル
    2.1 - テキストリンク
    2.2 - 見出し
    2.3 - ボタン
    2.4 - 文字装飾
    2.5 - 改行
    2.6 - 矢印
    2.7 - カラム
    2.78 - PC・SP表示
3.0 - フッター
4.0 - メインビジュアル
5.0 - 〇〇と言えば
6.0 - おすすめホテル
7.0 - キャンペーン

---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - reset
/*-------------------------------------------*/

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}table{border-collapse:collapse;border-spacing:0}hr{border:0}

/*-------------------------------------------*/
/*  2.0 - 汎用スタイル
/*-------------------------------------------*/

html { font-size: 62.5%;}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}
li { list-style: none;}
div, ul, li, a { box-sizing: border-box;}
input { -webkit-appearance: none; -moz-appearance: none;}

/*  2.1 - テキストリンク
/*-------------------------------------------*/

a { color: #2990DF;}
a:hover { color: #ff9637;}
a:visit {color: #2990DF;}

/*  2.2 - 見出し
/*-------------------------------------------*/

h2.heading {
  box-sizing: border-box;
  padding: 0;
  letter-spacing: 2px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}
.heading_sub {
  box-sizing: border-box;
  padding: 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 4px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  h2.heading {
    font-size: 3.5rem;
  }
  .heading_sub {
    margin-bottom: 30px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  h2.heading {
    letter-spacing: 0;
    font-size: 7.8vw;
  }
  .heading_sub {font-size: 1.2rem;}
}
@media screen and (min-width: 768px) {
  h2.heading {
    line-height: 1.5em;
    font-size: 4.0rem;
  }
  .heading_sub {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}

/*  2.3 - ボタン
/*-------------------------------------------*/

.btn {
  display: block;
  border-radius: 4px;
  border: none;
  cursor: pointer;
	text-align: center;
	text-decoration: none;
  color: #FFF;
  transition: .2s linear;
}
.btn:hover {
  opacity: 0.4;
  color: #FFF;
}

/*  2.4 - 文字装飾
/*-------------------------------------------*/

.txt_small { font-size: 1.2rem;}
.bold { font-weight: bold;}
.str { color: #F74450;}

/*  2.5 - 改行
/*-------------------------------------------*/

@media screen and (max-width: 767px) {
  .br_pc { display: none;}
}

@media screen and (min-width: 768px) {
  .br_pc { display: block;}
}

/*  2.6 - 矢印
/*-------------------------------------------*/

.arrow_right {
    position: relative;
}
.arrow_right::before,
.arrow_right::after {
    position: absolute;
    top: 47%;
    display: block;
    content: '';
    width: 10px;
    height: 3px;
    background: #2990df;
    border-radius: 4px;
    transition: all 0.1s;
}
.arrow_right::before {
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow_right::after {
    margin-top: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*  2.7 - カラム
/*-------------------------------------------*/

.inner {
	width: 100%;
	max-width: 1100px;
	box-sizing: border-box;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media screen and (min-width: 768px) {
  .inner {
		padding-right: 15px;
		padding-left: 15px;
	}
}

/*  2.8 - PC・SP表示
/*-------------------------------------------*/

@media screen and (max-width: 767px) {
  .pc { display: none;}
	.sp { display: block;}
}


@media screen and (min-width: 768px) {
  .pc { display: block;}
	.sp { display: none;}
}

/*-------------------------------------------*/
/*  3.0 - フッター
/*-------------------------------------------*/

footer .copyright {
  box-sizing: border-box;
  background: #333;
	padding: 25px 0;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 15px 0;
	  font-size: 1.0rem;
	}
}

@media screen and (min-width: 768px) {
  footer .copyright {
	  font-size: 1.2rem;
	}
}

/*-------------------------------------------*/
/*  4.0 - メインビジュアル
/*-------------------------------------------*/

.mainvisual .inner {
  box-sizing: border-box;
  position: relative;
}
.mainvisual .logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 10;
}
.mainvisual .logo img {
  max-width: 100%;
  vertical-align: bottom;
}
.mainvisual h1 img {
	width: 100%;
	vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mainvisual {
    position: relative;
    background: #F2F2F2 url("../img/mainbg_pc.jpg") no-repeat center;
    background-size: cover;
  }
  .mainvisual .inner {
    height: 500px;
    padding: 0;
  }
  .mainvisual .logo {
    width: 180px;
    top: 40px;
  }
  .mainvisual h1 {
    position: absolute;
    top: 60%;
    margin-top: -30%;
    padding: 0 5%;
  }
  .mainvisual .main_sp { display: none;}
}

@media screen and (max-width: 480px) {
  .mainvisual {
    position: relative;
    background: #F2F2F2 url("../img/mainbg_sp.jpg") no-repeat center;
    background-size: cover;
  }
  .mainvisual .inner {
    height: 666px;
    padding: 0;
  }
  .mainvisual .logo {
    width: 125px;
    top: 30px;
  }
  .mainvisual h1 {
    position: relative;
    top: 0;
    margin-top: 0;
    padding: 20% 0 0;
  }
  .mainvisual .main_pc { display: none;}
  .mainvisual .main_sp { display: block;}
}

@media screen and (min-width: 768px) {
  .mainvisual {
    position: relative;
    background: #F2F2F2 url("../img/mainbg_pc.jpg") no-repeat center;
    background-size: cover;
  }
  .mainvisual .inner {
    width: 680px;
    height: 500px;
    padding: 0;
  }
  .mainvisual .logo {
    width: 180px;
    top: 40px;
  }
  .mainvisual h1 { padding-top: 110px;}
  .mainvisual .main_sp { display: none;}
}

/*-------------------------------------------*/
/*  5.0 - 〇〇と言えば
/*-------------------------------------------*/

.about {
  box-sizing: border-box;
  padding: 50px 0;
}
.about h2 span {
  position: relative;
  display: inline-block;
}
.about h2 span::before,
.about h2 span::after {
  content: "";
  position: absolute;
  top: 5px;
  background-image: url("../img/ico_about.png");
  background-repeat: no-repeat;
}
.about p {
  text-align: center;
  line-height: 1.9em;
}

@media screen and (max-width: 767px) {
  .about { padding: 30px 0;}
  .about .inner p {
    text-align: left;
    font-size: 1.6rem;
  }
  .about h2 span::before,
  .about h2 span::after {
    width: 22px;
    height: 40px;
    background-size: 22px 40px;
  }
  .about h2 span::before { left: -33px;}
  .about h2 span::after { right: -33px;}
}

@media screen and (min-width: 768px) {
  .about h2 span::before,
  .about h2 span::after {
    width: 28px;
    height: 50px;
    background-size: 28px 50px;
  }
  .about h2 span::before { left: -43px;}
  .about h2 span::after { right: -43px;}
  .about .inner p { font-size: 1.8rem;}
}

/*-------------------------------------------*/
/*  6.0 - おすすめホテル
/*-------------------------------------------*/

.recommend {
  box-sizing: border-box;
  background: #FEF2EF;
  padding: 50px 0;
}
.recommend h2 span {
  position: relative;
  display: inline-block;
}
.recommend h2 span::before,
.recommend h2 span::after {
  content: "";
  position: absolute;
  top: 5px;
  background-image: url("../img/ico_recommend.png");
  background-repeat: no-repeat;
}
.recommend .lead {
  box-sizing: border-box;
  border-radius: 2px;
  background: #FFF;
  padding: 15px;
}
.recommend .point {
  display: inline-block;
  border-radius: 2px;
  background-color: #fef5d1;
  margin: 15px 0;
  padding: 10px 15px;
}
.recommend .point span {
  display: inline-block;
  padding-left: 26px;
  background: url("https://dietnavi.com/pc/img/15/icon/ico_coin1.png") no-repeat 4px center;
  font-weight: bold;
  letter-spacing: 0;
  color: #f23d52;
}
.recommend .list_select {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.recommend .list_select li {
  width: 120px;
  box-sizing: border-box;
  margin: 0 10px;
  padding: 10px;
  border-radius: 30px;
  cursor: default;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  transition: .2s linear;
}
.recommend .list_select li:hover,
.recommend .list_select li.active {
  background-color: #F74450;
  font-weight: normal;
  color: #FFF;
}
.recommend .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.recommend .list li {
  width: 33.3%;
  box-sizing: border-box;
  padding: 0 1.1% 30px;
}
.recommend .hotel {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 5px #ACAAAA;
}
.recommend .hotel .wpt {
  width: 130px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 5px 0;
  border-radius: 20px;
  background-color: #24B4A6;
  text-align: center;
  font-weight: bold;
  color: #FFF;
}
.recommend .status {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommend .status .thumb { margin-bottom: 10px;}
.recommend .status .thumb img {
  width: 100%;
  vertical-align: bottom;
}
.recommend .status .title {
  border-bottom: #ccc 1px solid;
  margin-bottom: 15px;
  padding: 0 0 10px;
  line-height: 1.4em;
  font-weight: bold;
}
.recommend .status .profile { margin-bottom: 15px;}
.recommend .status .info {
  margin: auto 0 15px;
}
.recommend .status .info li {
  width: 100%;
  display: flex;
  align-items: top;
  box-sizing: border-box;
  padding: 0;
  font-size: 1.3rem;
}
.recommend .status .info li div:nth-child(1) {
  width: 50px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.recommend .status .info li div:nth-child(1) span {
  display: inline-block;
  padding: 5px;
  background-color: #eee;
  font-weight: bold;
}
.recommend .status .info li div:nth-child(2) {
  width: 100%;
  display: flex;
  padding: 6px 0 0 10px;
}
.recommend .status .info li div:nth-child(2) p:nth-child(1) { width: 55%;}
.recommend .status .info li div:nth-child(2) p:nth-child(2) { width: 45%;}
.recommend .status .info li div:nth-child(2) span {
  display: block;
}
.recommend .btn_area {
  margin-top: auto;
  text-align: right;
}
.recommend .btn_area .btn_booking,
.recommend .btn_area .btn_disable {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 15px 5px;
  line-height: 1.5em;
  align-items: center;
  justify-content: center;
}
.recommend .btn_area .btn_booking { background-color: #24B4A6;}
.recommend .btn_area .btn_disable {
  padding: 10px 5px;
  background-color: #E8E8E8;
  pointer-events: none;
  line-height: 1.2em;
  color: #ACACAC;
}
.recommend .btn_area .btn_booking:hover { opacity: 0.4;}
.recommend .btn_area .btn_detail {
  text-decoration: none;
  transition: .1s linear;
}
.recommend .btn_area .btn_detail span {
  position: relative;
  box-sizing: border-box;
  padding-right: 15px;
}
.recommend .btn_area .btn_detail:hover {
  text-decoration: underline;
  color: #ff9637;
}
.recommend .btn_area .btn_detail .arrow_right::before,
.recommend .btn_area .btn_detail .arrow_right::after {
  right: 0;
}
.recommend .btn_area .btn_detail:hover .arrow_right::before,
.recommend .btn_area .btn_detail:hover .arrow_right::after {
  background: #ff9637;
}
.recommend .btn_other .btn {
  width: 300px;
  display: none;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 15px 0;
  background-color: #2990DF;
}

@media screen and (max-width: 767px) {
  .recommend  h2 span::before,
  .recommend  h2 span::after {
    width: 57px;
    height: 40px;
    background-size: 57px 40px;
  }
  .recommend  h2 span::before { left: -62px;}
  .recommend  h2 span::after { right: -62px;}
  .recommend .lead {
    width: auto;
    margin: 0 20px 30px;
    text-align: center;
    font-size: 1.5rem;
  }
  .recommend .lead p:nth-child(1) { text-align: left;}
  .recommend .lead .note { font-size: 1.1rem;}
  .recommend .point {
    display: inline-block;
    font-size: 1.8rem;
  }
  .recommend .point span { font-size: 2.0rem;}
  .recommend .list_select li { margin-bottom: 20px;}
  .recommend .inner {
    max-width: none;
    padding: 0;
  }
  .recommend .swipe {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .recommend .swipe .swipe_inner {
    width: auto;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 0 20px;
    padding: 15px 20px 0;
  }
  .recommend .list {
    flex-wrap: nowrap;
  }
  .recommend .list li {
    width: 265px;
    padding: 0 15px 0 0;
  }
  .recommend .list li:last-child {
    width: 250px;
    padding-right: 0;
  }
  .recommend .hotel {
    width: 250px;
    box-sizing: border-box;
    padding: 20px 15px 15px;
  }
  .recommend .hotel .wpt {
    width: 120px;
    font-size: 1.2rem;
  }
  .recommend .status .thumb { width: 220px;}
  .recommend .status .thumb img { width: 100%;}
  .recommend .status .title {
    height: 45px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-size: 1.4rem;
  }
  .recommend .status .profile { font-size: 1.4rem;}
  .recommend .status .info li div:nth-child(2) {
    padding-left: 5px;
    font-size: 1.2rem;
  }
  .recommend .btn_area { text-align: center;}
  .recommend .btn_area .btn_detail span { padding-left: 15px;}
  .recommend .btn_other { padding-top: 20px;}
  .recommend .btn_other .btn { font-size: 1.3rem;}
}

@media screen and (max-width: 480px) {
  .recommend { padding: 30px 0;}
  .recommend .list_select li { width: 90px;}
  .recommend .point { font-size: 1.5rem;}
  .recommend .status .title {
    line-height: 1.4em;
    font-size: 1.4rem;
  }
  .recommend .status .profile {
    line-height: 1.5em;
    font-size: 1.2rem;
  }
  .recommend .info li,
  .recommend .info li:last-child { width: 235px;}
  .recommend .btn_area a { font-size: 1.5rem;}
}

@media screen and (min-width: 768px) {
  .recommend h2 span::before,
  .recommend h2 span::after {
    width: 70px;
    height: 50px;
    background-size: 70px 50px;
  }
  .recommend h2 span::before { left: -75px;}
  .recommend h2 span::after { right: -75px;}
  .recommend .lead {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.8rem;
  }
  .recommend .lead .note { font-size: 1.3rem;}
  .recommend .point { font-size: 2.2rem;}
  .recommend .point span { font-size: 2.5rem;}
  .recommend .list_select { margin-bottom: 60px;}
  .recommend .hotel { padding: 25px 20px 20px;}
  .recommend .hotel .wpt { font-size: 1.4rem;}
  .recommend .status .thumb {
    max-width: 290px;
    margin-bottom: 5px;
  }
  .recommend .status .title {
    height: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-bottom: 5px;
    text-align: center;
    font-size: 1.3rem;
  }
  .recommend .status .profile { font-size: 1.3rem;}
  .recommend .status .info li div:nth-child(2) { font-size: 1.1rem;}
  .recommend .btn_area .btn_booking,
  .recommend .btn_area .btn_detail { font-size: 1.6rem;}
  .recommend .btn_other { padding-top: 40px;}
  .recommend .btn_other .btn { font-size: 1.7rem;}
}
@media screen and (min-width: 960px) {
  .recommend .status .thumb { margin-bottom: 10px;}
  .recommend .status .profile { font-size: 1.5rem;}
  .recommend .status .title {
    padding-bottom: 10px;
    font-size: 1.6rem;
  }
  .recommend .status .info li div:nth-child(2) { font-size: 1.3rem;}
}

/*-------------------------------------------*/
/*  7.0 - キャンペーン
/*-------------------------------------------*/

.campaign {
  box-sizing: border-box;
  padding: 50px 0;
}
.campaign .lead {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5em;
  font-weight: bold;
}
.campaign .bnr {
  display: block;
  margin: 0 auto;
}
.campaign .bnr img {
  width: 100%;
  margin: 0 auto;
  vertical-align: bottom;
  transition: .2s linear;
}
.campaign .bnr img:hover { opacity: 0.7;}

@media screen and (max-width: 767px) {
  .campaign { padding: 30px 0;}
  .campaign .lead {
    text-align: left;
    font-size: 1.6rem;
  }
  .campaign .bnr img { width: 70%;}
}

@media screen and (max-width: 480px) {
  .campaign .bnr img { width: 100%;}
}

@media screen and (min-width: 768px) {
  .campaign .bnr { max-width: 770px;}
  .campaign .lead { font-size: 2.0rem;}
}
