@charset "UTF-8";

/* 全体 */
.inner {
	max-width: 690px;
	padding: 0 10px;
	margin: 0 auto;
	box-sizing: border-box;
}
/* ヘッダー */ 
header{
	position: relative;
	z-index: 1;
}
header .Company-name {
    position: fixed;
    width: 100%;
	text-align: center;
    box-sizing: border-box;
    padding: 15px 20px 5px;
	background:#fff;
}
header#top-page .Company-name {
	background:#EAF6FB;
/* background:#EEE; */
}
	
header .Company-name img {
    max-width: 100%;
	float:left;
}
.top-image img{
    width: 100%;
    display: block;
}
@media (max-width: 600px) { 
header .Company-name {
   height: 55px;
}
header .Company-name img {
	width: 178px;
	float:none;
	margin-top: 2px;
}
}
/* メニュー */
@media only screen and (min-width: 601px) {
#gnav {
    background: rgba(0,0,0,0);;
}
#gnav .inner{
    max-width: 980px;
    padding: 0;
}
#gnav ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}
#gnav ul li {
    -webkit-box-flex:1;
    -webkit-flex:1;
    -ms-flex:1;
    flex:1;
    display: table;
}
#gnav ul li a {
    display: table-cell;
    width: 100%;
    padding: 12px 5px;
    height: 50px;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    color: #333;
    box-sizing: border-box;
    transition: none 0.5s ease-in-out;
    transition-property: background-color, color;
}
#gnav ul li.in-page a {
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: double;
}
#gnav ul li a:hover {
    color: #f00;
	font-weight:bold;
    /*background: #7c7c7c;*/
	text-decoration: none;
}
#gnav ul li a span {
	display: inline-block;
}
#gnav ul li.m-logo {
  display: none;
}
}
/*スマホメニュー*/
@media only screen and (max-width: 600px) {
#vmenuitem{
  position: absolute;
  right: 0px;
  width: 48px;
  height: 46px;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  z-index: 3;
  text-align: left;
}
.vmenu_on #vmenuitem{
  top: 6px;
}
.vmenu_off #vmenuitem{
  top: 5px;
}
.vmenu_off #vmenuitem:before,
.vmenu_off #vmenuitem:after{
  width: 29px;
  height: 3px;
  content: '';
  position: absolute;
  border-radius: 3em;
  background: #333;
  transition: box-shadow 0s linear, transform 0s 0s;
}
.vmenu_off #vmenuitem:before{
  transform: rotate(0deg) translate3d(9px, 11px, 0);
  box-shadow: #333 0 10px 0;
}
.vmenu_off #vmenuitem:after{
  transform: rotate(0deg) translate3d(9px, 32px, 0);
}
.vmenu_on #vmenuitem:before,
.vmenu_on #vmenuitem:after{
/*  width: 30px;
  height: 3px;
  content: '';
  position: absolute;
  background: #333;
  border-radius: 3em;
  transition: box-shadow 0s linear, transform 0s 0s;*/
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #333;
  border-radius: 3em;
}
.vmenu_on #vmenuitem:before{
/*  transform: rotate(45deg) translate3d(21px, 9px, 0);*/
	transform: translate(-50%,-50%) rotate(45deg);
}
.vmenu_on #vmenuitem:after{
/*  transform: rotate(321deg) translate3d(-7px, 21px, 0);*/
	transform: translate(-50%,-50%) rotate(-45deg);
}
.layer-on{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  transition: .3s ease-in-out;
}
.vmenu_on ul{
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  list-style: none;
  background: #fff;
  z-index: 2;
}
.vmenu_on ul li {
  border-bottom: solid 1px #d1d1d1;
  margin-left: 35px;
}
.vmenu_on ul li.m-logo {
  height: 60px;
  margin-left: 0;
  border: none;
}
header .vmenu_on ul li.m-logo img {
  width: 157px;
  margin-top: 20px;
}
.vmenu_on a{
  display: block;
  height: 54px;
  line-height: 54px;
  width: 100%;
  padding: 0 10px 0 15px;
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
  color: #333;
}
.vmenu_on li.in-page a {
  background: #ffdf12;
  margin: 7px 0 7px -2px;
  padding-left: 18px;
  width: calc(100% + 20px);
  height: 40px;
  line-height: 40px;
  border-radius: 30px 0 0 30px;
}
.vmenu_off ul{
  display:none;
}
.vmenu_on li a:before {
  font: var(--fa-font-solid);
  width: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 7px;
}
.vmenu_on li.m-top a:before {
  content: '\f015';
}
.vmenu_on li.m-calc a:before {
  content: '\f1ec';
}
.vmenu_on li.m-aircraft a:before {
  content: '\f072';
}
.vmenu_on li.m-safety a:before {
  content: '\e574';
}
.vmenu_on li.m-company a:before {
  content: '\f1ad';
}
}
/* 共通 */
section[id^="section-"] {
	padding: 50px 0 75px;
}
section[id^="section-"] h2 {
    display: block;
	text-align: center;
	margin-bottom: 50px;
}	
section[id^="section-"] h2 span.title {
    display: inline-block;
    font-size: 45px;
    font-family: 'Poppins', sans-serif;
	border-bottom-style: solid;
	border-bottom-width: 1px;
    margin-bottom: 8px;
    padding: 0 18px 7px;
    line-height: 1;
	letter-spacing: 3px;
}
section[id^="section-"] h2 span.caption {
    display: block;
	font-size: 18px;
	font-weight: 500;
}
section[id^="section-"].first-section {
 padding-top:130px;
}
section[id^="section-"].first-section-toppage {
 float:left;
 padding:90px 15px 25px;
}
@media (max-width: 600px) {
section[id^="section-"] {
    padding: 25px 0 30px;
}
section[id^="section-"] h2 {
	margin-bottom: 16px;
}	
section[id^="section-"] h2 span.title {
    font-size: 26px;
}
section[id^="section-"] h2 span.caption {
	font-size: 18px;
}
section[id^="section-"].first-section {
 padding-top:86px;
}
section[id^="section-"].first-section-toppage {
 padding-top:75px;
}
}
/* 業務内容 */
#section-business {
	background: -moz-linear-gradient(bottom left,#017ad7 0%, #0455a3 53%);
	background: -webkit-linear-gradient(bottom left, #017ad7 0%, #0455a3 53%);
	background: linear-gradient(to top right, #017ad7 0%, #0455a3 53%);
	background: linear-gradient(to top right, #017ad7 0%, #0455a3 53%);
	/*background: linear-gradient(to top right, #017ad7 0%, #0455a3 53% ) fixed,url(zzz.JPG);
	background-size: cover;*/
}
#section-business h2 {
	color: #fff;
}	
#section-business p.text {
    line-height: 2;
	color: #fff;
	text-align: center
}
#section-business .image-box {
	text-align: center;
	margin: 30px 0;
}
#section-business .image-box .image {
	display: inline-block;
	position: relative;
	width: 44%;
	max-width: 260px;
	margin: 0 15px;
}
#section-business .image-box .image img {
	width: 100%;
}
#section-business .image-box .image:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 100%;
    height: 95%;
    border: 1px solid #488ed9;
}
@media (max-width: 600px) {
#section-business .image-box {
	text-align: center;
	margin: 15px 0;
}
#section-business .image-box .image {
	display: block;
	width: 80%;
	max-width: 260px;
	margin: 0 auto 15px;
}
#section-business .image-box .image:last-child {
	margin: 0 auto;
}
}
#section-business .btn {
	color: #000;
    background: #ffdf12;
}
@media (max-width: 600px) {
#section-business p.text {
    line-height: 1.7;
}
}
/* セーフティパイロット派遣 */
#section-dispatch {
    background: #eaf6fb;
}
#section-dispatch h2 {
	color: #0455a3;
}	
#section-dispatch h2 span.title {
    border-bottom-color: #0455a3;
}
#section-dispatch p.text {
    margin-bottom: 34px;
}
#section-dispatch .image-box {
	text-align: center;
	margin: 10px 0;
}
#section-dispatch .image-box .image {
	display: inline-block;
	position: relative;
	width: 44%;
	max-width: 260px;
	margin: 0 15px;
}
#section-dispatch .image-box .image img {
	width: 100%;
}
#section-dispatch .image-box .image:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 100%;
    height: 95%;
    border: 1px solid #488ed9;
}
@media (max-width: 600px) {
#section-dispatch .image-box {
	text-align: center;
	margin: 15px 0;
}
#section-dispatch .image-box .image {
	display: block;
	width: 80%;
	max-width: 260px;
	margin: 0 auto 15px;
}
#section-dispatch .image-box .image:last-child {
	margin: 0 auto;
}
}
#section-dispatch .btn-area img {
    margin-bottom: -5px;
}
/* 中古機サイト入口 */
#section-shop h2 span b {
	display: inline-block;
	margin-left: 0.4em;
}
#section-shop .image-box {
	text-align: center;
	margin: 15px 0 0;
}
#section-shop .image-box img {
	max-width: 100%;
}
@media (max-width: 374px) {
#section-shop h2 span b {
	display: block;
	margin-left: 0;
}
}

