@charset "UTF-8";
/* CSS Document */

@media screen and (max-width:1099px) {/*=================================メディアクエリ - スマホ=====================================*/

	
body {
	width: 100%;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.8rem;
}
	
#body_container {
	overflow: hidden;
}

ul{
	list-style: none;
	margin: 0;
	padding-left: 0;
}

p {
	margin: 0;
}

a {
    color: inherit;
	text-decoration: none;
}

h2 {
	margin: 0;
}

h3 {
	margin: 0;
}


/*==========================================header==========================================*/

header {
	height: 80px;
	width: 0 auto;
	position: fixed;
	z-index: 80;
}

header img {
	padding: 14px 0 0 20px;
	width: 280px;
	
}

#header_lower {
	position: absolute;
	z-index: 90;
}

/*======ハンバーガーボタン======*/

.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #001170;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

/*======ハンバーガーボタン 三本線をバツに======*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/*======ハンバーガーボタン チェックボックス非表示======*/
#menu-btn-check {
    display: none;
}

/*======ハンバーガーメニュー======*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #001170;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}

/*======ハンバーガーメニュー 通常時非表示に======*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #001170;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
	letter-spacing: 0.1rem;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 19px 15px 20px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 30px;
}

/*======ハンバーガーメニュー チェックされたら表示======*/
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}




/*==========================================index==========================================*/

main {
}

.video_wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video_wrapper > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}

main iframe {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

h1 {
	position: fixed;
	z-index: 10;
	left: 10px;
	top: 50%;
	transform:translateY(-50%);
	width: 100%;
}
	
h1 img {
	width: 80%;
}

#top_submenu {
	color: #fff;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 60;
	width: 100%;
}

#top_submenu li {
	float: left;
	background-color: #001170;
	width: 50%;
	text-align: center;
	outline: 1px solid #fff;
}

.top_submenu_txt-en {
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1rem;
	padding-top: 6px;
}

.top_submenu_txt-jp {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.1rem;
	padding-bottom: 6px;
}

#top_submenu li:nth-last-child(1){
	background-color: #997E2A;
}
.movie__btn {
  margin-top: 1em;
  text-align: center;
	position: fixed;
	right: 10px;
	bottom: 150px;
}

.movie__btn button {
  color: #fff;
	background-color: #333;
  font-size: 14px;
  padding: 0.5em 1em;
  border-radius: 50px;
  box-shadow: initial;
  display: inline-block;
  appearance: none;
  border: 1px solid #333;
  cursor: pointer;
}




/*==========================================about==========================================*/

#about_main_img {
	width: 150%;
	padding-top: 80px;
}

#about_main_img img {
	width: 100%;
}

.h2_wrapper {
	width: 95%;
	margin: 0 auto;
}

h2 {
	color: #fff;
	letter-spacing: 0.3rem;
	font-size: 24px;
	font-weight: 500;
	margin-top: -20px;
}

h2 span {
	background-color: #001170;
	padding: 8px 20px 10px 20px;
}

.h3_wrapper {
	width: 95%;
	margin: 0 auto;
	padding-top: 90px;
}

h3 {
	width: 200px;
	border-bottom: 3px solid #001170;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.2rem;
	color: #001170;
	padding-bottom: 10px;
}

.about_background_gray_wrapper {
	background-color: #F2F2F2;
	width: 100%;
}

.about_background_gray {
	width: 95%;
	margin: 0 auto;
}

.about_table1 {
	font-size: 15px;
	font-weight: 400;
	padding-top: 80px;
	padding-bottom: 80px;
}

.about_table1 ul {
	background-color: #fff;
	margin-bottom: 8px;
	padding: 6px 0;
}

.about_table1 ul li {
	padding-left: 16px;
	width: 95%;
}

.about_table1 ul li:nth-child(1){
}

.about_table1 ul li:nth-child(2){
	width: 90%;
	border-bottom: 2px solid  #F2F2F2;
	margin-left: 16px;
}

