/* CSS Document */

/*------------------------------------------------------------
	リセット
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*▼▼▼ ハンバーガーメニュー ▼▼▼*/
.openbtn{
  background: rgb(0, 0, 0);
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px
}

/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
background: #fff;
  width: 23px;
}


.openbtn span:nth-of-type(1) {
top:13px;	
}

.openbtn span:nth-of-type(2) {
top:19px;
}

.openbtn span:nth-of-type(3) {
top:25px;
}

.openbtn span:nth-of-type(3)::after {
content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
position: absolute;
top:-3px;
left:-3px;
color: #fff;
font-size: 10px;
text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
top:-3px;
left:-3px;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #113a00;
  opacity:95%;
  overflow: auto;
}

.menu li {
  width: 100%;
  height: auto;
  padding: .1em 1em;
  color: #fff;
  box-sizing: border-box;
  border-bottom: 1px dotted #a9a6a6;
}

.menu li a {
  display: block;
}

.menu li a:link {
  color:#ffffff;
  text-decoration: none;
  }

.menu li a:visited {
  color: #ffffff;
  text-decoration: none;
  }

.menu li a:active {
  color: #fff;
}

.menu li a:hover {
  color: #fff;
  text-decoration: underline;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
}




/*▼▼▼  コンテンツの設定   ▼▼▼*/
.wrapper {
  
}

.air_sp_main {
  
}

.set_item_box {
  margin-top: 10vw;
}

.set_item_box, .st_caution {
  padding: 0 5vw;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

body {
  font-size: 16px;
  line-height: 1.8em;
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
}

h2 {
  font-size: 1.3rem;
  border-bottom: 2px dotted darkgreen;
  margin-bottom: 1vw;
}

strong {
  font-weight: bold;
}

.st_caution_bg {
  width: 100%;
  background-color: #ededed;
  margin-bottom: 5vw;
  padding: 5vw 0;
}

.text_red2 {
  color: #CC0000;
}

.kouji_text_1 h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 5vw;
}

.check_list {
padding-bottom: 10px;
  position: relative;
}

.check_list::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 5px;
  background: -webkit-repeating-linear-gradient(-45deg, #b3d16a, #b3d16a 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #b3d16a, #b3d16a 2px, #fff 2px, #fff 4px);
}



/* 料金テーブル */

.air_kouji_price {
  margin-top: 5vw;
}

.air_kouji_table {
  width: 100%;
}

.air_kouji_table table {
  border-collapse: collapse;
  margin: 5vw auto 1vw auto ;
  width: 100%;
}

.air_kouji_table caption {
  border-top: 1px #030303 solid;
  border-left: 1px #030303 solid;
  border-right: 1px #030303 solid;
  background-color: #f0f0f0;
  padding: 2vw;
  font-weight: bold;
  text-align: left;
}

.air_kouji_table table th {
  border: 1px #030303 solid;
}

.air_kouji_table table td {
  border: 1px #030303 solid;
}

.air_kouji_table td {
  padding: 5px;
}

.air_kouji_table th {
  text-align: center;
  padding: 5px 0;
}

.teble_1 {
  background-color: #f0f0f0;
}

.teble_2 {
  width: 70%;
}

.teble_3 {
  width: 30%;
  text-align: right;
}

.air_kouji_table .notes  {
  text-align: right;
  font-size: 80%;
}


/*▼▼▼ よくあるお問い合わせ ▼▼▼*/

.set_text_1 {
	margin:20vw 0;
	}

.set_qa {
	
	}

  .set_mokuji{
    background: #fcfcfc;
    line-height: 20px;

}

.set_mokuji1 ol li {
  list-style-position:inside;
  margin: 7px 0px 14px 0px;
  border-bottom: 1px dotted #a9a6a6;
  /*border-left: solid 2px #ffa600;左側の線*/
  padding: 0px 0px 0px 30px;
}

.set_mokuji1 a {
  color: #000000;
  font-size: 15px;
  text-decoration:none;
}

.list_check {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.list_check > li {
  position: relative;
  padding: 0px 0px 0px 2em;
  margin: 0px;
}
.list_check > li::before,
.list_check > li::after {
  position: absolute;
  top: 50%;
  height: 1em;
  content: "";
}
.list_check > li::before {
  left: 0px;
  transform: translateY(-50%);
  width: 1em;
  border: 1px solid #3388dd;
}
.list_check > li::after {
  left: 0.5em;
  transform: translateY(-75%) rotate(45deg);
  width: 0.5em;
  border-bottom: 3px solid #3388dd;
  border-right: 3px solid #3388dd;
}

h4.qa_title {
	color:#000000;
    font-size: 20px;
    margin: 0;
    padding: 0px 0px 0px 10px;
	}


.set_mokuji ol li {
  list-style-position:inside;
    margin: 7px 0px 14px 0px;
    border-bottom: 1px dotted #a9a6a6;
    border-left: solid 2px #ffa600;/*左側の線*/
    padding: 0px 0px 0px 10px;
	}

.set_mokuji a {
    color: #000000;
    font-size: 13px;
    text-decoration:none;
}

.set_qa table {
	
	}
	
.set_qa td {
	
	}

.set_qa_q {
	border-bottom:1vw dotted #CCCCCC;
	font-weight:bold;
	color:#009933;
	}

.set_qa_q_text {
	border-bottom:1vw dotted #CCCCCC;
  padding: 5vw 0;
 	}

.set_qa_a {
	font-weight:bold;
	color:#0066CC;
	border-bottom:1vw solid #CCCCCC;
  width: 12%;
	}

.set_qa_a2 {
	font-weight:bold;
	color:#0066CC;
  width: 12%;
	}
    
.set_qa_a_text {
	border-bottom:1vw solid #CCCCCC;
  padding: 5vw 0;
	}

.set_qa_a_text2 {
  padding: 5vw 0;
	}

/* フッター */
.footer_ {
  width: 100%;
  margin-top: 10vw;
  padding: 2vw 0;
  background-color: #7c7c7c;
  color: #ffffff;
  text-align: center;
}

.footer_ nav {
  margin-bottom: 5vw;
}

.footer_ nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_ nav li {
  text-align: center;
  padding: 2vw 0;
}

.footer_ small {
  font-size: 0.85rem;
}

.footer_ a:link {
  color:#ffffff;
  text-decoration: none;
  }

.footer_ a:visited {
  color: #ffffff;
  text-decoration: none;
  }

.footer_ a:active {
  color: #fff;
}

.footer_ a:hover {
  color: #fff;
  text-decoration: underline;
}

/*▼▼▼ ページトップへ戻る ▼▼▼*/
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  text-indent: -9999vw;
  margin: 0;
}

#pagetop a {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  background: rgba(0,0,0,1);
  transition: opacity .6s ease;
}

#pagetop a:hover {
  opacity: .3;
}

#pagetop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

@media screen and (max-width:767px) {
#pagetop a {
  width: 45px;
  height: 45px;
}

#pagetop a::before {
  top: 5px;
  width: 10px;
  height: 10px;
}
}