/* 代表挨拶 */
#section-message {
    background: #eaf6fb;
}
#section-message h2 {
	color: #0455a3;
}
#section-message h2 span.title {
    border-bottom-color: #0455a3;
}
#section-message .president {
	text-align: right;
	margin-top: 20px;
}
/* 会社概要 */
#section-company {
}
#section-company h2 span.title {
    border-bottom-color: #000;
}
/* 申込ページ共通 */
section[id^="apply-"] {
    background: #f5f5f5;
}
section[id^="apply-"] h2,
section[id^="apply-"] h3 {
	color: #fff;
    font-size: 24px;
    padding: 10px 0;
    font-weight: normal;
	text-align: center;
}
section[id^="apply-"] h2 {
    background: #0455a3;
}
section[id^="apply-"] h3 {
    margin-bottom: 40px;
    background: #666;
}
section[id^="apply-"] h2 span.inner,
section[id^="apply-"] h3 span.inner {
    display: block;
}
section[id^="apply-"] #form-area {
    padding: 0 0 50px;
}
.outline {
    padding-bottom: 50px;
}
.outline .box {
    padding: 40px;
    background: #fff;
    box-shadow: 6px 6px #d8d8d8;
}
.outline .box ul {
    list-style: none;
	 background: #fff;
}
.outline .box ul li {
    margin-bottom: 5px;
    text-indent: -1em;
    padding-left: 1em;
    /*border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;*/
}
.outline .box ul li:before{
	content:"■"
}
@media (max-width: 600px) {
section[id^="apply-"] h2,
section[id^="apply-"] h3 {
    font-size: 20px;
}
section[id^="apply-"] h3 {
    margin-bottom: 10px;
}
.outline {
    padding-bottom: 25px;
}
section[id^="apply-"] #form-area {
    padding: 0 0 30px;
}
.outline .box {
    padding: 14px;
	box-shadow: 4px 4px #d8d8d8;
}
}
/* 訓練飛行同乗申込み */