.about_table1 iframe {
	padding-top: 40px;
}

.about_background_white {
	width: 95%;
	margin: 0 auto;
	padding-top: 40px;
}

#about_aisatu_txt {
	width: 95%;
	margin: 0 auto;
}

#about_aisatu_img {
	width: 95%;
	text-align: center;
	padding-top: 20px;
}
	
	#about_syaryou_list {
		width: 95%;
		margin: 0 auto;
	}

#about_syaryou_list li {
	overflow: hidden;
	background-color: #F2F2F2;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 10px;
}


.about_syaryou_list_left {
	padding-left: 20px;
	float: left;
}
.about_syaryou_list_right {
	padding-right: 20px;
	float: right;
}

#about_kameidantai_list {
	padding-top: 60px;
	padding-bottom: 40px;
	width: 100%;
	
}

#about_kameidantai_list li {
	margin-bottom: 10px;
	text-align: center;
}





/*==========================================footer==========================================*/

footer{
	background-color: #001170;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
}

.footer_sitemap {
	display: none;
}

.footer_sitemap li {
	display: inline-block;
	padding: 0 30px;
}

.footer_sitemap li+ li {
  border-left: 1px solid #fff;
}

.footer_logo {
	text-align: center;
	padding: 40px 0 30px 0;
}

.footer_address {
	text-align: center;
	padding-bottom: 40px;
}

address {
	background-color: #997E2A;
	width: 100%;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	font-style:normal;
	letter-spacing: 0.1rem;
	text-align: right;
}

address p{
	padding: 4px 20px 4px 0;
}





/*==========================================recruit==========================================*/


.about_table2 {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 80px;
}

.about_table2 ul {
	background-color: #F2F2F2;
	margin-bottom: 8px;
	padding: 6px 0;
}

.about_table2 ul li {
	padding-left: 16px;
	width: 95%;
}

.about_table2 ul li:nth-child(1){
	width: 150px;
}

.about_table2 ul li:nth-child(2){
	width: 90%;
	border-bottom: 2px solid  #cccccc;
	margin-left: 16px;

}

.recruit_buttton {
	margin: 0 auto 90px auto;
	overflow: hidden;
	background-color: #001170;
	color: #fff;
	width: 90%;
	font-size: 18px;
	font-weight: 400;
	padding: 20px 0 20px 0;

}

.recruit_buttton_left {
	float: left;
	padding-left: 32%;
	
}

.recruit_buttton_left p {
	padding-bottom: 4px;
}

.recruit_buttton_right {
	float: right;
	padding-right: 30px;
}






/*==========================================work==========================================*/

#work_list {
	width: 100%;
	margin: 40px auto 60px auto;
}

#work_list li {
	margin: 0 auto;
	width: 70%;
	font-size: 18px;
	padding-bottom: 30px;
}

#work_list img {
	width: 100%;
}

.work_center_line {
	width: 190px;
	border-bottom: 2px solid #001170;
}

.work_center_line_wrapper {
	padding: 8px 0;
}

#work_list_other {
	font-size: 18px;
	font-weight: 600;
	width: 80%;
	margin: 40px auto 0 auto;
	padding-bottom: 70px;
}

#work_list_other li {
	display: inline-block;
	padding-right: 20px;
	margin-bottom: 20px;
}
	
#work_movie_list {
	margin: 40px auto 70px auto;
	width: 90%;
}

#work_movie_list p {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 6px;
	text-align: right;
}
	
	#work_movie_list iframe {
		width: 100%;
	}
	
.work_movie_list_center_line_wrapper {
	overflow: hidden;
}
	
.work_movie_list_center_line {
	width: 200px;
	border-bottom: 2px solid #001170;
	padding-top: 6px;
	margin-bottom: 6px;
	float: right;
}
	
iframe.youtube-16-9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
	
#work_tsuchi-summit {
	width: 95%;
	margin: 0 auto;
	text-align: center;
}

