@charset "UTF-8";
html {
	scroll-behavior: smooth;
}

#wrapper {
	overflow: hidden;
}

body {
	margin: 0 auto;
	border-top: none;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
}
/*--------------------header--------------------*/
header {
	width: 100%;
    position: fixed;
    z-index: 1000;
	left: 0;
	top: 0;
    background: #fff;
	height: 80px;
}

.menubar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 960px;
	height: 80px;
	margin: 0 auto;
}

.menubar h1 img {
	margin-left: 10px;
	min-height: 30px;
}

.menu {
	width: 295px;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	color: #251e1c;
}

.menu li a {
	text-decoration: none;
	color: #333333;
	display: inline-block;
	height: 80px;
    position: relative;
	
}

.menu .menu-text {
	padding: 22px 0 24px;
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.menu li a:hover {
	color: #c00;
	
}

.menu li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 7px;
	background: #c00;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	bottom: -10px;
}

.menu li a:hover::after {
	visibility: visible;
	bottom: 0;
	opacity: 1;
}

.kv {
	margin-top: 80px;
}


/*--------------------複数パーツ共通--------------------*/

.inner {
	max-width: 960px;
}

.vbhn-main {
	font-size: 16px;
	color: #333333;
}

.br-768 {
	display: none;
}

.br-960 {
	display: none;
}

.br-sp {
	display: none;
}

.vbhn-main h2 {
	font-size: 32px;
	line-height: normal;
}

.vbhn-main h3 {
	font-size: 28px;
	line-height: normal;
}

.vbhn-main h4 {
	font-size: 18px;
}

.vbhn-main h2, .vbhn-main h3, .vbhn-main h4 {
	font-weight: bold;
	text-align: center;
}

.vbhn-main h2 span, .vbhn-main h3 span, .vbhn-main h4 {
	color: #f08126;
}

#point1 {
	border-top: 1px solid #c1c1c1;
}

.vbhn-main p {
	margin-top: 40px;
	margin-bottom: 60px;
	text-align: center;
	line-height: normal;
}

/*--------------------flex--------------------*/

.flex-box {
	display: flex;
	justify-content: center;
}

.flex-box-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media screen and (max-width: 600px){

	.flex-box-col {
		justify-content: space-evenly;
	}

}



/*--------------------中央寄せ--------------------*/

.taC {
	text-align: center;
}

.center {
	margin: 0 auto;
}

/*--------------------margin/padding--------------------*/

.mt40 {
	margin-top: 40px;
}

.mt61 {
	margin-top: 61px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb41 {
	margin-bottom: 41px;
}




.pr30 {
	padding-right: 30px;
}

.pb80 {
	padding-bottom: 80px;
}


/*--------------------画像表示--------------------*/

.display-pc {
	display: block;
	margin: 0 auto;
}

.display-sp {
	display: none;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	.display-pc { display: none;}

	.display-sp { display: block;}
}

/*--------------------hamburgermenu--------------------*/
.hamburger {
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	cursor: pointer;
	z-index: 1000;
	margin-top: 20px;
  }
  
  #js-hamburger { 
	display:none;
  }
  

@media only screen and (max-width: 768px) {
	#js-hamburger {
		display:block;
	}

	.menu {
		display: block;
	}
}
  
  /* 開く */
  #open-hamburger-menu {
	font-size: 14px!important;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid #333;
	height: 15px;
	width: 100px;
    padding: 9px 10px 8px 35px;
	background-color: #ffffff;
	text-align: center;
	margin-right: 13px;
  }
  
  .hamburger--line {
	position: absolute;
	left: 11px;
	width: 18px;
	height: 1px;
	background-color: #111;
	transition: all .6s;
  }
  .hamburger--line--1 { top: 8px;}
  .hamburger--line--2 { top: 15px;}
  .hamburger--line--3 { top: 22px;}
  
  /* 閉じる */
  #close-hamburger-menu {
	display: none;
	margin: 0 20px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	border: 0;
  }

@media screen and (max-width: 768px) {

  .global-navi-short {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: auto;
  margin-top: 77px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-right: none;
  transition: all .6s;
  z-index: 200;
  overflow-y: visible;
  }

  .nav-open {
	  right: 0;
	  display: block;
  }


  .global-navi-short li::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0.5em;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #c00;
    transform: translateY(-50%);
	margin-left: 10px;
  }

  .global-navi-short li {
  	border-bottom: 1px solid #ccc;
	position: relative;
	padding-left: 40px;
  }

}


/*--------------------main--------------------*/