/* セーフティパイロット申込み */
#apply-pilot .outline .text{
    padding: 40px;
    background: #fff;
    box-shadow: 6px 6px #d8d8d8;
    margin-bottom: 30px;
}
.table-apply-pilot {
	display: inline-block;
	border: 2px solid #cdcdcd;
	padding: 0;
	margin-top: 10px;
	margin-bottom: 3px;
}
.table-apply-pilot table {

    border-spacing: initial;
	padding-top: 5px;
}
.table-apply-pilot table tr {
    border-bottom: 1px dotted #a7a7a7;
}
.table-apply-pilot table tr:last-child {
    border-bottom: none;
}
.table-apply-pilot table th,
.table-apply-pilot table td {
    height: 28px;
    padding: 5px 10px;
    text-indent: initial;
}
.table-apply-pilot table th {
    text-align: left;
    width: 80px;
    font-weight: normal;
    background: #f7f7f7;
}
@media (max-width: 600px) {
#apply-pilot .outline .text{
    padding: 14px;
}
}
/* フッター */
footer {
	color: #fff;
	background: #393939;
}
footer nav {
	dispay: block;
	text-align: center;
	padding: 20px 0;
}
footer nav ul li {
	display: inline-block;
}
footer nav ul li:before {
    content: "|";
    margin-left: 15px;
    padding-right: 15px;
	color: #fff;
}
footer nav ul li:first-child:before {
    content: "";
    margin-left: 0;
    padding-right: 0;
}
footer nav ul li a,
footer nav ul li a:hover {
	color: #fff;
}
footer small {
    display: block;
    text-align: center;
    font-size: small;
    padding: 20px 0;
	color: #fff;
}
@media (max-width: 600px) {
footer nav {
    padding: 0;
}
footer nav .inner{
    padding: 0;
}
footer nav ul {
    display: block;
	overflow: auto;
	border-bottom: 1px solid #ccc;
}
footer nav ul li {
    display: block;
    float: left;
    width:50%;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}
footer nav ul li:last-child,
footer nav ul li:nth-last-child(2)  {
	border-bottom: none;
}
footer nav ul li:before {
    content: "";
    margin-left: 0;
    padding-right: 0;
}
footer nav ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    padding: 12px 5px;
    box-sizing: border-box;
}
footer small {
    font-size: 11px;
	clear: left;
}
}