#work_tsuchi-summit h4 {
	font-size: 22px;
	font-weight: 600;
	padding: 70px 0 20px 0;
}

#work_tsuchi-summit iframe {
}

#work_tsuchi-summit ul {
	width: 100%;
	padding: 30px 0 20px 0;
}

#work_tsuchi-summit ul li {
	display: inline-block;
	width: 45%;
}
	
#work_tsuchi-summit ul li img {
	width: 100%;
	}
	
#work_tsuchi-summit p {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 90px;
}





/*==========================================contact==========================================*/

#form_tab {
	max-width: 900px;
	width: 95%;
	margin: 0 auto;
	padding-top: 90px;
	overflow: hidden;
}
	
.form_tab1 {
	width: 49%;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	float: left;
}
	
.form_tab2 {
	width: 49%;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	float: right;
}

.tab_color_navy {
	background-color: #001170;
}

.tab_color_gray {
	background-color: #B0B0B0;
}

#contact_form {
	font-size: 17px;
	padding-top: 0px;
	padding-bottom: 90px;
}

.contact_form_midashi {
}

.contact_form_midashi span {
	color: red;
}

.contact_form_box {
	width: 95%;
	margin: 0 auto;
	padding-top: 20px;
}
.contact_form_box div {
}

.contact_form_box input {
	width: 100%;
	height: 30px;
}

#input_name1 {
	width: 43%;
}

#input_name2 {
	width: 43%;
}

#input_name1-2 {
	width: 43%;
}

#input_name2-2 {
	width: 43%;
}

#input_gender1 {
	width: 30px;
	height: 14px;
}
	
#input_gender2 {
	width: 30px;
	height: 14px;
	margin-left: 20px;
}

#input_birth_ad {
	width: 50px;
	height: 17px;
}

.contact_form_box textarea {
	width: 100%;
}

#contact_form_enter_wrapper {
	width: 200px;
	margin: 0 auto;
}

#contact_form_enter {
	background-color: #001170;
	color: #fff;
	width: 200px;
	padding: 16px 0 ;
	text-align: center;
	margin: 40px auto 0 auto;
}

}













@media screen and (min-width:1100px) {/*=================================メディアクエリ - PC=====================================*/

body {
	width: 100%;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.8rem;
}
#body_container {
	overflow: hidden;
}

ul{
	list-style: none;
	margin: 0;
	padding-left: 0;
}

p {
	margin: 0;
}

a {
    color: inherit;
	text-decoration: none;
}

h2 {
	margin: 0;
}

h3 {
	margin: 0;
}


/*==========================================header==========================================*/

header {
	height: 80px;
	width: 0 auto;
	position: fixed;
	z-index: 80;
}

header img {
	padding: 8px 0 0 20px;
	
}

#header_lower {
	position: absolute;
	z-index: 90;
}

/*======ハンバーガーボタン======*/

.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #001170;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

/*======ハンバーガーボタン 三本線をバツに======*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/*======ハンバーガーボタン チェックボックス非表示======*/
#menu-btn-check {
    display: none;
}

/*======ハンバーガーメニュー======*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #001170;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}

/*======ハンバーガーメニュー 通常時非表示に======*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #001170;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
	letter-spacing: 0.1rem;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 19px 15px 20px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 30px;
}

/*======ハンバーガーメニュー チェックされたら表示======*/
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}




/*==========================================index==========================================*/

main {
}

.video_wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video_wrapper > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}

main iframe {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

h1 {
	position: fixed;
	z-index: 10;
	left: 30px;
	top: 50%;
	transform:translateY(-50%);
}

#top_submenu {
	color: #fff;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 60;
}

#top_submenu li {
	display: inline-block;
	background-color: #001170;
	width: 160px;
	text-align: center;
	margin-right: 14px;
}

.top_submenu_txt-en {
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1rem;
	padding-top: 12px;
}

.top_submenu_txt-jp {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.1rem;
	padding-bottom: 8px;
}

#top_submenu li:nth-last-child(1){
	background-color: #997E2A;
}

