@charset "utf-8";

/*-------------ヘッダースタイルここから-------------*/
header {
  position: fixed;
  z-index: 1000;
  background-color: #FFF;
  width: 100%;
  margin-top: -10rem;
}
a.anchor{
  display: block;
  padding-top: 112px;
  margin-top: -112px;
}
.header_top {
  height: 10rem;
  display: flex;
  justify-content: space-between;
}
#head_logo {
  display: flex;
  align-items: center;
  padding: 0 0 0 10px;
  z-index: 1001;
}
#head_logo img {
  width: 30rem;
}
.head_menu {
  display: flex;
}
.head_menu .head_navi_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.head_navi_left .head_tel {
  display: flex;
  flex-direction: row-reverse;
}
.head_navi_left .head_tel p {
  font-size: 1.1rem;
  line-height:1em;
  color: #FFF;
  background-color: #333;
  padding: 1.2rem 1rem 1rem 3.2rem;
  background-image: url("../images/tel_pict.svg");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 1rem;
  background-size: 1.7rem;
}
.head_tel .text_bold {
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: bold;
}
.head_navi_left .head_navi_a {
  display: flex;
  justify-content: space-between;
}
.head_navi_a li {
  font-size: 1.2rem;
  margin: 0 14px;
}
.head_navi_a li a {
  position: relative; /* 擬似要素の基準位置とする */
  display: block;
  text-decoration: none;
  padding: 15px 4px;
  overflow: hidden; /* 広がる下線がはみ出さないように隠す */
}

.head_navi_a li a::before {
  content: ''; /* 擬似要素にはcontentプロパティが必要 */
  position: absolute;
  bottom: 0; /* 下に配置 */
  left: 50%; /* 中央に配置するために左から50% */
  width: 100%; /* 親要素の幅いっぱいに */
  height: 3px; /* 線の太さ */
  background-color: #033980; /* 線の色 */
  transform: translateX(-50%) scaleX(0); /* 初期状態では中央に寄せて横に0に縮めておく */
  transform-origin: center; /* 中央を起点に拡大・縮小 */
  transition: transform 0.3s ease-out; /* アニメーションの速度とイージング */
}

.head_navi_a li a:hover::before {
  transform: translateX(-50%) scaleX(1); /* ホバー時に中央に寄せたまま横に1に拡大 */
}
.head_menu .head_navi_right {
  display: flex;
}
.head_navi_right li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 100px;
  height: 100px;
}
.head_navi_right li a:hover {
  opacity: 0.8;
}
.head_navi_right .saiyou a {
  color: #FFF;
  background-color: #666;
  text-decoration: none;
}
.head_navi_right .saiyou img {
  height:23px;
  margin-bottom: 0.2rem;
}
.head_navi_right .mail a {
  color: #FFF;
  background-color: #033980;
  text-decoration: none;
}
.head_navi_right .mail img {
  height: 23px;
  margin-bottom: 0.2rem;
}
/*---------------------------------------------
  Hamburger Navigation
---------------------------------------------*/
  .hamburger-nav-toggle-btn {
    float: right;
    background-color: #033980;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    margin: 10px 2% 7px 0;
    padding: 0;
    height: auto;
  }
  .hamburger-nav-toggle-btn.close::before, .hamburger-nav-toggle-btn.open::before {
    font-size: 3.8rem;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1em;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .hamburger-nav-toggle-btn.open::before {
    content: url(../images/hm_b.png);
    vertical-align: bottom;
    float: left;
    font-size: 0px;
  }
  .hamburger-nav-toggle-btn.close::before {
    content: url(../images/hm_a.png);
    vertical-align: bottom;
    font-size: 0px;
    float: left;
  }
  .hamburger-nav-list {
    list-style: none;
    clear: both;
    margin-bottom: 0px;
    display: none;
  }
  .hamburger-nav-list > li {
    border-bottom: 1px solid #ffffff;
  }
  .hamburger-nav-list > li a {
    padding: 10px 14px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #033980;
    width: 100%;
    display: inline-block;
    font-size: 1.5rem;
  }
  .hamburger-nav-list li a:hover {
    background-color: #002255;
  }
  .head_inmenu > li {
    border-left: 4px solid #ffffff
  }
  .head_inmenu > li a::before {
    content: "＞";
    font-size: 6px;
    margin-right: 6px;
  }
  .head_inmenu > li a {
    padding: 3px 14px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    display: inline-block;
    font-size: 1.3rem;
    border-bottom: 1px dotted #ffffff;
  }
  .head_inmenu > li a:hover {
    background-color: rgba(0,0,0,1);
  }
/*---------------------------------------------
  Hamburger Navigation end
---------------------------------------------*/
.pankuzu {
  display: flex;
  align-items: center;
  padding: 0.7rem 0 0.5rem 5%;
  line-height: 1em;
  font-size: 1.2rem;
  margin-top: 10rem;
  border-top: solid 1px #e6e6e6;
}
.pankuzu a {
  text-decoration: none;
}
/*-------------ヘッダースタイルここまで-------------*/


/*-------------ページTOPボタンここから-------------*/
main #page-top a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: block;
  background-color: #CCC;
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  text-decoration: none;
  padding: 4px 6px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  border-radius: 50%;
  opacity: 0.5;
}
main #page-top a:hover {
  background-color: #b2d1fb;
  color: #FFF;
}
/*-------------ページTOPボタンここまで-------------*/