.person_frame1 {
	/*margin-left:1%;*/
	float:left;
	width:9%;
	height:400px;
	background:rgba(255,0,0,0);
}
.person_frame2 {
	/*width:90%;*/
	height:400px;
	background:rgba(0,255,0,0);
}
.pic_frame {
	display: inline-block;
	vertical-align: top;
	margin:1%;
	padding:2%;
	box-sizing: border-box;
	width:23%;
	text-align:center;
	font-size:12px;
}
.pic_frame img {
	width:100%;
	box-shadow: 3px 3px 6px #666666; 
}
.pic_frame span {
	font-weight:bold;
	font-size:15px;
}

.image-box-inner {
	width:100%;
	height:100px;
/*background:#ff0;*/
}

.image-x img {
	float:left;
	margin:0 2% 20px;
	width:100%;
	box-shadow: 6px 6px 10px #666; 
	/* background:#ff0;*/ 
}
.title-x {
    display: inline-block;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
	border-bottom-style: solid;
	border-bottom-width: 1px;
    margin-bottom: 0px;
    padding: 0 18px 5px;
    line-height: 1;
	letter-spacing: 3px;
	text-align:center;
	box-sizing: border-box;
	width:100%;
}
.table-spec {
	margin:0 auto;
	width:75%;
}
.safety-philo {
/*	background:#ff0;*/
	margin:0 auto;
	width:65%;
}

@media (max-width: 600px) { 
	.pic_frame {
		font-size:10px;
		width:28%;
	}
	.person_frame1 {
		height:350px;
	}
	.person_frame2 {
		/*height:350px;*/
		height:auto;
		padding-left:60px;
		box-sizing:border-box;
	}
	.image-box-inner {
		height:150px;
	}
	.title-x {
	    font-size: 18px;
	}
	.table-spec {
		width:95%;
	}
	.safety-philo {
		width:85%;
	}
}
/* TOPぺージのお知らせ */
.news-list {
    padding: 10px 14px 12px;
    background: rgb(255 255 255 / 70%);
	border: 3px solid #a0c6d5;
}
.news-list ul {
	margin: 0;
}
.news-list ul li {
	display: table;
	width: 100%;
	list-style: none;
	line-height: 1.5em;
	margin: 0 0 15px;
	padding-top: 15px;
	border-top: 1px dotted #b3b3b3;
}
.news-list ul li:first-child {
	border-top: none;
}
.date {
    display: table-cell;
    width: 105px;
    text-align: center;
	font-weight: bold;
}
.news{
	display: table-cell;
	padding-left: 10px;
}
/*-----*/
.news-list2 {
    padding: 10px 24px 12px;
	color:#fff;
}
/*-----*/
@media (max-width: 600px) {
.news-list ul li {
    margin: 0 0 7px;
    padding-top: 10px;
}	
.date {
	display: block;
	width: 100%;
    text-align: left;
}
.news{
	display: block;
	padding-left: 0;
}
}



