* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html,body {
	height: 100%;
}
body {
	font-size: 16px;
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	background: #eee;
	-webkit-text-size-adjust: 100%;
}

br {
    font-size: 0px;
}

#main {
	background: #eee;
}
#main-in {
	padding-left: 260px;
}
#main p {
	
	line-height: 1.9;
}
#main .inner {
	padding: 60px;
}

/* main-visual */
#main-visual {
	background: url(../images/main.png);
	background-repeat: no-repeat;
	/*
	background: #64CE80;
	background: -webkit-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -moz-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -ms-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -o-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: linear-gradient(-45deg, #64CE80, #C68BC4);*/


	height: 614px;
	display: flex;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

#main-visual-sub {
	background: url(../images/main-sub.png);
	background-repeat: no-repeat;
	/*
	background: #64CE80;
	background: -webkit-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -moz-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -ms-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -o-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: linear-gradient(-45deg, #64CE80, #C68BC4);*/


	height: 361px;
	display: flex;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

#main-visual h2 {
	font-size: 180%;
	color: #fff;
}
h3 {
	font-size: 131%;
	margin-bottom: .7em;
}
#copyright a {
	color: #666;
	text-decoration: none;
}
#copyright a:hover {
	text-decoration: underline;
}

.pa{
  position: absolute!important;
    bottom: 0;
    font-size: 13px;
    right: 0;
}

.pa a:hover{
  background: #ffffff!important;
  color: #033560!important;
}


/* ここから */
#global-head {
	position: fixed;
	color: #033560;
	width: 260px;
	text-align: center;
	padding-top: 60px;
	z-index: 100;
}

#sidebar {
	font-size: 15px;
	padding-top: 160px;
	width: 260px;
	height: 100%;
	position: fixed;
	color: #033560;
	background: #fff;
	text-align: right;
}

#global-nav ul {
	list-style: none;
	margin-left: 0;
}
#global-nav > ul > li {
	position: relative;
}

#global-nav a {
	color: #033560;
	text-decoration: none;
	display: block;
	padding: 15px 40px;
	-moz-transition: background-color .3s linear;
	-webkit-transition: background-color .3s linear;
	transition: background-color .3s linear;
}
#global-nav .sub-menu.is-active > a,
#global-nav a:hover {
	color: #fff;
	background: #033560;
}

a:hover img{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}

#global-nav .sub-menu-nav a,
#global-nav .sub-menu:hover .sub-menu-nav {
	width: 230px;
}

/* sub-menu icon */
#global-nav .sub-menu-head {
	position: relative;
}
#global-nav .sub-menu-head:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	margin: auto;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 1px solid #033560;
	border-right: 1px solid #033560;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* sub-menu */
#global-nav .sub-menu-nav {
	position: fixed;
	background: #033560;
	color: #fff;
	top: 0;
	padding-top: 90px;
	left: 260px;
	width: 0;
	height: 100%;
	overflow: hidden;

	-moz-transition: width .2s ease-out;
	-webkit-transition: width .2s ease-out;
	transition: width .2s ease-out;
}
#global-nav .sub-menu.is-active > a:after,
#global-nav .sub-menu-head:hover:after {
	border-color: #fff;
}
#global-nav .sub-menu-nav a {
	color: #fff;
}
#global-nav .sub-menu-nav a:hover {
	color: #033560;
	background: #fff;
}


/* nav-toggle */
#nav-toggle {
	display: none;
	position: fixed;
	top: 15px;
	right: 15px;
	height: 32px;
}
#nav-toggle > div {
	position: relative;
	width: 32px;
}
#nav-toggle span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: #033560;
	position: absolute;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}