.movie__btn {
  margin-top: 1em;
  text-align: center;
	position: fixed;
	left: 20px;
	bottom: 20px;
}

.movie__btn button {
  color: #fff;
	background-color: #333;
  font-size: 14px;
  padding: 0.5em 1em;
  border-radius: 50px;
  box-shadow: initial;
  display: inline-block;
  appearance: none;
  border: 1px solid #333;
  cursor: pointer;
}





/*==========================================about==========================================*/

#about_main_img {
	width: 100%;
	padding-top: 80px;
}

#about_main_img img {
	width: 100%;
}

.h2_wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

h2 {
	color: #fff;
	letter-spacing: 0.3rem;
	font-size: 28px;
	font-weight: 500;
	margin-top: -20px;
}

h2 span {
	background-color: #001170;
	padding: 8px 20px 10px 20px;
}

.h3_wrapper {
	width: 1100px;
	margin: 0 auto;
	padding-top: 90px;
}

h3 {
	width: 200px;
	border-bottom: 3px solid #001170;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.2rem;
	color: #001170;
	padding-bottom: 10px;
}

.about_background_gray_wrapper {
	background-color: #F2F2F2;
	width: 100%;
}

.about_background_gray {
	max-width: 1100px;
	margin: 0 auto;
}

.about_table1 {
	font-size: 15px;
	font-weight: 400;
	padding-top: 80px;
	padding-bottom: 80px;
}

.about_table1 ul {
	background-color: #fff;
	margin-bottom: 8px;
	padding: 6px 0;
}

.about_table1 ul li {
	display: inline-block;
	padding-left: 16px;
	vertical-align: top;
}

.about_table1 ul li:nth-child(1){
	width: 150px;
}

.about_table1 ul li:nth-child(3){
	border-left: 3px solid #F2F2F2;
}

.about_table1 iframe {
	padding-top: 40px;
}

.about_background_white {
	overflow: hidden;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 40px;
}

#about_aisatu_txt {
	float: left;
	width: 70%;
}

#about_aisatu_img {
	float: right;
	width: 28%;
}

#about_syaryou_list li {
	overflow: hidden;
	background-color: #F2F2F2;
	display: inline-block;
	width: 32.5%;
	padding: 10px 0;
	margin-right: 1%;
}

#about_syaryou_list li:nth-child(3n) {
	margin-right: 0;
}

.about_syaryou_list_left {
	float: left;
	padding-left: 20px;
}
.about_syaryou_list_right {
	float: right;
	padding-right: 20px;
}

#about_kameidantai_list {
	padding-top: 60px;
	padding-bottom: 40px;
}

#about_kameidantai_list li {
	margin-right: 15px;
	margin-bottom: 10px;
	display: inline-block;
}

#about_kameidantai_list li:nth-child(4n) {
	margin-right: 0;
}




/*==========================================footer==========================================*/

footer{
	background-color: #001170;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
}

.footer_sitemap {
	padding-top: 70px;
	text-align: center;
}

.footer_sitemap li {
	display: inline-block;
	padding: 0 30px;
}

.footer_sitemap li+ li {
  border-left: 1px solid #fff;
}

.footer_logo {
	text-align: center;
	padding: 40px 0 30px 0;
}

.footer_address {
	text-align: center;
	padding-bottom: 40px;
}

address {
	background-color: #997E2A;
	width: 100%;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	font-style:normal;
	letter-spacing: 0.1rem;
	text-align: right;
}

address p{
	padding: 4px 20px 4px 0;
}





/*==========================================recruit==========================================*/


.about_table2 {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 80px;
}

.about_table2 ul {
	background-color: #F2F2F2;
	margin-bottom: 8px;
	padding: 6px 0;
}

.about_table2 ul li {
	display: inline-block;
	padding-left: 16px;
	vertical-align: top;
}

.about_table2 ul li:nth-child(1){
	width: 150px;
}

.about_table2 ul li:nth-child(3){
	border-left: 3px solid #fff;
}