/* ご利用についてぺージ */
.guidance-list,
.guidance-list2 {
  margin: 0 auto 34px;
  max-width: 400px;
}
.guidance-list ul,
.guidance-list2 ul {
  list-style: none;
  padding: 18px 30px;
  background: rgb(255 255 255);
  border: 3px solid #a0c6d5;
}
@media (max-width: 600px) {
.guidance-list ul,
.guidance-list2 ul {
padding: 10px 14px 12px;
}
}
.guidance-list li,
.guidance-list2 li {
    padding: 6px 0;
    border-bottom: 1px dotted #b3b3b3;
}
.guidance-list li:last-child,
.guidance-list2 li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.guidance-list li:first-child,
.guidance-list2 li:first-child {
    padding-top: 0;
}
.guidance-list2 li a {
 text-decoration: underline;
 margin-left: 3px;
}
.guidance-list li a,
.guidance-list2 li p {
	display: block;
	position: relative;
	padding-left:1.2em;
	vertical-align: middle;
	vertical-align: -webkit-baseline-middle;
}
.guidance-list a:before,
.guidance-list2 li p:before {
    content: "● ";
	position: absolute;
	left:0;
	top:0;
}
.guidance-text {
	text-align: center;
}
@media (max-width: 600px) {
.guidance-text {
	text-align: left;
}
}
/* 料金計算（結果）ぺージ */
.caliculation-result {
    max-width: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}