#overlay {
	display: none;
	position: fixed;
	background: rgba(0,0,0,.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.base {
    max-width: 1035px;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
	text-justify: distribute-all-lines;

}

.base:after {
	content:"";
	display: inline-block;
	width: 100%;
	line-height:0;
	height: 0;
}

.pcout {
    display: none;
}
.dib {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
}

.dib {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
}

.dib2 {
    display: inline-block;
    vertical-align: middle;
    padding-right: 15px;
}

.con2_2in img {
    padding-bottom: 40px;
}

.con2_2in_1 img {
    padding-bottom: 40px;
}

.con2_2in_2 img {
    padding-bottom: 40px;
}

.btimg {
    text-align: center;
}

.con2_2in {
    text-align: center;
}

.con2_2in_1 {
    text-align: center;
    margin-left: 35px;
}

.con2_2in_2 {
    text-align: center;
    margin-left: 38px;
}


.con2_2{
	    width: 480px;
    margin: 0 auto;
    text-align: center;
}

.news {
    vertical-align: middle;
    letter-spacing: 3px;
    width: 480px;
    padding-top: 30px;
    margin-top: 30px;
    margin: 0 auto;
    font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.news dt {
    width: 190px;
    font-size: 1em;
    line-height: 150%;
    display: block;
    float: left;
    clear: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
}

.news .date {
    margin: 0 5px 0 0;
    padding: 0;
    font-size: 108%;
}

.news dd {
    font-size: 1em;
    line-height: 150%;
    border-bottom: 1px #CCCCCC solid;
    margin: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 120px;
}

.news dd img {
    vertical-align: middle;
}

.copy {
    background: #256790;
    letter-spacing: 3px;
    font-size: 14px;
}

.copyright {
    text-align: center;
    margin: 30px 0 0 0;
    letter-spacing: 3px;
    padding: 20px 0;
    font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    color: #ffffff;
}

.footmenu{
	padding: 100px 0 20px 0;
	text-align: center;
	    letter-spacing: 2px;
}

.akityou span {
display: inline-block;
width: 5em;
}

h3 {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 6px solid #c0c0c0;
}

h3:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #4F9DCF;
}

h2.newsmidashi {
    background: url(../images/icon.png) no-repeat;
    position: relative;
      padding: 0.5rem 4rem;
  border-bottom: 6px solid #c0c0c0;
}
h2.newsmidashi:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #4F9DCF;
}

/*rinen*/