.vbhn-main {
	overflow: visible;
	margin: 0 auto;
	margin-top: 60px;
}

.bg-fcfaf5 {
	background: linear-gradient(rgba(252, 250, 245, 0), rgba(252, 250, 245, 1) 80px);
}

.vbhn-points h3 {
	line-height: normal;
}

.vbhn-points .points-detail {
	margin-top: 70px;
	display: flex;
	justify-content: center;
	height: 66px;
	line-height: normal;
}

.vbhn-points .points-detail a {
	text-decoration: none;
	color: #333333;
}

.vbhn-points .points-detail a dl {
	padding-right: 30px;
}

.vbhn-points .points-detail a:nth-child(1) dl {
	padding-left: 1px;
	border-left: 2px solid #c1c1c1;
}

.vbhn-points .points-detail a:nth-child(2) dl {
	border-right: 2px solid #c1c1c1;
	border-left: 2px solid #c1c1c1;
}

.vbhn-points .points-detail a:nth-child(3) dl {
	border-right: 2px solid #c1c1c1;
}

.vbhn-points .points-detail a:hover {
	text-decoration: none;
	color: #333333;
}

.vbhn-points .points-detail dl {
	align-items: center;
	height: 66px;
}

.vbhn-points .points-detail dt {
	margin-right: 22px;
	margin-left: 22px;
}

.vbhn-points .points-detail dd {
	font-weight: bold;
}

.vbhn-points .arrows {
	justify-content: space-around;
	margin-top: 19px;
}

.vbhn-pkg-area {
	margin-top: 61px;
}

.vbhn-pkg-area .cart-price-vbhn {
	font-weight: bold;
	font-size: 64px;
	padding-top: 29px;
}

.vbhn-pkg-area .cart-price-vbhn .yen {
	font-size: 28px;
}

.vbhn-pkg-area .cart-price-vbhn .tax {
	font-size: 28px;
}

.vbhn-service {
	margin-top: 20px;
}

.notes-fz14 {
	font-size: 14px;
	margin-top: 14px;
	line-height: normal;
}

.extxt {
	margin-top: 60px;
}


.btnPageClose a {
	font-size: 18px;
	border-radius: 29px;
}

.vbhn-main .card {
	justify-content: space-between;
}

.vbhn-main .btnPageClose {
	margin: 0px;
}

/*--------------------point1--------------------*/
#point1 {
	margin-top: 50px;
}

#point1 h2 {
	margin-top: 50px;
}

#point1 .extxt {
	margin-bottom: 29px;
}

#point1 .btnPageClose {
	padding-bottom: 79px;
}


/*--------------------point2--------------------*/
#point2 h2 {
	margin-top: 54px;
}

#point2 .usescene {
	width: 702px;
	justify-content: space-between;
	margin-top: 31px;
}

#point2 .scene1 {
	margin-top: 80px;
}

#point2 .scene1 h3 {
	margin-top: 20px;
}

#point2 .scene1 .arrow {
	margin-top: 40px;
	margin-bottom: 41px;
}

#point2 .scene2 {
	margin-top: 70px;
}

#point2 .scene2 h3 {
	margin-top: 19px;
}

#point2 .scene2 p {
	margin-top: 38px;
	margin-bottom: 61px;
}

#point2 .scene2 .arrow {
	margin-top: 40px;
}

/*--------------------point3--------------------*/
#point3 h2 {
	margin-top: 53px;
}

#point3 h2 {
	margin-top: 53px;
	margin-bottom: 61px;
}

#point3 h3 {
	margin-top: 61px;
	margin-bottom: 40px;
}

#point3 .link-btn {
	margin-top: 97px;
	justify-content: space-between;
}

#point3 .link-btn a {
	width: 300px;
	height: 60px;
	background-color: #cd3f22;
	color: #fcfaf5;
	border-radius: 29px;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	transition: 0.7s all;
	box-shadow: 0px 0px 5px #aaa;
}

#point3 .link-btn a:hover{
	opacity: 0.7;
}

#point3 .link-btn a div {
	padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
	text-align: center;
}

#point3 .link-btn a div span {
	float: right;
	padding-right: 25px;
}

#point3 .extxt {
	margin-bottom: 30px;
}

#point3 .btnPageClose {
	padding-bottom: 100px;
}


/*--------------------メディアクエリ--------------------*/