.recruit_buttton {
	margin: 0 auto 90px auto;
	overflow: hidden;
	background-color: #001170;
	color: #fff;
	width: 500px;
	font-size: 18px;
	font-weight: 400;
	padding: 20px 0 20px 0;

}

.recruit_buttton_left {
	float: left;
	padding-left: 170px;
	
}

.recruit_buttton_left p {
	padding-bottom: 4px;
}

.recruit_buttton_right {
	float: right;
	padding-right: 30px;
}






/*==========================================work==========================================*/

#work_list {
	text-align: right;
	width: 930px;
	margin: 40px auto 90px auto;
	overflow: hidden;
}

#work_list li {
	width: 290px;
	font-size: 18px;
	float: left;
	padding-right: 30px;
}

#work_list li:nth-child(3) {
	padding-right: 0;
}

.work_center_line {
	width: 190px;
	border-bottom: 2px solid #001170;
	float: right;
}

.work_center_line_wrapper {
	width: 290px;
	overflow: hidden;
	padding: 8px 0;
}

#work_list_other {
	font-size: 18px;
	font-weight: 600;
	width: 780px;
	margin: 40px auto 0 auto;
	padding-bottom: 70px;
}

#work_list_other li {
	display: inline-block;
	padding-right: 40px;
	margin-bottom: 20px;
}

#work_movie_list {
	margin: 40px auto 70px auto;
	width: 650px;
	text-align: right;
}

#work_movie_list p {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 6px;
}
	
.work_movie_list_center_line_wrapper {
	overflow: hidden;
}
	
.work_movie_list_center_line {
	width: 200px;
	border-bottom: 2px solid #001170;
	padding-top: 6px;
	margin-bottom: 6px;
	float: right;
}
	
iframe.youtube-16-9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
	
#work_tsuchi-summit {
	width: 1100px;
	margin: 0 auto;
	text-align: center;
}

#work_tsuchi-summit h4 {
		
	
	font-size: 22px;
	font-weight: 600;
	padding: 70px 0 20px 0;
}

#work_tsuchi-summit iframe {
	width: 600px;
}

#work_tsuchi-summit ul {
	width: 1100px;
	padding: 30px 0 20px 0;
}

#work_tsuchi-summit ul li {
	display: inline-block;
}
	
#work_tsuchi-summit p {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 90px;
}



/*==========================================contact==========================================*/

#form_tab {
	max-width: 900px;
	width: 95%;
	margin: 0 auto;
	padding-top: 90px;
	overflow: hidden;
}
	
.form_tab1 {
	width: 49%;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	float: left;
}
	
.form_tab2 {
	width: 49%;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	float: right;
}

.tab_color_navy {
	background-color: #001170;
}

.tab_color_gray {
	background-color: #B0B0B0;
}


#contact_form {
	font-size: 17px;
	padding-top: 20px;
	padding-bottom: 90px;
}

.contact_form_midashi {
	width: 150px;
	text-align: right;
	padding-right: 20px;
}

.contact_form_midashi span {
	color: red;
}

.contact_form_box {
	overflow: hidden;
	margin-bottom: 20px;
}
.contact_form_box div {
	float: left;
}

.contact_form_box input {
	width: 70%;
	height: 30px;
}

#input_name1 {
	width: 20%;
}

#input_name2 {
	width: 20%;
}

#input_name1-2 {
	width: 20%;
}

#input_name2-2 {
	width: 20%;
}

#input_gender1 {
	width: 30px;
	height: 14px;
}
	
#input_gender2 {
	width: 30px;
	height: 14px;
	margin-left: 20px;
}

#input_birth_ad {
	width: 50px;
	height: 17px;
}

.contact_form_box textarea {
	width: 70%;
}

#contact_form_enter_wrapper {
	width: 200px;
	margin: 0 auto;
}

#contact_form_enter {
	background-color: #001170;
	color: #fff;
	width: 200px;
	padding: 16px 0;
	text-align: center;
}

}