..tab_wrap{width:500px; margin:80px auto;}
input[type="radio"]{display:none;}
.tab_area{font-size:0; margin:0 0px;}
.tab_area label{width:121px; margin:0 5px; display:inline-block; padding:12px 0; color:#256790; background:#ddd; text-align:center; font-size:15px; cursor:pointer; transition:ease 0.2s opacity;}
.tab_area label:hover{opacity:0.5;}
.tab_area2{font-size:0; margin:0 0px;}
.tab_area2 label{width:98px; margin:0 5px; display:inline-block; padding:12px 0; color:#256790; background:#ddd; text-align:center; font-size:15px; cursor:pointer; transition:ease 0.2s opacity;}
.tab_area2 label:hover{opacity:0.5;}
.panel_area{background:#fff; border-top: 3px solid #256790;}
.tab_panel{width:100%; padding:30px 0; display:none;}
.tab_panel p{font-size:16px; letter-spacing:1px; text-align:center;}

#tab1:checked ~ .tab_area .tab1_label{background:#256790; color:#fff;}
#tab1:checked ~ .panel_area #panel1{display:block;}
#tab2:checked ~ .tab_area .tab2_label{background:#256790; color:#fff;}
#tab2:checked ~ .panel_area #panel2{display:block;}
#tab3:checked ~ .tab_area .tab3_label{background:#256790; color:#fff;}
#tab3:checked ~ .panel_area #panel3{display:block;}
#tab4:checked ~ .tab_area .tab4_label{background:#256790; color:#fff;}
#tab4:checked ~ .panel_area #panel4{display:block;}
#tab5:checked ~ .tab_area .tab5_label{background:#256790; color:#fff;}
#tab5:checked ~ .panel_area #panel5{display:block;}
#tab6:checked ~ .tab_area .tab6_label{background:#256790; color:#fff;}
#tab6:checked ~ .panel_area #panel6{display:block;}
#tab7:checked ~ .tab_area .tab7_label{background:#256790; color:#fff;}
#tab7:checked ~ .panel_area #panel7{display:block;}
#tab8:checked ~ .tab_area .tab8_label{background:#256790; color:#fff;}
#tab8:checked ~ .panel_area #panel8{display:block;}
#tab9:checked ~ .tab_area .tab9_label{background:#256790; color:#fff;}
#tab9:checked ~ .panel_area #panel9{display:block;}

#tab1:checked ~ .tab_area2 .tab1_label{background:#256790; color:#fff;}
#tab1:checked ~ .panel_area #panel1{display:block;}
#tab2:checked ~ .tab_area2 .tab2_label{background:#256790; color:#fff;}
#tab2:checked ~ .panel_area #panel2{display:block;}
#tab3:checked ~ .tab_area2 .tab3_label{background:#256790; color:#fff;}
#tab3:checked ~ .panel_area #panel3{display:block;}
#tab4:checked ~ .tab_area2 .tab4_label{background:#256790; color:#fff;}
#tab4:checked ~ .panel_area #panel4{display:block;}
#tab5:checked ~ .tab_area2 .tab5_label{background:#256790; color:#fff;}
#tab5:checked ~ .panel_area #panel5{display:block;}
#tab6:checked ~ .tab_area2 .tab6_label{background:#256790; color:#fff;}
#tab6:checked ~ .panel_area #panel6{display:block;}
#tab7:checked ~ .tab_area2 .tab7_label{background:#256790; color:#fff;}
#tab7:checked ~ .panel_area #panel7{display:block;}
#tab8:checked ~ .tab_area2 .tab8_label{background:#256790; color:#fff;}
#tab8:checked ~ .panel_area #panel8{display:block;}
#tab9:checked ~ .tab_area2 .tab9_label{background:#256790; color:#fff;}
#tab9:checked ~ .panel_area #panel9{display:block;}

table{
	    letter-spacing: 2px;
  width: 95%;
  margin: 0 auto;
      border-spacing: 5px;
}

table .tr1 *:nth-child(1){
  
}

table .tr1 *:nth-child(2){
  border: 1px solid #9FA0A0;
}


table .th1{
	background: #B2E0F8;
	font-weight: normal;
  color:#000000;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;
}

table .td1{
	font-weight: normal;
  color:#000000;
  border:solid 1px white;
  text-align: left;
  padding: 10px 0 10px 50px;
}

table .tr1 *:nth-child(2) span{
	border: none;
}


table .th2{
	font-weight: normal;
  color:#000000;
  border:solid 1px white;
  text-align: left;
  padding: 10px 0 10px 50px;
}

table .th3{
	font-weight: normal;
	width: 400px;
  color:#000000;
  border:solid 1px white;
  text-align: left;
  padding: 10px 0 10px 10px;
}

table .th3 a{
	text-decoration: none;
}

table .td2{
	font-weight: normal;
  color:#000000;
  border:solid 1px white;
  text-align: left;
  padding: 10px 0 10px 10px;
}



.panel-80{
	    width: 95%;
    margin: 0 auto;
}

.panel-80 p{
	text-align: left;
	margin: 20px 65px 20px 65px;
}

.name{
	font-size: 16px;
}

.name span {
    font-size: 30px;
    margin-left: 15px;
}

.name p {
    text-align: right;
    font-size: 16px;
}

.btn-flat-simple {
  position: relative;
  margin-bottom: 6px;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #ffffff;
  background: #66edff;
  transition: .4s;
}

.btn-flat-simple:hover {
  background: #00bcd4;
  color: white;
}

.jump{
  padding: 15px 0 20px 0;
  text-align: center;
}

.spot:before{
	content:url(../images/hoshi.png);
}

.company a{
	text-decoration: none;
}

.spot{
}

.descriptiontext{
    display: inline-block;
    width: 780px;
    padding-left: 10px;
    vertical-align: top;
}

.companyimg{
	padding-top: 10px;
}

.description{
	padding-top: 10px;
}

.topimg img{
	width: 100%;
}

.makertable{
	letter-spacing: 0.1px;
	font-size: 14px;
}



/*rinen終わり*/

.btn-square {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
}
.btn-square:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}

.btn-square2 {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #C0C0C0;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #808080;
  border-radius: 3px;
}
.btn-square2:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}

.recruit-01 img{
	display: inline-block;
}

.recruit-01 p{
	padding-left: 30px;
	vertical-align: top;
	display: inline-block;
}

.recruit-div{
	padding-bottom: 30px;
}

.gray {
    background-color: #e8e8e8;
}

.tab1_label{
	margin: 0 5px 0 0px !important;
}

.fontbig{
	font-size: 19px !important;
}

h2 span{
	font-size: 16px;
}

.topp{
font-size: 19px;
    font-weight: 900;
    letter-spacing: 2px;
        margin-bottom: 10px;
}

.fff{
	background: #ffffff;
}

.greeting{
	    padding: 30px 0;
}

.hissu span {
    color: #d50f19;
}

/*ここからcontact.php --------------------*/
.hissu {
  font-size: 14px;
}

.hissu span {
  color: #d50f19;
}

.contact-area {
  padding-top: 50px;
}

.contact-t {
  padding-top: 50px;
}

.contact_p {
  width: 960px;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.contact_p p{
  text-align: left;
  font-weight: bold;
}

.contact_tel{
  font-weight: bold;
  font-size: 25px;
}

.telimg{
  padding-left: 124px;
  padding-bottom: 27px;
      padding-top: 30px;
}

.telp{
  padding-left: 181px;
}

.contact_table {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
}

#myform table {
    width: 100%;
    border-collapse: collapse;
}

#myform th {
    width: 270px;
    border-bottom: solid 7px #ffffff;
    border-top: solid 7px #ffffff;
    border-right: solid 7px #ffffff;
    background-color: #f9ddbc;
    font-weight: normal;
    font-size: 16px;
    height: 39px;
    padding-left: 17px;
}