@media screen and (max-width: 960px) {
	.inner {
		width: 98%;
	}

	.br-960 {
		display: block;
	}

	.kv .display-pc {
		width: 100%;
	}


	.vbhn-main {
		margin-top: 40px;
	}

	.vbhn-points .points-detail {
		flex-direction: column;
		height: auto;
		margin-top: 40px;
	}

	.vbhn-points .points-detail a {
		display: flex;
		justify-content: center;
		align-items: center;
		border-bottom: 1px solid #c1c1c1;
	}

	.vbhn-points .points-detail a dl {
		padding-right: 23px;
		border: none!important;
	}

	.vbhn-points .points-detail a dl dd {
		width: 210px;
	}

	.vbhn-points .points-detail a:nth-child(1) dl dd {
		padding-bottom: 8px;
	}

	#point1 {
		margin-top: 0;
		border-top: none;
	}

	.vbhn-main .vbhn-pkg-area img, .vbhn-main .vbhn-service img {
		width: 90%;
	}

	.vbhn-main .card .display-pc {
		width: 90%
	}

	#point3 .link-btn a {
		width: 250px;
		justify-content: space-evenly;
	}
}

@media screen and (max-width: 850px) {

	#point1 .display-pc {
		width: 90%;
	}

	.vbhn-main .vbhn-pkg-area {
		width: 90%;
    	margin-right: auto;
		margin-left: auto;
	}

	.vbhn-main .vbhn-pkg-area .vbhn-pkg {
		padding-right: 0px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn {
		font-size: 55px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn .yen {
		font-size: 25px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn .tax {
		font-size: 25px;
	}

	
	#point3 .link-btn a {
		width: 230px;
		justify-content: space-evenly;
	}

	
}

@media screen and (max-width: 768px){

	.menubar h1 img {
		margin-left: 6px;
	}

	.br-768 {
		display: block;
	}

	.kv .display-sp {
		width: 100%;
	}

	.vbhn-main h2 {
		font-size: 28px;
	}

	.vbhn-main h3 {
		font-size: 24px;
	}

	.vbhn-main p {
		margin-top: 30px;
	}

	.vbhn-main .vbhn-pkg-area {
		margin-top: 30px;
	}

	.vbhn-main .vbhn-pkg-area .vbhn-pkg {
		width: 100%;
	}

	.vbhn-main .vbhn-service {
		margin-top: 30px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn {
		font-size: 43px;
		padding-top: 11px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn .yen, .vbhn-main .vbhn-pkg-area .cart-price-vbhn .tax {
		font-size: 20px;
	}


	.vbhn-main .notes-fz14 {
		margin-top: 20px;
	}

	.vbhn-main .extxt {
		margin-bottom: 30px;
	}

	.vbhn-main .card {
		flex-direction: column;
		width: 90%;
		margin: 0 auto;
	}

	.vbhn-main .card div:nth-of-type(2) {
		margin-top: 31px;
		margin-bottom: 31px;
	}

	.vbhn-main .card .display-sp {
		width: 95%;
		align-items: center;
	}

	#point1 h2 {
		margin-top: 27px;
	}

	#point1 p {
		margin-bottom: 38px;
	}
	
	#point1 .display-sp {
		width: 90%;
	}

	#point1 .btnPageClose {
		padding-bottom: 60px;
	}

	#point2 .usescene {
		flex-direction: column;
		width: 90%;
		margin-top: 0;
	}

	#point2 .usescene .display-sp {
		width: 95%;
		align-items: center;
		margin-top: 30px;
	}

	#point2 .scene1 {
		margin-top: 60px;
	}

	#point2 p, #point2 .scene2 p {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#point2 .scene2 {
		margin-top: 60px;
	}

	#point3 h2 {
		margin-top: 26px;
		margin-bottom: 32px;
	}

	#point3 h3 {
		margin-bottom: 30px;
	}

	#point3 .display-sp {
		width: 90%;
	}

	#point3 .link-btn {
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		margin-top: 40px;
	}

	#point3 .link-btn a {
		width: 300px;
	}

	#point3 .link-btn a:nth-child(2) {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	#point3 .btnPageClose {
		padding-bottom: 130px;
	}
}

@media screen and (max-width: 600px) {

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn {
		font-size: 35px;
		padding-top: 11px;
	}

}

@media screen and (max-width: 480px) {
	.br-sp {
		display: block;
	}

	#open-hamburger-menu {
		margin-right: 10px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn {
		font-size: 30px;
		padding-top: 11px;
	}

	.vbhn-main .vbhn-pkg-area .cart-price-vbhn .yen, .vbhn-main .vbhn-pkg-area .cart-price-vbhn .tax {
		font-size: 16px;
	}
}