/*-------------TOPスライドここから-------------*/
.slider {
	width: 100%;
	height: 66rem;
	overflow: hidden;
	position: relative;
	max-width: 100%;
  background-color: #000;
  margin-bottom: 8rem;
}

.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 20s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.slider div:first-of-type{
	background-image: url(../images/ts_image_a.jpg);
}
.slider div:nth-of-type(2){
	background-image: url(../images/ts_image_b.jpg);
	animation-delay: 5s;
}
.slider div:nth-of-type(3){
	background-image: url(../images/ts_image_c.jpg);
	animation-delay: 10s;
}
.slider div:last-of-type{
	background-image: url(../images/ts_image_d.jpg);
	animation-delay: 15s;
}
/*-------------TOPスライドここまで-------------*/



/*-------------メインスタイルここから-------------*/
article {
  margin: 0 auto;
}
p {
  font-size: 1.4rem;
  line-height: 1.6em;
  color:#333;
}
img {
  vertical-align: bottom;
}
.english {
  font-size: 3.2rem;
  line-height: 1.1em;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  color:#033980;
}
h2 {
  text-align: center;
  font-family: serif;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom:6rem;
}
h2::before {
  position: absolute;
  border-bottom: 5px solid #033980;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  content: '';
}
h3 {
  color: #033980;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  position: relative;
  padding-bottom: 1.7rem;
  margin-bottom:6rem;
}
h3::before {
  position: absolute;
  border-bottom: 5px solid #033980;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  content: '';
}
h4 {
  font-family: Arial, Helvetica, sans-serif;
}
.comment {
  font-family: serif;
  font-size: 2.6rem;
  line-height: 1.8em;
  text-align: center;
  margin-bottom: 5rem;
}
.home_a ul {
    width: 100%;
    height: 40rem;
    margin-bottom: 10rem;
    display: flex;
}
.home_a ul li {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_a ul li a {
  text-decoration: none;
}
.home_a ul li a:hover .haikei {
  background-color: rgba(255, 255, 255, 0.9);
}
.strength_three .strength_01 {
    background-image: url(../images/strength_001.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.strength_three .strength_02 {
    background-image: url(../images/strength_002.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.strength_three .strength_03 {
    background-image: url(../images/strength_003.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.strength_three h5 {
    width: 70%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1em;
    padding: 1.5rem 0 1.3rem;
    margin: 0 auto;
    font-weight: bold;
    color: #FFF;
    background-color: #033980;
}
.home_a ul li .haikei {
  width: 70%;
  height: 17rem;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strength_three h4 {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4em;
  margin-bottom:1rem;
}
.strength_three p {
    text-align: center;
}
.home_b,.home_d {
  width: 100%;
  height: 45rem;
  display: flex;
  margin-bottom: 10rem;
}
.home_c {
  width: 100%;
  height: 45rem;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 10rem;
}
.home_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
}
.home_b .home_text {
    background-image: url(../images/main_back_a.svg);
}
.home_c .home_text {
  background-image: url(../images/main_back_b.svg);
}
.home_d .home_text {
  background-image: url(../images/main_back_a.svg);
}
.home_text .english {
  margin: 0 auto 1rem;
  text-align: left;
  width: 70%;
}
.home_text h2 {
  margin: 0 auto 2rem;
  text-align: left;
  width: 70%;
  border-bottom: none ;
}
.home_text h2::before {
  border-bottom: none;
}
.home_text p {
  margin: 0 auto 4rem;
  width: 70%;
}
.home_photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
}
.home_b .home_photo {
  background-image: url(../images/main_products_p.jpg);
}
.home_c .home_photo {
  background-image: url(../images/main_profile_p.jpg);
}
.home_d .home_photo {
  background-image: url(../images/main_staff_p.jpg);
}
.button a {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-left:15%;
  padding: 1.6rem;
  width: 50%;
  position: relative;
  color: #FFF;
  background-color: #033980;
}
.button a::after {
  font-size: 1.2rem;
  content: "→";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.button a:hover {
  background-color: #002255;
}
.button a:hover::after {
  right: 18px;
}
.recruit {
  margin: 0 auto 10rem;
  width: 75%;
  height: auto;
  background-image: url(../images/recruit_banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.recruit a {
  display: flex;
  padding: 4rem 5rem;
  text-decoration: none;
}
.recruit a .space {
  width: 50%;
}
.recruit a .text {
  width: 50%;
}
.recruit a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.recruit a .text .english {
  text-align: left;
}
.recruit a .text h2 {
  margin: 0 auto 2rem;
  text-align: left;
}
.recruit a .text p {
  text-align: left;
}
.recruit a .text h2::before {
  border-bottom: none;
}


/*-------------2ページ目以降ここから-------------*/
.page_head {
  margin-bottom: 10rem;
}
.page_head ul {
  display: flex;
  height: 22rem;
}
.h_title_strength,.h_title_products,.h_title_profile,.h_title_staff,.h_title_contact,.h_title_recruit {
  padding: 9rem 0 0 5%;
  width: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}
.h_title_strength {
  background-image: url(../images/our_strength_head.jpg);
}
.h_title_products {
  background-image: url(../images/our_products_head.jpg);
}
.h_title_profile {
  background-image: url(../images/company_profile_head.jpg);
}
.h_title_staff {
  background-image: url(../images/staff_introduction_head.jpg);
}
.h_title_contact {
  background-image: url(../images/contact_head.jpg);
}
.h_title_recruit {
  background-image: url(../images/recruit_head.jpg);
}
.page_head ul .english {
  color: #FFF;
  margin-left: 5%;
  text-align: left;
}
.page_head ul h2 {
  color: #FFF;
  margin-left: 5%;
  text-align: left;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.page_head ul h2::before {
  border-bottom: none;
}
.page_head ul .h_center {
  width:20%;
}
.page_head ul .h_right {
  width:20%;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
}

/*-------------当社の強みのみのスタイルここから-------------*/
.strenth_01,.strenth_02,.strenth_03 {
  display: flex;
  justify-content: space-between;
}
.strenth_02,.strenth_03 {
  padding: 5rem 5%;
}
.strenth_01 {
  padding: 0 5% 5rem;
}
.strenth_02 {
  background-color: #f2f2f2;
}
.str_left {
  width: 35%;
}
.str_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 60%;
}
.strenth_01 h5,.strenth_02 h5,.strenth_03 h5 {
  font-size: 1.4rem;
  line-height: 1em;
  color: #FFF;
  background-color: #033980;
  display: inline-block;
  padding: 0.7rem 0.7rem 0.6rem 0.7rem;
  margin-bottom: 1.5rem;
}
.strenth_01 h4,.strenth_02 h4,.strenth_03 h4 {
  font-size: 2.7rem;
  line-height: 1.3em;
  color: #033980;
  border-bottom: solid 1px #033980;
  margin-bottom: 4rem;
}
.catch {
  font-family:'Times New Roman', Times, serif;
  font-size: 2.3rem;
  line-height: 1.3em;
  margin-bottom: 2rem;
}
.str_right p {
  font-size: 1.2rem;
  line-height: 1.5em;
}
.str_r_01 {
  width: 47%;
  margin-bottom: 2rem;
}
.str_r_02 {
  width: 47%;
}
.str_r_01 img,.str_r_02 img {
  width: 100%;
  margin-bottom: 0.8rem;
}
/*-------------当社の強みのみのスタイルここまで-------------*/

/*-------------製品紹介のみのスタイルここから-------------*/
.products_top {
  margin: 0 auto 10rem;
  padding: 10rem 10%;
  width: 100%;
  height: auto;
  background-image: url(../images/products_main.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.products_top .p_top_comment {
  text-align: right;
  color: #FFF;
  font-size: 2.2rem;
  line-height: 2.5em;
}
.general_projects {
  margin-bottom: 10rem;
}
.special_shape {
  background-color: #333;
  padding: 7rem 0 10rem;
}
.product_photo_a,.product_photo_b {
  margin: 0 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_photo_a li {
  width: 30%;
  margin-bottom: 5rem;
}
.special_shape h3 {
  color: #FFF;
}
.special_shape h3::before {
  border-color: #FFF;
}
.product_photo_b li {
  width: 45%;
  margin-bottom: 5rem;
}
.product_photo_b .p_photo_b_02 {
  width: 100%;
  margin-bottom: 5rem;
}
.product_photo_a li img,.product_photo_b li img {
  width: 100%;
  margin-bottom: 1rem;
}
.product_photo_a li .p_name,.product_photo_b li .p_name {
  font-size: 1.8rem;
  line-height: 1.8em;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.product_photo_a li .p_name {
  color: #033980;
  border-bottom: dotted 1px #033980;
}
.product_photo_b li .p_name {
  color: #FFF;
  border-bottom: dotted 1px #FFF;
}
.product_photo_b li p {
  color: #FFF;
}


/*-------------製品紹介のみのスタイルここまで-------------*/

/*-------------会社概要のみのスタイルここから-------------*/
.president_comment {
  width: 100%;
  display: flex;
  margin-bottom: 10rem;
}
.p_comment {
  width: 50%;
  padding: 5rem 8%;
}
.p_comment h4 {
  font-size: 2.2rem;
  line-height: 1.5em;
  font-weight: bold;
  color:#033980;
  margin-bottom: 4rem;
}
.p_comment p {
  margin-bottom:2rem;
}
.p_comment img {
  float: right;
}
.p_photo {
  width: 50%;
  background-image: url(../images/nishida_photo.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.management_philosophy {
  padding: 5rem 8% 5rem;
  background-image: url(../images/philosophy_back.svg);
  background-image: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10rem;
}
.management_philosophy h4 {
  font-size: 3rem;
  color:#033980;
  margin-bottom: 3rem;
}
.philosophy li {
  background-image: url(../images/list_dot.png);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
  padding-left: 1.8em;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: #333;
}
table {
  margin: 0 auto;
  width: 70%;
  border-bottom: solid 1px #CCC;
  margin-bottom: 10rem;
}
table td {
  padding: 2rem 2.5rem;
  border-top: solid 1px #CCC;
  line-height: 1.5em;
  vertical-align: middle;
  font-size: 1.4rem;
  color:#333;
}
table .table_left {
  width:25%;
  border-top: solid 1px #CCC;
  background-color: #f2f2f2;
}
.build_title {
  width: 100%;
  height: 50rem;
  background-image: url(../images/company_building.jpg);
  background-repeat: no-repeat;
  background-position: top;
}
.build_t_back {
  margin: 0 auto;
  width: 30rem;
  height: 17rem;
  margin-bottom: 10rem;
  background-color: rgba(255, 255, 255, 0.8);
}
.build_t_back h3 {
  padding-top: 8rem;
}
.within_the_company {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.within_the_company a {
  text-decoration: none;
}
.within_the_company02 {
  width: 80%;
  margin: 0 auto -10rem;
  display: flex;
  justify-content: space-between;
}
.within_the_company02 video {
  width: 100%;
}
.within_the_company02 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; 
  max-width: 1000px;
}
.within_c {
  width: 31%;
  margin-bottom: 4rem;
  background-color: #FFF;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  top: -15rem;
}
.within_d {
  width: 48%;
  margin-bottom: 3rem;
  background-color: #FFF;
  position: relative;
  top: -15rem;
}
.within_c img {
  width: 100%;
  padding:1rem;
}
.within_d img {
  width: 100%;
  padding-bottom: 1rem;
}
.within_c p {
  padding: 0 1rem 1rem;
}
.access .map {
  margin-bottom: 7rem;
}
/*-------------会社概要のみのスタイルここまで-------------*/

/*-------------スタッフ紹介のみのスタイルここから-------------*/
.staff_style_01 {
  display: flex;
  margin-bottom: 10rem;
}
.staff_style_02 {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 10rem;
}
.name_others {
  width: 35%;
  padding: 0 5%;
}
.s_section {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.s_name {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}
.s_others {
  font-size: 1.5rem;
  line-height: 1.3em;
  padding-bottom: 2rem;
  border-bottom: dotted 1px #333;
  margin-bottom: 2.5rem;
}
.s_catch {
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2.2rem;
  line-height: 1.3em;
  margin-bottom: 1.5rem;
}
.photo_2sheets,.photo_1sheets {
  display: flex;
  width: 65%;
}
.s_photo01,.s_photo03,.s_photo05 {
  width: 50%;
  height: 60rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.s_photo02,.s_photo04,.s_photo06 {
  width: 50%;
  height: 60rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.s_photo07 {
  width: 100%;
  height: 60rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.s_photo01 {
  background-image: url(../images/staff_a_photo_01.jpg);
}
.s_photo02 {
  background-image: url(../images/staff_a_photo_02.jpg);
}
.s_photo03 {
  background-image: url(../images/staff_b_photo_01.jpg);
}
.s_photo04 {
  background-image: url(../images/staff_b_photo_02.jpg);
}
.s_photo05 {
  background-image: url(../images/staff_c_photo_01.jpg);
}
.s_photo06 {
  background-image: url(../images/staff_c_photo_02.jpg);
}
.s_photo07 {
  background-image: url(../images/staff_d_photo_01.jpg);
}
/*-------------スタッフ紹介のみのスタイルここまで-------------*/

/*-------------採用情報のみのスタイルここから-------------*/
.r_main_photo {
  width: 100%;
	height: 70rem;
  background-image: url(../images/recruit_mainphoto.jpg);
  margin-bottom: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.r_main_photo_tab img {
  width: 100%;
  margin-bottom: 1rem;
}
.r_photo_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.r_photo_list img {
  width: 16%;
}
.recruitment_details {
  background-color: #F2F2F2;
  margin-bottom: 10rem;
}
.r_details_top {
  background-color: #033980;
  padding: 10rem 0;
}
.recruitment_details .english {
  color: #FFF;
}
.recruitment_details h2 {
  color: #FFF;
}
.recruitment_details h2::before {
  border-bottom: 5px solid #FFF;
}
.details_waku {
  background-color: #FFF;
  width: 83%;
  margin: 0 auto;
  padding: 5rem 0;
  box-shadow: 2px 2px 3px #777;
  position: relative;
  top: -10rem;
}
.details_waku table {
  width: 90%;
  margin-bottom: 0;
}
table td ul {
  margin-top: 0.3rem;
}
table td ul li {
  font-size: 1.4rem;
  line-height: 1.3em;
  list-style: circle;
  margin-left: 1.7em;
}
.entry_contact {
  background-color: #F2F2F2;
  padding: 3rem 0;
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.margin_plus {
  margin-bottom: 1rem;
}
.entry_contact h3 {
  margin-bottom: 3rem;
}
.entry_contact .opening_hours {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}
.entry_contact p {
  text-align: center;
}
/*-------------採用情報のみのスタイルここまで-------------*/

/*-------------お問い合わせのみのスタイルここから-------------*/
.tel_contact {
  background-color: #E2E8F7;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.tel_contact h3 {
  margin-bottom: 3rem;
}
.tel_bold a {
  display:inline-block;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1em;
  text-decoration: none;
  color:#333;
  margin-bottom: 1rem;
  padding: 0.5rem 0 0 1.1em;
  background-image: url(../images/tel_pict_02.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 3.5rem;
}

.tel_contact .opening_hours {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}
.tel_contact p {
  text-align: center;
}
.form_contact {
  padding: 5rem 0 0;
}
.form_contact h3 {
  margin-bottom: 5rem;
}
.form_contact .form_comment{
  width:900px;
  margin: 0 auto 3rem;
  padding: 2.1rem 2.3rem 1.9rem;
  background-color: #F2F2F2;
}

/*-------------フォームここから-------------*/
form {
  margin-bottom: 15rem;
}
.contact_table {
  width: 900px;
  margin: 0 auto 30px;
  border-bottom: 0;
}
.contact_table th {
  color:#333;
  width:270px;
  padding: 2.3rem 1em;
  font-size: 1.4rem;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
.contact_table th .required {
  font-size: 1rem;
  font-weight: bold;
  color:#FFF;
  padding: 4px 6px;
  background-color: #ff0000;
}
.contact_table td {
  width: 630px;
  padding: 1rem;
  border: 0;
}
.comment_bottom p {
  text-align: center;
  line-height: 1.8em;
  margin: 0 auto 20px;
}
input {
  width:100%;
  height: 4rem;
  border: 1px solid #BBB;
  font-size: 1.6rem; /* ##### スマホでフォーム入力時の拡大対策(16px)必要 ##### */
  padding: 0 1rem;
}
.radio_button input {
  width: 2rem;
  height: 2rem;
}
.select_wrapper {
    position: relative;
}
.select_wrapper::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #BBB;
    border-bottom: 1px solid #BBB;
    transform: rotate(45deg);
}
select {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width:100%;
  height: 4rem;
  color:#333;
  background-color: #fff;
  border: 1px solid #BBB;
  font-size: 1.6rem;
  padding: 0 1rem;
}
textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #BBB;
  font-size: 1.6rem; /* ##### スマホでフォーム入力時の拡大対策(16px)必要 ##### */
  line-height: 1.5em;
  padding:1rem;
}
.f_checkbox {
  width: 900px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  border-bottom: 1px dotted #CCC;
}
.f_checkbox td {
  padding: 0.6rem;
}
.f_checkbox td input {
  width:26px;
}
/* iPhoneでボタンを正しく表示させるコード */
input[type="submit"], input[type="reset"]{
	-webkit-appearance: none;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.form_button {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 700px;
}
.form_button .button {
  width: 320px;
  font-size: 1.4rem;
  cursor: pointer;
  color: #FFF;
  line-height: 0em;
  padding: 25px 0;
  background-color: #033980;
  border: 1px solid #033980;
  border-radius: 5px;
}
.form_button .button:hover {
  color: #033980;
  background-color: #FFF;
  border: 1px solid #033980;
}
/*-------------フォームここまで-------------*/
.privacy_policy {
  padding: 8rem 0 5rem;
  background-color: #F2F2F2;
}
.privacy_policy p {
  width: 870px;
  margin: 0 auto;
  margin-bottom: 3rem;
  line-height: 2em;
}
.pri_top {
  padding: 2rem 0;
  border-top: dotted 1px #333;
  border-bottom: dotted 1px #333;
}
/*-------------お問い合わせのみのスタイルここまで-------------*/

/*-------------2ページ目以降ここまで-------------*/
/*-------------メインスタイルここまで-------------*/



/*-------------フッタースタイルここから-------------*/
.contact_banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 8rem 0;
  background-image: url(../images/f_contact_image.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 1rem;
}
.contact_banner .english {
  color: #FFF;
}
.contact_banner h2 {
  color:#FFF;
  margin-bottom: 3rem;
}
.contact_banner h2::before {
  border-bottom: 5px solid #FFF;
}
.contact_banner .text_bold a {
  display:inline-block;
  font-weight: bold;
  font-size: 3rem;
  line-height:1em;
  color: #FFF;
  text-decoration: none; 
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  background-image: url("../images/tel_pict.svg");
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 3rem;
}
.contact_banner p {
  color: #FFF;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.contact_banner .button a {
  margin: 0 auto;
  padding: 1.6rem 7rem;
  width: 100%;
  background-color: none;
  border: 1px solid #FFF;
  background-color: transparent;
}
.contact_banner .button a:hover {
  background-color: #002255;
}
.footer_navi {
  margin: 0 5% 4rem 5%;
  line-height: 1em;
  font-size: 1.3rem;
}
.footer_navi a {
  text-decoration: none;
}
.footer_navi a:hover {
  text-decoration: underline;
}
.footer_comment {
  display: flex;
  margin: 0 2% 4rem 2%;
}
.footer_logo img {
  height: 8rem;
  margin-right: 12px;
}
.footer_comment_in {
  margin-right: 1rem;
}
.footer_comment_in .comment_bold {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
}
.footer_comment_in .address{
  font-size: 1.2rem;
  line-height:1.5em;
  margin-right: 10px;
}
.footer_iso img {
  height: 8rem;
}
.copyright {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
/*-------------フッタースタイルここまで-------------*/

/*-------------Tanksここから-------------*/
.thanks {
  padding: 20rem 0;
  display: flex;
  flex-direction: column;
}
.thanks p {
  font-size: 1.8rem;
  line-height: 1.8em;
  text-align: center;
  margin-bottom: 10rem;
}
.thanks .button a {
  width: 35rem;
  margin: 0 auto;
}

/*-------------Tanksここまで-------------*/



/*-------------スマートフォン（810px以下）ここから-------------*/
@media (max-width:810px){
/*----SPヘッダーここから----*/
  header {
  margin-top: 0;
}
  .head_menu {
    display: none;
  }
  .header_top {
    height: 7rem;
  }
  header #head_logo {
    width: 300px;
  }
  header #head_logo img {
    width: 100%;
  }
 header .sp_menu  {
  margin-top: 0px;
  z-index: 1000;
  position: fixed;
  width: 100%;
  }
  .pankuzu {
  display: none;
  }
/*----SPヘッダーここまで----*/

/*----SPスライドここから----*/
.slider {
	height: 50rem;
  margin-bottom:6rem;
}
.slider div:first-of-type{
	background-image: url(../images/ts_image_sp_a.jpg);
}
.slider div:nth-of-type(2){
	background-image: url(../images/ts_image_sp_b.jpg);
}
.slider div:nth-of-type(3){
	background-image: url(../images/ts_image_sp_c.jpg);
}
.slider div:last-of-type{
	background-image: url(../images/ts_image_sp_d.jpg);
}
/*----SPスライドここまで----*/

/*----SPメインここから----*/
main {
  padding-top: 7rem;
}
.strength_three h5 {
  width: 80%;
}
h2 {
  margin-bottom:3rem;
}
.comment {
  font-size: 1.4rem;
  line-height: 1.8em;
  margin-bottom: 5rem;
}
.home_a ul {
    padding: 0 5%;
    height: 66rem;
    flex-direction: column;
    margin-bottom: 6rem;
}
.home_a ul li {
  margin-bottom: 1rem;
    width: 100%;
    height: 22rem;
}
.home_a ul li .haikei {
  width: 80%;
  height: 13rem;
}
.home_b,.home_c,.home_d {
  height: 62rem;
  flex-direction: column-reverse;
  margin-bottom: 6rem;
}
.home_text {
  height: 37rem;
  width: 100%;
}
.home_photo {
  height: 25rem;
  width: 100%;
}
.home_text .english {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.home_text h2 {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.home_text p {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.button a {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.recruit {
  width: 90%;
  height: auto;
  margin-bottom: 6rem;
}
.recruit a {
  padding: 4rem 3rem;
}
.recruit a .space{
  display: none;
}
.recruit a .text {
  width: 100%;
}
.recruit a .text .english {
  text-align: center;
}
.recruit a .text h2 {
  text-align: center;
}
.contact_banner {
  margin-bottom: 2rem;
}
.contact_banner .button a {
  width: 100%;
}
.tel_bold {
  font-size: 3.5rem;
  background-position-y: -1px;
  background-size: 3.3rem;
}
.page_head {
  margin-bottom: 5rem;
}
.page_head ul {
  height: 25rem;
}
.h_title_strength,.h_title_products,.h_title_profile,.h_title_staff,.h_title_contact,.h_title_recruit {
  margin: 0;
  padding: 0;
  width: 100%;
  clip-path: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h_title_profile {
  background-image: url(../images/company_profile_head_sp.jpg);
}
.h_title_staff {
  background-image: url(../images/staff_introduction_head_sp.jpg);
}
.page_head ul .h_center {
  display: none;
}
.page_head ul .h_right {
  display: none;
}
.page_head ul .english {
  text-align: center;
  margin: 2rem auto 1rem;
}
.page_head ul h2 {
  text-align: center;
  margin: 0 auto;
}
.strenth_01,.strenth_02,.strenth_03 {
  flex-direction: column;
}
.strenth_01 {
  padding: 0 5% 3rem;
}
.strenth_02,.strenth_03 {
  padding: 3rem 5%;
}
.str_left {
  width: 100%;
  margin-bottom:4rem;
}
.str_right {
  width: 100%;
  flex-direction: column;
}
.str_r_01,.str_r_02 {
  width: 100%;
}
.products_top {
  padding: 4rem 0;
  margin-bottom: 5rem;
}
.products_top .p_top_comment {
  text-align: center;
  font-size: 1.5rem;
  text-shadow: 2px 2px 3px #000;
}
.special_shape {
  background-color: #333;
  padding: 5rem 0 2rem;
}
.general_projects {
  margin-bottom: 0;
}
.special_shape {
  margin-bottom: 0;
}
.product_photo_a,.product_photo_b {
  margin: 0 5%;
  flex-direction: column;
  pointer-events: none; /* lightbox-スマホでOFF */
}
.product_photo_a li,.product_photo_b li {
  width: 100%;
}
.president_comment {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 10rem;
}
.p_comment {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.p_comment h4 {
  font-size: 2.2rem;
  text-align: center;
}
.p_photo {
  width: 90%;
  height: 40rem;
  margin: 0 auto 5rem;
}
.management_philosophy {
  padding: 5rem 5% 5rem;
}
table {
  width: 90%;
}
table .table_left {
  width:30%;
  text-align: center;
  padding: 0 ;
}
table tr td {
  padding: 1.2rem 1rem;
}
.within_the_company {
  width: 90%;
  flex-direction: column;
  pointer-events: none; /* lightbox-スマホでOFF */
}
.within_the_company02 {
  width: 90%;
  flex-direction: column;
  margin-top: 10rem;
}
.within_c {
  width: 100%;
}
.within_d {
  width: 100%;
}
.staff_style_01,.staff_style_02 {
  flex-direction: column-reverse;
}
.name_others {
  width: 100%;
}
.photo_2sheets {
  width: 90%;
  height: 55rem;
  flex-direction: column;
  margin: 0 auto 1.5rem;
}
.photo_1sheets {
  width: 90%;
  height: 27.5rem;
  flex-direction: column;
  margin: 0 auto 1.5rem;
}
.s_photo01,.s_photo02,.s_photo03,.s_photo04,.s_photo05,.s_photo06,.s_photo07 {
  width: 100%;
  margin-bottom: 0.5rem;
}
.form_contact h3 {
  margin-bottom: 3rem;
}
.form_contact .form_comment{
  width:100%;
}
.form_comment p {
  width: 100%;
  margin: 0 auto;
}
form {
  margin-bottom: 5rem;
}
.contact_table {
  width: 95%;
  margin-bottom: 0;
}
.contact_table th {
  display: inline-block;
  width:100%;
  padding: 0rem 1em;
  display: flex;
  justify-content: space-between;
}
.contact_table td {
  display: inline-block;
  width: 100%;
  margin-bottom:1rem;
}
textarea {
  width: 100%;
  margin-bottom: 0;
}
.comment_bottom p {
  width: 90%;
}
.f_checkbox {
  width: 100%;
}
.form_button .button {
  width: 90%;
  margin: 0 auto 1rem;
}
.privacy_policy {
  padding: 6rem 0 0.5rem;
}
.privacy_policy p {
  width: 90%;
}
.pri_top {
  padding: 2rem 0 1.3rem;
  border-top: dotted 1px #333;
  border-bottom: dotted 1px #333;
}
.recruit_main {
  margin-bottom: 2rem;
}
.r_photo_list {
  flex-wrap: wrap;
  width: 96%;
  margin: 0 auto;
}
.r_photo_list img {
  width: 49%;
  margin-bottom: 1rem;
}
.r_main_photo {
  display: none;
}
.recruitment_details {
  padding: 0;
  margin-bottom: 10rem;
}
.r_details_top {
  padding-top: 6rem;
}
.details_waku {
  width: 90%;
  padding: 3rem 0 ;
  margin-bottom: 0 ;
}
.details_waku table {
  width: 94%;
}
.entry_contact {
  padding: 3rem 0;
  width: 100%;
}

.thanks {
  padding: 17rem 0;
}
.thanks p {
  font-size: 1.6rem;
  margin-bottom: 15rem;
}
.thanks .button a {
  width: 75%;
}

/*----SPメインここまで----*/

/*----SPフッターここから----*/
.footer_navi {
  display: none;
}
.footer_comment {
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.footer_comment {
  text-align: center;
}
.footer_logo {
  display: none;
}
.footer_comment_in .comment_bold {
  font-size: 1.4rem;
}
.footer_comment_in .address {
  margin-bottom: 1rem;
}
.form_button {
  flex-direction: column;
  width: 100%;
}
/*----SPフッターここまで----*/
}
/*-------------スマートフォン（810px以下）ここまで-------------*/

/*-------------タブレット（811pxから1400pxまで）ここから-------------*/
@media (min-width:811px) and (max-width:1400px){
.home_d .home_photo {
  background-image: url(../images/main_staff_p02.jpg);
  width: 100%:
}
}
/*-------------タブレット（811pxから1400pxまで）ここまで-------------*/


/*-------------タブレット（811pxから1000pxまで）ここから-------------*/
@media (min-width:811px) and (max-width:1000px){
/*----TABヘッダースタイルここから----*/
#head_logo {
  width: 45%;
  padding: 0 0 0 5px;
}
#head_logo img {
  width: 100%;
}
.head_menu {
  width:100%;
}
.head_navi_left {
  width:100%;
}
.head_navi_a li {
  margin: 0 auto;
}
.p_comment {
  padding: 5rem 4%;
}
/*----TABヘッダースタイルここまで----*/
.slider {
	height: 55rem;
}
.strength_three h5 {
  width: 88%;
}
.home_a ul li .haikei {
  width: 88%;
}
table {
  width: 90%;
}
.recruit {
  width: 80%;
}
.catch {
  font-size: 1.8rem;
}
.str_left {
  width: 45%;
}
.str_right {
  width: 50%;
}
.r_main_photo {
  display: none;
}
.details_waku {
  width: 90%;
}
.entry_contact {
  width: 790px;
}
.form_contact .form_comment{
  width:790px;
}
.contact_table {
  width: 790px;
}
.contact_table th {
  width:250px;
  }
.contact_table td {
  width: 540px;
}
.f_checkbox {
  width: 790px;
}
.form_button {
  width: 700px;
}
.privacy_policy p {
  width: 760px;
}
}
/*-------------タブレット（811pxから1000pxまで）ここまで-------------*/


/*-------------スマホ・タブレット共通（811px以上）ここから-------------*/
@media (min-width:811px){
  .sp_menu {
    display: none;
  }
}
/*-------------スマホ・タブレット共通（811pxまで）ここまで-------------*/


/*-------------PCここから（1001px以上）ここから-------------*/
@media (min-width:1001px){
  .recruit {
  width: 80rem;
}
.r_main_photo_tab {
  display: none;
}
}
/*-------------PC（1001px以上）ここまで-------------*/