#myform td {
    border: solid:1px #aaaaaa;
    padding: 0px;
    width: 373px;
}

.kakunin{
    display: inline;
    color: #f13737;
}

/*#name, #address, #mail, #mail2{
    width: 373px;
    height: 34px;
}
*/
#com{
  width: 373px;
  border-color:  #aaaaaa;
  height: 187px;
}

.com_th{
  height: 192px;
}

.telp_p{
  padding-bottom: 51px !important;
}


.submit{
  text-align: center;
  padding-top: 26px;
  padding-bottom: 150px;
}

.lab2 {
  background: none;
  color: #000;
  font-size: 18px;
  margin-left: 30px;
  text-align: left;
}


/*--------------------------------------------------------
 フォームテーブル
---------------------------------------------------------*/
#contactForm table {
    box-sizing: border-box;
    border-collapse: collapse;
    margin-top: -1px;
    margin-bottom: 0;
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
}


#contactForm table th,
#contactForm table td {
    border: none;
    padding: 16px;
    vertical-align: top;
    text-align: left;
}

#contactForm table th {
    border-right: none;
    font-weight: normal;
    text-align: left;
    width: 40%;
    font-size: 16px;
    letter-spacing: 1px;
}

#contactForm table th span {
    display: inline-block;
    letter-spacing: 0;
    vertical-align: middle;
}

#contactForm table td {
    border-left: none;
}

#contactForm table td .address {
    margin: 8px 0;
    color: #000;
    font-size: 16px;
    text-align: left;
    margin-left: 30px;
}