/* 法人契約申込みフォーム */
.application-form table {
  margin:0 auto;
  border:none;
}
.application-form table th {
    padding: 0;
    vertical-align: middle;
    width: 160px;
    line-height: 1;
}
.application-form table th .required-mark {
    display: inline-block;
    width: 34px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    border-radius: 2px;
    background: #ff2626;
    color: #fff;
    text-align: center;
    margin-left: 7px;
    margin-top: -2px;
    vertical-align: middle;
}
.application-form table td {
    padding: 6px 16px;
}
.application-form table td input[type="text"] {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    height: 43px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #777777;
}
.application-form table td.birth-date input[type="text"] {
    width: 46px;
	margin-right: 5px;
}
.application-form table td.birth-date input[type="text"]:first-child {
    width: 68px;
}
.application-form table td textarea {
    display: block;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    height: 72px;
    line-height: 1.5;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #777777;
}
.application-form table td.tel-field select {
    height: 43px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #777777;
	background: #fff;
	color:#000;
}
.application-form table td.tel-field input[type="text"] {
    width: calc(100% - 106px);
    float: right;
}
.application-form.trialmember table td.tel-field input[type="text"] {
    width: 100%;
    float: none;
}
.application-form.trialmember table td.tel-caption {
	padding-top: 0;
	padding-bottom: 0;
}
.application-form.trialmember table td.tel-caption span {
	display:inline-block;
	font-size:12px;
	background:none;
	padding:0;
}	
.application-form.trialmember input[type=checkbox] {
    display: none;
}
.anyairport-check {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 28px;
    position: relative;
    width: auto;
	font-weight: normal;
}
.anyairport-check::before {
    background: #fff;
    border: 1px solid #777777;
    content: '';
    display: block;
    height: 17px;
    left: 2px;
    margin-top: -11px;
    position: absolute;
    top: 50%;
    width: 18px;
    border-radius: 3px;
}
.anyairport-check::after {
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    content: '';
    display: block;
    height: 9px;
    left: 9px;
    margin-top: -8px;
    opacity: 0;
    position: absolute;
    top: 43%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .anyairport-check::after {
    opacity: 1;
}
.application-form.trialmember table tr.desired-airport1 th,
.application-form.trialmember table tr.desired-airport2 th {
    line-height:20px;
    font-size:14px;
}
@media (max-width: 600px) {
.application-form table {
  margin:0;
  width: 100%;
}
.application-form table th,
.application-form table td {
    display: block;
}
.application-form table th {
    width: 100%;
	text-align: left;
}
.application-form table td {
    padding: 5px 0 15px;
    width: 100%;
}
.application-form table td.number-input {
	padding-bottom: 5px;
}
.application-form.trialmember table td.tel-field {
	padding-bottom: 5px;
}
.application-form.trialmember table td.tel-caption {
	padding-bottom: 10px;
}
.application-form table td input[type="text"] {
    padding: 6px 8px;
    height: 34px;
}
.application-form table td.tel-field select {
    height: 34px;
}
.application-form.trialmember table tr.desired-airport1 th,
.application-form.trialmember table tr.desired-airport2 th {
    line-height:1;
    font-size:16px;
}
.application-form.trialmember table tr.desired-airport2 td {
    padding-bottom: 5px;  
}	
.application-form.trialmember table td.checkbox-field {
    padding: 6px 0 10px;
}
}
.application-form-error {
    max-width: 551px;
    margin: 0 auto 20px;
    border: solid 2px red;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: 1.5;
}
@media (max-width: 600px) {
.application-form-error {
    max-width: none;
}
}	
.application-completed {
    min-height: 490px;
}
@media (max-width: 600px) {
.application-completed {
	min-height: auto;
}
}
/* 価格表ぺージ */
.price-table {
	max-width: 320px;
	margin: 0 auto 30px;
}
@media (max-width: 600px) {
.price-table {
	max-width: none;
}
}
.price-table table {
	width: 100%;
    border: 2px solid #000;
}
.price-table table th {
    background: #dcf3fb;
    border-color: #666;
}
.price-table table td {
    background: #fff;
    border-color: #666;
}
/* キャンセルポリシー */
.cancel-table {
	width:500px;
	margin: 0 auto 30px;
}
@media (max-width: 600px) {
.cancel-table {
	width: 100%;
}
}
.cancel-table table {
	width: 100%;
    border: 2px solid #000;
	box-sizing: border-box;
}
.cancel-table table th {
    background: #dcf3fb;
    border-color: #666;
}
.cancel-table table td {
    background: #fff;
    border-color: #666;
}	
/* お知らせ　詳細ぺージ */
@media (max-width: 600px) {
.guidance-text.info-text {
	text-align: center;
}
}
#section-dispatch .info-text p.text {
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 3px solid #000;
    display: inline-block;
}
.guidance-list img.dl-thum {
  position: absolute;
  top: -9px;
  margin-left: 8px;
  width: 58px;
}
/* TOPページのあいさつ文 */
#section-business p.text.top-greeting {
	text-align: left;
    /*line-height: 30px;*/
	line-height: 1.7;
}
/* TOPページのTRIAL FLIGHT */
.tf-attention-wrap {
  background: #fff;
  padding: 20px 14px 16px;
  border: 3px solid #488ed9;
  margin: 20px 0 0;
}
.tf-attention-wrap ul li{
  color: #000;
  list-style: none;
  text-indent: -1.3em;
}
.tf-attention-wrap ul li:before{
	content: "●";
	margin-right: 0.3em;
}
.tf-attention {
  background: #488ed9;
  color: #fff;
  padding: 7px 10px 3px;
  border-radius: 2px;
  margin-bottom: 5px;
}
.tf-attention-list {
    padding: 10px 20px 0;
}
/* TOPページのトライアル会員ログイン */
.tm-login-wrap {
	margin-top: 30px;
	background: #0003;
	padding: 21px;
	overflow: auto;
}
.tm-login-text {
	color: #fff;
	float: left;
	width: calc(100% - 120px);
}
.btn-tm-login-area {
	margin-top: 0;
	float: right;
}
a.btn-tm-login {
	-webkit-appearance: none;
	display: block;
    width: 108px;
    color: #000;
    font-size: 16px;
	line-height: 1.5;
    text-align: center;
    padding: 18px 0;
    background: #ffdf12;
    border: none;
    box-shadow: 0 4px rgb(0 0 0 / 15%);
    cursor: pointer;
}
a.btn-tm-login:hover {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
	text-decoration: none;
}
@media (max-width: 600px) {
.tm-login-wrap {
	padding: 21px 14px;
}
.tm-login-text {
	float: none;
	width: 100%;
}
.btn-tm-login-area {
	float: none;
	margin-top: 8px;
}
a.btn-tm-login {
    width: 218px;
    padding: 12px 0;
    margin: 0 auto;
}
}
/* ログインフォーム */
.login-form {
  margin: 0 auto 40px;
  width: 270px;
  box-sizing: border-box;
  /* background: rgb(255 255 255 / 70%); */
  /* border: 1px solid #a0c6d5; */
}
.login-form table {
  border:none;
  width: 100%;
}
.login-form table td {
	padding:5px 0;
	border:none;
}
.login-form table td input[type="tel"],
.login-form table td input[type="password"],
.login-form table td input[type="text"],
.login-form table td input[type="email"] {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    height: 43px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #777777;
}
.password-forgot {
    margin: 7px auto 0;
    text-align: center;
    font-size: 14px;
}
.password-forgot a {
	font-weight: bold;
    text-decoration: underline;
    color: #0455a3;
	margin-left: 2px;
}
.password-forgot a:hover {
	color: #177ee1;
}
.btn-tm-long-pge-wrap {
  margin: 20px auto 0;
  overflow: hidden;
}
.btn-tm-long-pge-wrap .btn-base-style .btn{
  width: 100px;
  padding: 12px 0;
}
.login-pge-text{
  text-align: center;
  margin-bottom: 34px;
}
@media (max-width: 600px) {
.login-form {
  width: auto;
  margin-bottom: 10px;
}
.btn-tm-long-pge-wrap {
  width: 230px;
}
.column-left.btn-tm-long-pge {
  float: left;
  margin-top: 0;
}
.column-right.btn-tm-long-pge {
  float: right;
}
.login-pge-text{
  text-align: left;
  margin-bottom: 10px;
}
}
/* パスワードの表示・非表示切替 */
.input-wrap {
    position: relative;
}   
.toggle-pass {
    position:absolute;
    top:50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.input-wrap i.fa {
    color: #444;
}
::-ms-reveal {
    display: none;
}
/* 会員情報編集フォーム */
.registration-date span {
    display: inline-block;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
/* パスワードの設定 */
.tm-password-set {
  margin: 0 auto 40px;
  width: 270px;
  box-sizing: border-box;
}
.tm-password-set table {
  border:none;
  width: 100%;
}
.tm-password-set table td {
	padding:5px 0;
	border:none;
}
.tm-password-set table td input[type="password"],
.tm-password-set table td input[type="text"] {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    height: 43px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #777777;
}
.btn-tm-password-set-wrap {
  margin: 20px auto 0;
  overflow: hidden;
}
.btn-tm-password-set-wrap .btn-base-style .btn {
  width: 110px;
  padding: 12px 0;
}
.tm-password-set-text {
  text-align: center;
  margin-bottom: 34px;
}
.tm-password-set-text u {
  display: inline-block;
  margin-bottom: 10px;
}
.tm-password-set-caption {
  margin-top: 5px;
  font-size: 14px;
}
.tm-password-set-caption span {
  color: red;
}
@media (max-width: 600px) {
.tm-password-set {
  width: auto;
  margin-bottom: 10px;
}
.btn-tm-password-set-wrap {
  width: 230px;
}
.column-left.btn-tm-password-set {
  float: left;
  margin-top: 0;
}
.column-right.btn-tm-password-set {
  float: right;
}
.tm-password-set-text {
  text-align: left;
  margin-bottom: 10px;
}
}
/* ボタン */
.btn-base-style .btn.btn-type1{
    max-width: 300px;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: black;
    background: #ffdf12;
}
/* トップページ　キャンセルポリシーとペット同乗規約ボタン */
#section-business .btn-base-style .btn.btn-type2{
    width: 205px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    padding: 9px 0;
    background: #d6d6d6;
}
@media (max-width: 600px) {
#section-business .btn-base-style .btn.btn-type2{
    max-width: 300px;
    width: 100%;
    padding: 4px 0;
}
}
.btn-column-wrap2 {
    margin: 20px auto 0;
    padding: 10px 40px;
    overflow: hidden;
    max-width: 450px;
}
@media (max-width: 600px) {
.btn-column-wrap2 {
    margin: 14px auto 0;
	padding: 10px 0;
}
.btn-column-wrap2 .column-left {
  margin-top: 0;
}
.btn-column-wrap2 .column-right {
  margin-top: 15px;
}
}

