/* 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;
}
ol, 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: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }

.openbtn span:nth-of-type(1) {
  top:15px; 
}

.openbtn span:nth-of-type(2) {
  top:23px;
}

.openbtn span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    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: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.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: #002e74;
  opacity:95%;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu__item a {
  display: block;
}

.menu__item a:link {
  color:#ffffff;
  text-decoration: none;
  }

.menu__item a:visited {
  color: #ffffff;
  text-decoration: none;
  }

.menu__item a:active {
  color: #fff;
}

.menu__item 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;
}

.enho_menu_name {
    position: relative;
	  padding-bottom: 10px;
    width: 100%;
    font-size: 24px;
    border-bottom: 5px solid #c7c7c7;
}

.enho_menu_name::after {
    content:  '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #29619E;
}

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 h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 5vw;
  margin-bottom: 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;
}

.enho_table table {
    width: 740px;
}

.enho_table table {
    width: 98%;
    border-collapse: collapse;
    margin: 20px auto 20px auto;
}

.enho_table table th {
    border: 1px #030303 solid;
}

.enho_table table td {
    border: 1px #030303 solid;
}

.enho_table td {
    padding: 5px;
}

.enho_table th {
    text-align: center;
    padding: 5px 0;
}

.enho_table_item_1 {
    width: 20%;
}

.enho_table_item_2 {
    width: 80%;
}

.enho_table_price_1,.enho_table_price_2,.enho_table_price_3 {
    width: 33%;
}

/*▼▼▼ ご注意事項 ▼▼▼*/
.enho_cyui1 ul {

}

.enho_cyui1 li {
  list-style:disc;
  margin-left: 2em;
}

.enho_cyui2 li {
  list-style:none;
  margin-left: 1em;
}

/*▼▼▼ よくあるお問い合わせ ▼▼▼*/

.set_text_1 {
	margin:20vw 0;
	}

.set_qa {
	
	}

.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;
}
}