#contactForm table td .address .ttl {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 100px;
    color: #515151;
    font-size: 16px;
}

#contactForm table td .address .input {
    display: inline-block;
    vertical-align: middle;
    width: 73%;
}

#pc_version .section {
overflow: scroll;   /* スクロール表示 */ 
  width: 70%;
  /*height: 100px;*/
  border: 1px solid #ccc;
}

.textarea {
overflow: scroll;   /* スクロール表示 */ 
  width: 70%;
  border: 1px solid #ccc;
}


/*--------------------------------------------------------
 フォームスタイル
---------------------------------------------------------*/
#contactForm input[type="text"],
#contactForm select,
#contactForm textarea {
    border: solid 1px #ddd;
    background-color: #ddd;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    color: #515151;
    font-size: 16px;

}

.yuubin {
  width: 100px !important;
}

/*--------------------------------------------------------
 必須・任意アイコン【必ず設定してください】
---------------------------------------------------------*/
#contactForm .req,
#contactForm .fre {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    margin-right: 3%;
    padding: 4px 8px;
}

#contactForm .req {
    background-color: #d50f19;
}

#contactForm .fre {
    background-color: #395bff;
}



/*--------------------------------------------------------
 確認・修正・送信ボタン【必ず設定してください】
---------------------------------------------------------*/
.mail_send {
    margin: 60px 0;
    text-align: center !important;
}


.kakunin {
    background-color: #d50f19;
    border-radius: 5px;    
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 16px 0;
    width: 300px;
    color: #ffffff;
    font-size: 1.5em;
    font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    text-align: center;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.4));
}

.kakunin:hover {
  background-color: #dc767b;
  transform: translateY(0.1875em);
}

.goback {
    display: inline-block !important;
    background-color: #595757;
    border-radius: 5px;    
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 16px 0;
    width: 300px;
    color: #ffffff;
    font-size: 1.5em;
    font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    text-align: center;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.4));
    margin-bottom: 25px;
}

.goback:hover {
    background-color: #888888;
    transform: translateY(0.1875em); 
}

.send {
    display: inline-block !important;
    background-color: #d50f19;
    border-radius: 5px;    
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 16px 0;
    width: 300px;
    color: #ffffff;
    font-size: 1.5em;
    font-family: "YuGothic,'Yu Gothic', sans-serif";
    text-align: center;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.4));
    margin-left: 10px;
}

.send:hover {
  background-color: #dc767b;
  transform: translateY(0.1875em);
}


/*.mail_send input[type="submit"] {
    background-color: #ac0606;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 16px 0;
    width: 300px;
    color: #ffffff;
    font-size: 1.5em;
    font-family: "YuGothic,'Yu Gothic', sans-serif";
    text-align: center;
}*/

.mail_check {
    max-width: 420px;
    overflow: hidden;
    margin: 40px auto;
}

.mail_check #contactform {
    float: right;
    text-align: center;
    width: 200px;
}

.mail_check .form_box1 {
    float: left;
    text-align: center;
    width: 200px;
}

.mail_check button {
    border: none;
    cursor: pointer;
    padding: 16px 0;
    width: 100%;
}

/*ここからthanks.php*/
.tel-t {
  background-color: #585757;
  width: 800px;
  text-align: center;
  margin: 0 auto;
}
.tel-t p{
  color: #fff;
}
.tel-box {
  text-align: center;
  padding: 20px 0 100px 0;
  text-align: center;
  
}
.tel-bg {
  background-color: #f5f5f5;
  padding: 30px 0;
  width: 800px;
  margin: 0 auto;
}
.tel-box p{
  font-size: 21px;
}
.tel-box img{
  padding: 15px 0;
  width: 50%;
}

.partnerimg{
  height: 254px;
}

.partnerimg2 {
    height: 300px;
}