/*トップページに国旗を表示
（外国語ページのリンク用）*/
.flag-menu-wraper {
  position: relative;
}
@media (min-width: 601px) {
header .Company-name:has(> div.flag-menu-wraper) {
  padding-top: 2px;
}
#gnav ul li.flag-block {
  position: absolute;
  top: 0;
  right: -12px;
  display: block;
  font-size: 0;
}
#gnav ul li.flag-block a {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  margin-left: 2px;
}
.flag-title {
  display: none;
}
.menu-block {
 padding-top: 24px;
}
header.flag + article section[id^="section-"].first-section-toppage {
  padding-top: 127px;
}
}
header .Company-name .flag-block img {
  width: auto;
  margin: 0;
}
.flag-block a:hover img {
  opacity: 1;
}
@media (max-width: 600px) {
.flag-menu-wraper {
  position: static;
}
.vmenu_on ul li.flag-block {
  margin: 0 0 0 35px;
  padding: 16px 0;
  text-align: left;
}
.flag-wraper {
  position: relative;
  margin-left: 14px;
}
.vmenu_on .flag-block a {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: inherit;
  padding: 0;
}
.vmenu_on li span.flag-title:before {
  content: '\f1ab';
  font: var(--fa-font-solid);
  width: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 7px;
}
span.flag-title {
  display: block;
  text-align: left;
  padding: 0 10px 8px 15px;
}
.menu-block {
}
}
/*料金計算ページの問合せ画面*/
.inquiry-form-wrap {
  max-width: 418px;
  margin: 0 auto;
}
.inquiry-form-wrap table {
  width: 100%;
  margin:0 auto;
  border:none;
  border-collapse: separate;
  border-spacing: 0 6px;
}
.inquiry-form-wrap table th {
  width: 170px;
  height: 50px;
  padding: 0 0 0 15px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  line-height: 1;
  border: none;
  background: #d7e5ec;
  box-sizing: border-box;
}
.inquiry-form-wrap table td {
  max-width: 248px;
  padding: 6px 16px;
  border: none;
  background: #d7e5ec;
  box-sizing: border-box;
}
.inquiry-form-wrap.inquiry-check table.calc-result {
  border-spacing: 0;
}
@media (min-width: 601px) {
.inquiry-form-wrap.inquiry-check table.calc-result th {
  display: block;
  width: 100%;
  padding: 16px 16px 6px;
  height: auto;
}
.inquiry-form-wrap.inquiry-check table.calc-result td {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 16px 16px;
}
}
.inquiry-form-wrap table th .required-mark {
  display: inline-block;
  width: 34px;
  height: 22px;
  margin-left: 7px;
  margin-top: -2px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
  border-radius: 2px;
  background: #ff2626;
}
.inquiry-form-wrap table td input[type="text"] {
  font-size: 16px;
  padding: 10px;
  width: 100%;
  height: 43px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #777777;
}
.inquiry-form-wrap table td textarea {
  display: block;
  width: 100%;
  height: 72px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #777777;
  border-radius: 3px;
  box-sizing: border-box;
}
.inquiry-form-wrap.inquiry-check table th {
  width: 144px;
  font-weight: bold;
}
.inquiry-form-wrap.inquiry-check table td{
  line-height: 1.5;
  word-break: break-word;
}
.inquiry-form-wrap.inquiry-check table td:has(textarea) {
  padding: 16px;
}
.inquiry-form-wrap.inquiry-check table td textarea {
  height: auto;
}
@media (max-width: 600px) {
.inquiry-form-wrap table {
  width: 100%;
  margin:0;
}
.inquiry-form-wrap table th {
  display: block;
  width: 100%;
  padding: 12px 10px 6px;
  height: auto;
}
.inquiry-form-wrap.inquiry-check table th {
  width: 100%;
}
.inquiry-form-wrap table td {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 10px 12px;
}
.inquiry-form-wrap.inquiry-check table td:has(textarea) {
  padding: 0 10px 16px;
}
.inquiry-form-wrap table td input[type="text"] {
  height: 34px;
  padding: 6px 8px;
}
}
/*使用機材ページの表*/
.spec-list-left {
 width: 48%;
 float: left;
}
.spec-list-right {
 width: 48%;
 float: right;
}
@media (max-width: 600px) {
.spec-list-left,
.spec-list-right {
 width: auto;
 float: none;
}
}