.panel-80 ul {
    text-align: left;
    margin: 20px 65px 20px 65px;
    padding-left: 20px;

}

.hinshitsu li{
      list-style: none;
      text-indent: -1.7em;
    /* padding-bottom: 20px; */
    line-height: 1.9;
}

.hin-name{
      text-align: left;
    display: flex;
    justify-content: flex-end;
}

.hinshitsu {
  display: list-item;
  list-style: none;
}




@media screen and (max-width: 1350px) {
	.con2_2{
		width: 100% !important;
	}

	.dib2{
		padding-right: 0px!important;
	}

	.dib{
		padding-left: 0px !important;
		text-align: center;
	}

	.tab_area label{
		width: 121px;
	}

  .tab_area .tab7_label{
      margin-top: 10px;
    margin-left: 0;
    }
	

	.tab8_label{
		margin: 0 5px 0 0px !important;
	}

	.tab7_label{
		    margin-bottom: 10px !important;
	}

	.phoneout{
		display: none;
	}

	.pcout {
    display: block;
	}

	.con2{
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 1165px) {
#main{
    padding-top: 103px;
}

.pcout {
    display: block;
}
	.phoneout{
		display: none;
	}

	#main-in {
		padding-left: 0;
	}

	#global-head {
		width: 100%;
		padding: 10px;
		background: rgba(255,255,255,.8);
		display: -webkit-flex;
		display: flex;
	}

	#sidebar {
		/*display: none;*/
		position: fixed;
		right: -300px;
		top: 0;
		height: 100%;
		width: 300px;
		color: #333;
		background: #fff;
		-webkit-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}

	/* サブメニューは開けない */
	#global-nav .sub-menu-head:after,
	#global-nav .sub-menu-nav {
		display: none;
	}
	#nav-toggle {
		display: block;
	}

	/* nav open */
	.open {
		overflow: hidden;
	}
	.open #overlay {
		display: block;
	}
	.open #sidebar  {
		-webkit-transform: translate3d(-300px,0,0);
		transform: translate3d(-300px,0,0);
	}

	/* #nav-toggle close */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/* z-index */
	#overlay {
		z-index: 200;
	}
	#sidebar {
		z-index: 300;
	}
	#nav-toggle {
		z-index: 400;
	}
	.btn-flat-simple {
		margin-bottom: 6px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #00BCD4;
  background: #66edff;
  transition: .4s;
}

.btn-flat-simple:hover {
  background: #00bcd4;
  color: white;
}

.jump{
  padding: 15px 0 50px 0;
  text-align: center;
}

	.con2_2{
		width: 100%;
	}

	.dib2{
		padding-right: 0px;
	}

  .partnerimg{
  width: 100%;
  height: auto;
}

.partnerimg2 {
    width: 100%;
  height: auto;
}


}

@media screen and (max-width: 1260px) {
.tab_area label {
    width: 118px;
}
}

@media screen and (max-width: 887px) {
  .tab_area label {
    width: 98px;
}

}

@media screen and (max-width: 765px) {
.tab_area label {
    width: 75px;
}

.tab1_label {
    margin: 0 0px 0 0px !important;
}

.tab_area label{
      margin: 0 1px;
}

}

@media screen and (max-width: 640px) {
.tab6_label{
  margin: 10px 0px !important;
}

.panel-80 ul {
    text-align: left;
    margin: 20px 20px 20px 20px;}

.panel-80 p {
    text-align: left;
    margin: 20px 20px 20px 20px;
}

}

@media screen and (max-width: 550px) {
#main .inner {
    padding: 30px;
}

}

@media screen and (max-width: 400px) {
	#sidebar {
		right: -200px;
		width: 200px;
		padding-top: 60px;
	}
	.open #sidebar  {
		-webkit-transform: translate3d(-200px,0,0);
		transform: translate3d(-200px,0,0);
	}

	.tab1_label {
     margin: 0 0px 0 0px !important; 
	}
}